@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;
}

html{
    font-size: 62.5%;
}

body{
    overflow-x: hidden;
}

/* 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: #2b3e50;
    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: #2b3e50; 
    width: 180px;
    border: 2px solid #ffffff; 
    text-decoration: none;
}

.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 #FF8C00;
    }

    .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:#2b3e50;
        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 */

#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #FF8C00;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    padding: 10px;
    z-index: 9;
    cursor: pointer;
}

#backToTopBtn ion-icon {
    font-size: 3em;
}

@media (max-width: 700px){
    #backToTopBtn {
        pointer-events: none;
        background-color: transparent;
        width: 0px;
        height: 0px;
        font-size: 0px;
    }
}

.home{
    background-color: #2b3e50;
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    align-items: center;
    padding: 0 1rem;
    position: relative;
    overflow: hidden !important;
}

.styled-image{
    width: 1500px;
    height:auto;
}

.image-with-text-container {
    padding-left: 200px;
    padding-right: 200px;
    padding-bottom: 50px;
    top: 30%;
    left: 30%;
    display: flex;
    align-items: center;
}

.fixed-image {
    width: 400px; 
    height: auto; 
}

.text-container {
    max-width: 1700px;
}

.text-container h2 {
    font-size: 5.5rem;
    font-weight: normal;
}

.text-container p {
    padding-left: 20px;
    font-size:2rem;
    color: #000000; 
    text-align: left;
}

.text-container h5 {
    padding-left: 20px;
    font-size: 5.5rem;
    text-decoration: underline;
    color: #000000; 
    text-align: left;
    font-weight: normal;
}
@media (max-width: 2000px) {
    .image-with-text-container {
        padding-left: 100px;
        padding-right: 100px;
    }
    .fixed-image {
        width: 200px; 
        height: auto; 
        margin-top: 50px;
    }
    .text-container {
        margin-top: 150px;
        max-width: 2000px;
    }
    .styled-image{
        width:1000px;
        height:auto;
    }
    
}

@media (max-width: 1400px) {
    .text-container p {
        font-size:1.6rem;
        color: #000000; 
        text-align: left;
    }
    
    .text-container h5 {
        font-size: 4.5rem;
        text-decoration: underline;
        color: #000000; 
        text-align: left;
        font-weight: normal;
    }
    .styled-image{
        width:500px;
        height:auto;
    }
    .image-with-text-container {
        padding-left: 20px;
        padding-right: 20px;
        width: 80%;
        margin-bottom: 10px;
        flex-direction: column; /* Stack items vertically for small screens */
        align-items: flex-start; /* Align items to the start of the container */
        text-align: center; /* Center text within the container */
        left: 50%; /* Center the container horizontally */
    }
    .fixed-image {
        width: 100px; 
        height: auto; 
        margin-top: 0px;
        margin-right: 0px; /* Remove right margin on small screens */
        margin-left: 0px; /* Remove right margin on small screens */
        margin-bottom: 10px; /* Add bottom margin to separate image and text */
    }
    .text-container {
        margin-right: 0px; /* Remove right margin on small screens */
        margin-left: 0px; /* Remove right margin on small screens */
        margin-top: 0px;
        max-width: 100%; /* Take full width on small screens */
    }
}
br {
    display: block;
    content: " ";
    margin: 0.5em;
  }
  

.home .text-column {
    width: 70%;
    padding: 20px;
}
.home h1{
    color: #000000;
    font-size: 5.5rem;
    margin-top: 100px;
    font-weight: normal;
}

.home h2{
    color: #ffffff;
    font-size: 2.5rem;
    text-align: left;
    font-weight: normal;
}
.home h3{
    color: #ffffff;
    font-size: 1.7rem;
    text-align: left;
    font-weight: normal;
}

.home h4{
    color: #ffffff;
    font-size: 2rem;
    text-align: left;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: normal;
}
.text-box {
    border: 1px solid #ccc; /* Add a border */
    padding: 10px; /* Add some padding */
    max-width: 300px; /* Set a fixed width */
    margin: 20px; /* Add some margin for spacing */
}

.expandable-box {
    cursor: pointer;
    background-color: #FF8C00;
    border-radius: 4px;
}

.expandable-box2 {
    cursor: pointer;
    background-color: #FF8C00;
    border-radius: 4px;
    min-height: 30px;
}

.expanded-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
    /* Add other styles as needed */
}

.exp-img{
    width: 500px;
    align-self: ceneter;
    display: block;
    margin: 0 auto;
    border-radius: 2px;
}

@media (max-width: 1000px) {
    .exp-img{
        width: 300px;
    }
}

.exp-img2{
    width: 800px;
    align-self: ceneter;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
}
@media (max-width: 1000px) {
    .exp-img2{
        width: 350px;
    }
}

.exp-img3{
    width: 400px;
    align-self: ceneter;
    display: block;
    margin: 0 auto;
    border-radius: 1px;
}
@media (max-width: 1000px) {
    .exp-img3{
        width: 300px;
    }
}

.exp-img4{
    width: 300px;
    align-self: ceneter;
    display: block;
    margin: 0 auto;
}
@media (max-width: 1000px) {
    .exp-img4{
        width: 150px;
    }
}

.exp-img5{
    width: 400px;
    align-self: ceneter;
    display: block;
    margin: 0 auto;
    border-radius: 2px;
}
.exp-img6{
    width: 800px;
    align-self: ceneter;
    display: block;
    margin: 0 auto;
    border-radius: 2px;
    margin-top: 50px;
}

.exp-img7{
    width: 600px;
    align-self: ceneter;
    display: block;
    margin: 0 auto;
    border-radius: 2px;
    margin-left: 50px;
}

.exp-img8{
    width: 790px;
    align-self: ceneter;
    display: block;
    margin: 0 auto;
    border-radius: 2px;
    margin-left: 50px;
}

@media (max-width: 1000px) {
    .exp-img5{
        width: 350px;
    }
    .exp-img7{
        width: 300px;
        margin-left: 0px;
    }
    .exp-img8{
        margin-left: 0px;
        width: 350px;
    }
}



@media (max-width: 1000px) {
    .exp-img6{
        width: 150px;
        margin-top: 0px;
    }
}

.container {
    display: flex;
    align-items: center; /* Center items vertically */
}

.container2 {
    display: flex;
    align-items: flex-start;
}

@media (max-width: 1000px) {
    .container2 {
        display: flex;
        align-items: center; /* Center items vertically */
        flex-direction: column; /* Stack items vertically */
      }
}

.content-container {
    display: none;
    margin-bottom: 20px;
    transition: opacity 0.5s ease, height 0.5s ease;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.button:hover {
    background-color: #4e5d6c; /* Background color on hover, you can change this */
}

.button {
    background-color: transparent;
    color: rgb(255, 255, 255);
    outline: none;
    height: 50px;
    width: 150px;
    margin: 5px;
    font-size: 2rem;
    border: 0.5px solid gray;
    border-radius: 4px; 
}
.button:focus {
    outline: none;
}

@media (max-width: 1000px) {
    .button-container {
        display: flex;
        flex-wrap: wrap; 
    }
}


.button.active-button {
    background-color: #FF8C00;
    color: white;
    border: none;
}

#div1 {
    display: block; 
}

.empty-lines {
    margin-bottom: 100px; /* Adjust the margin as needed */
}

.rounded-box {
    background-color: #7b8185; 
    border-radius: 5px; 
    padding: 20px;
    color: #fff;
    width: 950px;
}

.rounded-box2 {
    background-color: transparent; 
    border-radius: 5px;     
    padding: 20px;
    color: #fff;
    width: 1000px;
    align-items: center;
}
.rounded-box3 {
    background-color: transparent; 
    border-radius: 5px;     
    color: rgb(255, 255, 255);
    width: 1000px;
}


@media (max-width: 1000px) {
    .rounded-box {
        width: 500px;
    }
    .rounded-box2 {
        width: 500px;
    }
    .rounded-box3 {
        width: 500px;
    }

}
@media (max-width: 800px) {
    .rounded-box {
        width: 400px;
    }
    .rounded-box2 {
        width: 400px;
    }
    .rounded-box3 {
        width: 400px;
    }
}


.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;
      font-weight: normal;
  }
  .item:hover h6,
  .item:hover p{
    color:#2b6777;
    -webkit-transition:all 0.5s ease 0s;
    transition:all 0.5s ease 0s;
  }
  .item .icon{
    font-size:40px;
    margin-bottom: 25px;
    color:yellow;
    width:90px;
    height:90px;
    line-height: 96px;
    border-radius: 50px;
  }
  .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(32, 181, 72, 0.15);
    color:#52ab98;
  }
  .item .feature_box_col_four{
    background:rgba(75, 120, 184, 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 .icon{
    font-size:40px;
    margin-bottom: 25px;
    color:yellow;
    width:90px;
    height:90px;
    line-height: 96px;
    border-radius: 50px;
  }
  .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;
  }

.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: 100px;
    margin: 30px;
}

@media (max-width: 1500px) {
    .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: 6rem;
    font-weight: normal;
}

.longterm p{
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 420px;
    margin-bottom: 6rem;
}

@media (max-width: 1500px) {
    .longterm p {
        font-size: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 120px;
        margin-bottom: 6rem;
    }
}
/* 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%; 
    }
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.aligned-heading {
    display: flex;
    justify-content: space-between;
  }
.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: 2rem;
    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: #2b3e50;
    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;
    font-weight: normal;
  }
  
  .menu__link:hover {
    opacity: 1;
    color: white;
    text-decoration: underline;
  }



.terms-container {
    display: flex;
    gap: 20px; 
    justify-content: center;
    align-items: center; 
  }

  .terms {
    text-decoration: none;
    color: white;
    text-decoration-color: white;

  }

  .terms:hover {
    color: white;
    text-decoration: underline;
    
  }



@media (max-width: 1050px){
    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);
    }

    .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;
    }
}


.rtd {
    background-color: #2b3e50; 
    padding-top: 120px;
    text-align: center;

}

.rtd h1 {
    color: #ffffff; 
    font-size: 1.7rem;
    font-weight: normal;
    
}

.rtd h2 {
    color: #ffffff; 
    font-size: 3rem;
    font-weight: normal;
}

.rtd h3 {
    color: #ffffff; 
    font-size: 1.7rem;
    font-weight: normal;
    text-align: right;
    padding-right: 20px;
    font-weight: normal;
}

.rtd h4 {
    color: #ffffff; 
    font-size: 1.7rem;
    font-weight: normal;
    text-align: left;
    padding-left: 20px;
    font-weight: normal;
}

.container-rtd {
    display: flex; /* Use flexbox */
    justify-content: center; /* Center contents horizontally */
}

.container2-rtd {
    justify-content: center; /* Center contents horizontally */
}

.container3-rtd {
    display: flex;
    justify-content: center; /* Center contents horizontally */
    margin-bottom: 10px;
}

.box-rtd {
    width: 1300px; 
    background-color: #7b8185; 
    align-self: center;
    text-align: left;
    margin-top: 50px;
    margin-bottom: 50px;
    border-radius: 5px;  
    padding: 20px;
    margin-left: 10px;
    margin-right: 10px;
}

.box2-rtd {
    width: 900px; 
    background-color: #7b8185; 
    align-self: center;
    text-align: left;
    margin-top: 50px;
    margin-bottom: 50px;
    border-radius: 5px; 
    padding: 20px; 
    margin-left: 10px;
    margin-right: 10px;
}

.box3-rtd {
    width: 310px; 
    background-color: #2b3e50; 
    align-self: center;
    display: flex;
    border-width: 2px 2px 2px 0;
    border-style: solid;
    border-color:gray;
    border-radius: 0 10px 10px 0;
    margin-right: 10px;
}

.box4-rtd {
    width: 310px; 
    background-color: #2b3e50; 
    align-self: center;
    text-align: right;
    border-width: 2px 0 2px 2px; 
    border-style: solid;
    border-color:gray;
    border-radius: 10px 0 0 10px;  
    margin-left: 10px;
}

.box5-rtd {
    padding-top: 8px;
    width: 100px; 
    height: 50px;
    /*background-color: #2b3e50; */
    background-color: gray;
    align-self: center;
    display: flex;
    border-width: 2px 0 2px 0; 
    border-style: solid;
    border-color:gray;
    border-radius: 0 0 0 0;
    text-align: center;
}

.box5-rtd h4 {
    padding-left: 35px;
    text-align: center !important;
}

.box6-rtd {
    padding-top: 8px;
    width: 260px; 
    height: 50px;
    background-color: #2b3e50; 
    align-self: center;
    text-align: right ;
    border-width: 2px 0 2px 2px; 
    border-style: solid;
    border-color:gray;
    border-radius: 10px 0 0 10px;
    align-items: center;
    margin-left: 10px;
}

.box7-rtd {
    padding-top: 8px;
    width: 260px; 
    height: 50px;
    background-color: #2b3e50; 
    align-self: center;
    text-align: right ;
    border-width: 2px 2px 2px 0; 
    border-style: solid;
    border-color:gray;
    border-radius: 0 10px 10px 0;
    align-items: center;
    margin-right: 10px;
}


.long1-rtd{
    width: 650px;
    height: 5px;
    background-color: #FF8C00;
    border-radius: 10px 10px 10px 10px;
    margin-left: 10px;
    margin-right: 10px;
}

.long2-rtd{
    width: 440px;
    height: 5px;
    background-color: #FF8C00;
    border-radius: 10px 10px 10px 10px;
    margin-left: 10px;
    margin-right: 10px;
}

.long3-rtd{
    width: 490px;
    height: 5px;
    background-color: #FF8C00;
    border-radius: 10px 10px 10px 10px;
    margin-left: 10px;
    margin-right: 10px;
}

.rtd a1{
    color: white; 
    text-decoration: underline;
}
 
.long1-dde{
    width: 930px;
    height: 5px;
    background-color: #FF8C00;
    border-radius: 10px 10px 10px 10px;
    margin-left: 10px;
    margin-right: 10px;
}

.long2-dde{
    width: 1200px;
    height: 5px;
    background-color: #FF8C00;
    border-radius: 10px 10px 10px 10px;
    margin-left: 10px;
    margin-right: 10px;
}
 