:root {
    --green: #0F766E;
    --teal: #B9DFDC;
    --lgreen: #B9DFDC;
    --cream: #F7F2E7;

    --playfair: 'Playfair Display', serif;
}
 
html {
    margin: 0;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

body {
     margin: 0;
     padding: 0;
     width: 100vw;    
     font-family: figtree;
     overflow: hidden;
     /* pointer-events: none; */
}

h1, h2, h3, h4, h5 {
    margin: 0;
    line-height: 1.2;
}

h1 {font-size: 60px;}
h2 {font-size: 50px;}
h3 {font-size: 40px;}
h4 {font-size: 30px;}
h5 {font-size: 25px;}

p { 
    font-size: 20px;
    margin: 0;
}

a {
    font-size: 20px;
    text-decoration: none;
    /* pointer-events: all;
    cursor: pointer; */
}

/*---------- NAVBAR ----------*/
.navbar {
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: var(--cream);
/*     filter: drop-shadow(0 0 4px gray); */
    z-index: 10;
}

.mainlog {
    height: auto;
    width: 180px;
    margin: 0 4rem;
    z-index: auto;
}

.nav-links {
    display: flex;
    justify-content: center;
    color: var(--green);
    align-items: center;
    margin: 0;
    overflow: hidden;
    li {
        display: inherit;
        align-items: center;
        list-style: none;
        width: max-content;
        transition: all 0.2s ease-in-out;
        a {
            display: flex;
            align-items: center;
            padding: 0 1rem;
            height: 80px;
            color: var(--green);
            transition: all 0.2s ease-in-out;
        }
        a:hover {
            font-weight: bold;
            background-color: white;
        }
    }
}

.lets-talk {
    display: inherit;
    align-items: center;
    font-weight: bold;
    color: var(--green);
    padding: 0.8rem 1.5rem;
    margin: 0 2rem 0 1rem;
    background-color: white;
    border: 1px solid var(--green);
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
}

.lets-talk:hover {
    background-color: var(--green);
    color: white;
}

.navbar-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar-icon {
    width: 100%;
    height: 0.15rem;
    right: 0px;
    background-color: black;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-toggler .navbar-icon::before, .navbar-toggler .navbar-icon::after {
    right: 0px;
    content: '';
    position: absolute;
    width: 100%;
    height: 0.15rem;
    background-color: black;
    transition: all 0.3s ease;
}
.navbar-toggler .navbar-icon::after {top: 0.30rem;}
.navbar-toggler .navbar-icon::before {top: -0.30rem;}

.lets-talk-btn-mobile {
    display: none;
    padding: 1rem;
    text-decoration: none;
    text-align: center;
}

.logo-mobile {
    img { 
        width: 250px; 
        display: none;
    }
}

/*---------- HOME SEC1----------*/
.hero-sec {
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: center;
    align-items: end;
    width: auto;
    height: 100vh;
    overflow: hidden;
}

.altlog {
    display: none;
}

.left-wrap {
    display: flex;
    flex-direction: column;
    padding: 0 1rem 4rem;
    gap: 1rem;
    z-index: 5;
}

.home-text {
    display: flex;
    flex-direction: column;
    color: white;
    max-width: 900px;
    filter: drop-shadow(0 0 4px black);
    gap: 1rem;
    h1 {
        font-weight: 300;
        font-style: italic;
    }
    h5 {
        font-weight: 300;
    }
    span {
        font-weight: bold;
    }
}

.right-wrap {
    display: flex;
    flex-direction: column;
    padding: 0 1rem 4rem 0;
    z-index: 5;
}

.fmx {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 1rem;
    width: 300px;
    border-radius: 15px;
    gap: 0.5rem;
    img {
        width: 88px;
    }
    p {
        font-size: 16px;
        color: #1E1E1E;
    }
}

.home-btn {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    z-index: 5;
    a {
        font-weight: bold;
        text-align: center;
        padding: 1rem;
        color: black;
        width: 230px;
        background-color: var(--teal);
        border-radius: 50px;
        transition: all 0.2s ease;
    }
    a:hover {
        color: white;
        background-color: var(--green);
    }
}

.home-bg {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    width: 100%;
    top: 80px;
    background-color: black;
    z-index: 1;
    video {
        object-fit: cover;
        height: 100vh!important;
        width: 100%;
        mask-image: linear-gradient(to bottom,
        rgba(0,0,0,1) 20%,
        rgba(0,0,0,0.6) 60%,
        rgba(0,0,0,0.2) 80%,
        rgba(0,0,0,0) 100%);
    }
    img{
        object-fit: cover;
        height: 100vh!important;
        width: 100vw;
    }
}

/*---------- HOME SEC2 ----------*/
.sec2-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("../images/bg2.png");
    background-position: center;
    background-size: cover;
    padding: 4rem 1rem;
    gap: 4rem;
}

.box-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
}

.box {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    max-width: 300px;
    border: 1px solid white;
    border-radius: 20px;
    gap: 0.5rem;
    flex: 1;
    img {
        height: auto;
        width: 44px;
    }
    p {
        color: white;
    }
}

.achc {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1250px;
    gap: 2rem;
    img {
        width: 110px;
        height: auto;
    }
    p {
        font-weight: 300;
        color: white;
    }
}

/*---------- HOME SEC3 ----------*/
.sec3-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 4rem 1rem;
}

.sec3-title {
    color: var(--green);
}

.line1, .line2, .line3 {
    margin: 1rem 0;
    height: 4px;
    width: 200px;
}

.line1 {background-color: var(--green);}
.line2 {background-color: #1E1E1E;}
.line3 {background-color: white;}

.sec3-about {
    display: flex;
    flex-direction: row;
    padding: 0 1rem;
    margin-top: 3rem;
    gap: 3rem;
    img, video{
        width: clamp(250px, 90vw, 740px);
        border-radius: 20px;
    }
}

.sec3-content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    max-width: 460px;
    gap: 1rem;
    a {
        font-weight: bold;
        align-self: flex-start;
        text-align: center;
        padding: 1rem;
        color: black;
        max-width: 230px;
        width: stretch;
        background-color: var(--teal);
        border-radius: 50px;
        transition: all 0.2s ease;
    }
    a:hover {
        color: white;
        background-color: var(--green);
    }
}

/*---------- HOME SEC4 ----------*/
.sec4-wrap {
    display: flex;
    flex-direction: column;
    background-color: white;
}

.sec4-wrap2 {
    display: flex;
    flex-direction: column;
    background-color: var(--cream);
}

.sec4-part1, .sec4-part2, .sec4-part3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50vw 50vw 0 0;
    height: 100vh;
    gap: 4rem;
    a {
        font-weight: bold;
        text-align: center;
        padding: 1rem;
        color: black;
        max-width: 230px;
        width: stretch;
        background-color: var(--teal);
        border-radius: 50px;
        transition: all 0.2s ease;
    }
    a:hover {
        color: white;
        background-color: var(--green);
    }
}

.sec4-part1 { 
    background-color: var(--cream); 
    padding: 4rem 1rem;
	h5 {
        font-weight:300;
    }
}
.sec4-part2 { 
    background-color: white; 
    padding: 8rem 1rem 0;
	h5 {
        color: var(--green);
    }
}
.sec4-part3 { 
    background-color: var(--cream); 
    padding: 8rem 1rem 0;
	h5 {
        color: var(--green);
    }
}


.sec4-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 840px;
}

.circle-row1 {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.circle, .circle2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    flex: 1;
    img {
        background-color: var(--green);
        border-radius: 50%;
        height: 116px;
        width: 116px;
        padding: 3rem;
    }
}

.circle {
    max-width: 350px;
}

.circle2 {
    max-width: 500px;
}

/*---------- HOME SEC5 ----------*/
.sec5-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-image: url('../images/bg2.png');
    background-position: center;
    background-size: cover;
    padding: 4rem 1rem;
    gap: 4rem;
}

.sec5-fmx {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: start;
    padding: 1rem;
    color: var(--green);
    background-color: white;
    width: 420px;
    border-radius: 15px;
    border: 2px solid transparent;
    gap: 2rem;
    transition: all 0.3s ease;
    img {
        width: 120px;
        height: auto;
    }
}

.sec5-fmx:hover {
    color: white;
    background-color: var(--green);
    border: 2px solid white;
}

.sec5-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 785px;
    h4 {
        color: var(--cream);
        font-weight: 400;
    }
    h5 {
        color: white;
        font-weight: 300;
    }
    span {
        font-style: italic;
    }
}

/*---------- FOOTER ----------*/
.footer-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem 4rem;
    background-color: white;
    h3 {
        font-weight: 400;
        text-align: center;
        color: var(--blue);
    }
    span {
        font-weight: bold; 
        font-style: italic;
    }
    img {
        width: 230px;
    }
    p, a {
        font-size: 18px;
    }
}

.f-line {
    height: 2px;
    background-color: var(--green);
    width: 90vw;
    margin: 2rem 0;
}

.footer-column {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: start;
    gap: 2rem;
    width: 90vw;
}

.col-cont {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    p {
        color: #0F766E;
        font-weight: bold;
    }
    li {
        list-style: none;
    }
    a {
        color: black;
        font-weight: 300;
        transition: all 0.2s ease;
    }
    a:hover {
        color: var(--green);
        text-decoration: underline;
    }
}

.bot-foot {
    text-align: center;
    color: var(--green);
    a {
        font-style: italic;
        font-weight: bold;
        color: #D9644A;
    }
    a:hover {
        text-decoration: underline;
    }
}

@media (max-width: 1024px) {

    h1 {font-size: 40px;}
    h2 {font-size: 30px;}
    h3 {font-size: 25px;}
    h4 {font-size: 25px;}
    h5 {font-size: 20px;}
    p {font-size: 18px;}
    a {font-size: 18px;}
    
    .navbar {
        justify-content: space-between;
        height: 4rem;
        outline: none;
        background-color: transparent;
        box-shadow: none;
        margin: 0;
    }

    .navbar-toggler {
        display: flex;
        margin-right: 1rem;
        background-color: var(--cream);
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        position: fixed;
        background-color: white;
        width: 100%;
        top: 0;
        padding: 1rem 0;
        gap: 1rem;
        z-index: 50;
        li {
            a {
            font-weight: bold;
            padding: 0;
            height: unset;
            }
        }
		li:hover {
            background-color: none;
            border-bottom: none;
        }
    }

    .nav-links.show {
        display: flex;
    }

    .logo-mobile {
        img { 
            display: block;
        }
    }

    .nav-links li {
        height: auto;
        margin: 0.2rem 0;
    }

    .lets-talk {display: none;}
    .lets-talk-btn-mobile {
        font-weight: bold;
        display: block;
        padding: 0.2rem 0;
        color: var(--green)
    }

/*---------- HOME SEC1 ----------*/
    .altlog {	
        display: block;
        position: absolute;
        width: 150px;
        padding: 0.5rem;
        margin: 1rem;
        background-color: white;
        border-radius: 10px;
        top: 0;
        left: 0;
        z-index: 8;
    }
        
    .mainlog { 
        display: none;
        padding-left: 0;
    }
    
    .fmx {
        flex-direction: column;
        max-width: 300px;
        width: auto;
        img {
            width: 70px;
        }
    }

    .home-bg {
        top: 0;
    }

/*---------- HOME SEC3 ----------*/
    .sec3-about {
        align-items: center;
        justify-content: center;
        /* flex-direction: column; */
        /* flex-wrap: wrap; */
        margin-top: 1rem;
        gap: 2rem;
        img, video {
            max-width: 520px;
        }
    }
    .sec3-content {
        max-width: 520px;
        align-items: center;
        gap: 2rem;
        a {
            padding: 0.5rem 1rem;
        }
    }

/*---------- HOME SEC4 ----------*/
.sec4-header {
    max-width: 450px;
}

.circle, .circle2 {
    img {
        height: 90px;
        width: 90px;
        padding: 2rem;
    }
}

/*---------- HOME SEC5 ----------*/
.sec5-wrap {
    gap: 2rem; 
}

.sec5-fmx {
    width: 250px;
    gap: 1rem;
    img {
        width: 80px;
        height: auto;
    }
}

/*---------- FOOTER ----------*/
    .footer-wrap {
        p, a {
            font-size: 16px;
        }
        img {
            width: 180px;
        }
    }
    .footer-column {
        flex-wrap: wrap;
        justify-content: start;
    }

    .col-cont {
        ul {
            gap: 1rem 2rem;
        }
    }
}

@media (max-width: 768px) {

    h1 {font-size: 30px;}
    h2 {font-size: 25px;}
    h3 {font-size: 20px;}
    h4 {font-size: 18px;}
    h5 {font-size: 18px;}
    p {font-size: 16px;}
    a {font-size: 16px;}

/*---------- HOME SEC1 ----------*/
.hero-sec {
    flex-direction: column;
    justify-content: end;
}
.left-wrap, .right-wrap {
    padding: 0 1rem 2rem;
}

.fmx {
    flex-direction: row;
    max-width: none;
}

.home-btn {
    gap: 0.5rem;
    a {
        padding: 0.5rem 1rem;
        width: 151px;
    }
}

/*---------- HOME SEC2 ----------*/
.box-container {
    flex-direction: column;
    gap: 1rem;
}

.box {
    max-width: 260px;
    flex-direction: row;
    align-items: center;
}

/*---------- HOME SEC3 ----------*/
.sec3-about {
    flex-direction: column;
}

.sec3-content {
    a {
        align-self: center;
    }
}

/*---------- HOME SEC4 ----------*/
.sec4-header {
    max-width: 300px;
}

.sec4-part1, .sec4-part2, .sec4-part3 {
    flex-direction: column;
    height: auto;
    padding: 4rem 1rem;
    gap: 3rem;
    a {
        padding: 0.5rem 1rem;
    }
}

.circle-row1 {
    flex-direction: column;
    gap: 2rem;
}

.circle, .circle2 {
    max-width: 350px;
    gap: 1rem;
    br {
        display: none;
    }
    img {
        height: 60px;
        width: 60px;
    }
}

/*---------- HOME SEC5 ----------*/
.sec5-wrap {
    flex-direction: column;
}

.sec5-fmx {
    padding: 0.5rem;
}

.sec5-text {
    text-align: center;
}

/*---------- FOOTER ----------*/
    .footer-wrap {
        p, a {
            font-size: 14px;
        }
        img {
            width: 130px;
        }
    }

    .footer-column {
        justify-content: space-between;
    }
}

@media (max-width: 546px) {


    .navbar { 
        height: 60px;
    }
    .logo-mobile {
        img { 
            width: 200px; 
        }
    }

/*---------- HOME SEC1 ----------*/
    .home-btn {
        gap: 0.5rem;
    }

    .altlog {
        padding: 0.5rem;
        width: 100px;
    }

    .fmx {
        padding: 0.5rem;
        img {
            width: 65px;
        }
        p {
            font-size: 12px;
        }
    }

/*---------- HOME SEC2 ----------*/
.achc {
    gap: 1rem;
    flex-direction: column;
    text-align: center;
}

/*---------- FOOTER ----------*/
    .footer-column {
        flex-direction: column;
        align-items: center;
    }

    .col-cont {
        text-align: center;
        align-items: center;
        ul {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
    }
}