@font-face {
    font-family: 'Eurostile Extended';
    src: url('../fonts/EurostileExtended-Black.woff2') format('woff2'),
        url('../fonts/EurostileExtended-Black.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'haas_grot_text_trial55_roman';
    src: url('../fonts/neuehaasgrottext-55roman-trial.woff2') format('woff2'),
        url('../fonts/neuehaasgrottext-55roman-trial.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'haas_grot_text_trial75_bold';
    src: url('../fonts/neuehaasgrottext-75bold-trial.woff2') format('woff2'),
        url('../fonts/neuehaasgrottext-75bold-trial.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'haas_grot_text_trial55_roman' !important;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    background: #FFFFFF;
    overflow-x: hidden;
}

.container,
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1310px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
    margin: 0 0 10px;
    padding: 0;
    font-family: 'Eurostile Extended' !important;
    font-weight: bold;
    line-height: 1em;
}

h5,
.h5,
h6,
.h6 {
    font-family: 'haas_grot_text_trial55_roman' !important;
}

h2 {
    text-transform: uppercase;
    font-size: 22px;
}

p,
ul {
    margin: 0 0 15px;
    padding: 0;
    font-size: 15px;
    line-height: 1.37em;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #0AB3FF;
    font-weight: 700;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="phone"] {
    width: 100%;
    height: auto;
    border: none;
    font-size: 17px;
    line-height: 14px;
    color: #000000;
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="phone"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    font-weight: 400;
    font-size: 15px;
    line-height: 14px;
    color: #000000;
}

textarea {
    width: 100%;
    height: 60px;
    border: none;
    outline: none;
    resize: none;
    font-size: 17px;
    line-height: 14px;
    color: #000000;
}

.sub-heading {
    display: block;
    font-size: clamp(15px, 1.181vw, 17px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #60CF71;
    margin: 0 0 10px;
}

@media(min-width: 768px) {
    h2 {
        text-transform: uppercase;
        font-size: 22px;
    }

    p,
    ul {
        margin: 0 0 20px;
        font-size: 16px;
    }

    .sub-heading {
        margin: 0 0 15px;
    }
}

@media(min-width: 1200px) {
    a:hover {
        color: #60CF71;
    }

    h2 {
        font-size: 36px;
    }
}

p:last-child,
ul:last-child {
    margin-bottom: 0;
}

:focus {
    outline: none !important;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    max-width: 100%;
}

.btn {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 100px;
    border: none;
    font-family: 'haas_grot_text_trial75_bold';
    font-weight: normal;
    font-size: 16px;
    line-height: 1em;
    color: #FFFFFF;
    text-transform: uppercase;
    background: linear-gradient(90deg, #60CF71 0%, #0AB3FF 100%);
    transition: all ease-in-out 0.3s;
}

.btn::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: calc(100% - 9px);
    height: calc(100% - 10px);
    border: 2px solid #011C30;
    border-radius: 100px;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
}

@media(min-width: 768px) {
    .btn {
        padding: 18px 52px;
        font-size: 17px;
    }
}

@media(min-width: 1200px) {
    .btn:hover {
        background: linear-gradient(90deg, #0AB3FF 0%, #60CF71 100%);
        transition: all ease-in-out 0.3s;
        color: #FFFFFF;
    }
}

/* page-header */

.page-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-warp {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.logo {
    max-width: 120px;
}

.logo a {
    display: block;
    width: 120px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-btn .btn {
    font-size: 13px;
    padding: 15px 25px;
}

.navbar {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 999;
    width: 300px;
    height: 100%;
    background: #011827;
    opacity: 0;
    transition: 0.3s ease;
    padding: 30px 0 0 30px;
}

.navbar.show {
    left: 0;
    opacity: 1;
}

.navbar ul li:not(:last-child) {
    margin: 0 0 15px;
}

.navbar ul li a {
    font-size: 14px;
    line-height: 1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.toggle-btn {
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 7px;
    width: 30px;
    height: 30px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
}

.toggle-btn span {
    width: 100%;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: 0.2s ease-in-out;
}

.toggle-btn.open {
    row-gap: 0;
}

.toggle-btn.open span:first-child {
    transform: rotate(45deg) translate(1px, 1px);
}

.toggle-btn.open span:nth-child(2) {
    display: none;
}

.toggle-btn.open span:last-child {
    transform: rotate(-45deg) translate(1px, -1px);
}

@media (min-width: 768px) {
    .navbar {
        width: 60%;
        padding: 45px 0 0 40px;
    }

    .logo {
        max-width: 180px;
    }

    .logo a {
        width: 180px;
    }
}

@media (min-width: 1024px) {
    .toggle-btn {
        display: none;
    }

    .header-right {
        gap: 60px;
    }

    .navbar {
        position: relative;
        top: unset;
        left: unset;
        width: unset;
        background: transparent;
        opacity: 1;
        padding: 0;
    }

    .navbar ul {
        display: flex;
        align-items: center;
    }

    .navbar ul li a {
        position: relative;
        font-size: 15px;
        padding: 0 0 20px;
    }

    .navbar ul li.active a,
    .navbar ul li a:hover {
        background: linear-gradient(90deg, #60CF71 0%, #0AB3FF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }

    .navbar ul li a::after {
        position: absolute;
        content: "";
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
        width: 15px;
        height: 15px;
        background: url(../img/menu-link-shape.png) no-repeat center center;
        visibility: hidden;
        opacity: 0;
    }

    .navbar ul li.active a::after {
        visibility: visible;
        opacity: 1;
    }

    .navbar ul li:not(:last-child) {
        margin: 0 60px 0 0;
    }

    .header-btn .btn {
        font-size: 15px;
        padding: 15px 30px;
    }
}

@media (min-width: 1200px) {
    .logo {
        max-width: 275px;
    }

    .logo a {
        width: 275px;
    }

    .navbar ul li a {
        font-size: 17px;
    }

    .header-btn .btn {
        font-size: 17px;
    }
}


/* Dropdown base */
.navbar ul li.has-dropdown {
    position: relative;
}

@media only screen and (max-width:760px) {
    .navbar ul li.has-dropdown a {
        display: block;
        position: relative;
    }

    .navbar ul li.has-dropdown a::after {
        position: absolute;
        content: "";
        top: 0;
        right: 20px;
        width: 15px;
        height: 15px;
        background: url(../img/menu-link-shape.png) no-repeat center center;
    }
}

.navbar ul li .dropdown {
    position: absolute;
    top: 180%;
    left: -25px;
    background: #011827;
    min-width: 200px;
    display: none;
    flex-direction: column;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.navbar ul li .dropdown li {
    margin: 0;
    width: 100%;
    text-align: left !important;
}

.navbar ul li .dropdown li a {
    padding: 15px;
    display: block;
    font-size: 15px;
    text-transform: none;
    color: #FFFFFF !important;
    white-space: nowrap;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    transition: 0.5s;
    background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.navbar ul li .dropdown li a:after {
    display: none;
}

.navbar ul li .dropdown li a:hover {
    background: linear-gradient(90deg, #60CF71 0%, #0AB3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: 0.5s;
}

.navbar ul li.has-dropdown:hover>a {
    background: linear-gradient(90deg, #60CF71 0%, #0AB3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: 0.5s;
}

/* Show dropdown on hover (desktop) */
@media (min-width: 1024px) {
    .navbar ul li.has-dropdown:hover>.dropdown {
        display: flex;
    }
}

@media only screen and (max-width:1023px) {
    .navbar ul li .dropdown {
        position: inherit;
        left: auto;
        top: auto;
        box-shadow: none;
    }

    .navbar ul li .dropdown li a {
        padding: 10px 0;
        font-size: 13px;
    }
}

/* masthead */

.masthead {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.masthead .particle-network-animation {
    z-index: 1;
}

.masthead .dotsCanvas {
    position: absolute;
    z-index: 1;
    height: 80%;
    opacity: 0.4;
}

.masthead__dots {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
}

.masthead__wave {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 483px;
    height: 100%;
    object-fit: cover;
}

.masthead__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.masthead__wrap {
    position: relative;
    z-index: 4;
    padding: 150px 0 80px;
}

.masthead__content h1 {
    margin: 0 0 15px;
    font-size: 30px;
    line-height: 1.1em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.masthead__content p {
    margin: 0 0 20px;
    color: #FFFFFF;
}

@media(min-width: 768px) {
    .masthead__wrap {
        padding: 180px 0 100px;
    }

    .masthead__content {
        max-width: 784px;
    }

    .masthead__content h1 {
        margin: 0 0 15px;
        font-size: 45px;
    }
}

@media(min-width: 1200px) {
    .masthead__wrap {
        padding: 225px 0 160px;
    }

    .masthead__content h1 {
        margin: 0 0 15px;
        font-size: 57px;
    }

    .masthead__content p {
        margin: 0 0 32px;
        max-width: 600px;
        font-size: 17px;
    }

    .masthead__dots {
        height: 490px;
        opacity: 0.06;
    }
}

/* service section */

.service-area {
    background: #fff;
    padding: 50px 0;
}

.service-titles {
    text-align: center;
    padding: 0 0 30px;
}

.service-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 0;
    margin: 0 -15px;
}

.service-col {
    width: 100%;
    padding: 0 15px;
}

.service-cards {
    position: relative;
    min-height: 335px;
}

.cards-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #EEF6FA;
    border: 1px solid #F7F7F7;
    border-radius: 55px 0 55px 0;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.05);
}

.cards-back img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 55px 0 55px 0;
    opacity: 0;
    transition: 0.3s linear;
}

.service-card-content {
    display: block;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 52px 16px 25px 22px;
}

.card-no {
    position: absolute;
    top: 40px;
    right: 32px;
    font-weight: 500;
    font-size: 60px;
    line-height: 1;
    color: #F6F6F6;
    transition: 0.3s;
}

.service-card-content figure {
    display: block;
    max-width: 58px;
    margin: 0;
}

.service-card-content span {
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    font-weight: 700;
    color: #0C0C0C;
    font-family: 'haas_grot_text_trial75_bold';
    margin: 30px 0 12px 0;
}

.service-card-content p {
    font-size: 15px;
    line-height: 1.4666em;
    font-weight: 400;
    color: #2C2C2C;
}

.service-card-content .btn {
    display: block;
    font-size: 15px;
    width: max-content;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%, 55px);
    visibility: hidden;
    opacity: 0;
    padding: 14px 22px;
}

@media (min-width: 768px) {
    .service-area {
        padding: 65px 0;
    }

    .service-titles {
        max-width: 830px;
        margin: 0 auto;
    }

    .service-titles h2 {
        max-width: 560px;
        margin: 0 auto 10px auto;
    }

    .service-col {
        width: 50%;
    }
}

@media (min-width: 1200px) {
    .service-area {
        padding: 80px 0;
    }

    .service-col {
        width: 33.33%;
    }

    .service-cards:hover .cards-back img {
        opacity: 1;
    }

    .service-cards:hover .card-no {
        color: rgba(255, 255, 255, 0.2);
    }

    .service-cards .service-card-content figure,
    .service-cards .service-card-content span,
    .service-cards .service-card-content p {
        transition: 0.3s;
    }

    .service-cards:hover .service-card-content figure,
    .service-cards:hover .service-card-content span,
    .service-cards:hover .service-card-content p {
        visibility: hidden;
        opacity: 0;
    }

    .service-cards:hover .service-card-content .btn {
        transform: translate(-50%, 0);
        visibility: visible;
        opacity: 1;
    }
}

/* about section */

.about-us {
    position: relative;
    background: linear-gradient(89.97deg, #011827 0.76%, #03445C 78.82%, #011E30 98.86%);
    padding: 45px 0 0 0;
}

.about-left-content h2 {
    color: #fff;
}

.about-left-content p {
    color: #B9B9B9;
}

.about-left-content p:last-of-type {
    margin-bottom: 20px;
}

.about-left-content {
    position: relative;
    z-index: 2;
}

.about-right-image {
    max-width: 80%;
    position: relative;
    bottom: -20px;
    z-index: 2;
    pointer-events: none;
    margin: 0 auto;
}

.about-right-image img {
    margin: 0 auto;
}

.particle-network-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: transparent;
    opacity: 0.6;
}

.glow {
    z-index: -1;
    position: fixed;
    top: 50%;
    left: 50%;
    background-image: radial-gradient(circle closest-side, rgba(255, 255, 255, 0.025), transparent);
}

.glow-1 {
    width: 150vw;
    height: 150vh;
    margin-top: -75vh;
    margin-left: -75vw;
    animation: glow-1-move 25s linear infinite both;
}

@keyframes glow-1-move {
    from {
        transform: translate(-100%, 100%);
    }

    to {
        transform: translate(100%, -100%);
    }
}

.glow-2 {
    width: 100vw;
    height: 100vh;
    margin-top: -50vh;
    margin-left: -50vw;
    animation: glow-2-move 25s linear 8.3333333333s infinite both;
}

@keyframes glow-2-move {
    from {
        transform: translate(-100%, 0%);
    }

    to {
        transform: translate(100%, 100%);
    }
}

.glow-3 {
    width: 120vw;
    height: 120vh;
    margin-top: -60vh;
    margin-left: -60vw;
    animation: glow-3-move 25s linear 16.6666666667s infinite both;
}

@keyframes glow-3-move {
    from {
        transform: translate(100%, 100%);
    }

    to {
        transform: translate(0%, -100%);
    }
}

@media (min-width: 768px) {
    .about-us {
        padding: 65px 0;
    }

    .about-wrapper {
        display: flex;
        flex-wrap: wrap;
    }

    .about-left-content {
        width: 56%;
    }

    .about-right-image {
        width: 44%;
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .about-us {
        padding: 0;
    }

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

    .about-left-content {
        width: 50%;
        padding-right: 25px;
    }

    .about-left-content h2 {
        max-width: 440px;
    }

    .about-left-content p:last-of-type {
        margin-bottom: 30px;
    }

    .about-right-image {
        width: 50%;
        bottom: unset;
        margin-bottom: -35px;
    }

    .about-right-image img {
        margin: 0 0 0 auto;
    }
}

/* testimonials */

.testimonials {
    background: #fff;
    padding: 50px 0;
}

.testimonials-title {
    text-align: center;
    padding: 0 0 30px;
}

.js-testimonials-slider {
    padding: 0 0 40px;
    margin: 0 -15px;
}

.js-testimonials-slider .slick-list {
    padding: 42px 0 20px 0 !important;
}

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

.testimonials-card {
    text-align: center;
    background: #EEF6FA;
    border: 1px solid #EFEFEF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    min-height: 285px;
    padding: 0 20px 35px 20px;
}

.quoat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    background: #FFFFFF;
    border: 1px solid #EFEFEF;
    border-radius: 50%;
    margin: 0 auto;
    margin-top: -42px;
}

.revw-text {
    font-size: 15px;
    line-height: 1.4705882352941178em;
    font-weight: 400;
    margin: 25px 0 15px 0;
}

.testi-bottom span {
    display: block;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: 'haas_grot_text_trial75_bold';
}

.testi-bottom p {
    margin: 6px 0 0;
}

@media (min-width: 768px) {
    .testimonials {
        padding: 65px 0;
    }

    .testimonials-title {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (min-width: 1200px) {
    .testimonials {
        padding: 80px 0;
    }

    .testimonials-title {
        max-width: 650px;
        padding: 0 0 65px;
    }

    .js-testimonials-slider {
        padding: 0 0 64px;
    }

    .testimonials-card {
        padding: 0 45px 32px 45px;
    }

    .revw-text {
        font-size: 17px;
    }
}

.contact-section {
    position: relative;
    padding: 50px 0 0;
}

.wave-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #EEF6FA;
}

.contact-section canvas {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.1;
}

.contact-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 30px 0;
}

.contact-left img {
    max-width: 80%;
    margin: 0 auto;
}

.contact-right {
    text-align: center;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 65px 0 0;
    }

    .contact-wrapper {
        align-items: center;
        flex-direction: row;
    }

    .contact-left {
        width: calc(50% - 38px);
        padding-right: 20px;
    }

    .contact-left img {
        max-width: 100%;
        margin: 0 auto 0 0;
    }

    .contact-right {
        width: calc(50% + 38px);
        text-align: left;
        padding-left: 20px;
    }
}

@media (min-width: 1200px) {
    .contact-section {
        padding: 80px 0 0;
    }

    .contact-left {
        width: 525px;
    }

    .contact-right {
        width: calc(100% - 525px);
        padding-left: 70px;
    }

    .contact-right h2 {
        font-size: 65px;
        margin: 0 0 15px;
    }
}

/* footer start */

.footer {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: #011827;
}

.footer-wrapper {
    position: relative;
    z-index: 2;
    padding: 45px 0 50px 0;
}

.footer-col:not(:last-child) {
    margin: 0 0 25px;
}

.ftr-logo {
    max-width: 200px;
    padding: 0 0 15px;
}

.footer-col p {
    color: #FFFFFF;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social li:has(p) {
    width: 100%;
}

.footer-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
    color: #FFFFFF;
}

.footer-col h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.25em;
    color: #FFFFFF;
    font-family: 'haas_grot_text_trial55_roman';
    margin: 0 0 15px;
}

.footer-links li {
    line-height: 1;
}

.footer-links li:not(:last-child) {
    margin: 0 0 8px;
}

.footer-links li a {
    display: inline-block;
    position: relative;
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 400;
    color: #FFFFFF;
    padding-left: 20px;
}

.footer-links li a::before {
    position: absolute;
    content: "";
    top: 7px;
    left: 0;
    width: 8px;
    height: 8px;
    background: url(../img/right-arrow.png) no-repeat center center;
}

.contact-detl-list li {
    display: flex;
    flex-wrap: wrap;
}

.contact-detl-list li:not(:last-child) {
    margin: 0 0 15px;
}

.cnt-icon {
    width: 14px;
    margin-top: 5px;
}

.contact-detl-list li .detl-box {
    width: calc(100% - 14px);
    padding-left: 12px;
}

.contact-detl-list li .detl-box h5 {
    font-size: 14px;
    line-height: 1.375em;
    font-weight: 600;
    color: #FFFFFF;
    font-family: 'haas_grot_text_trial55_roman';
    margin: 0;
}

.contact-detl-list li .detl-box h5 span {
    display: block;
    font-weight: 400;
}

.contact-detl-list li .detl-box h5 a {
    color: #FFFFFF;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 9%);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.667em;
    color: #FFFFFF;
    padding: 20px 0;
}

.copyright a {
    color: #FFFFFF;
    font-weight: 400;
}

.copyright a:hover {
    color: #0AB3FF;
    font-weight: 400;
}

@media (min-width: 768px) {
    .footer-wrapper {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
    }

    .footer-col {
        width: 35%;
        padding: 0 15px;
        margin-bottom: 0 !important;
    }

    .footer-col:first-child {
        width: 40%;
    }

    .footer-col:nth-child(2) {
        width: 25%;
    }

    .footer-links li a {
        font-size: 16px;
    }

    .footer-links li a::before {
        top: 8px;
    }
}

@media (min-width: 1200px) {
    .footer-wrapper {
        justify-content: space-between;
        padding: 64px 105px 80px 105px;
    }

    .footer-col {
        width: 26%;
        margin-top: 12px !important;
    }

    .footer-col:first-child {
        width: 32%;
        margin-top: 0 !important;
    }

    .footer-col:nth-child(2) {
        width: 16%;
    }

    .ftr-logo {
        max-width: 275px;
    }

    .footer-links li a:hover {
        color: #60CF71;
    }

    .footer-social li a:hover {
        background: linear-gradient(90deg, #60CF71 0%, #0AB3FF 100%);
        border-color: transparent;
    }

    .contact-detl-list li .detl-box h5 a:hover {
        text-decoration: underline;
        text-underline-offset: 4px;
    }
}

/* Masthead Inner */

.masthead-inner {
    position: relative;
    z-index: 2;
    padding: 170px 0 79px 0;
    background: #000;
}

@media only screen and (max-width:760px) {
    .masthead-inner {
        padding: 100px 0 39px 0;
    }
}

.masthead-inner__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
    opacity: 0.3;
}

/* .masthead-inner::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 91px;
	top: 0;
	left: 0;
	z-index: -1;
	background: linear-gradient(194deg, #011827 35.43%, rgba(1, 24, 39, 0) 100%);
} */

.masthead-inner__wrap {
    text-align: center;
}

.masthead-inner__wrap h1 {
    font-family: 'Eurostile Extended' !important;
    color: #60CF71 !important;
    font-size: 27px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.02703em;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.masthead-inner__wrap h1 span {
    color: #0AB3FF !important;
    display: block;
}

.breadcrumb ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #72F285;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.14px;
    text-transform: uppercase;
    font-family: 'Eurostile Extended';
}

.breadcrumb ul li a {
    color: #fff;
}

.breadcrumb ul li a::after {
    content: '/';
    color: #fff;
}

@media (min-width: 768px) {
    .masthead-inner__wrap h1 {
        font-size: 37px;
    }
}

@media (min-width: 1200px) {
    .breadcrumb ul li a:hover {
        color: #0AB3FF;
    }

    .breadcrumb ul li a:hover::after {
        color: #fff;
    }
}

/* Image Text */

.image-text-wrapper {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.image-text .flex-row {
    align-items: center;
}

.image-text {
    padding: 0;
}

.image-text+.image-text {
    padding-top: 30px;
}

.image-text__image,
.image-text__text {
    position: relative;
    width: 100%;
}

.dotsCanvas {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
}

.image-text__image img {
    border-radius: 24px;
    border: 6px solid #fff;
    display: block;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 4px 44px 0 rgba(0, 0, 0, 0.07);
}

.image-text__text {
    margin-top: 20px;
    color: #2C2C2C;
}

.image-text__text h2 {
    color: #201F1F;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.08333em;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.image-text__title-image {
    display: block;
    width: 56px;
    height: 56px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #0AB3FF;
    border-radius: 50%;
    border: 4px solid #fff;
    letter-spacing: -0.07em;
}

.image-text__title {
    width: calc(100% - 56px);
    padding-left: 10px;
}

@media (min-width: 768px) {
    .image-text-wrapper {
        padding: 60px 100px;
    }

    .image-text__text h2 {
        font-size: 36px;
        gap: 0;
    }

    .image-text__title-image {
        width: 76px;
        height: 76px;
        font-size: 29px;
    }

    .image-text__title {
        width: calc(100% - 76px);
        padding-left: 17px;
    }
}

@media (min-width: 1200px) {
    .image-text-wrapper {
        padding: 80px 0;
    }

    .image-text--right .flex-row {
        flex-direction: row-reverse;
    }

    .image-text__image {
        width: 496px;
    }

    .image-text__text {
        width: calc(100% - 496px);
    }

    .image-text__text {
        margin-top: 0;
    }

    .image-text--right .image-text__text {
        padding-right: 103px;
    }

    .image-text--left .image-text__text {
        padding-left: 103px;
    }
}

.about-area {
    padding: 50px 0 0;
}

.about-area h2 {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 15px;
}

.about-left-text h6 {
    font-weight: 700;
    font-size: 17px;
    line-height: 1.105263157894737em;
    color: #191919;
}

.about-left-text h6 span {
    color: #0AB3FF;
}

.about-image-col img {
    margin: 0 auto;
}

.letest-work {
    padding: 50px 0;
}

.letest-work-wrap {
    background: #EEF6FA;
    border-radius: 25px;
    padding: 25px 15px;
}

.letest-work-text h3 {
    font-size: 19px;
    line-height: 1.16em;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #000000;
}

.letest-work-image {
    margin: 20px 0 0;
}

.letest-work-image img {
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
}

@media (min-width: 768px) {
    .about-area {
        padding: 65px 0 0;
    }

    .about-image-col img {
        max-width: 60%;
    }

    .about-left-text h6 {
        font-size: 19px;
    }

    .letest-work {
        padding: 65px 0;
    }

    .letest-work-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 45px 25px;
    }

    .letest-work-text {
        width: 48%;
        padding-right: 20px;
    }

    .letest-work-image {
        width: 52%;
        margin: 0;
    }
}

@media (min-width: 1200px) {
    .about-area {
        padding: 80px 0 0;
    }

    .about-flex {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        margin-top: -60px;
    }

    .about-area h2 {
        max-width: 550px;
        margin-bottom: 0;
    }

    .about-left-text {
        width: calc(100% - 560px);
        padding: 0 74px 60px 0;
    }

    .about-image-col {
        width: 560px;
    }

    .about-image-col img {
        max-width: 100%;
    }


    .letest-work {
        padding: 80px 0;
    }

    .letest-work-wrap {
        padding: 60px 36px 75px 36px;
    }

    .letest-work-text {
        width: calc(100% - 630px);
        padding-right: 70px;
    }

    .letest-work-text h3 {
        font-size: 25px;
    }

    .letest-work-image {
        width: 630px;
    }
}

.contact-area {
    padding: 50px 0;
}

.contact-area h2 {
    text-align: center;
    margin: 0 0 20px;
}

.contact-form form {
    background: #EEF6FA;
    border-radius: 25px;
    padding: 30px 15px;
}

.form-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 0;
}

.form-col {
    position: relative;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 16px 15px;
}

.form-col label {
    display: block;
    font-size: 14px;
    line-height: 1;
    color: #A3A3A3;
    margin: 0 0 5px;
}

.form-col .form-icon {
    position: absolute;
    top: 25px;
    right: 15px;
}

.form-submit-col {
    width: 100%;
}

.form-submit-col input[type="submit"] {
    border: none;
    width: 100%;
    height: 55px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #FFFFFF;
    background: linear-gradient(90deg, #60CF71 0%, #0AB3FF 100%);
    border-radius: 8px;
    cursor: pointer;
}

.contact-robot {
    margin: 20px 0 0;
}

.contact-robot img {
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-area {
        padding: 65px 0;
    }

    .contact-area h2 {
        margin: 0 0 30px;
    }

    .contact-area-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .contact-form {
        width: 50%;
    }

    .contact-robot {
        width: 50%;
        margin: 0;
    }
}

@media (min-width: 1200px) {
    .contact-area {
        padding: 80px 0 80px 0;
    }

    .contact-form {
        width: calc(100% - 478px);
        padding-right: 135px;
    }

    .contact-form form {
        padding: 50px 35px;
    }

    .form-wrapper {
        gap: 20px;
    }

    .form-col.w-50 {
        width: calc(50% - 10px);
    }

    .form-submit-col button {
        font-size: 21px;
        height: 75px;
    }

    .form-submit-col button:hover {
        background: linear-gradient(-90deg, #60CF71 0%, #0AB3FF 100%);
    }

    .contact-robot {
        width: 478px;
        margin: 45px 0 0;
    }
}

@media (max-width: 350px) {
    .navbar {
        width: 160px;
    }

    .header-right {
        gap: 12px;
    }

    .header-btn .btn {
        font-size: 12px;
        padding: 12px 15px;
    }

    .masthead__content h1 {
        font-size: 28px;
    }
}

.cms-content ol {
    margin: 0;
    padding: 0 0 20px 40px;
    list-style: decimal-leading-zero;
}

.cms-content ol li {
    font-family: 'Eurostile Extended';
}

.cms-content h4 {
    margin: 0;
    padding: 0 0 20px 0;
}

.cms-content ul {
    margin: 0;
    padding: 0 0 20px 15px;
    list-style: disc;
}

.wpcf7-response-output {
    font-size: clamp(14px, 1.111vw, 16px);
    line-height: 1;
    font-weight: 400;
    border-radius: 8px;
    padding: 10px 15px !important;
}

/* 03-09-25 */


.services-tabs-wrapper {
    padding: 50px 0;
    position: relative;
    z-index: 1;
    background-color: #FFFFFF;
}

.tabs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.tabs label {
    order: 1;
    display: block;
    padding: 10px 30px;
    cursor: pointer;
    background: #EEF6FA;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    color: #000000;
    text-align: center;
    position: relative;
    transition: 0.5s;
}

.tabs label::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    border: 2px solid #CCCCCC;
    border-radius: 100px;
}

.tabs .tab {
    margin-top: 30px;
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    padding: 30px;
    background: #EEF6FA;
    border-radius: 12px;
}

.tabs input[type=radio] {
    display: none;
}

.tabs input[type=radio]:checked+label {
    color: #FFFFFF;
    background: linear-gradient(90deg, #60CF71 0%, #0AB3FF 100%);
    transition: 0.5s;
}

.tabs input[type=radio]:checked+label::before {
    border: 2px solid #000000;
}

.tabs input[type=radio]:checked+label+.tab {
    display: block;
}

.tab-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.tab-content article {
    margin: 0;
    padding: 0;
    width: calc(100% - 450px);
}

.tab-content article h2 {
    margin: 0 0 20px 0;
}

.tab-content article p {
    color: #2C2C2C;
}

.tab-content figure {
    margin: 0;
    padding: 0;
    width: 420px;
}

.tab-content figure img {
    margin: 0;
    padding: 0;
    border: 6px solid #13B6F3;
    border-radius: 24px;
}

@media (max-width: 45em) {

    .tabs .tab,
    .tabs label {
        order: initial;
    }

    .tabs label {
        width: 100%;
        margin-top: 10px;
    }
}

@media only screen and (max-width:760px) {
    .services-tabs-wrapper {
        padding: 30px 0;
    }

    .tabs .tab {
        margin-top: 10px;
        padding: 20px;
    }

    .tab-content {
        flex-wrap: wrap-reverse;
        gap: 20px;
    }

    .tab-content article {
        width: 100%;
    }

    .tab-content article h2 {
        margin: 0 0 20px 0;
    }

    .tab-content figure {
        width: 100%;
    }
}

@media only screen and (min-width:761px) and (max-width:1080px) {
    .tabs {
        justify-content: center;
        gap: 10px;
    }

    .tab-content article {
        width: calc(100% - 250px);
    }

    .tab-content figure {
        width: 220px;
    }
}

@media only screen and (min-width:1081px) and (max-width:1280px) {
    .tabs {
        justify-content: center;
        gap: 10px;
    }
}

/* 03-09-25 */

.tabs-wrapper {
    margin: 0 auto;
    padding: 0;
}

ul.tabs-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

ul.tabs-list li {
    margin: 0;
    padding: 10px 30px;
    cursor: pointer;
    background: #EEF6FA;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    color: #000000;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: 0.5s;
}

ul.tabs-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    border: 2px solid #CCCCCC;
    border-radius: 100px;
}

ul.tabs-list li:hover {
    color: #FFFFFF;
    background: linear-gradient(90deg, #60CF71 0%, #0AB3FF 100%);
    transition: 0.5s;
}

ul.tabs-list li.active {
    color: #FFFFFF;
    background: linear-gradient(90deg, #60CF71 0%, #0AB3FF 100%);
    transition: 0.5s;
}

ul.tabs-list li.active::before {
    border: 2px solid #000000;
}

.tabs-container {
    margin-top: 30px;
    display: block;
    padding: 0;
    position: relative;
}

.tabs-content {
    height: 100%;
    display: none;
    background: #EEF6FA;
    border-radius: 12px;
    padding: 30px;
}

.tab-drawer-heading {
    display: none;
}

@media screen and (max-width: 781px) {
    ul.tabs-list {
        display: none;
    }

    .tabs-container {
        display: block;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        background: none;
    }

    .tabs-content {
        padding: 20px;
    }

    .tab-drawer-heading {
        margin: 10px 0;
        padding: 10px 30px;
        cursor: pointer;
        background: #EEF6FA;
        border-radius: 30px;
        font-family: 'haas_grot_text_trial55_roman' !important;
        font-size: 17px;
        font-weight: 400;
        line-height: 30px;
        color: #000000;
        text-align: center;
        cursor: pointer;
        position: relative;
        transition: 0.5s;
        display: block;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .tab-drawer-heading::before {
        content: "";
        position: absolute;
        left: 4px;
        top: 4px;
        width: calc(100% - 12px);
        height: calc(100% - 12px);
        border: 2px solid #CCCCCC;
        border-radius: 100px;
    }

    .tab-drawer-heading:hover {
        color: #FFFFFF;
        background: linear-gradient(90deg, #60CF71 0%, #0AB3FF 100%);
        transition: 0.5s;
    }

    .d-active {
        color: #FFFFFF;
        background: linear-gradient(90deg, #60CF71 0%, #0AB3FF 100%);
        transition: 0.5s;
    }

    .d-active::before {
        border: 2px solid #000000;
    }
}

@media only screen and (min-width:781px) and (max-width:1280px) {
    ul.tabs-list {
        justify-content: center;
    }
}

/* 18-09-2025 */

.contact-detl-list li .detl-box h5 {
    font-family: 'haas_grot_text_trial55_roman' !important;
}