@font-face {
    font-family: "Montserrat";
    font-weight: 300;
    src: url('fonts/Montserrat-Light.ttf') format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    font-weight: normal;
    src: url('fonts/Montserrat-Medium.ttf') format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    font-weight: bold;
    src: url('fonts/Montserrat-Bold.ttf') format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    font-weight: normal;
    src: url('fonts/Raleway-Regular.ttf') format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    font-weight: bold;
    src: url('fonts/Raleway-Bold.ttf') format("truetype");
    font-display: swap;
}

body {
    background: linear-gradient(#E4E4E4, #E4E4E4);
    color: #2E67F4;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
}

img {
    width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    margin: 0;
}

h1 {
    font-size: 36px;
    font-weight: 300;
    margin: 0;
}

header {
    background: linear-gradient(#FF9800, #FF9800);
    position: fixed;
    height: 80px;
    width: 100%;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    padding: 5px 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    box-sizing: border-box;
    max-width: 1200px;
    width: 100%;
    gap: 20px;
    z-index: 1000;
    position: fixed;
}

header.fixed {
    padding: 0;
    box-shadow: 0 -1px 20px #00000061;
}

.navbar {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #2E67F4;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 80%;
    display: block;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    width: 100%;
    display: flex;
    padding: 30px;
    gap: 10px;
    justify-items: center;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
}

.copyrights {
    text-align: center;
    padding-top: 20px;
}

footer h1 {
    font-size: 24px;
    font-weight: normal;
}

footer a {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    transition: color 0.5s ease;
}

footer a:hover {
    color: #ff9900;
}

footer ul {
    margin: 0;
    padding: 0;
    font-weight: 300;
}

footer li {
    list-style: none;
}

.social-medias {
    color: #2784E2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.btn-h {
    background: #2E67F4;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    border: 1px solid transparent;
    padding: .375rem 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    text-align: center;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.btn-h:hover {
    background: linear-gradient(to right, #1661AE, #2E67F4);
}

.btn-h:active {
    background: linear-gradient(to right, #02488F, #1661AE);
    color: #2784E2;
}

.hamburger-menu {
    display: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.nav-links a {
    position: relative;
    transition: color 0.2s ease, border-bottom 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #0381ed;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0381ed;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:active::after {
    width: 100%;
}

.nav-links a:focus::after {
    width: 100%;
}

.nav-links a:not(:hover)::after {
    width: 0%;
}

.nav-links li {
    list-style: none;
}

.nav-links .dropdown,
header .header-services-dropdown {
    position: relative;
}

.nav-links .header-services-dropdown > .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    padding: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1001;
    min-width: 220px;
    list-style: none;
}

.nav-links .dropdown-menu li {
    list-style: none;
}

.nav-links .dropdown-menu a {
    display: block;
    padding: 10px 0;
    color: #2E67F4;
    text-decoration: none;
}

.nav-links .dropdown.open .dropdown-icon,
.nav-links .header-services-dropdown.is-open .dropdown-icon {
    transform: rotate(-180deg);
    transition: transform 0.3s ease;
}

@media screen and (min-width: 769px) {
    .nav-links .header-services-dropdown > .dropdown-menu {
        top: 100% !important;
        margin-top: 0 !important;
        padding: 22px 0 0;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }

    .nav-links .header-services-dropdown > .dropdown-menu::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 22px;
        bottom: 0;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
        z-index: -1;
    }

    .nav-links .header-services-dropdown > .dropdown-menu::before {
        top: 12px;
        left: 24px;
        z-index: 1;
    }

    .nav-links .header-services-dropdown > .dropdown-menu > li {
        position: relative;
        z-index: 1;
    }

    .nav-links .header-services-dropdown > .dropdown-menu > li:first-child a {
        padding-top: 12px;
    }

    .nav-links .header-services-dropdown > .dropdown-menu > li:last-child a {
        padding-bottom: 12px;
    }

    .nav-links .header-services-dropdown > .dropdown-menu a {
        display: block !important;
        padding-left: 20px;
        padding-right: 20px;
    }

    header .header-services-dropdown:hover > .dropdown-menu,
    header .header-services-dropdown.show > .dropdown-menu,
    header .header-services-dropdown.open > .dropdown-menu,
    header .header-services-dropdown.is-open > .dropdown-menu,
    header .header-services-dropdown .dropdown-menu.show {
        display: block !important;
    }

    header .header-services-dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 34px;
        z-index: 1000;
    }
}

header,
.header-content,
.navbar,
.nav-links {
    overflow: visible;
}

.nav-links .dropdown-menu {
    text-align: center;
}

.dropdown-menu a{
    text-transform: capitalize;
    display: inline-block !important;
}

.dropdown-menu a::after {
    bottom: 7px;
}

.dropdown-menu:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ffffff;
    top: -8px;
    left: 20px;
}

.main-content {
    margin-top: 80px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner {
    position: relative;
    background: linear-gradient(to bottom, #DE5A01, #FA8C01);
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg-animation.webp');
    opacity: 0.1;
    background-size: cover;
    background-position: center;
}

.banner-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.b-animation {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    align-content: center;
    flex-wrap: wrap;
}

.b-animation svg {
    width: 80%;
}

.banner-animation::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/geometric-animation.webp');
    background-size: cover;
    mix-blend-mode: screen;
    position: absolute;
    opacity: 0.1;
}

.banner-text {
    color: #FFF;
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
}

.b-text {
    display: none;
}

.b-text.active {
    display: block;
    animation: fadeIn 2s ease-in-out;
}

.btn-s {
    background:
        linear-gradient(to right, #FFB768, #FF8500) padding-box,
        linear-gradient(to right, #D97B15, #F5BE82) border-box;
    padding: 10px 20px;
    color: #FFF;
    border-radius: 50px;
    border: 2px solid transparent;
    display: inline-block;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
}

.btn-s:hover {
    background:
        linear-gradient(to right, #2E67F4, #1661AE) padding-box,
        linear-gradient(to right, #1661AE, #2E67F4) border-box;
}

.btn-s:active {
    background:
        linear-gradient(to right, #02488F, #1661AE) padding-box,
        linear-gradient(to right, #003163, #1661AE) border-box;
    color: #2784E2;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.f-24 {
    font-size: 24px;
}

.f-32 {
    font-size: 32px;
}

.blue-t {
    color: #2E67F4;
    font-weight: normal;
}

.orange-t {
    color: #FF9800;
    font-weight: normal;
}

.white-t {
    color: #FFF;
    font-weight: normal;
}

.light-t {
    font-weight: 300;
}

.p-15 {
    padding: 15px;
}

.px-15 {
    padding: 0 15px;
}

.py-10 {
    padding: 10px 0;
}

.py-15 {
    padding: 15px 0;
}

.py-20 {
    padding: 20px 0;
}

.py-30 {
    padding: 30px 0;
}

.py-60 {
    padding: 60px 0;
}

.mt-40 {
    margin-top: 40px
}

.title {
    text-align: center;
}

.o-subtitle {
    text-align: center;
    font-size: 29px;
    color: #FF9800;
    font-weight: 300;
}

.w-subtitle {
    text-align: center;
    font-size: 29px;
    font-weight: 300;
    margin: 20px 0;
    padding: 10px 0;
}

.service {
    display: flex;
    flex-direction: column;
}

.service p {
    font-size: 24px;
    font-weight: 300;
}

.advantages {
    text-align: center;
    font-size: 24px;
    font-weight: 300;
}

.content-l {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12%;
}

.content-r {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12%;
}

.desc {
    flex-grow: 1;
}

.orange-bg {
    background: linear-gradient(to bottom, #FF9800, #FF9800);
    text-align: center;
    color: #FFF;
}

.white-bg {
    background: linear-gradient(to bottom, #ffffff, #ffffff);
}

.dblue-bg {
    background: linear-gradient(to bottom, #1661AE, #1661AE);
    width: 100%;
    display: grid;
    align-content: space-between;
}

.dblue-bg span {
    color: #2784E2;
    text-transform: uppercase;
    font-size: 12px;
}

.dblue-bg ul {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
}

.blue-bg {
    background: linear-gradient(to bottom, #2E67F4, #2E67F4);
    color: #FFF;
    overflow: hidden;
    position: relative;
}

.c-container {
    position: relative;
    display: flex;
    overflow: hidden;
    outline: none;
}

.lblue-bg {
    background: linear-gradient(to bottom, #5D89F6, #5D89F6);
    text-align: center;
    flex-shrink: 0;
    width: 180px;
    height: 140px;
    margin-right: 15px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    gap: 10px;
}

.lblue-bg img {
    width: 65px;
    height: 65px;
}

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
}

.carousel-inner span {
    flex: 0 0 auto;
}

.doubts-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    gap: 20px;
    margin-top: 15px;
}

.doubts,
.tryit {
    width: 80%;
    padding: 20px;
    background: linear-gradient(to bottom, #FFF, #FFF);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
    border-radius: 30px;
}

.doubts h2,
.tryit h2 {
    margin: 10px 0;
    color: #FF9800;
    font-size: 32px;
    font-weight: normal;
}

.doubts p,
.tryit p {
    margin: 10px 0;
    color: #2E67F4;
    font-size: 20px;
    font-weight: 300;
}

.video-testimonials {
    position: relative;
}

.video-testimonial {
    position: relative;
    width: 310px;
    height: 420px;
    cursor: pointer;
}

.video-testimonial img {
    position: relative;
    z-index: 3;
    left: 0;
    width: 100%;
}

.video-testimonial iframe,
.video-testimonial .youtube-facade--phone,
.video-testimonial .youtube-facade--phone.is-playing iframe {
    position: absolute;
    top: 17px;
    left: 16px;
    width: 88%;
    height: 418px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    z-index: 3;
}

.videotestimonials-swiper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    display: flex;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 25px;
    box-sizing: border-box;
}

.testimonials-swiper {
    overflow: hidden;
    position: relative;
}

.testimonial {
    background: linear-gradient(to bottom, #FFF, #FFF);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0px 10px #0000001f;
    margin: 0 65px;
}

.client-testimonial {
    font-size: 15px;
    font-weight: normal;
}

.client-name {
    color: #FF9800;
    font-size: 15px;
    font-weight: 900;
    margin-top: 15px;
    margin-bottom: 0;
}

.client-company {
    color: #1976D3;
    font-size: 15px;
    font-weight: normal;
    text-transform: uppercase;
    margin: 0;
}

.swiper-wrapper {
    align-items: center;
}

.swiper-slide {
    display: flex !important;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.pagination-container {
    height: 500px;
}

.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    margin: 0 5px !important;
    width: 18px !important;
    height: 18px !important;
    background-color: #FFF !important;
    border: 1px solid #E4E4E4 !important;
    box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.1) !important;
    opacity: unset !important;
    ;
}

.swiper-pagination-bullet-active {
    background-color: #D9D9D9 !important;
    border: 1px solid #E4E4E4 !important;
    box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.1) !important;
}

.swiper-button-prev,
.swiper-button-next {
    width: 50px !important;
    color: #F8DCB3 !important;
    transition: fill 0.1s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #FF9800 !important;
}

.swiper-button-prev:active,
.swiper-button-next:active {
    color: #808080 !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: none !important;
}

.swipper-button-bg {
    background: #F5F5F5;
    padding: 50px 10px;
    border-radius: 5px;
}

.swipper-button-bg:active {
    background: #D9D9D9;
}

.btn-fixed {
    position: fixed;
    bottom: 70px;
    right: 15px;
    z-index: 1500;
    display: flex;
    align-items: center;
    outline: none !important;
    text-align: center;
    text-decoration: none !important;
}

.btn-fixed-bg {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 2px 2px 3px #00000061;
    transition: background 1s ease;
}

.btn-fixed-bg:hover {
    background: #189568;
}

.fIn-effect {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fadeIn {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .dropdown a {
        display: inline !important;
    }
    
    .dropdown li {
        padding: 10px;
        border-radius: 7px;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar .header-content {
        justify-content: flex-start;
    }
    
    .nav-links, .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        background: linear-gradient(to bottom, #FFF, #FFF);
    }

    .nav-links .dropdown-menu {
        position: static;
        top: auto !important;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
    }

    .nav-links .header-services-dropdown.is-open > .dropdown-menu,
    .nav-links .header-services-dropdown.open > .dropdown-menu,
    .nav-links .header-services-dropdown.show > .dropdown-menu {
        display: block !important;
        margin-top: 12px;
        padding: 0;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }

    .nav-links .header-services-dropdown > .dropdown-menu::before,
    .nav-links .header-services-dropdown > .dropdown-menu::after {
        display: none;
    }

    .nav-links .header-services-dropdown > .dropdown-menu > li:first-child a,
    .nav-links .header-services-dropdown > .dropdown-menu > li:last-child a {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 0;
        padding-right: 0;
    }

    .dropdown-menu a::after {
        background-color: #dc6600;
        bottom: 7px;
    }

    .nav-links .dropdown-menu li {
        margin-bottom: 0;
    }

    .nav-links .dropdown-menu a {
        padding: 10px 0;
        color: #dc6600;
    }

    .hamburger-menu {
        display: block;
        cursor: pointer;
    }

    .nav-links {
		display: none;
        flex-direction: column;
        position: absolute;
        top: 75%;
        right: 0;
        background-color: #ffffff;
        width: 95%;
        padding: 20px;
        box-sizing: border-box;
        box-shadow: 0 9px 23px 2px rgba(0, 0, 0, .1);
        border-radius: 10px;
        text-transform: capitalize;
        gap: 20px;
    }

    .nav-links li {
        margin-bottom: 10px;
    }

    .nav-links:before {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #ffffff;
        top: -10px;
        right: 15px;
    }

    .main-content {
        flex-direction: column;
        gap: 0;
        align-items: center;
        justify-content: center;
    }

    .banner-text {
        justify-content: center;
        text-align: center;
    }

    .content-l {
        flex-direction: column;
    }

    .content-r {
        flex-direction: column;
    }

    .content-r img {
        order: 1;
    }

    .content-r .desc {
        order: 2;
    }

    .logo {
        width: 100%;
    }

    .desc {
        text-align: center;
    }

    .h1 {
        font-size: 28px;
    }

    .service-p {
        font-size: 18px;
    }

    .o-subtitle {
        font-size: 25px;
    }

    .w-subtitle {
        font-size: 28px;
    }

    .testimonial {
        margin: 0;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .doubts-section {
        position: relative;
        text-align: center;
        margin-top: 50px;
        padding-top: 100px;
    }

    .doubts-section img {
        width: 100%;
        max-width: 600px;
        display: block;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .doubts,
    .tryit {
        position: absolute;
        top: 40%;
        width: 30%;
        padding: 20px;
        background: linear-gradient(to bottom, #FFF, #FFF);
        box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
        border-radius: 30px;
        z-index: 2;
    }

    .doubts {
        left: 5%;
        transform: translateY(-50%);
    }

    .tryit {
        right: 5%;
        transform: translateY(-50%);
    }

    .doubts h2,
    .tryit h2 {
        margin: 10px 0;
        color: #FF9800;
        font-size: 32px;
        font-weight: normal;
    }

    .doubts p,
    .tryit p {
        margin: 10px 0;
        color: #2E67F4;
        font-size: 20px;
        font-weight: 300;
    }

    footer {
        display: grid;
        color: #FFF;
        grid-template-columns: 75% 25%;
        align-items: normal;
    }

    .footer-content {
        padding: 0;
    }

    .copyrights {
        text-align: start;
    }
}

@media screen and (min-width: 1024px) {
    .footer-content {
        display: grid;
        grid-template-columns: 30% 35% 35%;
        padding: 30px;
        gap: 10px;
        justify-items: center;
        align-items: start;
        justify-content: center;
        width: auto;
    }

    footer li a {
        white-space: nowrap;
    }
}