

:root {
    --primary: #ff914d;
    --bg: #6e553b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg);
    color: #fff;
}

/* Navbar */
.navbar {
   display: flex;
   justify-content: space-between;
   align-items: center; 
   padding: 1.4rem 7%;
   background-color: #6e553b;
   border-bottom: 1px solid  #fff4ea;
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 9999;
}

.navbar .navbar-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    font-style: italic;
}

.navbar .navbar-logo span {
   color: var(--primary); 
}

.navbar .navbar-nav a {
    color: #fff;
    display: inline-block;
    font-size: 1.3rem;
    margin: 0 1rem;
}

.navbar .navbar-nav a:hover {
    color: var(--primary);
}

.navbar .navbar-nav a::after {
    content: '';
    display: block;
    padding-bottom: 0.5rem;
    border-bottom: 0.1rem solid var(--primary);
    transform: scaleX(0);
}

.navbar .navbar-nav a:hover::after {
    transform: scaleX(0.5);
    transition: 0.2s linear;
}

.navbar .navbar-extra a {
    color: #fff;
    margin: 0 0.5rem;
}

.navbar .navbar-extra a:hover {
    color: var(--primary);
}

.navbar .search-form {
    position: absolute;
    top: 115%; right: 7%;
    background: var(--bg);
    width: 40rem;
    height: 5rem;
    display: flex;
    align-items: center;
}

.navbar .search-form input{
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
    color: var(--primary);
    padding: 1rem;
    text-transform: none;
}

#hamburger-menu {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../img/header-mb1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 0;
    background: linear-gradient(0deg, rgb(110, 85, 59, 110) 5%, rgb(255, 255, 255, 0) 50%);
}

.hero .content {
    padding: 1.4rem 7%;
    max-width: 60rem;
}

.hero .content h1 {
    font-size: 4.5em;
    color: #fff;
    text-shadow: 1px 1px 3px rgb(110, 85, 59, 0.5);
    line-height: 1.2;
}

.hero .content h1 span {
    color: var(--primary);
}

.hero .content p {
    font-size: 1.6rem;
    margin-top: 1.5rem;
    line-height: 1.4;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgb(110, 85, 59, 0.5);
}

.hero .content .cta {
    margin-top: 1rem;
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.4rem;
    color: #fff;
    background-color: var(--primary);
    border-radius: 0.5rem;
    box-shadow: 1px 1px 3px rgb(110, 85, 59, 0.5);
}

/* Info Section */
.info,
.info3 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../img/header-mb2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.info::after,
.info3::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 0;
    background: linear-gradient(0deg, rgb(110, 85, 59, 110) 5%, rgb(255, 255, 255, 0) 30%);
}

.info content {
    padding: 4rem 7% 1.4rem;
    max-width: 60rem;
}

.info h2,
.info2 h2,
.info3 h2,
.info4 h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-top: 6rem;
    margin-bottom: 1rem;
    color: bisque;
}

.info h2 span,
.info2 h2 span,
.info3 h2 span,
.info4 h2 span {
    color: var(--primary);
}

.info p,
.info2 p,
.info3 p,
.info4 p {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    padding: 0.2rem 15% 1.4rem;
    margin-bottom: 0.5rem;
}

.content ul {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    padding: 0.2rem 18% 1.4rem;
}


/* About Section */
.about,
.connect {
    padding: 4rem 7% 1.4rem;
}

.about h2,
.connect h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.about h2 span,
.connect h2 span {
    color: var(--primary);
}

.about h3 {
    text-align: center;
    font-size: 1.4rem;
    color: antiquewhite;
}

.about p,
.connect p {
    text-align: center;
    font-size: 1.2rem;
    
}

.about .row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
    justify-content: center;
}

.about .row .team-card {
    text-align: center;
    padding-bottom: 1rem;
}

.about .row .team-card img {
    border-radius: 50%;
    width: 30%;
}

.about .row .team-card .team-card-tittle {
    margin-top: 1.5rem auto 1rem;
}

.about .row2 {
    display: flex;
}

.about .row2 .content {
    flex: 1 1 35rem;
    padding: 0 1rem;
}

.about .row2 .content h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #ff914d;
}

.about .row2 .a-content {
    background-color: peru;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 20px;
    padding: 0.2rem 10% 1.4rem;
}

.about .row2 .content p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    padding: 1rem 10% 1.4rem;
}

.about .content h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #ff914d;
}

.about .content p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    padding: 1rem 25% 1.4rem;
}

.about .a-content {
    background-color: peru;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 90px;
    padding: 0.2rem 10% 1.4rem;
}

.about .content ul {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    padding: 1rem 25% 1.4rem;
}


/* Footer */
footer {
    background-color: var(--primary);
    text-align: center;
    padding: 1rem 3rem;
    margin-top: 3rem;
}

footer .socials {
   padding: 1rem 0; 
}

footer .socials a {
    color: #fff;
    margin: 1rem;
}

footer .socials a:hover,
footer .links a:hover {
    color: var(--bg);
}

footer .links {
    margin-bottom: 1.4rem;
}

footer .links a {
    color: #fff;
    padding: 0.7rem 1rem;
}

footer .credit {
    font-size: 0.8rem;
}

footer .credit a {
    color: var(--bg);
    font-weight: 700;
}

/* Media Querues */
/* Laptop */
@media (max-width: 1366px) {
    html {
        font-size: 75%;
    }
}

/* Tablet */
@media (max-width: 768px) {
    html {
        font-size: 62.5%;
    }

   #hamburger-menu {
    display: inline-block;
   }

   .navbar .navbar-nav {
    position: absolute;
    top: 100%;
    right: -100%;
    background-color: #fff;
    width: 30rem;
    height: 100vh;
    transition: 0.3s;
   }

   .navbar .navbar-nav.active {
    right: 0;
   }

   .navbar .navbar-nav a {
    color: var(--bg);
    display: block;
    margin: 1.5rem;
    padding: 0.5rem;
    font-size: 2rem;
   }

   .navbar .navbar-nav a::after {
    transform-origin: 0 0;
   }

   .navbar .navbar-nav a:hover::after {
    transform: scaleX(0.2);
   }
}

/* Mobile Phone */
@media (max-width: 450px) {
    html {
        font-size: 55%;
    }
}