@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

*,*::after,*::before {
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    color: var(--cl--1--);
    margin: 0;
    padding: 0;
}

body {
    --cl--1--: #004721;
    --cl--2--:#ffffff;
    background: var(--cl--2--);

}

html {
  scroll-behavior: smooth;
}


img {
    display: flex;
    width: 100%;
    height: 100%
}

a {
    display: inline-block;
    text-decoration: none;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
}

.row{
    display: flex;
}

.flex{
    flex-wrap: wrap;
    gap: 2rem;
}

.flex>*{
    flex: 1 1 30rem;
}

.container{
    max-width: 90%;
    margin: 0 auto;
}

/*Navigation*/
header{
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 0;
    background-color: var(--cl--2--);
}

.logo img{
    max-width: 160px;
    object-fit: contain;
}

.toggleMenu{
    display: none;
}

nav{
    align-items: center;
    gap: 2rem;
}

nav ul{
    align-items: center;
    gap: 2rem;
    list-style: none;

}

nav ul a{
    position: relative;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
}

nav ul a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    background: var(--cl--1--);
    z-index: -1;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;       
    -o-transition: 0.5s ease-in-out;
}

nav ul a:hover::after {
    height: 2px;
}
/*End Navigation*/

/*Hero Section*/
.hero-content {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

.hero-img {
    grid-area: 1/1/2/2;
}

.hero-img img{
    max-width: 100%;
    margin-left: auto;
}

.hero-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
    

/*End Hero Section*/

/*Gemstones*/
.gemstones, .about-us {
    padding: 4rem 0;
}

.swiper-slide {
    align-items: center;
}

.gemstones .swiper-slide:nth-of-type(even){
    flex-wrap: wrap-reverse;
}

.slider-img img {
    height: 350px;
    object-fit: contain;
}

h2 {
    font-weight: 600;
    font-size: clamp(1.5rem, 5vw, 4rem);
    line-height: 125%;
    text-transform: capitalize;
}

p {
    font-weight: 400;
    font-size: clamp(1rem, 5vw, 1.5rem);
}

.swiper-pagination {
    position: relative;
    inset: 0 !important;
    margin-top: 4rem;
    width: unset !important;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: unset !important;
    -webkit-transform: unset !important;
    -moz-transform: unset !important;
    -ms-transform: unset !important;
    -o-transform: unset !important;
}

.swiper-pagination-bullet {
    opacity: 1;
    background: var(--cl--1--);
    width: 13px;
    height: 13px;

}
/*End Gemstones*/

/*About Us*/
.about-us .flex:nth-of-type(odd) {
    flex-wrap: wrap-reverse;
}

.about-us .flex+.flex {
    padding-top: 4rem;
}

.about-us-content {
    align-self: center;
}

.about-us-img {
    position: relative;
    width: 100%;
}

.about-us-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 80px;
    /* background-image: url(".img/avitasFullSea.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; */
}

.about-us .flex:nth-of-type(2) .about-us-img::after {
    top: 0;
    bottom: auto;
    left: auto;
    right: 0;
}

.about-us-img1 img {

    max-height: 350px;
    object-fit: cover;
    
}

.about-us-img2 img{
    max-height: 400px;
    object-fit: cover;
}
/*End About Us*/

/*Gallery*/
.gallery h2 {
    text-align: center;
    padding-bottom: 2rem;
}

/*End Gallery*/

/*Contact Us*/
.contact-us {
    background: var(--cl--1--);
    padding: 4rem 0;
    margin-top: 4rem;
}

.contact-us :is(h2) {
    color: var(--cl--2--);
    text-transform: capitalize;
    text-align: center;
    font-weight: 700;
    font-size: clamp(1rem, 5vw, 4rem);
    line-height: 125%;
    text-transform: capitalize;
}

.contact-us :is(p) {
    color: var(--cl--2--);
    margin-top: 2rem;
    text-align: left;
    font-size: clamp(1rem, 5vw, 1.5rem);
}

.map-container iframe {
    position: realative;
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 5px;
    margin-top: 30px;
}

.contact-us .contact-us-content {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
}

.contact-us-content img {
    position: relative;
    
    
}

/*End Contact Us*/

/*Footer*/
footer {
    position: relative;
    background: rgba(255, 255, 255, 0.80);
}

footer::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url(./img/Footer.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.footer {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 4rem 0;;
}

.footer-content{
    max-width: 300px;
}

.footer-content p {
    font-size: 1rem;
}

.media-links {
    align-items: center;
    gap: 2rem;
}

.media-links a {
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    fill: var(--cl--2--);
}

.media-links a:hover {
    background: transparent;
    fill: var(--cl--2--);
}

h4 {
    font-weight: 500;
    font-size: clamp(1rem, 5vw, 1.5rem);
    text-transform: uppercase;
}

footer ul {
    list-style: none;
    padding-top: 1.5rem;
}

footer li+li {
    padding-top: 0.5rem;
}

footer ul a {
    font-size: 1.125rem;
    text-transform: capitalize;
}

footer ul a:hover {
    color: rgba(17, 76, 36, 0.563);
    background: transparent;
}

.copy-right {
    background: var(--cl--1--);
}

.copy-right p{
    font-size: 0.95rem;
    color: var(--cl--2--);
    text-align: center;
    padding: 1rem 0;
}
/*End Footer*/

/* Page Button*/
.page-btn {
    cursor: pointer;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: capitalize;
    color: var(--cl--2--);
    background: var(--cl--1--);
    border: 1px solid var(--cl--1--);
    padding: 0.4rem 1.5rem;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    margin-top: 1.5rem;
}

.page-btn:hover {
    color: var(--cl--1--);
    background: transparent;

}
/* End Page Button*/

/*Media*/
@media (min-width: 1400px){
    .container{
        max-width: 1300px;
    }
}

@media (max-width:800px ) {
    .toggleMenu{
        display: flex;
        cursor: pointer;
        background-color: transparent;
        background-image: url(./img/menu-3-line.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 30px;
        width: 30px;
        height: 30px;
        border: 0;
        z-index: 1000;
        transition: background-size 0.5s ease-in-out;
        -webkit-transition: background-size 0.5s ease-in-out;
        -moz-transition: background-size 0.5s ease-in-out;
        -ms-transition: background-size 0.5s ease-in-out;
        -o-transition: background-size 0.5s ease-in-out;

}
    

    .toggleMenu.active{
        position: fixed;
        right: 5%;
        background-size: 25px;
    }

    nav {
        position: absolute;
        inset: 0;
        justify-content: center;
        flex-direction: column;
        min-height: 0;
        opacity: 0;
        transform: scale(0);
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transition: opacity 0.5s ease-in-out;
        -webkit-transition: opacity 0.5s ease-in-out;
        -moz-transition: opacity 0.5s ease-in-out;
        -ms-transition: opacity 0.5s ease-in-out;
        -o-transition: opacity 0.5s ease-in-out;
    }

    nav.active {
        position: fixed;
        min-height: 100%;
        opacity: 1;
        background: var(--cl--2--);
        z-index: 999;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);

    }

    nav ul{
        flex-direction: column;
    }

/*End Media*/