@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --black:#000;
    --white:#fff;
    --main-color: #06A7A3;
}

*{
    font-family: "Montserrat", sans-serif;
    margin: 0;padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none !important;
}

/* *::selection{
    color: var(--bgcolor);
} */
*::-webkit-scrollbar{
    height: .5rem;
    width: .5rem;
}

*::-webkit-scrollbar-track{
    background-color: transparent;
}

*::-webkit-scrollbar-thumb{
    background-color: var(--main-color);
    border-radius: 5rem;
}

html{
    font-size: 15px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
}
ul, li{
    list-style: none;
    padding: 0;
}

body{
    color: var(--white);
    background-color: #000 !important;
}
p{
    font-family: "Poppins", serif;
    color: #fff;
    margin: 0;
}
a:hover{
    color: var(--main-color);
}
.transition{
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.main-btn{
    font-family: "Poppins", serif;
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    background: var(--main-color);
    color: #fff;
    padding: 13px 25px;
    border-radius: 5px;
    display: inline-block;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    border: 1px solid var(--main-color);
    position: relative;
}
.main-btn:hover{
    padding-left: 60px;
    background: var(--black);
}
.main-btn:before{
    position: absolute;
    content: '';
    top: 50%;
    left: 20px;
    width: 0;
    height: 1px;
    background-color: #fff;
    -moz-transition: .2s linear;
    -o-transition: .2s linear;
    -ms-transition: .2s linear;
    transition: .2s linear;
}
.main-btn:hover:before{
    width: 30px;
}

/* -------- solial -------- */


.social-media{
    position: fixed;
    top: 40%;
    left: 5%;
    z-index: 9999;
}
.social-media ol::before{
    position: absolute;
    content: "";
    top: -55px;
    left: 5px;
    width: 1px;
    height: 46px;
    background-color: #fff;
}
.social-media ol::after{
    position: absolute;
    content: "";
    bottom: -55px;
    left: 8px;
    width: 1px;
    height: 46px;
    background-color: #fff;
}
.social-media a{
    color: #fff;
    font-size: 18px;
    padding: 0.5rem 0;
    display: block;
}
.social-media a:hover{
    color: var(--main-color);
}

.con-icon{
    padding-left: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.con-icon a{
    padding: .5rem;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    color: #fff;
    background: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.con-icon a:hover{
    color: #000;
    background-color: var(--main-color);
}




.call-btn{
    position: fixed;
    bottom: 5%;
    right: 5%;
    z-index: 999;
}
.call-btn a{
    color:#fff;
    font-size: 26px;
    width: 60px;
    height: 60px;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid var(--main-color);
}
.call-btn a:hover{
    background-color: #000;
    color: var(--main-color);
}

/* -------- solial -------- */




.mini-head h1{
    font-family: "Poppins", serif;
    color: rgba(255, 255, 255, 0.2);
    font-size: 180px;
    font-weight: 600;
    text-transform: uppercase;
}
.sub-head{
    font-family: "Poppins", serif;
    color: var(--main-color);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.sub-head i{
    color: #fff;
    font-size: 14px;
    padding-right: .7rem;
}
.main-head{
    font-size: 55px;
    color: #fff;
    text-transform: capitalize;
}




/* ---------- header start ---------- */
header{
    background-color: rgba(0, 0, 0, 0.8);
    transition: all .5s ease-in-out;
    position: fixed;
    top: -0; left: 0; right: 0;
    z-index: 10000;
    padding-top: 1rem;
}
.nav-up {
    top: -120px;
}
.head-contact{
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    padding: 1rem 0 0;
}
.head-contact a{
    color: #fff;
    font-family: "Poppins", serif;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .nav-link{
    font-family: "Poppins", serif;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-transform: capitalize;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.nav-link:hover{
    color: var(--main-color) !important;
}
.navbar-brand{
    display: block;
    margin-top: -86px;
    padding: 4rem 1rem 2rem;
    background-color: #ffffff;
    border-radius: 0 0 20px 20px;
}
.logo{
    max-width: 200px;
    width: 100%;
    border-radius: 5px;
}

/* ---------- header end ---------- */



/* ---------- main ---------- */


/* ---------- slider start ---------- */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.xp-wrapper-slider {
    padding-left: 70px;
    margin-right: -700px;
}
.fix{
    overflow: hidden;
}

.swiper-slide {
    width: 100%;
}
.slider-btn{
    position: absolute;
    bottom: 0;
    left: 70px;
    z-index: 1;
    /* border-top: 1px solid #fff; */
    /* border-right: 1px solid #fff; */
}
.slider-btn button{
    width: 82px;
    font-size: 20px;
    height: 60px;
    line-height: 60px;
    background: var(--black);
}
.slider-btn button i{
    color: #fff;
}.slider-btn button:last-child{
    margin-left: -5px;
}
/* ---------- slider end ---------- */

.home{
    padding: 120px 0 8rem;
    overflow-x: hidden;
}

.slide-content{
    padding-top: 5rem;
    padding-left: 20%;
}
.text-stock{
    position: absolute;
    top: 25px;
    left: 20%;
    z-index: 0;
}
.text-stock .text{
    font-size: 180px;
    font-weight: 700;
    margin: 0;
    color: transparent;
    -webkit-text-stroke: 3px #2C2C2C;
    text-transform: uppercase;
    font-family: "Poppins", serif;
}
.bg-curve{
    position: absolute;
    top: 15%;
    right: -50px;
}
.slide-content .head-1{
    font-size: 46px;
    font-weight: 400;
    margin-bottom: 2rem;
}
.slide-content .head-1 span{
    color: var(--main-color);
    font-weight: 700;
}
.slide-content .head-2{
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.slide-content .title{
    max-width: 500px;
    width: 100%;
    margin-bottom: 2rem;
}



.about{
    padding-bottom: 8rem;
    
}
.about-hi{
    min-height: 80vh;
    display: flex;
    align-items: flex-start;
}
.over-scroll{
    position: sticky;
    top: 20%;
}
.about .mini-head{
    position: absolute;
    top: 0;
    left: 0%;
    z-index: -1;
}
.about .sub-head{
    display: block;
    margin-top: 4rem;
}
.about .title, .services .title{
    font-size: 16px;
    text-align: justify;
    margin-top: 2rem;
}


.services{
    padding-top: 5rem;
    padding-bottom: 8rem ;
}

.services .mini-head{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.services .sub-head{
    display: block;
    margin-top: 4rem;
}
.services .box{
    border-radius: 15px;
    overflow: hidden;
}
.services .box img{
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top center;
}
.services .box .content{
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(6, 167, 163, 1));
    display: flex;
    align-items: end;
    padding: 2rem 1rem;
}
.services .box .content h4{
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 500;
}
.services .ser-slider{
    margin-top: 5rem;
}
.services .ser-slider .box img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top center;
}
.xp-services-two{
    margin-top: 2rem;
}

.gallery{
    padding:3rem 0;
}

.gallery .mini-head{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.gallery .mini-head h1{
    line-height: 100px;
}
.gallery .tab{
    padding: 1rem 0 2rem;
    text-align: end;
}
.gallery .tab .tablinks{
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    width: 100px;
    margin-right: 1rem;
    margin-bottom: 1rem;
    font-size: 16px;
    text-transform: capitalize;
}
.gallery .tab .tablinks:hover{
    color: var(--main-color);
    background-color: #000;
    border: 1px solid var(--main-color);
}







.media-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
  
.media-item img {
    cursor: pointer;
    width: 100%;
    border-radius: 20px;
}
  
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
  
.popup.hidden {
    display: none;
}
  
.popup-content {
    background: transparent;
    padding: 20px;
    position: relative;
    width: 100%;
    max-width: 800px;
    text-align: center;
}
  
.close-btn {
    position: absolute;
    top: -30px;
    right: -1px;
    cursor: pointer;
    font-size: 55px;
    line-height: 0;
}
  
.media-display.hidden {
    display: none;
}
  
.filter-controls label {
    display: block;
    margin: 10px 0;
}
.popup-content img{
    width: 100%;
}
#popup-video{
    max-height: 70vh;
}








footer{
    padding: 8rem 0 2rem;
}
footer .mini-head{
    position: absolute;
    top: -25px;
    left: 0;
    z-index: -1;
}
footer .mini-head h1{
    line-height: 100px;
}
footer .main-head{
    margin-bottom: 5rem;
}
footer h2{
    font-size: 55px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 3rem;
}
.contact-box{
    background-color: #222222;
    padding: 1.3rem 1rem;
    border-radius: 15px;
}
.contact-box img{
    width: 100%;
    border-radius: 15px;
}
.contact-box h3{
    font-size: 26px;
    text-transform: capitalize;
    margin-top: 2rem;
    padding-left: 1rem;
}
.contact-box ul{
    padding: 0rem 1rem 0;
}
.contact-box li{
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-top: 2rem;
    font-size: 16px;
    color: #F2F2F2;
}
.contact-box li i{
    font-size: 16px;
    width: 20px;
}
.contact-box li span{
    font-size: 20px;
    font-weight: 500;
    font-family: "Poppins", serif;
    text-transform: capitalize;
    color: #F2F2F2;
}
.contact-box .content span{
    margin-bottom: 1rem;
}
.contact-box .content a{
    color: #F2F2F2;
    font-size: 16px;
    margin-top: 0.6rem;
    display: block;
}
.contact-box .content a:hover{
    color: var(--main-color);
}
.map iframe{
    height: 420px;
    margin-top: 2rem;
    border-radius: 20px;
}

.copyright{
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--main-color);
    padding-left: 1rem;
    padding-right: 1rem;
}
.copyright p, .copyright a{
    font-size: 14px;
    color: #fff;
}
.copyright a:hover{
    color: var(--main-color);
}














/* ---------- main ---------- */


