:root {
    --red: #e50000;
    --green: #304e06;
    --white: #faf9f6;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap');

@font-face {
    font-family: gobold extra1;
    src: url('../resources/fonts/Gobold\ Extra1.otf');
}

@font-face {
    font-family: aunther signature;
    src: url(../resources/fonts/Aunther\ Signature.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: montserrat;
    background: var(--white);
    cursor: default;
}

p {
    font-weight: 300;
    font-size: 1.1rem;
}

main {
    min-height: 600px;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    background: white;
}

.primary-navigation {
    width: 100%;
    max-width: 1366px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    padding: 0 20px;
}

.logo-container {
    height: 70px;
}

.logo-container img {
    height: 100%;
    /* object-fit: cover;
    object-position: center; */
}

ul.menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.menu .menu-item {
    color: var(--red);
    margin-right: 3px;
    list-style: none;
    font-size: 1.1rem;
    font-weight: 300;
    font-family: gobold extra1;
}

ul.menu .menu-item a {
    color: inherit;
    text-decoration: none;
    padding: 4px 6px;
    text-transform: capitalize;
    position: relative;
}

ul.menu .menu-item a::after {
    content: '';
    width: 0%;
    height: 2px;
    border-radius: 10px;
    background: var(--green);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: 0.3s;
}


ul.menu .menu-item a:hover::after {
    width: 100%;
}

/* hero section */
#hero {
    background: #00000050 url(../resources/12.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    min-height: 550px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

#hero .image-container {
    width: 90%;
    max-width: 686px;
    margin: auto;
}

#hero .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#hero h1 {
    font-weight: 500;
    font-size: 2.5rem;
    text-align: center;
}

#hero p {
    max-width: 500px;
    text-align: center;
    margin: 15px;
}

.lm-button {
    padding: 7px 15px;
    background: white;
    color: var(--green);
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
}

.gobold {
    font-family: gobold extra1;
}

/* introduction section with mission vission and values */
#intro {
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 300px;
}

#intro .card-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    height: 100%;
    min-height: 300px;
    width: 100%;
    background: var(--white);
}

#intro .card {
    width: 100%;
    max-width: 400px;
    margin: 3px 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    border-radius: 7px;
}

#intro .card h2 {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 2rem;
    text-align: center;
    margin: 5px;
}

/* photos */
#photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
#photos .image-container {
    background: black;
    overflow: hidden;
}

#photos .image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s;
}

#photos .image-container:hover img {
    scale: 1.05;
}

/* testimonial section */
#testimonials {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #e5000030;
    padding: 20px;
}

#testimonials h1 {
    font-size: 5rem;
    text-transform: capitalize;
}

#testimonials .slider {
    min-height: 300px;
    width: 100%;
    background: transparent;
}

/* copied swiper style */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: transparent;
    height: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.swiper-slide .content {
    width: 89%;
    max-width: 900px;
}

.swiper-slide .content .name h3{
    font-weight: 500;
    font-family: montserrat;
    margin: 10px;
    text-decoration: underline;
    text-transform: capitalize;
}

.swiper-slide .content p {
    margin: 20px;
}

.swiper-slide .content .date {
    font-family: Poppins, sans-serif;
    font-style: italic;
    opacity: 0.7;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aunther-signature {
    font-family: aunther signature;
    font-weight: 500;
}

/* ad-video for promos and any vido content */


/* about us section */
#about {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    background: white;
}

#about h1 {
    font-family: montserrat, sans-serif;
    font-size: 2.5rem;
    text-decoration: underline;
    font-weight: 500;
}

#about .image-container {
    width: 90%;
    height: 200px;
    max-width: 300px;
    background: white;
}

#about .image-container img {
    /* width: 100%; */
    height: 100%;
    object-fit: contain;
    object-position: center;
}

#about p {
    width: 90%;
    max-width: 500px;
    margin: 5px;
}

#about .lm-button {
    background: var(--green);
    color: var(--white);
    margin-top: 10px;
}

/* contact section */
#contact .form-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* margin: 20px auto; */
    background: #00000030;
    padding: 20px;
    /* border-radius: 7px; */
    backdrop-filter: blur(30px);
}

#contact .form-container h3 {
    font-family: montserrat, sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    text-decoration: underline;
}

#contact .form-container form {
    width: 100%;
    display: grid;
    grid-template-columns: auto;
    padding: 20px;
    /* background: black; */
    margin: 10px;
}

#contact .form-container form .field {
    width: 100%;
    max-width: 600px;
    height: 45px;
    /* background: black; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 4px auto;
    border-radius: 4px;
    overflow: hidden;
}

#contact .form-container form .field .sm-field {
    width: 49%;
    /* min-width: 250px; */
    height: 100%;
    background: white;
    border-radius: 4px;
    overflow: hidden;
}

#contact .form-container form .field input {
    width: 100%;
    height: 100%;
    font-family: montserrat, sans-serif;
    padding: 0 5px;
    font-weight: 500;
    outline: none;
    border: none;
}

#contact .form-container form .field button.submitBtn {
    background: var(--green);
    color: white;
    outline: none;
    border: none;
    margin-left: auto;
    height: 100%;
    width: 150px;
    border-radius: 4px;
    font-family: montserrat, sans-serif;
    cursor: pointer;
}

/* footer */
footer {
    min-height: 100px;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

footer .container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
}

footer .container .column {
    width: 100%;
    max-width: 300px;
    margin: 10px;
}

footer .container h2, footer .container h4 {
    margin: 10px 0;
    font-weight: 500;
    text-transform: uppercase;
}

footer .container .column li {
    list-style: none;
    width: 100%;
}

footer .container .column a {
    text-decoration: none;
    color: inherit;
}

footer .container .column .contacts {
    width: 100%;
}

footer .container .column .contacts li {
    margin: 5px 0;
}

footer .container .column .contacts li i {
    padding: 10px;
    border-radius: 7px;
    margin-right: 5px;
    background: #faf9f620;
}

footer .container .column .links li {
    padding: 10px;
    background: #faf9f620;
    margin: 5px 0;
    text-transform: capitalize;
    border-radius: 3px;
}

footer .container .column p {
    margin: 4px 0;
}

.socials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 200px;
    font-size: 1.3rem;
}

.socials i {
    padding: 10px;
    background: #faf9f620;
    backdrop-filter: blur(20px);
    border-radius: 3px;
    margin: auto;
    transition: 0.3s;
}

.socials i:hover {
    background: #faf9f670;
}

/* CSS rules for XS screens */
@media (max-width: 769px) {
    .primary-navigation {
        padding: 0 5px;
        z-index: 999;
        /* position: relative; */
        height: 60px;
    }

    .logo-container {
        height: 60px;
    }

    ul.menu {
        position: absolute;
        top: -1000px;
        width: 100%;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
        transition: 0.3s;
        background: black;
        z-index: 999;
        height: 250px;
    }

    ul.menu .menu-item {
        width: 100%;
        text-align: center;
        margin: 10px auto;
        padding: 5px;
    }

    ul.menu .menu-item a {
        padding: 5px;
    }

    ul.menu .menu-item a:hover::after {
        width: 0;
        display: none;
    }

    .drop-active {
        top: 100% !important;
        opacity: 1;
        z-index: 999;
        right: 0;
        pointer-events: all;
    }

    .menu-toggle {
        width: fit-content;
        height: fit-content;
        background: transparent;
        cursor: pointer;
        transition: all 0.4s ease-in-out;
    }

    .bar {
        width: 30px;
        height: 3px;
        background: black;
        border-radius: 10px;
        display: block;
        margin: 4px auto;
        transition: all ease-in-out 0.4s;
    }

    .toggle-active .bar:nth-child(2) {
        opacity: 0;
    }

    .toggle-active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .toggle-active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    p {
        font-size: 1.05rem;
    }
}