@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,100;1,300;1,400;1,500&display=swap');

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all .2s linear;
    text-decoration: none;
}

:root {
    --my-color: #5da2e6;
    --headline-fs: 6rem;
    --text-fs: 2rem;
    --text2-f2: 1.6rem;
}

.element {
    font-weight: 400;
}

html{
    font-size: 62.5%;
}
/* 
html{
    font-size: 70%;
}
@media (max-width: 1800px){
    html{
        font-size: 62.5%;
    }
}
*/
.hidden-section {
    opacity: 0.3;
    transition: opacity 1s ease;  
}

.show {
    opacity: 1;
}

body{
    overflow-x: hidden;
}

#fullscreen-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

#fullscreen-image {
    max-width: 100%;
    max-height: 100%;
}

/* header */

.heading, .clients .section-header h2, .section-head h1, .testimonials .section-header h2, .section-head-1 h4{
    margin: 2rem;
    padding-top: 6rem;
    display: inline-block;
    font-size: 3.5rem;
    color: #000000;
    position: relative;
    letter-spacing: .2rem;
}

.heading::before, .heading::after, .clients .section-header h2::before, .clients .section-header h2::after, .section-head h1::before, .section-head h1::after, .testimonials .section-header h2::before, .testimonials .section-header h2::after, .section-head-1 h4::before, .section-head-1 h4::after{
    content: '';
    position: absolute;
    height: 2.5rem;
    width: 2.5rem;
    border-top: .4rem solid #000000;
    border-left: .4rem solid #000000;
}

.heading::before, .clients .section-header h2::before, .section-head h1::before, .testimonials .section-header h2::before, .section-head-1 h4::before{
    top: 5.8rem;
    left: -2rem;
}

.heading::after, .clients .section-header h2::after, .section-head h1::after, .testimonials .section-header h2::after, .section-head-1 h4::after{
    bottom: -.5rem;
    right: -2rem;
    transform: rotate(180deg);
}

.row .btn{
    outline: none;
    border: none;
    border-radius: 5rem;
    background: white;
    border-style: groove;
    border-color: #002e5f;
    font-size: 1.5rem;
    cursor: pointer;
    height: 3.5rem;
    width: 15rem;
    box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
}

.row .btn:hover{
    letter-spacing: .1rem;
    opacity: .9;
    color: white;
    background: #5da2e6;
}

.header{
    display: flex;
    align-items: center;
    background-color: #000000;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    position: fixed;
    max-width: 100%; height: auto;
}

.header .logo img{
    width: 170px;
    height: auto;
    top: 0;
    left: 0;
}

@media (max-width: 500px){
    .header .logo img{
        width: 100px;
        height: auto;
        top: 0;
        left: 0;
    }
}
    
.header .navbar{
    position: fixed;
    left: 35%;
}

.nav-button {
    height: 45px;
    width: 150px;
    background-color: transparent;
    color:white;
    border: 2px solid #ffffff; 
    cursor: pointer;
    text-align: left; 
    padding: 10px;
    border-radius: 20px;
    line-height: 20px;
    font-size: 2rem;
    left: 90%;
    position: absolute;
    text-decoration: none;
    transition: 
        background-color 0.3s, 
        width 0.3s, 
        border-color 0.3s, 
        transform 0.3s;
}

.nav-button:hover {
    background-color: white; 
    color: black; 
    width: 180px;
    border: 2px solid #ffffff; 
    text-decoration: none;
}

.nav-button.scrolled-hover:hover {
    color: var(--my-color) !important;
}

.header .navbar ul{
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 0 !important;
}

.header .navbar ul li{
    margin: 0 1.5rem;
}

.header .navbar ul li a{
    font-size: 2rem;
    color: #fff;
}

.header .navbar ul li:nth-child(7) a {
    display: none;
}


.header .logo i{
    padding: 0.5rem;
}

.header .fa-bars{
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    display: none;
}

@media (max-width: 1800px){
    .nav-button {
        left: 80%;
    }
}


@media (max-width: 1500px){
    .header .navbar {
        left: 20%;
    }
    .nav-button {
        left: 75%;
    }
}

@media (max-width: 1150px){
    html{
        font-size: 50%;
    }
    .header .fa-bars{
        display: block;
        color: 	white;
        margin-right: 1rem;
    }

    .header .fa-bars:hover{
        color: #ffffff;
    }

    .header .navbar{
        position: fixed;
        top: -120%;
        left: 0;
        height: auto;
        width: 100%;
        background-color: rgb(255, 255, 255);
        z-index: 1000;
        border-top: .1rem solid rgba(0,0,0,.3);
        border-bottom: 5px solid #5da2e6;
    }

    .nav-button{
        display: none;
    }

    .header .navbar ul{
        height: 100%;
        width: 100%;
        flex-flow: column;
    }

    .header .navbar ul li{
        margin: 1rem 0;
    }

    .header .navbar ul li a{
        color:#5da2e6;
        font-size: 2.4rem;
    }

    .header .fa-times{
        transform: rotate(90deg);
    }

    .header .nav-toggle{
        top: 5.8rem;
    }

    .header .navbar ul li:nth-child(7) a {
        display:flex;
    }
    
}

/* end header */

.home{
    width: 100vw;
    background-image: url(/v2/img/backgrounds/bg.webp);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center; 
    flex-flow: column;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    overflow: hidden !important;
}

.animation-container {
    overflow: visible ;
}

.moving-text {
    animation: slide-in 0.5s ease-out; /* Animation duration and easing */
}

@keyframes slide-in {
    0% {
      transform: translateX(-500px); /* Start position outside the container */
    }
    100% {
      transform: translateX(0); /* End position inside the container */
    }
}

.home a{
    display: inline-block;
    margin-bottom: 20px;
    margin-top: 20px;
    margin-right: 20px;
}

.home img{
    max-width: 100%; 
    height: auto;
    width: 100px;
    align-items: center;
    pointer-events: none;
}
.home img.second-image {
    padding-bottom: 40px;
    width: 300px;
    align-items: center;
    pointer-events: none;
}

@media (max-width: 1500px) {
    .home img.second-image {
        width: 220px;
    }
}

.home h1{
    color: #fff;
    font-size: 5.5rem;
}

.home h2{
    color: #fff;
    font-size: 1.7rem;
    text-align: left;
    margin-left: 400px;
    margin-right: 400px;
    margin-bottom: 120px;
}

.home h3{
    color: #fff;
    font-size: 1.7rem;
    text-align: center;
    margin-top:50px;
    font-weight: normal;
}

@media (max-width: 1500px) {
    .home h2 {
        margin-left: 100px;
        margin-right: 100px;
    }
}
@media (max-width: 750px) {
    .home h2 {
        margin-left: 15px;
        margin-right: 15px;
    }
    .home img{
        margin-left: 15px;
        margin-right: 15px;
    }
}

.home .wave{
    position: absolute;
    bottom: -.5rem;
    left: 0;
    height: 11rem;
    width: 100%;
    background: url(/v2/img/waves/wave.png);
    background-size: 100rem 11rem;
    animation: waves 12s linear infinite;
    background-repeat: repeat-x;
}

.home .wave2{
    animation-direction: reverse;
    animation-duration: 6s;
    opacity: .3;
}

.home .wave3{
    animation-duration: 4s;
    opacity: .5;
}

.home .box{
    height: 100px;
    background-color: transparent;
    margin-top: 80px;
    margin-bottom: 30px;
    text-align: left;
    display: flex;
}

.home .box2{
    width: 200px;
    height: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.348);
    border-bottom: 1px solid rgba(255, 255, 255, 0.348);
    border-left: 1px solid rgba(255, 255, 255, 0.348);
    background-color: transparent;
    display: flex;
    padding-top: 10px;
}

.home .box2-content1 {
    margin-left: 10px;
    width: 60px;
    display: inline-block;
    flex-direction: column;
    background-color: transparent;
}
.home .box2-content2 {
    width: 120px;
    display: inline-block;
    flex-direction: column;
    background-color: transparent;
}

.home .h1-box{
    font-size: 1.4rem;
    color: white;
    width: 100px;
}

.home .h2-box {
    width: 100px;
    font-size: 1.4rem;
    color: white;
    background-color: transparent;
    display: inline-block;
}

.home .h3-box{
    width: 100px;
    font-size: 1.2rem;
    color: white;
    font-weight: normal;
}

.home .c-box{
    width: 150px;
    background-color: red;
}

@media (max-width: 1500px) {
    .box2[id="box2horz"] {
        display: none;
    }
}

@media (max-width: 1250px) {
    .box2[id="box2horz"],
    .box2[id="box3horz"] {
        display: none;
    }
}

@media (max-width: 1100px) {
    .box2[id="box2horz"],
    .box2[id="box3horz"],
    .box2[id="box4horz"] {
        display: none;
    }
}

@media (max-width: 850px) {
    .box2[id="box1horz"],
    .box2[id="box2horz"],
    .box2[id="box3horz"],
    .box2[id="box4horz"] {
        display: none;
    }
}

@media (max-width: 650px) {
    .box2[id="box1horz"],
    .box2[id="box2horz"],
    .box2[id="box3horz"],
    .box2[id="box4horz"] {
        display: none;
    }
}

@media (max-width: 1050px){
    .home .box2{
        width: 180px;
        height: 70px;
    }
    .home .box2-content1 {
        width: 50px;
    }
    .home .box2-content2 {
        width: 100px;
    }
}

.chart-container {
    width: 100px;
    height: 50px;
    margin-left: 10px;
  }


#number-container {
    text-align: center;
}

.number {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.positive {
    color: #008000; /* Green for positive change */
}

.negative {
    color: #ff0000; /* Red for negative change */
}

@keyframes waves{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 100rem;
    }
}

.pricelist .waveS{
    position: absolute;
    bottom: -.5rem;
    left: 0;
    height: 11rem;
    width: 100%;
    background: url(/v2/img/waves/wave2.png);
    background-size: 100rem 11rem;
    animation: waves 8s linear infinite;
    background-repeat: repeat-x;
}

.pricelist .wave2S{
    animation-direction: reverse;
    animation-duration: 6s;
    opacity: .2;
}

.pricelist .wave3S{
    animation-duration: 4s;
    opacity: .5;
}

@keyframes wavesS{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 100rem;
    }
}

.try{
    min-height: 55vh;
    width: 100vw;
    top: -3rem;
    display: flex;
    text-align: center;
    position: relative;
    overflow: hidden;
    line-height: 10rem;
    justify-content: center;
    align-items: center;
}

.try h2{
    color: #000000;
    font-size: 1.4rem;
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
}

.try h4{
    color: #000000;
    margin-top: 20px;
    font-size: 4rem;
}


@media (max-width: 700px){
    .try h4{
        color: #000000;
        margin-top: 20px;
        font-size: 3rem;
    }
    .home a{
        margin-bottom: 10px;
        margin-top: 10px;
    }
    
}

.try .row{
    line-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 4rem;
}

.try .row .content{
    text-align: center;
}

.try .row .content h5{
    font-size: 4rem;
    color: black;

}
.try .row .content h6{
    text-align: center;
    font-size: 2rem;
    color: black;
}

.try .row .content p{
    font-size: 2rem;
    color: #333;
    padding: 1rem 0;
}

.custom-image-container {
position: relative;
display: inline-block;
}

.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: transparent;
pointer-events: none; /* Allow clicks to pass through */
z-index: 1; /* Ensure the overlay is on top */
}

.pt-5 .container .row .section-head p{
    font-size: 2rem;
    color: #333;
    padding: 1rem 0;
}
  .section-head{
    margin-bottom: 60px;
    text-align: center;
    margin-top: -8rem;
  }
  .section-head p{
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }
  .item{
    background:#fff;
    text-align: center;
    padding:30px 25px;
    box-shadow: 0 0 25px rgba(0,0,0,0.07);
    border-radius: 20px;
    margin-bottom: 30px;
    margin-top: -2rem;
    border:5px solid rgba(0,0,0,0.07);
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item:hover{
    background:#c8d8e4;
    box-shadow: 0 8px 20px 0 rgba(0,0,0,0.2);
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item:hover .item,
  .item:hover span.icon{
    background:#fff;
    border-radius: 10px;
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item h6{
      font-size: 2rem;
  }
  .item:hover h6,
  .item:hover p{
    color:#2b6777;
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item .feature_box_col_one{
    background:rgba(247,198,5,0.2);
    color:#52ab98;
  }
  .item .feature_box_col_two{
    background: rgba(255, 77, 28, 0.15);
    color:#52ab98;
  }
  .item .feature_box_col_three{
    background:rgba(0,147,38,0.15);
    color:#52ab98;
  }
  .item .feature_box_col_four{
    background:rgba(0,108,255,0.15);
    color:#52ab98;
  }
  .item .feature_box_col_five{
    background:rgba(146,39,255,0.15);
    color:#52ab98;
  }
  .item .feature_box_col_six{
    background:rgba(23,39,246,0.15);
    color:#52ab98;
  }
  .item p{
    font-size: 15px;
    line-height: 26px;
  }
  .item h6{
    margin-bottom: 20px;
    color:#2f2f2f;
  }   
.section-head-1{
    margin-bottom: 60px;
    background-size: 200%;
    background-position: left;

  }
  .section-head-1 p{
    color:#333;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }
  .item{
    background:#fff;
    text-align: center;
    padding:30px 25px;
    box-shadow: 0 0 25px rgba(0,0,0,0.07);
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.07);
    -webkit-transition:all 0.7s ease 0s;
    transition:all 0.7 ease 0s;
    
  }
  .item:hover{
    background-image: linear-gradient(to bottom right, #66ffcc 0%, #ffccff 100%);
    background-position: right;
    transition: background-position 3s;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.2);
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.7s ease 0s;
  }
  .item:hover .item,
  .item:hover span.icon{
    background:#fff;
    border-radius: 10px;
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item:hover h6,
  .item:hover p{
    color:#2b6777;
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item .feature_box_col_one{
    background:rgba(247,198,5,0.2);
    color:#52ab98;
  }
  .item .feature_box_col_two{
    background: rgba(255, 77, 28, 0.15);
    color:#52ab98;
    
  }
  .item .feature_box_col_three{
    background:rgba(0,147,38,0.15);
    color:#52ab98;
  }
  .item .feature_box_col_four{
    background:rgba(0,108,255,0.15);
    color:#52ab98;
    
  }
  .item .feature_box_col_five{
    background:rgba(146,39,255,0.15);
    color:#52ab98;
  }
  .item .feature_box_col_six{
    background:rgba(23,39,246,0.15);
    color:#52ab98;
  }
  .item p{
    font-size: 15px;
    font-family: "Varela Round",Arial,"Helvetica Neue",Helvetica,sans-serif;
    line-height: 26px;
  }
  .item h6{
    margin-bottom: 20px;
    font-family: "Varela Round",Arial,"Helvetica Neue",Helvetica,sans-serif;
    color:#2f2f2f;
  }

.aboutus {
    text-align: center;
    margin: 0 auto;
    background-image: url(/v2/img/backgrounds/compass2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    min-height: 35vh;
    padding: 20px ;
    align-items: center;
}

.aboutus h3{
    margin-top: 3rem;
    font-size: var(--headline-fs);
    text-align: center;
    font-weight: normal;
}

.aboutus h2{
    margin-top: 1rem;
    font-size: var(--headline-fs);
    text-align: center;
    font-weight: normal;
}

.aboutus h4{
    margin-top: 20px;
    font-size: var(--text2-f2);
    text-align: left;
    margin-left: 150px;
    margin-right: 150px;
    font-weight: normal;
}

@media (max-width: 1900px) {
    .aboutus h4{
        margin-left: 50px;
        margin-right: 50px;
    }
}

@media (max-width: 1400px) {
    .aboutus h4{
        margin-left: 0px;
        margin-right: 0px;
    }
}

@media (max-width: 1200px) {
    .aboutus h4{
        margin-left: 100px;
        margin-right: 100px;
    }
}

@media (max-width: 800px) {
    .aboutus h4{
        margin-left: 0px;
        margin-right: 0px;
    }
}


.columns {
    display: flex;
    justify-content: space-around; /* Adjusted spacing */
    flex-wrap: wrap; /* Added to allow wrapping on smaller screens */
    margin-top: 30px;
}

.column {
    flex: 0 1 calc(30% - 30px); /* Adjusted flex property and added calc to include margin */
    text-align: left;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media (max-width: 1200px) {
    .column {
        flex: 0 1 calc(100% - 20px); 
        margin: 10px;
        padding: 20px;
    }
}

.longterm{
    text-align: center;
    align-items: center;
}

.longterm h3{
    margin-top: 6rem;
    font-size: var(--headline-fs);
    margin-bottom: 2rem;
    font-weight: normal;
}

.longterm p{
    font-size: var(--text-fs);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
    margin-left: 10px;
    margin-right: 10px;
}

@media (max-width: 1500px) {
    .longterm p {
        font-size: 1.7rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 2rem;
    }
}

.clients2{
    text-align: center;
    align-items: center;
    background-image: url(/v2/img/backgrounds/sky.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    min-height: 35vh;
    padding: 40px 20px;
}  

@media (max-width: 600px) {
    .clients2{
        background-image: url(/v2/img/backgrounds/sky2.webp);
        background-size: cover
    }
}

.clients2 h3{
    margin-top: 3rem;
    font-size: 4rem;
    font-weight: normal;
}

.clients2 p{
    font-size: 1.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.clients2 img{
    max-width: 300px;
    padding: 30px 50px 30px 50px;
}
/* Style for the image container */
.image-container {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    justify-content: space-between; /* Add space between items */
    align-items: center; 
}

/* Style for the images */
.image-container img {
    max-width: 48%; /* Adjust the maximum width of images */
    margin-bottom: 10px; /* Add some space between images */
    margin: 5px;
}

@media (max-width: 750px) {
    .image-container img {
        max-width: 100%; 
    }
}

.container {
    display: flex;
    justify-content: center;
}
@media (max-width: 1150px) {
    .container {
        display: block; 
    }
    .clients2 img{
        max-width: 250px;
        padding: 20px 30px 20px 30px;
    }
}  

@media (max-width: 800px) {
    .clients2 img{
        max-width: 200px;
        padding: 20px 30px 20px 30px;
    }
}  

.pricelist {
    padding-top: 10px;
    background-color: white;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center; 
    flex-flow: column;
    text-align: center;
    position: relative;
    overflow: hidden !important;
}


.pricelist h1{
    margin-top: 10px;
    font-size: 4rem;
    text-align: center;
    color: black;
}

.pricelist h2{
    margin-top: 10px;
    font-size: 3rem;
    text-align: center;
    color: black;
    padding: 20px;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.pricelist img {
    max-width: 300px;
    opacity: 1;
    transition: 0.3s;
    margin: 40px; 
}

.pricelist h4 {
    font-size: 2rem;
    text-align: center;
    color: black;
}

.pricelist .white-line {
    border: 2px solid white; /* Set border color to white */
    width: 100%; /* Set width to 100% of the container */
    margin-top: 20px;
    margin-bottom: 20px;
}

.pricelist h5{
    font-size: 3rem;
    color: white;
    text-align: left
}

.pricelist h6{
    font-size: 2rem;
    color: white;
    text-align: left
}

.pricelist h3{
    font-size: 1.7rem;
    display: block; 
    width: 600px;
    text-align: left;
    color: black;
    font-weight: normal;
    padding: 20px;
}

.pricelist .container3 {
    display: flex;
    justify-content: space-between; 
}
  
.pricelist .container3 h6 {
    margin: 0;
}

.pricelist h6 a{
    color: white;
}

.gallery-img {
    max-width: 1200px;
    height: auto;
    transition: transform 0.3s ease-in-out;
    border-radius: 5px;
}

.button {
    padding: 10px;
    margin: 5px;
    font-size: 1.7rem;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    cursor: pointer;
    border: none !important;
    outline: none !important;
}

.button:hover {
    color: #5da2e6;
    text-decoration: underline;
}

@media (max-width: 600px) {
    /* Make buttons block-level to stack them vertically */
    .button {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 5px;
    }
}

.aligned-heading {
    font-size: 1.7rem;
    color: white;
    text-align: left;
    display: flex;
    justify-content: space-between;
    max-width: 800px;
}

.aligned-heading2 {
    font-size: 1.4rem;
    color: white;
    text-align: left;
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin-bottom: 15px;
}

.rounded-box-all {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
        align-items: center;
}
.rounded-box-all2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}
@media (max-width: 1200px) {
    .rounded-box-all2 {
        flex-direction: column;
    }
    .home img.second-image {
        margin-right:0px;
    }
    .home h3{
        margin-top:0px;
        margin-right:0px;
        font-weight: normal;
    }
    .gallery-img {
        max-width: 800px;
        height: auto;
        transition: transform 0.3s ease-in-out;
        border-radius: 5px;
    }
}

@media (max-width: 800px) {
    .home img.second-image {
        max-width: 250px;
        margin-right: 0px;
        margin-right: 0px;
    }
}

@media (max-width: 900px) {
    .gallery-img {
        max-width: 600px;
        border-radius: 3px;
        height: auto;
    }
}
@media (max-width: 700px) {
    .gallery-img {
        max-width: 300px;
        border-radius: 1px;
        height: auto;
    }
}

.rounded-box {
    width: 600px; 
    padding: 20px; 
    border-radius: 45px; 
    background-color: #8f8a8a44;
    margin: 10px auto;
}

.rounded-box2 {
    width: 600px; 
    padding: 20px; 
    border-radius: 45px; 
    background-color: #ffffff;
    border: 2px solid #8f8a8a;
    margin: 10px auto; 
}

.rounded-box3 {
    width: 700px;
    padding: 20px;
    border-top-right-radius: 45px;
    border-top-left-radius: 0; 
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 45px;
    background-color: #5da2e6;
    margin-left: 40px;
}

.rounded-box3:hover {
    transform: scale(1.01); 
}


.rounded-box4 {
    width: 700px;
    padding: 20px; 
    border-top-right-radius: 45px;
    border-top-left-radius: 0; 
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 45px;
    background-color: #2e8e27;
    margin-right: 40px;
}

.rounded-box4:hover {
    transform: scale(1.01); 
}

@media (max-width: 1500px) {
    .rounded-box-all {
        flex-direction: column;
    }
    .rounded-box4 {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .rounded-box3 {
        margin-right: 0px;
        margin-left: 0px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 700px) {
    .rounded-box4 {
        width: 300px;
    }
    .rounded-box3 {
        width: 300px;
    }
}



.rounded-box5 {
    padding: 20px;
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 45px;
    margin: 10px auto;
    margin-left: 20px;
    margin-right: 20px
}

.rounded-box6 {
    border-radius: 45px; 
    margin: 10px auto; 
    margin-left: 20px;
    margin-right: 20px;
}
.rounded-box7 {
    width: 500px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 45px;
}
.rounded-box8 {
    width: 700px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 45px;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}
.rounded-box9 {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
}

.rounded-box-try {
    width: 700px;
    height: 200px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    align-items: center;
    background-color: transparent;
}

.rounded-box-try2 {
    width: 250px;
    height: 180px;
    background-color: transparent;
    border-radius: 10px;
    box-shadow: 4px 6px 4px 6px rgba(0, 0, 0, 0.1);
    margin-left: 50px;
    margin-right: 50px;
    justify-content: center;
}

.content-inner {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 35px;
    margin-left: 50px;
}


.app-img{
    width: 45px;
    height: auto;
    border-radius: 10px;
}

.app-img2{
    width: 40px;
    height: auto;
}

@media (max-width: 1200px) {
    .rounded-box {
        width: 350px; 
        padding: 20px;
        border-radius: 45px;
        background-color: #8f8a8a44; 
        margin: 10px auto; 
    }
    .rounded-box2 {
        width: 350px; 
        padding: 20px;
        border-radius: 45px;
        background-color: #ffffff;
        border: 2px solid #8f8a8a;
        margin: 10px auto;
    }
    .pricelist h4 {
        font-size: 1.7rem;
        font-weight: normal;
    }
    .pricelist h3{
        width: 350px;
        text-align: left;
        font-weight: normal;
    }
    .rounded-box8 {
        width: 400px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 45px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .rounded-box-try2 {
        width: 220px;
        height: 150px;
        background-color: transparent;
        border-radius: 10px;
        box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
        margin-left: 30px;
        margin-right: 30px;
    }
    .app-img{
        width: 30px;
        height: auto;
        border-radius: 10px;
    }
    .app-img2{
        width: 25px;
        height: auto;
    }
    .content-inner {
        width: 100%;
        display: flex;
        align-items: center;
        margin-top: 20px;
        margin-left: 35px;
    }
}
@media (max-width: 1050px) {
    .content-inner {
        width: 100%;
        display: flex;
        align-items: center;
        margin-top: 20px;
        margin-left: 50px;
    }
    .rounded-box-try2 {
        width: 200px;
        height: 130px;
        margin-left: 0px;
        margin-right: 0px;
    }
}

@media (max-width: 700px) {
    .content-inner {
        width: 100%;
        display: flex;
        align-items: center;
        margin-top: 20px;
        margin-left: 35px;
    }
    .rounded-box-try2 {
        width: 180px;
        height: 130px;
        margin-left: 0px;
        margin-right: 0px;
    }
    .rounded-box-all2 {
        display: flex;
        justify-content: space-between;
        margin-bottom: 50px;
    }
}

@media (max-width: 800px) {
    .rounded-box5 {
        padding: 20px;
        padding-left: 10px;
        padding-right: 10px;
        border-radius: 45px;
        margin: 10px auto;
        margin-left: 20px;
        margin-right: 20px
    }
}

.map{
    text-align: center;
    align-items: center;
    background-image: url(/v2/img/backgrounds/sky.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    min-height: 35vh;
    padding: 40px 20px;
}

.map h1{
    margin-top: 3rem;
    font-size: 9rem;
}

.team{
    min-width: 100vw;
    min-height: 95vh;
    text-align: center;
    background-color: #222;
}

.team .heading{
    color: #00bfff;
}

.team .heading::before, .team .heading::after{
    border-color: #00bfff;
}

.team .row{
    display: inline-block;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.team .row .card{
    height: 35rem;
    width: 25rem;
    background-color: #fff;
    text-align: center;
    margin: 5rem 5rem;
    position: relative;
    overflow: hidden;
    -webkit-box-reflect: below 5px linear-gradient(transparent 70%, #0004);
    transition: 0.5s;
}

.team .row .card:hover{
    transform: translateY(-10px);
    cursor: pointer;
}


.team .row .card .image{
    margin: 1rem 0;
    padding-top: 4rem;
}

.team .row .card .image img{
    height: 13rem;
    width: 13rem;
    border-radius: 50%;
    border: .5rem solid #fff;
    box-shadow: 0 0 .5rem rgba(0,0,0,.3);
    object-fit: cover;
}

.team .row .card .info h3{
    font-size: 1.7rem;
    color: #333;
    font-weight: normal;
}

.team .row .card .info span{
    font-size: 1.8rem;
    color: #00bfff;
}

.team .row .card .info .icons a{
    margin-top: 4rem;
    padding-top: 0 1rem;
    font-size: 2rem;
    color: #333;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.team .row .card::before, .team .row .card::after{
    content: '';
    position: absolute;
    border-radius: 50%;
    height: 13.5rem;
    width: 13.5rem;
    z-index: -1;
}

.team .row .card::before{
    background: #00bfff;
    top: -3rem;
    right: -4rem;
}

.team .row .card::after{
    background: #ccc;
    bottom: -3rem;
    left: -4rem;
}


/* footer */

.footer {
    position: relative;
    width: 100vw;
    height: auto;
    /*background: #5da2e6;*/
    background-color: #383535;
    height: 300px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

.footer-logo {
    width: 100px;
    position: absolute;
    top: 20px;
    left: 50px;
}

.cert-logo {
    width: 100px;
    position: absolute;
    top: 140px;
    left: 50px;
}

.qr-container {
    width: 160px;
    height: 160px;
    background-color: white; /* Light gray background for contrast */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px; /* Optional rounded corners */
    position: absolute;
    top: 20px;
    right: 50px;
}

.footer-qr {
    width: 100px;
    border-radius: 10px;
}

.qr-text {
    font-size: 1.5rem !important;
    color: #333 !important; /* Dark text color for better readability */
    text-align: center;
    font-weight: 400 !important;
}


.footer p {
    color: #ffffff;
    margin: 15px 0 10px 0;
    font-size: 1rem;
    font-weight: 300;
}


.footer-button {
    height: 45px;
    width: 180px;
    background-color: transparent;
    color:white;
    border: 2px solid #ffffff; 
    cursor: pointer;
    text-align: left; 
    padding: 10px;
    border-radius: 20px;
    line-height: 20px;
    font-size: 2rem;
    left: 88%;
    position: absolute;
    text-decoration: none;
    transition: 
        background-color 0.3s, 
        width 0.3s, 
        border-color 0.3s, 
        transform 0.3s;
}

.footer-button:hover {
    background-color: white; 
    color: black; 
    width: 210px;
    border: 2px solid #ffffff; 
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer p{
        margin-right: 0;
    }
    .cert-logo {
        width: 50px;
        position: absolute;
        top: 80px;
        left: 10px;
    }
    .footer-logo {
        width: 50px;
        position: absolute;
        top: 10px;
        left: 10px;
    }
}
@media (max-width: 850px) {
    .footer-qr {
        display: none;
    }
    .qr-container {
        display: none;
    }
}

/* end footer */
  
  .social-icon,
  .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
  }
  
  .social-icon__item,
  .menu__item {
    list-style: none;
    color: rgb(255, 255, 255);
  }
  
  .social-icon__link {
    font-size: 2rem;
    color: #ffffff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
  }
  .social-icon__link:hover {
    color: white;
    transform: translateY(-5px);
  }
  
  .menu__link {
    font-size: 1.7rem;
    color: #ffffff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
  }
  .menu__link:hover {
    opacity: 1;
    color: white;
  
  }

  .terms-container {
    display: flex;
    gap: 20px; /* Space between the links */
    justify-content: center; /* Center the links horizontally */
    align-items: center; /* Center the links vertically */
  }

  .terms {
    text-decoration: none;
    color: white;
    text-decoration-color: white;

  }

  .terms:hover {
    color: white;
    text-decoration: underline;
    
  }


#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #5da2e6;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    padding: 10px;
    z-index: 9;
    cursor: pointer;
}

#backToTopBtn ion-icon {
    font-size: 3em;
}

#backToTopBtn ion-icon:hover {
    color: black;
}

  .back-to-top {
    position: fixed;
    display: none;
    background-color: #00bfff;
    color: #ffffff;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 1;
    font-size: 44px;
    right: 15px;
    bottom: 15px;
    transition: background 0.3s;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
}

.back-to-top i:hover {
    color: black;
}

.home-serv4{
    background-color: #000000eb;
    background-image: url(/v2/img/backgrounds/stock2.png);
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    align-items: center;
    position: relative;
    padding: 0 1rem;
    overflow: hidden;
    color: white;
    height: 830px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity to make it darker or lighter */
    z-index: 1;
}

.home-serv4 h2{
    color: #ffffff;
    font-size: var(--headline-fs);
    text-align: left;
    position: absolute;
    top: 10px;
    font-weight: normal;
    z-index: 2;
}

.home-serv4 h3{
    color: #ffffff;
    font-size: var(--text-fs);
    text-align: left;
    font-weight: normal;
    z-index: 2;
}

.stock-flex-container {
    display: flex;
    justify-content: space-around; /* Distributes space evenly */
    align-items: center;
    margin: 20px;
    z-index: 2;
}

.stock-image-container {
    width: 400px;
    height: 300px;
    overflow: hidden;
    border-radius: 30px;
    background-color: white;
    margin: 20px;
}

.fixed-image-serv6 {
    width: 200px;
    height: auto;
    margin-top: 30px;
}

.fixed-image-serv7 {
    width: 250px;
    height: auto;
    margin-top: 60px;
}

.button-serv {
    background-color: #ffffff;
    border: 2px solid #ffffff; 
    margin-right: 830px;
    color: black; 
    text-align: left; 
    padding: 10px;
    cursor: pointer; 
    border-radius: 30px; 
    width: 200px;
    height: 80px;
    position: absolute;
    top: 650px;
    transform: translateX(50%);
    z-index: 2;
    transition: 
        background-color 0.3s, 
        width 0.3s, 
        border-color 0.3s, 
        transform 0.3s;
}

.button-serv:hover {
    background-color: transparent; 
    color: white; 
    width: 250px;
}

.button-serv .default-text,
.button-serv .hover-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    transition: opacity 0.3s ease;
    padding: 10px;
}

.button-serv .hover-text {
    opacity: 0; /* Initially hidden */
}

.button-serv:hover .default-text {
    opacity: 0; /* Hide default text on hover */
}

.button-serv:hover .hover-text {
    opacity: 1; /* Show hover text on hover */
}


@media (max-width: 1050px) {
    .home-serv4{
        height: 950px;
    }
    .stock-flex-container {
        padding-top: 100px;
        display: flex;
        justify-content: space-around;
        flex-direction: column;
        align-items: center;
        margin: 20px; 
    }
    .stock-image-container {
        width: 300px; 
        height: 200px;
        overflow: hidden;
        border-radius: 20px;
        background-color: white;
        margin: 20px;
        padding: 10px;
    }
    .fixed-image-serv6 {
        width: 150px;
        height: auto;
        margin-top: 10px;
    }
    .fixed-image-serv7 {
        width: 180px;
        height: auto;
        margin-top: 30px;
    }
    .button-serv {
        margin-right: 200px;
        width: 200px;
        height: 80px;
        position: absolute;
        top: 850px;
    }
    .home-serv4 h2{
        top: 0px;
        font-size: 4rem;
    }
    .home-serv2 h2{
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 30px;
    }
}

.contact {
    text-align: center;
    margin: 0 auto;
    background-image: url(/v2/img/backgrounds/dots2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    min-height: 35vh;
    padding: 20px ;
    align-items: center;
    display: flex;
    justify-content: center;
}

.contact-box {
    width: 200px; 
    height: 200px; 
    background-color: white;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.flex-container-cont {
    display: flex;
    align-items: center;
}

.contact .h1{
    font-size: 2rem;
    color: rgb(0, 0, 0);
}

.rounded-box2-cont iframe {
    max-width: 100%; /* Ensure the iframe doesn't exceed the container width */
    max-height: 100%; /* Ensure the iframe doesn't exceed the container height */
}

.rounded-box2-cont {
    background-color: rgba(255, 255, 255, 1);
    width: 850px;
    height: 600px;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-top:20px;
    padding: 10px;
    text-align: center;
}

.home-serv6{
    background-color: #ffffff;
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    align-items: center;
    position: relative;
    padding-bottom: 30px;
}

.slider2x {
    position: relative;
    width: 80%;
    max-width: 1200px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #ffffff;
    width: 1200px;
    height: 350px;
    margin-top: 50px;
}

.slides2x {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.slide2x {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 100%;
    box-sizing: border-box;
    flex-direction: row; 
}

.slide2x img {
    width: 300px;
    height: auto;
    padding: 30px;
    box-sizing: border-box;
}

.slide2x img:hover {
    transform: scale(1.05); 
}


.button2x {
    position: absolute;
    top: 80%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    color: grey;
    font-size: 4rem;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
    outline: none !important;
}

.button2x:hover {
    color: rgb(0, 0, 0);
}

.button2x.prev {
    left: 40px;
}

.button2x.next {
    left: 100px;
}


@media (max-width: 1200px) {
    .slider2x {
        height: 100%;
        width: 100%;
        margin-top: 0px;
    }
    .slide2x {
        flex-direction: column;
    }
    .button2x.prev {
        position: absolute;
        left: 10px;
        top: 10px;
        transform: none;
    }
    
    .button2x.next {
        position: absolute;
        left: 70px;
        top: 10px;
        transform: none;
    }
}

@media (max-width: 500px) {
    .slide2x img {
        width: 200px;
        height: auto;
        padding: 10px;
        box-sizing: border-box;
    }
    .slides2x {
        margin-top: 50px;
    }
}



@media (max-width: 1050px){
    .home h1{
        color: #fff;
        font-size: 4rem;
    }
    
    .home h2{
        color: #fff;
        font-size: 1.7rem;
    }

    .try{
        min-height: 38vh;
        width: 100vw;
        margin-top: -3rem;
        margin-bottom: -2rem;
        top: -2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        line-height: 6rem;
    }
    
    .try .row{
        line-height: 2rem;
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 0 4rem;
    }
    
    .try .row .content{
        text-align: center;
    }
    
    .try .row .content h3{
        font-size: 1.7rem;
        color: var(--color);
        font-weight: normal;
    }
    
    .try .row .content p{
        font-size: 1.3rem;
        color: #333;
        padding: 1rem 0;
    } 
    
    .team{
        min-height: auto;
    }

    .team .row{
        flex-direction: column;
    }

    .back-to-top {
        width: 30px;
        height: 30px;
        font-size: 30px;
    }
    #backToTopBtn {
        pointer-events: none;
        background-color: transparent;
        width: 0px;
        height: 0px;
        font-size: 0px;
    }
}
.slide-section {
    opacity: 0;
    transform: translateX(-100px);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    will-change: transform, opacity;
}
.slide {
    opacity: 1;
    transform: translateX(0px);
}

.slide-section1 {
    opacity: 0;
    transform: translateX(-50px);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    will-change: transform, opacity;
}
.slide1 {
    opacity: 1;
    transform: translateX(0px);
    transition-delay: 0.4s;
}


.slide-section2 {
    opacity: 0;
    transform: translateX(-50px);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    will-change: transform, opacity;
}

.slide2 {
    opacity: 1;
    transform: translateX(0px);
    transition-delay: 0.6s; 
}

.slide-section3 {
    opacity: 0;
    transform: translateX(-50px);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    will-change: transform, opacity;
}
  
.slide3 {
    opacity: 1;
    transform: translateX(0px);
    transition-delay: 0.8s; 
}

.slide-section4 {
    opacity: 0;
    transform: translateX(-50px);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    will-change: transform, opacity;
}
  
.slide4 {
    opacity: 1;
    transform: translateX(0px);
    transition-delay: 1s; 
}
