*,
::after,
::before {
    box-sizing: border-box;
}

@font-face {
    font-family: 'inter-regular';
    src: url('./../font/inter/Inter-Regular.otf') format('truetype');
}

body {
    background-color: #1a1d2e;
    font-family: 'inter-regular';
    padding: 0;
    margin: 0;
}
.bold {
    font-weight: 900;
}
.my-0 {
    margin-bottom: 0;
    margin-top: 0;
}
.currency {
    width: 15px;
}

.buttons-container {
    display: flex;
    gap: 15px;
    z-index: 5;
    position: relative;
}

.btn-style {
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
    border-radius: 25px;
    min-width: 157px;
    text-align: center;
    display: inline-block;
    height: 54px;
    line-height: 51px;
    font-size: 17px;
    text-decoration: none;
    padding: 0 10px;
    font-weight: 600;
}

.btn-style.btn-transparent {
    background-color: transparent;
    color: #fff;
    border: 1px solid #0795AA;
}
.btn-style.btn-dark {
    background-color: #010314;
    color: #fff;
    border: 1px solid #2A2B3A;
}
.btn-style.btn-dark.btn-blue-border {
    border: 1px solid #0795AA;
}
.btn-style:hover {
    background-color: #1EB6C1 !important;
    color: #ffffff !important;
    border: 1px solid #1EB6C1 !important; 
}
.btn-style > img{
    width: 11px !important;
    margin-inline-end: 3px;
    position: relative;
    top: 2px;
}
.title-section {
    text-align: center;
    color: #77798F;
    margin-bottom: 30px;
}

.title-section h1 {
    color: #ffffff;
    font-size: 35px;
    margin-bottom: 5px;
}

.title-section p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #e9e9e9;
}

.img-style-container {
    position: relative;
    padding: 50px 50px 0;
    border-radius: 25px;
    border-top: 1px solid #0795AA;
    border-bottom: 1px solid #0795AA;
    background: linear-gradient(1deg, rgba(7, 149, 170, 1) 0%, rgba(7, 149, 170, 0.21) 50%, rgba(255, 255, 255, 0) 100%);
    background-color: #010314;
}

.img-style-container img {
    width: 100%;
}

.container-benefits {
    background-color: #010314;
    padding: 70px 50px;
    border-radius: 15px;
    border-top: 1px solid #0795AA;
    border-bottom: 1px solid #0795AA;
    margin-bottom: 20px;
}

.container-benefits.low-padding {
    padding: 30px;
}

.d-l-flex {
    display: flex;
    z-index: 1;
    align-items: center;
}

.boxes-benefit {
    gap: 30px;
}

.boxes-benefit .img-style-container {
    min-height: 700px;
    padding: 30px 30px 0;
    margin-bottom: 30px;
}

.boxes-benefit .img-style-container .how-it-word-text {
    padding: 20px 0;
}

.boxes-benefit .img-style-container .how-it-word-text h1 {
    width: 400px;
    max-width: 100%;
}

.container-style {
    padding: 0 15px;
    position: relative;
}

.section-banner {
    padding-top: 130px;
    position: relative;
    overflow: hidden;
}

.section-banner .bg-img {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    animation: zoom 15s linear infinite;
}
/* .section-banner .bg-img {
    position: absolute;
    z-index: 0;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0.2;
    animation: opacity 2s linear infinite;
} */
@keyframes opacity {
    0% {
        opacity: 0.2;
        /* Start at normal size */
    }

    50% {
        opacity: 0.4;
        /* Scale up */
    }

    100% {
        opacity: 0.2;
        /* Return to normal size */
    }
}
.section-faq {
    margin-bottom: 50px;
}

.section-faq table {
    width: 100%;
}

.section-faq table td {
    border: 1px solid #2A2B3A;
    border-collapse: collapse;
    color: #d7d7da;
    padding: 10px;

}

.section-faq table td>span,
.section-faq table td>a {
    display: inline-block;
    text-align: center;
    min-width: 40px;
}

.section-faq table td>a {
    cursor: pointer;
}
.section-faq table td li {
    padding: 3px 0;
}
.section-faq table td>a.active img {
    transform: rotate(45deg);
}

.section-faq table td:first-child,
.section-faq table td:last-child {
    text-align: center;
    width: 70px;
}

.content-faq {
    display: none;
    font-size: 14px;
}

.section-faq table {
    border-collapse: collapse;
}

.item.testimonials-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 50px;
}

.item.testimonials-item img {
    width: 150px;
    border-radius: 15px;
    border: 1px solid #0795AA;
}

.item.testimonials-item .content {
    color: #fff;
}

.item.testimonials-item .content h5 {
    font-weight: 400;
    line-height: 26px;
    font-size: 16px;
    margin: 0 0 20px;
}

.item.testimonials-item .content h6 {
    margin: 0 0 5px;
    font-size: 16px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #00F0FF;
}

.item.testimonials-item .content p {
    margin: 0;
    font-size: 14px;
}

.owl-dots {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    background-color: #eee !important;
    border-radius: 50%;
}

.owl-dots .owl-dot.active {
    background-color: #00F0FF !important;
}

@keyframes zoom {
    0% {
        transform: scale(1);
        /* Start at normal size */
    }

    50% {
        transform: scale(1.7);
        /* Scale up */
    }

    100% {
        transform: scale(1);
        /* Return to normal size */
    }
}

.section-banner .title-banner {
    color: #fff;
    width: 100%;
    max-width: 100%;
}

.section-banner .title-banner .currency {
    width: 29px;
}
.title-banner h1 {
    font-size: 64px;
    margin: 10px 0;
}
.title-banner h2 {
    font-size: 45px;
    margin: 10px 0;
    position: relative;
    display: flex;
        align-items: center;
        gap: 8px;
    color: #1EB6C1;
    letter-spacing: -1px;

}
.title-banner h2 img {
    width: 65px;
}
.title-banner h2 span{
    position: relative;
    z-index: 9;
}
/* .title-banner h2::before {
    content: '';
    position: absolute;
    background-image: url(./../img/line.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 20px;
    width: 100%;
    bottom: -9px;
    z-index: 0;
} */
.title-banner h3 {
    font-size: 35px;
    margin: 10px 0;
}
.section-banner .img-section {
    position: relative;
    text-align: end;
}

.section-banner .img-section {
    position: relative;
}

.section-banner .img-section .mobile-img {
    position: relative;
    top: 6px;
}

.section-banner .hints-style {
    display: flex;
    width: max-content;
    background-color: #b7dbd4e3;
    padding: 10px 20px;
    border-radius: 15px;
    align-items: center;
    gap: 10px;
    position: absolute;
    animation: zoom2 5s linear infinite;
    font-size: 15px;
}

@keyframes zoom2 {
    0% {
        transform: scale(1);
        /* Start at normal size */
    }

    50% {
        transform: scale(1.1);
        /* Scale up */
    }

    100% {
        transform: scale(1);
        /* Return to normal size */
    }
}

.section-banner .hints-container .hints-style:nth-child(1) {
    top: -27px;
    right: -25px;
}

.section-banner .hints-container .hints-style:nth-child(2) {
    top: 30%;
    left: 100px;
}

.section-banner .hints-container .hints-style:nth-child(3) {
    top: 80%;
    left: 0;
}
.section-banner .hints-container .hints-style:nth-child(4) {
    top: 80%;
    right: 0;
}

.section-banner .hints-container .hints-style img {
    width: 37px;
    padding: 3px;
    background-color: #0795AA;
    border-radius: 5px;
}

.section-benefits {
    padding: 50px 0;
}

.section-benefits .img-color {
    text-align: center;
}

.section-benefits .img-color img {
    width: 400px;
    max-width: 95%;
    margin: auto;
}

.section-benefits h1 {
    color: #ffffff;
    font-size: 30px;
}

.section-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.section-benefits h6 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #bdbdbd;
}
.section-benefits ul li {
    color: #a8a8ad;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 27px;
    width: calc(100% - 25px);
    display: flex;
    align-items: center;
    gap: 8px;
}
.section-benefits ul li img {
    width: 19px;
    position: relative;
    top: 2px;
}
.section-benefits .container-benefits .text-section {
 color: #fff;
}
.logo-container {
    /* display: grid;
    grid-template-columns: auto auto auto auto auto; */
    padding: 10px;
}

.logo-container .logo-item {
    background-color: transparent;
    /* border: 1px solid #2A2B3A; */
    padding: 10px;
    text-align: center;
    height: 40px;
    display: grid;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.logo-container .logo-item img {
    max-width: 90%;
    max-height: 90%;
}


.section-how-it-work {
    position: relative;
}

.how-it-word-text {
    padding: 20px 50px;
    width: 450px;
    max-width: 100%;
}

.how-it-word-text h1 {
    color: #fff;
    font-size: 33px;
    line-height: 50px;
}

.how-it-word-text p {
    color: #c9c9cd;
    font-size: 17px;
    line-height: 30px;
}

.how-it-word-text h3 {
    color: #0795AA;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mb-3 {
    margin-bottom: 20px;
}
.how-it-word-text h3 img {
    width: 22px !important;
}
.section-estimate {
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}
.section-estimate .img-style-container .content {
    width: 746px;
    max-width: 100%;
    padding: 70px 30px;
    margin: auto;
}
.section-estimate .img-style-container .content .buttons-container{
 justify-content: center;
}
.stars-container img {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 50px;
}
.stars-container img:last-child {
    right: 0;
    left: unset

}
.logo-arib {
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: -85px;
}
.logo-arib img {
    height: 50px;
}
.section-faq table td h4 {
    font-weight: 600;
}
@media (min-width: 991px) {
    .btn-style {
        padding: 0 20px;
    }
    .container-style {
        width: 1300px;
        max-width: 95%;
        margin: auto;
    }

    .w-l-50 {
        width: 50%;
    }
    .logo-container .logo-item {
        margin-bottom: 20px;
    }
    .title-banner h2 {
        min-height: 81px;
    }
}

@media (max-width: 991px) {
    .section-logos .title-section p {
        display: none;
    }
    .logo-arib {
        top: -27px;
    }
    .logo-arib img {
        height: 45px;
    }
    .section-logos .title-section {
        margin-bottom: 0px;
    }
    .section-banner .title-banner {
        line-height: 38px !important;
        margin-bottom: 20px;
        text-align: center;
    }
    .container-style {
        width: 100%;
        max-width: 100%;
        margin: auto;
    }

    .d-l-flex {
        display: block;
    }

    .section-banner {
        padding: 50px 20px 30px;
    }

    .section-benefits .d-l-flex {
        display: flex;
        flex-direction: column-reverse;
    }

    .boxes-benefit .img-style-container {
        min-height: unset;
        padding: 15px 15px 0;
    }
    .how-it-word-text h1 {
        font-size: 26px;
    }
    .how-it-word-text p {
        font-size: 14px;
        line-height: 23px;
    }
    .how-it-word-text {
        padding: 5px 5px;
        width: 100%;
        max-width: 100%;
    }
    .how-it-word-text h1 {
        font-size: 22px;
    }
    .logo-container {
        grid-template-columns: auto auto;
    }
    .title-section p {
        flex-direction: column;
    }
    .title-section h1 {
        font-size: 26px;
    }
    .section-banner .title-banner {
        width: 300px;
        max-width: 100%;
        font-size: 29px;
        margin: auto;
    }
    .section-banner .img-section {
        text-align: center;
        margin-top: 50px;
    }
    .section-banner .img-section .mobile-img {
        max-width: 90%;
    }
    .section-banner .hints-container .hints-style:nth-child(1) {
        right: 0px;
    }
    .section-banner .hints-style {
        padding: 7px 17px;
        font-size: 12.5px;
    }
    .section-banner .hints-container .hints-style img {
        width: 32px;
    }
    .container-benefits {
        padding: 30px 15px;
    }
    .section-benefits {
        padding: 25px 0;
    }
    .section-faq table td:first-child, .section-faq table td:last-child {
        width: 50px;
    }
    .section-faq table td:first-child {
        display: none;
    }
    .section-faq table td {
        padding: 3px 6px;
    }
    .section-faq table td h4{
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }
    .section-faq table td>a img {
        width: 20px;
    }
    .item.testimonials-item {
        padding: 0 15px;
        display: block;
    }
    .item.testimonials-item img {
        margin-bottom: 20px;
    }
    .owl-dots {
        margin-top: 20px;
    }
    .section-estimate .img-style-container .content {
        padding: 18px 9px;
    }
    .img-style-container {
        padding: 18px 5px 0;
    }
    .btn-style {
        min-width: 132px;
        height: 48px;
        line-height: 43px;
        font-size: 13px;
        padding: 0 10px;
    }
    .section-banner .hints-container .hints-style:nth-child(1) {
        top: -12px;
    }
    .section-banner .hints-container .hints-style:nth-child(3) {
        top: 40%;
    }
    .section-banner .hints-container .hints-style:nth-child(4) {
        top: 94%;
    }
    .section-banner .hints-container .hints-style:nth-child(2) {
       display: none;
    }
    .title-banner h1 {
        font-size: 27px;
    }
    
.title-banner h2 {
    font-size: 22px;
    min-height: 38px;
}
.title-banner h2 img{
  display: none;
}
.title-banner h3 {
    font-size: 19px;
    font-weight: 400;
}
.section-banner .buttons-container {
    justify-content: center;
}
.section-banner .buttons-container .btn-style {
    width: 192px;
    height: 55px;
    line-height: 52px;
    font-size: 20px;
    color: #1d9ca8;
    border-color: #1d9ca8;
}
.section-banner .buttons-container .btn-style.btn-dark{
   display: none;
}
.title-banner h2 span {
    margin: auto;
}
}