*, ::before, ::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Jost', sans-serif;
    font-family: 'Poppins', sans-serif;
}

/* ------------------------------------------- */
/* -----------------Styles Tags--------------- */
/* ------------------------------------------- */
a {
    text-decoration: none;
    color: black;
}

hr {

    color:gray;
    background-color:rgb(175, 175, 175);
    margin: 0 5rem;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style-type: none;
}


section {
    margin: 8rem 15rem;
}

p {
    font-weight: 400;
}

h2 {
    margin-bottom: 1rem;
}

/* ------------------------------------------- */
/* ----------------NavBar Styles-------------- */
/* ------------------------------------------- */

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 0 0.5rem;
    position: fixed;
    background-color: #FFF;
    top: 0;
    left: 0;
    right: 0;

    transition: .4s;
    z-index: 100;
}
.navbar__logo {
    width: 25%;
}

.navbar__options ul{
    /* border: 2px solid red; */
    display: flex;
    justify-content: space-evenly;
}

.navbar__options ul li{
    /* border: 2px solid black; */
    width:9rem;
    text-align: center;
}

.navbar__button button{
    border: none;
    text-decoration: none;
    background-color: hsl(235deg 50% 30%);
    color: white;
    padding: 0.8rem 1.5rem;
    text-align: center;
    border-radius: 1rem;
}

.nav__toggle {
    display: none;
}

/* ------------------------------------------- */
/* ----------------Landing Styles------------- */
/* ------------------------------------------- */
.main {
    padding: 10rem 0 3rem;
    background-color: rgb(42, 42, 98);
    color: white;
}

.main__content {
    /* border: 2px solid red; */
    padding: 10rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.main__content p {
    text-align: center;
}

.main__content h1 {
    text-transform: uppercase;
}

/* ------------------------------------------- */
/* ----------First Section Styles------------- */
/* ------------------------------------------- */

.info__section {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.info__section__text{
    text-align: center;
}

.info__section img {
    width: 300px;
}

/* ------------------------------------------- */
/* ----------Second Section Styles------------ */
/* ------------------------------------------- */
.info__section_two {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.info__section__text_two{
    text-align: center;
}

.info__section_two img {
    width: 300px;
}

/* ------------------------------------------- */
/* ---------Client Grid Section Styles-------- */
/* ------------------------------------------- */
.clients__section {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.clients__section__cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
}

.card {
    width: 20rem;
    border-radius: 1rem;
    box-shadow: 0px 2px 6px hsla(235, 100%, 15%, 0.15);
    padding: 2rem 1.5rem;
    margin-top: 5rem;
}

.card h3 {
    margin-bottom: 1rem;
}

/* ------------------------------------------- */
/* -----------Footer Section Styles----------- */
/* ------------------------------------------- */
footer {
    background-color: rgb(42, 42, 98);
    color: white;
}

.footer {
    display: flex;
    flex-direction: row;
    padding: 6rem 9rem;
    gap: 10rem;
}
.footer__text {
    width: 500px;
}

.footer__map{
    height: 40rem;
    width: 20rem;
	width: 100%;
}

.footer__data {
    padding-top:10rem;
}