/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&family=Poppins:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&family=Poppins:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Lobster&family=Poppins:wght@200;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

 

/* LAYOUT
================================================== */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

:root{
    --primary-color: #3E4095;
}

/* a 
================================================== */
a{
    text-decoration: none;
    font-size: 0.9rem;
    color: #000;
}
p{
    font-size: 0.9rem;
    line-height: 1.5;
}
.container{
    padding: 0 100px;
}
.container-fluid{
    padding: 0 20px;
}

@media only screen and (max-width: 992px) {
    .container{
        padding: 0 20px!important;
    }
}

/* Button Style */

.btn{
    outline: none;
    padding: 10px 25px;
    font-size: 0.9rem;
    color: white;
    border: none;
    border-radius: 5px;
    background: linear-gradient(to right, rgb(243, 62, 62), rgb(59, 114, 218));
    cursor: pointer;
    transition: 0.3s;
}
.btn:hover{
   background: linear-gradient(to right, rgb(59, 114, 218), rgb(243, 62, 62));
}


/* header 
================================================== */
header{
    position: relative;
}
header.header nav{  
    position: fixed;
    left: 0;
    top: 0;  
    height: 90px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999999999;
    background-color: #3E4095;
    box-shadow: 0 0px 3px rgba(0, 0, 0, 0.5), 0 0px 4px rgba(0, 0, 0, 0.08);
}
header.header nav.navClass{
    animation: 1s anim forwards;
}

@keyframes anim {
    0%{
        top: -1000px;
    }
    100%{
        top: 0;
    }
}
.header.header .left-sde{
    display: flex;
    align-items: center;
}
.togggg{
    display: none;
}
.header.header .left-sde i{
    font-size: 1.5rem;
    cursor: pointer;
    margin-right: 15px;
    display: none;
    color: #fff;
}
header.header nav img{
    height: 55px;
}
header.header nav ul{
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
header.header nav ul a{
    margin-right: 15px;
}
header.header nav ul li{
    list-style: none;
    margin-top: 5px;
    color: #fff;
    font-size: 0.9rem;
    transition: 0.3s ease-in-out;
    padding: 7px;
    border-radius: 20px;
}
header.header nav ul li:hover,
header.header nav ul .active{
    color: dodgerblue;
}
header.header .right{
    position: relative;
    display: flex;
    align-items: center;
}
header.header .right a{
    display: inline-block;
    margin-left: 20px;
    color: #fff;
}
.header.header nav ul .del{
    display: none;
}

@media only screen and (max-width: 992px) {
    .header.header nav ul{
        position: absolute;
        left: -10000px;
        top: 100px;
        width: 300px;
        height: fit-content;
        max-height: 350px;
        overflow-y: auto;
        display: block;
        background-color: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.08);
        z-index: 999999999;
        padding: 0 5px;
        transition: 0.3s;
    }
    .header.header nav ul.activeNav{
        left: 20px;
        transition: 0.3s;
    }
    .header.header nav ul li{
        padding: 15px;
        border-bottom: 1px solid rgba(204, 204, 204, 0.308);
        border-radius: 0;
        margin: 0!important;
        color: #000;
    }
    header.header nav ul li:hover{
        background-color: transparent;
    }
    header.header nav ul a{
        margin: 0;
    }
    header.header nav ul a:last-child li{
        border-bottom: none;
    }
    .togggg{
        display: block;
    }
    .header.header .left-sde #openTo{
        display: block;
        font-size: 1.7rem;
    }
    .header.header .left-sde #closeTo{
        display: none;
        font-size: 1.7rem;
    }
}

@media only screen and (max-width: 768px){
    .header.header nav ul{
        display: block;
        position: fixed;
        left: -10000px;
        top: 90px;
        width: 75%;
        border-radius: 0;
        height: 100vh;
        max-height: 100vh;
        transition: 0.3s;
        overflow-y: auto;
    }
    .header.header nav ul.activeNav{
        left: 0;
    }    
    header.header nav img{
        height: 50px;
    }
}
@media only screen and (max-width: 578px){    
    .header.header nav ul .del{
        display: block;
    }
    .header.header nav ul .btn.del{
        display: inline-block;
        color: #fff;
        margin: 10px!important;
    }
    header.header .right{
        display: none;
    }
    .header.header .left-sde{
        justify-content: space-between;
        width: 100%;
    }
}

/* hero 
================================================== */
.hero_section{
    margin-top: 90px;
    padding: 80px 0;
    display: flex;
    align-items: center;
    color: #fff;
    background: #01011d;
}
.hero_section .container{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px 10px;
    overflow: hidden;
}
.hero_section .container .cont img{
    width: 100%;
    object-fit: cover;
    animation: mov 7s infinite linear;
}
@keyframes mov{
    0% {transform: rotate(0);}
    100% {transform: rotate(360deg);}
}
.hero_section .hero_h1{
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
}
.hero_section .hero_p{
    margin: 30px 0;
    max-width: 450px;
    text-align: justify;
}
@media only screen and (max-width: 992px){    
    .hero_section .hero_h1{
        font-size: 2rem;
        max-width: 100%;
    }
}
@media only screen and (max-width: 768px) {
    .hero_section{
        justify-content: center;
        text-align: center;
    }
    .hero_section .hero_p{
        max-width: 100%;
        text-align: center;
    }
    .hero_section .container{
        grid-template-columns: 1fr;
    }
    .cont.conty-1{
        order: 2;
    }
    .cont.conty-2{
        order: 1;
    }
}

/* container-one 
================================================== */
.container-one{
    padding: 100px 0;
    text-align: center;
}
.container-one .h2{
    max-width: 700px;
    font-size: 3rem;
    font-weight: 700;
    margin: auto;
    line-height: 1.5;
    font-family: "Open Sans", sans-serif;
}
.container-one .pp{
    font-size: 1rem;
    max-width: 500px;
    margin: 20px auto 30px auto;
}
.container-one .fle-col{
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);    
    gap: 60px 30px;
}
.container-one .fle-col-1{
    border: 1px solid #ccc;
    padding: 40px 20px 20px 20px;
    position: relative;
    background-color: #fff;
    transition: 0.3s;
    border-radius: 30px;
}
.container-one .fle-col-1:hover{
    border: none;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.08);
    transform: translateY(-10px);
}
.container-one .fle-col-1 h2{
    position: absolute;
    left: 50%;
    top: 0;
    height: 60px;
    width: 60px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(to right, red, yellow);
    color: #fff;
    
}
.container-one .fle-col-1 h3{
    font-size: 1.2rem;
    margin: 15px 0;
}
.container-one .fle-col-1 p{
    font-size: 0.8rem;
    font-weight: 350;
    font-family: "Open Sans", sans-serif;
}

@media only screen and (max-width: 992px) {
    .container-one .h2{
        font-size: 2rem;
    }
    .container-one .fle-col{
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 768px) {
    .container-one .fle-col{
        grid-template-columns: subgrid;
    }
}


/* container-two 
================================================== */
.container-two{
    padding: 100px 0;
    background-color: #fafafa;

}
.container-two h1{
    font-size: 3rem;
    line-height: 1.5;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
}
.container-two .pp{
    margin: 20px 0 35px 0;
}
.container-two .content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.container-two .cont-1{
    position: relative;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
}
.container-two .cont-1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.container-two .cont-1:hover img{
    transform: scale(1.2);
}
.container-two .cont-1 .txt{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    opacity: 0;    
    transition: 0.3s;
}
.container-two .cont-1:hover  .txt{
    opacity: 1;
}
.container-two .cont-1 .txt h2{
    margin-bottom: 10px;
}

@media only screen and (max-width: 992px){    
    .container-two h1{
        font-size: 2rem;
        max-width: 100%;
    }
    .container-two .content{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 768px){  
    .container-two .content{
        grid-template-columns: subgrid;
    }
    .container-two .cont-1{
        flex-direction: column;
    }
    .container-two .cont-1 .txt{
        opacity: 1;
    }
}

/* container-three 
================================================== */
.container-three{
    padding: 100px 0;

}
.container-three h1{
    font-size: 3rem;
    line-height: 1.5;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
}
.container-three .pp{
    margin: 20px 0 35px 0;
}
.container-three .card{
    background-color: #fff;
    border: 2px solid #ebeaea;
    border-radius: 15px;
    box-shadow: 0 0px 3px rgba(0, 0, 0, 0.08);
    padding: 20px;
}
.container-three .card  p{
    font-size: 0.9rem;
    line-height: 2;
}
.container-three .card h3{
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 15px;
}
.container-three .card h3 span{
    font-weight: 600;
}
.container-three .swiper-button-next,
.container-three .swiper-button-prev {
  background-color: var(--bg-color-light-gray);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.5); /* Button background color */
  border-radius: 50%; /* Make it circular */
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
}
.container-three .swiper:hover .swiper-button-next,
.container-three .swiper:hover .swiper-button-prev {
  opacity: 1;
}

.container-three .swiper-button-next::after,
.container-three .swiper-button-prev::after {
  font-size: 1.2rem !important;
  color: #fff;
}

@media only screen and (max-width: 992px) {
    .container-three h1{
        font-size: 2rem;
    }
}

/* container-four 
================================================== */
.container-four{
    padding: 100px 0;
    background-color: #fafafa;

}
.container-four h1{
    font-size: 3rem;
    line-height: 1.5;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
}
.container-four details{
    margin: auto;
    margin-top: 20px;
    max-width: 900px;
}
.container-four details span{
    font-size: 1.2rem;
    cursor: pointer;
    padding: 15px 30px;
    border: 1px solid #ccc;
    display: inline-block;
    width: 100%;
    transform: translateY(-42px) translateX(-10px);
}
.container-four p{
    font-size: 1rem;    
    transform: translateY(-20px);

}

@media only screen and (max-width: 992px) {
    .container-four h1{
        font-size: 2rem;
    }
}


/* products */
.prod{
    margin-top: 120px;
}
.product-top {
    position: relative;
}
.product-top img{
    width: 100%;
    object-fit: cover;
}
.products select{
    display: block;
    width: 200px;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 5px;
    outline: none;
    background-color: transparent;
}
.products-sec{
    margin: 50px 0;
}
.products-sec .to-tp{
    display: flex;
    align-items: center;
    background-color: #3E4095;
    color: #fff;
    padding: 15px 25px;
    box-shadow: 0 0px 3px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
}
.products-sec .to-tp img{
    height: 40px;
    margin-right: 10px;
}
.flex-prod{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}
.flex-prod .product-inner{
    position: relative;
    padding: 25px;
    background-color: #01011d;
    color: #fff;
    border-radius: 20px;
    transition: 0.3s;
    overflow: hidden;
}
.flex-prod .product-inner::before{
    content: "";
    position: absolute;
    top: 0;
    right: 20px;
    height: 150%;
    width: 15px;
    background-color: rgba(59, 115, 218, 0.623);
    transform: rotate(15deg);
    z-index: 2;
}
.flex-prod .product-inner::after{
    content: "";
    position: absolute;
    top: 0;
    right: 20px;
    height: 150%;
    width: 15px;
    background-color: rgba(243, 62, 62, 0.692);
    transform: rotate(5deg);
    z-index: 1;
}
.flex-prod .product-inner:hover{
    transform: translateY(-10px);
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}
.flex-prod .product-inner .upp{
    display: flex;
    align-items: center;
}
.flex-prod .product-inner .upp img{
    height: 30px;
    margin-right: 10px;
}
.flex-prod .product-inner p{
    margin-top: 20px;
}
.flex-prod .product-inner p span{
    font-weight: 500;
    margin-left: 10px;
}
.flex-prod .product-inner a{
    display: inline-block;
    margin-top: 15px;
}

@media only screen and (max-width: 768px) {
    .flex-prod{
        grid-template-columns: subgrid;
    }
}




/* .footer
================================================== */
footer{    
    background-color: #222222;
    color: #fff;
}
.footer{
    padding: 60px 0 0 0;
}
.footer .cont-foot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem 2rem;
}
.footer p{
    font-size: 0.9rem;
    line-height: 1.5;
}
.footer li{
    list-style: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: 0.3s;
}
.footer li:hover{
    padding-left: 10px;
}
.footer a{
    color: #e7e7e7e7;
    transition: 0.3s;
}
.footer a:hover{
    color: #3E4095;
}
.footer .logo img{
    height: 60px;
    margin-bottom: 20px;
}
.footer h3{
    margin-bottom: 20px;
}
.footer .copy{
    text-align: center;
    margin-top: 50px;
    padding: 20px 0!important;
    border-top: 1px solid rgba(68, 68, 68, 0.74);
}
.footer .copy p{
    font-size: 0.8rem;
    letter-spacing: 2px;
}

@media only screen and (max-width: 768px) {
    .footer .cont-foot{
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 578px) {
    .footer .cont-foot{
        grid-template-columns: subgrid;
    }
}