@import url('https://fonts.googleapis.com/css2?family=Inter:wght@305&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
::selection{
    background:#604058;
    color: white;
}
.body-bg{
    background-color:#f0f0f0;
    overflow-x: hidden;
}
.container{
    width: 1200px;
    margin: 0 auto;
}
.header-bg{
    background-color: #604058;
    padding:10px 0px;
    text-align:right;
    z-index:2;
}
.header-bg a{
    color:white;
    text-decoration:none;
    font-weight: normal;
    text-transform: lowercase;
    margin-right:10px;
}
.navbarBg{
    background-color:#e7e6e6;
    transition:0.5s;
    z-index:2;
}
header{
    display: flex;
    justify-content:space-between;
    align-items: start;
    position:relative;
    z-index: 2;
    background:transparent;
    padding:5px 0px;
}
.logo{
    width: 300px;
    height: auto;
}
.logo span{
    color: #714b67;
}
.logo a{
    color:#94969a;
    text-decoration: none;
    font-size: 36px;
    font-weight: bold;
}
.nav{
    width: 700px;
    height: auto;
    padding: 18px 0px;
    display: flex;
    justify-content:end;
}
.nav ul{
    margin: 0;
    padding: 0;
}
.nav ul li{
    list-style: none;
    display: inline;
    padding: 20px 20px;
}
.nav ul li a{
    color:#1a2236;
    font-size: 15px;
    font-family:"Inter", sans-serif;
    font-weight: bold;
    text-decoration: none;
    transition:0.4s;
}
.nav ul li a:hover{
    color:#734b68;
}
  .navline-1{
    width: 100%;
    height: 3px;
    background-color:black;
    transition: .5s;
    margin-bottom: 5px;
  }
  .navline-2{
    width: 100%;
    height: 3px;
    background-color:black;
    transition: .1s;
    margin-bottom: 5px;
  }
  .navline-3{
    width: 100%;
    height: 3px;
    background-color:black;
    transition: .5s;
  }
  .line-active-1{
    width: 100%;
    height: 3px;
    background-color:black;
    transform: rotate(45deg);
    transform-origin: left top;
  }
  .line-active-2{
    width: 100%;
    height: 7px;
    opacity: 0;
  }
  .line-active-3{
    width: 100%;
    height: 3px;
    background-color:black;
    transform: rotate(-45deg);
    transform-origin: left;
  }
.side-dropdown{
    width:100%;
    position:absolute;
    top:100px;
    left:0;
    text-align:center;
    transition:0.2s;
    background-color:#714b67;
    padding:15px 0px;
    border-radius: 0 0 6px 6px;
    visibility: hidden;
    opacity: 0;
    z-index:1;
}
.side-dropdown ul{
    margin: 0;
    padding: 0;
}
.side-dropdown ul li{
    list-style: none;
    display:block;
    padding:8px 0px;    
}
.side-dropdown ul li a{
    color:white;
    font-size: 17px;
    font-family:"Inter", sans-serif;
    font-weight: bold;
    text-decoration: none;
    transition:0.4s;
}
.side-dropdown ul li:hover a{
    color:#94969a;
}
.side-dropdown.active{
    position:absolute;
    top:65px;
    left:0px;
    visibility: visible;
    opacity: 1;
}
.DropBtn{
    cursor: pointer;
}
.DropBtn-2{
    cursor: pointer;
}
.main-section{
    width: 100%;
    height:570px;
    display: flex;
    justify-content: center;
    align-items: center;
    background:url(images/Untitled-2.png);
    background-repeat: no-repeat;
    background-size:contain;
    background-position:center;
}
.main-content{
    width: 500px;
    height: fit-content;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.main-content h1{
    color: #151c2d;
    font-family: "inter",sans-serif;
    font-size: 40px;
    font-weight: bold;
}
.main-content hr{
    border:3px solid #56374d;
    opacity: 1;
    border-radius: 5px;
    width: 100px;
    margin: 0px;
}
.main-content p{
    color: #000;
    font-size:17px;
    padding: 20px 0px;
    text-align: center;
}
.main-content button{
    border: none;
    outline: none;
    font-size: 20px;
    background-color: #604058;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
}
.main-content button:hover{
    background-color: #56374d;
}
.MainBox{
    width: 100%;
    display:flex;
    justify-content:start;
    align-items: center;
}
.MainBox button{
    outline: none;
    border:none;
    font-size: 18px;
    padding:16px 20px;
    float:left;
    margin-left: 10px;
    background-color:#714b67;
    transition: 0.4s;
    border-radius: 8px;
    position:relative;
    overflow: hidden;
    font-weight: bold;
    color:white;
    margin-top:30px;
}
.MainBox button::before{
    content: '';
    position:absolute;
    inset: 0;
    z-index: -1;
    background:#56374d;
    clip-path: circle(100% at 50% 50%);
    transition: 0.4s;
  }
  .MainBox button:hover{
    color:#604058;
    background-color:rgb(212, 212, 212);
  }
  .MainBox button:hover::before{
    z-index: 1;
    clip-path: circle(0% at 50% 50%);
  }
.megamenu-1{
    width: 100%;
    height: auto;
    visibility: hidden;
    position: absolute;
    top:0;
    left: 0;
    transform: translateY(100px);
    transition: 0.5s;
    z-index:-1;
    opacity: 0;
}
.DropBtn:hover .megamenu-1{
    background:#f1f1f1;
    width: 100%;
    height: auto;
    visibility: visible;
    position: absolute;
    top:0;
    left:0;
    transform: translateY(70px);
    z-index:-2;
    padding-top:0px;
    opacity: 1;
}
.megamenu-1 hr{
    margin-top:0px;
}
.menubox{
    width:100%;
    height:auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px 5px 30px 5px;
}
.menubox .menu-box-1{
    width: 280px;
    height:auto;
    text-align:left;
}
.menubox .menu-box-1 h4{
    color:#604058;
    font-size: 18px;
    font-weight: 500;
    line-height: 40px;
    border-bottom: 1px solid gray;
}
.menubox .menu-box-1 ul{
    margin: 0;
    padding: 0;
}
.menubox .menu-box-1 ul li{
    list-style: none;
    display: block;
    padding: 3px 0px;
}
.menubox .menu-box-1 ul li a{
    color: #151c2d;
    font-size: 15px;
    text-decoration: none;
    font-weight:600;
    font-family:"inter",sans-serif;
    font-style:normal;
}
.menubox .menu-box-1 ul li a:hover{
    color:#714b67;
}
.moving-line{
    background-color: #865c7b;
    padding:10px 0px;
    margin:20px 0px;
    z-index:-2;
}
.moving-line i{
    margin:0px 15px;
}
.moving-line marquee {
    color:white;
    font-size: 26px;
}
.about-section{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:50px;
}
.about-section .about-left .about-img{
    width:550px;
    height:550px;
    position:relative;
    border-radius: 50%;
    background-image: url(images/pexels-fauxels-3184357.jpg);
    background-repeat: no-repeat;
    background-position:right;
    background-size:cover;
    
}
.about-section .about-left img{
    width:200px;
    height: 200px;
    border-radius: 50%;
    position: absolute;
    bottom:0px;
    right:10px;
    object-fit:cover;
}
.about-section .about-left .img-effect{
    width:400px;
    height: 400px;
    border-radius: 50%;
    position: absolute;
    top:-10px;
    left:-30px;
    background-image: url(images/about-img.jpg);
    background-repeat: no-repeat;
    background-position:left;
    background-size:cover;
    z-index: -1;
}
.about-section .about-right h6{
    color: #1a2236;
    font-size: 18px;
    font-family:"inter",sans-serif;
    padding-bottom:6px;
    font-weight: bold;
}
.about-section .about-right h1{
    color: #1a2236;
    font-size:55px;
    font-family:"inter",sans-serif;
    font-weight: bold;
    line-height:60px;
}
.about-section .about-right p{
    color:#505050;
    font-size: 18px;
    text-align: justify;
    padding:10px 0px;
    font-family:"inter",sans-serif;
    font-weight:600;
}
.about-section .about-right h3{
    color:#714b67;
    font-size: 27px;
    font-family:"inter",sans-serif;
    font-weight: bold;
    text-align: left;
    padding-bottom:10px;
}
.about-section .about-right span{
    display: block;
    color: #1a2236;
    font-family:"inter",sans-serif;
    font-weight:600;
    line-height:30px;
    font-size: 18px;
}
.about-section .about-right span i{
    color:#714b67;
    padding-right:6px;
}
.about-section .about-right button{
    background:#714b67;
    padding:12px 15px;
    text-align: center;
    outline: none;
    border:none;
    border-radius: 5px;
    margin:30px 0px;
    transition: 0.4s;
}
.about-section .about-right button a{
    text-decoration: none;
    font-size: 20px;
    color:white;
}
.about-section .about-right button:hover{
    background:#604058;
}
.service-top{
    width:100%;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.service-top h2{
    color:#111827;
    font-size:55px;
    font-family: "inter",sans-serif;
    font-weight: bold;
    margin-bottom:20px;
}
.service-top h2 span{
    background-image: url(images/red_highlight_bold_05.svg);
    background-position:left;
    background-repeat: no-repeat;
    background-size:contain;
}
.service-top p{
    width: 70%;
    font-size:20px;
    color:#3e3e3e;
    line-height:25px;
    font-family:sans-serif;
}
.background{
    background-image: url(images/home2-bg-contacts.jpg);
    background-position:center;
    background-size: cover;
    margin:50px 0px;
    opacity:0.6;
  }
  .content{
    display:flex;
    justify-content: start;
    align-items: start;
  }
  .passage2{
    line-height: 25px;
    font-size: 18px;
    color:#c2c2c2;
    padding-top: 5px;
  }
  .heading10{
    font-weight: bold;
    color:white;
    letter-spacing: 1px;
    transition: 0.5s;
    cursor: pointer;
  }
  .number{
    font-size: 70px;
    color: #7d8392;
    font-weight:bold;
    opacity: 0.4;
  }
  .image{
    width:80px ;
    height:auto;
    margin-left:10px;
  }    
.choose-top h2{
    color:#111827;
    font-size:55px;
    font-family: "inter",sans-serif;
    font-weight: bold;
    margin-bottom:25px;
}
.choose-top h2 span{
    background-image: url(images/green_highlight_03.svg);
    background-position:bottom;
    background-repeat: no-repeat;
    background-size:contain;
}  
.choose-top p{
    color:#3e3e3e;
    font-size:21px;
    line-height:10px;
    font-family:sans-serif;
}
.content-box{
    border-radius:8px;
    padding:25px;
    background:#fff;
    box-shadow:0 24px 48px -12px rgba(0,0,0,.11);
    transition:0.3s;
    outline:1px solid #714b67;
}
.content-box:hover h2{
    color:#604058;
}
.content-box:hover{
    border-bottom:1px solid #714b67;
    box-shadow:15px 20px 48px -12px rgba(0,0,0,.11);
    transform: scale(1.01);
    outline:none;
}
.content-box img{
    width:70px;
    background:rgb(193, 193, 193);
    border-radius:5px;
    padding:10px 15px;
}
.content-box h2 a{
    color:#111827;
    font-size: 24px;
    text-align:left;
    font-family:"inter",sans-serif;
    padding-top:20px;
    font-weight: bold;
    text-decoration: none;
}
.content-box:hover h2 a{
    color:#604058;
}
.content-box p{
    color:gray;
    font-size:18px;
    text-align:left;
    font-family:"inter",sans-serif;
    padding-top:0px;
}
.content-box a{
    text-decoration:none;
    color:#604058;
    font-size:18px;
}
.content-box i{
    padding-top:15x;
}
.blog-post{
    background-color:white;
    padding: 25px;
    transition: all 0.35s ease;
    box-shadow:0 24px 48px -12px rgba(0,0,0,.11);
    border-radius:8px;
}
.blog-post:hover {
    box-shadow: none;
    transform: translateY(5px);
}
.blog-post img{
    width: 400px;
    height:270px;
    object-fit: cover;
}
.blog h6{
    color:#714b67;
    font-size:20px;
}
.blog h1{
    color:#111827;
    font-size:55px;
    font-family: "inter",sans-serif;
    font-weight: bold;
    margin-bottom:20px;
}
.blog h1 span{
    background-image: url(images/red_highlight_bold_05.svg);
    background-position:left;
    background-repeat: no-repeat;
    background-size:contain;
}
.blog-post h5 a{
    color:black;
    font-size: 20px;
    text-decoration: none;
}
.blog-post h5 a:hover{
    color:#714b67;
}
.blog-post a{
    text-decoration:none;
    color:#604058;
}
.blog-post a i{
    color:#604058;
    transform: translate(0px,1px);
}
.bedge{
    background:#604058;
    color:white;
    font-size: 15px;
    padding:3px 8px;
    border-radius: 4px;
}
.simple-box{
    width:100%;
    background:#fff;
    padding:10px 30px;
    border-radius: 20px;
    box-shadow:0 24px 48px -12px rgba(0,0,0,.11);
}
.simple-box .box-2 h1{
    color:#111827;
    font-family:"inter",sans-serif;
    font-size:38px;
    font-weight:700;
}
.simple-box button{
    outline: none;
    border:none;
    font-size: 18px;
    padding:16px 20px;
    float:left;
    margin-left: 10px;
    background-color:#714b67;
    transition: 0.4s;
    border-radius: 8px;
    position:relative;
    overflow: hidden;
    font-weight: bold;
    color:white;
    margin-top: 10px;
}
.simple-box button::before{
    content: '';
    position:absolute;
    inset: 0;
    z-index: -1;
    background:#56374d;
    clip-path: circle(100% at 50% 50%);
    transition: 0.4s;
  }
  .simple-box button:hover{
    color:#604058;
    background-color:#e7e7e7;
  }
  .simple-box button:hover::before{
    z-index: 1;
    clip-path: circle(0% at 50% 50%);
  }
.simple-box .box-2 span{
    font-size: 18px;
    color:black;
    margin-right:20px;
    transition:0.3s;
}
.simple-box .box-2 span:hover{
    color:#604058;
}
.simple-img{
    padding:10px 0px;
    display:flex;
    justify-content:center;
}
.simple-img img{
    width:170px;
}
.contact-btn{
    font-size: 25px;
    color: white;
    background:#734b68;
    border: none;
    outline: none;
    padding:12px 0px;
    border-radius:5px;
}
.imagebox img{
    width:60px;
    height:60px;
}
.active{
    padding:20px;
    color:white;
    background:#865c7b;
    box-shadow:10px 10px 48px -12px rgba(0,0,0,.12);
}
.service {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding:20px;
    box-shadow:10px 10px 48px -12px rgba(0,0,0,.12);
}
.service::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: -100%;
    left: 0;
    background-color:#865c7b;
    z-index:-1;
    opacity:1;
    transition: all 0.4s ease;
}
.service:hover h5,
.service:hover p {
    color:white;
}

.service:hover::after {
    opacity:1;
    top: 0;
}
.contact-box{
    background-color: white;
    border-radius: 20px;
    padding-bottom: 50px;
}
.contact h6{
    color:#604058;
    font-size: 20px;
    padding: 20px 0px;
}
.contact h1{
    color:#111827;
    font-size:52px;
    font-family: "inter",sans-serif;
    font-weight: bold;
    margin-bottom:20px;
}
.contact h3{
    color: #111827;
    font-size: 35px;
    font-family:"inter",sans-serif;
    font-weight: bold;
}
.contact button{
    outline: none;
    border:none;
    padding:16px 15px;
    background-color:#714b67;
    transition: 0.4s;
    border-radius: 8px;
    position:relative;
    overflow: hidden;
    margin-top:30px;
}
.contact button a{
    color:white;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    padding: 10px;
}
.contact button::before{
    content: '';
    position:absolute;
    inset: 0;
    z-index: -1;
    background:#56374d;
    clip-path: circle(100% at 50% 50%);
    transition: 0.4s;
  }
  .contact button:hover{
    background-color:#e7e7e7;
  }
   .contact button:hover a{
    color:#604058;
}
  .contact button:hover::before{
    z-index: 1;
    clip-path: circle(0% at 50% 50%);
}
.review h1{
    color:#111827;
    font-size:55px;
    font-family: "inter",sans-serif;
    font-weight: bold;
    margin-bottom:20px;
    text-align:center;
}
.review h1 span{
    background-image: url(images/green_highlight_03.svg);
    background-position:bottom;
    background-repeat: no-repeat;
    background-size:contain;
}
.review p{
    color:#3e3e3e;
    font-size:21px;
    font-family: sans-serif;
}
.slider-content{
    width:600px;
    padding-top:40px;
    padding-left:50px;
    position:relative;
}
.slider-content img{
    position: absolute;
    top:0px;
    left:0px;
}
.slider-content p{
    color:#3e3e3e;
    font-size:19px;
    line-height:25px;
}
.slider-content h2{
    color:black;
    font-size:21px;
}
.mySwiper .swiper-pagination{
    --swiper-pagination-color:#604058;
    --swiper-pagination-bullet-width: 18px;
    --swiper-pagination-bullet-height: 18px;
    --swiper-pagination-bullet-inactive-opacity: 0.2;
    --swiper-pagination-bullet-opacity: 1;
    --swiper-pagination-bullet-horizontal-gap:10px;
}
.clients{
    width: 700px;
    height: fit-content;
}
.clients h1{
    color:#111827;
    font-size:55px;
    font-family: "inter",sans-serif;
    font-weight: bold;
    margin-bottom:10px;
    text-align:center;
}
.clients h6{
    color:#3b3b3b;
    font-size:21px;
    font-family:sans-serif;
    text-align:center;
}
.mySwiper2{
    width:100%;
    height:320px;
    margin-bottom:50px;
  } 
  .mySwiper2 .swiper-wrapper{
    width: 100%;
    height: 100%;
  }
  .mySwiper2 .swiper-slide{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mySwiper2 img{
    width: 60%;
    height: auto;
    overflow: hidden;
    transition: 0.3s;
    opacity: 0.8;
  }
  .mySwiper2 img:hover{
    opacity:1;
    transform:scale(1.04)
  }
   .mySwiper2 .swiper-pagination{
    --swiper-pagination-color:#604058;
    --swiper-pagination-bullet-width: 18px;
    --swiper-pagination-bullet-height: 18px;
    --swiper-pagination-bullet-inactive-opacity: 0.2;
    --swiper-pagination-bullet-opacity: 1;
    --swiper-pagination-bullet-horizontal-gap:10px;
}   
.site-map iframe{
    width: 100%;
    height: 500px;
  }
footer{
    background-color: #252733;
    overflow:hidden;
    position: relative;
}
.backTop{
    padding: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: white;
    background:#734b68;
    position:fixed;
    bottom: 60px;
    right:20px;
    border: none;
    outline: none;
    transform: translate(100px,0px);
    transition: 0.4s;
    font-size: 22px;
}
.backTop:hover{
    background:#604058;
}
.backTop.active{
    transform: translate(0px,0px);
}
.footer-top{
    margin: 0;
    padding: 0;
    text-align: center;
    padding-top: 20px;
}
.footer-box{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 40px 0px;
}
.footer-logo span{
    color: #865c7b;
}
.footer-logo{
    color:#aeb0b1;
    text-decoration: none;
    font-size: 40px;
    font-weight: bold;
}
.footer-left{
    width: 600px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}
.left-box-1{
    width: 200px;
    text-align: left;
}
.left-box-1 h4{
    color:#fff;
    font-size: 21px;
    font-weight: 500;
}
.left-box-1 ul{
    margin: 0;
    padding: 0;
}
.left-box-1 ul li{
    list-style: none;
    display: block;
}
.left-box-1 ul li a{
    color: #adadad;
    font-size: 16px;
    text-decoration: none;
    transition: 0.2s;
}
.left-box-1 ul li a:hover{
    color:#fff;
}
.footer-right{
    width: 500px;
    text-align: left;
    position:relative;
}
.footer-right span{
    color: white;
    cursor: default;
}
.footer-right span img{
    width: 18px;
    height:18px;
    border-radius: 50%;
}
.footer-right p{
    color: #d6d6d6;
    font-size: 17px;
    font-family:"inter",sans-serif;
    font-weight:500;
}
.social-icons{
    width: 100%;
}
.social-icons ul {
    margin: 0;
    padding: 0;
}
.social-icons ul li{
    list-style: none;
    display: inline;
    margin-right: 20px;
}
.social-icons ul li a{
    color: #adadad;
    font-size: 18px;
    text-decoration: none;
    transition: 0.2s;
}
.social-icons ul li a:hover{
    color: #fff;
}
.footer-bottom{
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #1a1c24;
    padding: 12px 0px;
}
.footer-bottom a{
    color: #adadad;
    font-size: 16px;
    text-decoration: none;
    transition: 0.2s;
}
.footer-bottom a:hover{
    color: #fff;
}
@media (width >= 300px) and (width <= 768px ){
    .header-bg a{
        display:block;
        font-size:16px;
    } 
    header .nav{
        display:none;
    }
    .side-navIcon{
        width: 27px;
        height: 35px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: space-evenly;
        cursor: pointer;
        margin-right:10px;
        margin-top:12px;
      }
    .main{
        padding-top:70px;
        padding-bottom:30px;
    }
    .main .right{
        display:none;
    }
    .main .left{
        width:100%;
    }
    .main .left h1{
        font-size: 50px;
        line-height:65px;
        text-align:center;
    }
    .main .left h2{
        font-size:24px;
        width:100%;
    }
    .MainBox{
        width: 100%;
        display:flex;
        justify-content:center;
        align-items: center;
    }
    .about-section .about-left{
        display:flex;
        justify-content:center;
        padding: 0px;
        margin-left:10px;
        margin-bottom: 40px;
    }
    .about-section .about-left .about-img{
        width:100%;
        height:340px;
    }
    .about-section .about-left img{
        width:150px;
        height:150px;
    }
    .about-section .about-left .img-effect{
        width:300px;
        height: 300px;
        top:0px;
        left:-10px;
    }
    .about-section .about-right h1{
        font-size:35px;
        line-height:45px;
    }
    .about-section .about-right p{
        color:gray;
        font-size: 18px;
        text-align: justify;
        padding:10px 0px;
    }
    .about-section .about-right h3{
        font-size: 23px;
        font-weight:600;
    }
    .about-section .about-right span{
        display: block;
        color: #1a2236;
        font-family:"inter",sans-serif;
        font-weight:600;
        line-height:30px;
        font-size: 16px;
        text-align:left;
    }
    .about-section .about-right span i{
        color:#714b67;
        padding-right:5px;
    }
    .about-section .about-right button{
        background:#714b67;
        padding:12px 15px;
        color:white;
        text-align: center;
        outline: none;
        border:none;
        border-radius: 5px;
        margin:30px 0px;
        transition: 0.4s;
        font-size: 17px;
    }
    .service-top h2{
        font-size:35px;
        margin-bottom:20px;
        text-align:center;
    }
    .service-top p{
        width: 100%;
        font-size:17px;
        line-height:20px;
    }
    .service {
        border-bottom:1px solid rgb(176, 176, 176);
    }
    .content{
        display:flex;
        justify-content:center;
        padding:20px 0px;
    }
    .choose-top h2{
        font-size:35px;
        margin-bottom:15px;
    }  
    .choose-top p{
        font-size:18px;
        line-height:25px;
        padding-top:0px;
    }
    .content-box{
        border-radius:8px;
        padding:25px;
        background:#fff;
        box-shadow:0 24px 48px -12px rgba(0,0,0,.11);
        transition:0.3s;
        outline:1px solid #714b67;
    }
    .blog h6{
        font-size:20px;
    }
    .blog h1{
        font-size:38px;
        margin:25px 0px;
        line-height:45px;
    }
    .simple-box{
        padding:30px 30px;
        margin:20px 0px;
        text-align:center;
    }
    .simple-box .box-2 h1{
        font-size:40px;
        text-align:center;
        padding-bottom:20px;
        font-weight:700;
        font-family: "inter",sans-serif;
    }
    .simple-btn{
        display:flex;
        justify-content:center;
    }
    .simple-btn button{
        font-size: 18px;
        margin-top: 20px;
        margin-left:0px;
    }
    .simple-box .box-2 span{
        font-size: 18px;
        display:block;
        margin-right:0px;
        padding-top:6px;
    }
    .simple-img{
        width:100%;
        height:200px;
        margin-bottom:10px;
    }
    .clients h1{
        font-size:40px;
    }
    .review h1{
        font-size:39px;
    }
    .review p{
        font-size:20px;
    }
     .slider-content{
        width:100%;
     }
     .slider-content img{
        width:45px;
        position: absolute;
        top:0px;
        left:0px;
    }
    .slider-content p{
        font-size:16px;
        line-height:25px;
    }
    .slider-content h2{
        font-size:18px;
    }
    .mySwiper2 img{
        width: 100%;
        opacity:1;
        height: auto;
      }
    .mySwiper2 .swiper-pagination{
        --swiper-pagination-color:#604058;
        --swiper-pagination-bullet-width: 15px;
        --swiper-pagination-bullet-height: 15px;
        --swiper-pagination-bullet-inactive-opacity: 0.2;
        --swiper-pagination-bullet-opacity: 1;
        --swiper-pagination-bullet-horizontal-gap:8px;
    }
    .contact h1{
        font-size:38px;
    } 
    .contact h3{
        font-size: 30px;
    }   
    .site-map iframe{
        width: 100%;
        height: 300px;
    }
    .footer-box{
        display:block;
        margin: 40px 0px;
    }
    .footer-left{
        width: 100%;
        display:inline-block;
    }
    .left-box-1{
        width:100%;
        margin-bottom:20px;
    }
    .footer-right{
        width:100%;
        text-align:left;
        position:relative; 
        margin:40px 0px;
    }
}
@media(width >=300px) and (width <= 576px){
    .products{
        padding: 0px;
    }
    .products h1{
        font-size:45px;
        margin-bottom: 10px;
    }
    .about-right h3{
        font-weight:600;
    }
    .mySwiper4 .product-box{
        display:flex;
        justify-content:space-between;
        flex-direction: column;
    }
    .product-box .left-box{
        width:100%;
        display: flex;
        justify-content:center;
        align-items: center; 
    }
    .swiperBtn-prev-2{
        position: absolute;
        top:150px;
        right:60px;
    }
    .swiperBtn-next-2{
        position: absolute;
        top: 150px;
        right:10px;
    }
    .mySwiper2{
        width:100%;
        height:250px;
        margin-bottom:30px;
      }
    .backTop{
        padding: 10px 18px;
        font-size:21px;
        bottom:40px;
        right:20px;
        z-index: 2;
    }
    .footer-bottom a{
        font-size: 15px;
    }   
}
@media (width >= 400px) and (width <=500px){
    .about-section .about-left .about-img{
        width:100%;
        height:370px;
    }
}
@media (width >= 500px) and (width <= 768px){
    .about-section .about-left .about-img{
        width:100%;
        height:470px;
    }
}
@media (width >= 768px) and (width <= 992px ){
    header .nav{
        display:none;
    }
    header .Form{
        display:none;
    }
    .side-navIcon{
        width: 27px;
        height: 35px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: space-evenly;
        cursor: pointer;
        margin-top:12px;
        margin-right:10px;
      }
    .main{
        padding-top:40px;
        padding-bottom:30px;
    }
    .main .right{
        display:none;
    }
    .main .left{
        width:100%;
    }
    .main .left h1{
        font-size: 70px;
        line-height:65px;
    }
    .main .left h2{
        font-size:50px;
        width:100%;
    }
    .typing-text {
        width: 24ch;
        animation: typing 4s steps(24),.5s step-end infinite alternate;
        white-space: nowrap;
        overflow: hidden;
        font-size: 2em;
        border-right:1px solid;
      }
     
      @keyframes typing {
        from {
          width: 10%;
        }
      }
      .about-section .about-left{
        display:flex;
        justify-content:center;
        padding: 0px;
        margin-left:10px;
        margin-bottom: 50px;
    }
    .about-section .about-right{
        text-align:center;
    }
    .about-section .about-right h3{
        text-align:center;
    }
    .choose-top h2{
        margin-bottom:20px;
    }
    .choose-top p{
        color:gray;
        font-size:20px;
        line-height:25px;
        padding:0px;
        margin:0px;
    }
    .content-box{
        padding:25px;
    }
    .content-box h2{
        color:#111827;
        font-size: 24px;
        text-align:left;
        font-family:"inter",sans-serif;
        padding-top:20px;
        font-weight: bold;
    }
    .content-box p{
        color:gray;
        font-size:18px;
        text-align:left;
        font-family:"inter",sans-serif;
        padding-top:0px;
    }
    .content-box a{
        text-decoration:none;
        color:#604058;
        font-size:18px;
    }
    .content-box i{
        padding-top:15x;
    }
    
    .simple-box{
        padding:30px 30px;
        margin:20px 0px;
    }
    .simple-box .box-2 h1{
        font-size:40px;
        text-align:center;
        padding-bottom:20px;
    }
    .simple-btn{
        display:flex;
        justify-content:center;
    }
    .simple-btn button{
        font-size: 18px;
        margin-top: 20px;
        margin-left:0px;
    }
    .simple-box .box-2 span{
        font-size: 18px;
        display:block;
        margin-right:0px;
        padding-top:6px;
        text-align:center;
    }
    .simple-img{
        width:100%;
        margin-bottom:10px;
    }
    .review p{
        color:gray;
        font-size:22px;
    }
    .slider-content{
        width:320px;
     }
     .slider-content img{
        width:50px;
        position: absolute;
        top:0px;
        left:0px;
    }
    .slider-content p{
        font-size:16px;
        line-height:25px;
    }
    .slider-content h2{
        font-size:18px;
    }
    .mySwiper2 img{
        width: 85%;
        height: auto;
      }
    .site-map iframe{
        width: 100%;
        height: 400px;
    }
    .footer-box{
        display:block;
        margin: 40px 0px;
      }
    .footer-left{
        width:100%; 
    }
    .left-box-1{
        width: 200px;
        text-align: left;
    }
    .left-box-1 h4{
        color:#fff;
        font-size: 21px;
        font-weight: 500;
    }
    .left-box-1 ul{
        margin: 0;
        padding: 0;
    }
    .left-box-1 ul li{
        list-style: none;
        display: block;
    }
    .left-box-1 ul li a{
        color: #adadad;
        font-size: 16px;
        text-decoration: none;
        transition: 0.2s;
    }
    .left-box-1 ul li a:hover{
        color:#fff;
    }
    .footer-right{
        width: 500px;
        text-align: left;
        position:relative;
    }
    .footer-right{
        width:100%;
        text-align:left;
        position:relative; 
        margin:40px 0px;
    }
    .service-top p{
        line-height:20px;
    }
  }
  @media (width >= 992px) and (width <= 1200px ){
    .product-box .left-box img{
        width: 180px;
    }
    .right-box p{
        font-size: 17px;
        line-height:25px;
        padding-top:40px;
    }
    .about-section .left img{
        border:1px solid;
        width:350px;
    }
    .logo{
        width: 140px;
    }
  }
