/*=============
FONTS LINK HERE
===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*======================
DEFAULT CSS HERE
========================*/
:root {
    --textColor: #16205f;
    --titleWhite: #ffffff;
}

body {
    font-family: "Poppins", serif;
    font-size: 18px;
    font-weight: 400;
    background: #ffffff;
    color: var(--textColor);
}

h1,
h2,
h3,
h5,
h6,
p {
    margin: 0;
}

a,
a:hover {
    text-decoration: none;
    display: inline-block;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* ::selection {
    color: white; 
    background: #ff7675;
}

::-webkit-selection {
    color: white; 
    background: #ff7675;
}

::-moz-selection {
    color: white; 
    background: #ff7675;
} */

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #008b8b;
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

.scrolltotop i {
    color: #ffff;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 13px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: #008b8b;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*==================
HOME PAGE CSS HERE
===================*/

/*==================
HEADER AREA CSS HERE
===================*/
.header-area {
    border-bottom: 1px solid #e1e1e1;
}

.main-logo-wrpper a img {
    width: 197px;
}

.menu-widget ul {
    display: flex;
    column-gap: 60px;
    padding-left: 60px;
}

.menu-widget ul li a,
.contact-button-wrpper a,
.mobile-sidemenu-wrpper ul li a {
    color: var(--textColor);
    font-size: 18px;
    font-weight: 400;
    font-weight: 400;
    position: relative;
}

#page-active a {
    background: linear-gradient(90deg, #008b8b 0%, #63dade 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.SMN_effect-14 a {
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
}

.SMN_effect-14 a:before {
    position: absolute;
    top: 70%;
    left: 50%;
    color: transparent;
    content: "•";
    text-shadow: 0 0 transparent;
    font-size: 13pt;
    -webkit-transition: text-shadow 0.3s, color 0.3s;
    -moz-transition: text-shadow 0.3s, color 0.3s;
    transition: text-shadow 0.3s, color 0.3s;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none;
}

.SMN_effect-14 a:hover:before,
.SMN_effect-14 a:focus:before {
    color: #40d6d9 !important;
    text-shadow: 10px 0 #40d6d9, -10px 0 #40d6d9 !important;
}

.SMN_effect-14 a:hover,
.SMN_effect-14 a:focus {
    color: #40d6d9;
}

.hamburger {
    cursor: pointer;
}

.hamburger .line {
    width: 35px;
    height: 3px;
    background-color: #000;
    display: block;
    margin: 6px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#hamburger-3.is-active .line:nth-child(1),
#hamburger-3.is-active .line:nth-child(3) {
    width: 28px;
}

#hamburger-3.is-active .line:nth-child(1) {
    -webkit-transform: translateX(-10px) rotate(-45deg);
    -ms-transform: translateX(-10px) rotate(-45deg);
    -o-transform: translateX(-10px) rotate(-45deg);
    transform: translateX(-10px) rotate(-45deg);
}

#hamburger-3.is-active .line:nth-child(3) {
    -webkit-transform: translateX(-10px) rotate(45deg);
    -ms-transform: translateX(-10px) rotate(45deg);
    -o-transform: translateX(-10px) rotate(45deg);
    transform: translateX(-10px) rotate(45deg);
}

.contact-mobile-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 25px;
}

.btn-close:focus {
    outline: 0;
    box-shadow: none;
    opacity: 1;
}

.offcanvas-header {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-right: 40px !important;
    border-bottom: 1px solid #e1e1e1;
}

.mobile-sidemenu-wrpper ul {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
}

/*==================
HERO AREA CSS HERE
===================*/
.hero-area {
    padding-top: 37px;
    padding-bottom: 110px;
}

.hero-content-wrpper {
    width: 670px;
    padding-top: 51px;
    padding-bottom: 132px;
    padding-right: 60px;
    padding-left: 10px;
    border-radius: 0px 100px 0px 0px;
    background: rgba(0, 0, 0, 0.45);
    position: relative;
    z-index: 22;
}

.hero-content-wrpper h2 {
    color: var(--titleWhite);
    font-size: 55px;
    font-weight: 600;
    line-height: 121.875%;
    margin-bottom: 29px;
}

.hero-content-wrpper p {
    color: var(--titleWhite);
    font-size: 24px;
    line-height: normal;
}

.hero-thum-wrpper img {
    width: 100%;
}

/*===============================
PROVIDEN SERVICES AREA CSS HERE
================================*/
.provide-service-area {
    padding-bottom: 36.96px;
}

.single-service-widget {
    display: flex;
    column-gap: 25px;
}

.service-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: #63dade;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-desc {
    width: calc(100% - 110px);
}

.service-desc h2 {
    color: var(--textColor);
    font-size: 25px;
    font-weight: 600;
    line-height: 128.571%;
    margin-bottom: 49px;
}

.row-bottom {
    text-align: center;
    margin-top: 35px;
}

/*===============================
EASY PROCESS AREA CSS HERE
================================*/
.easy-process-area {
    padding-top: 76px;
    padding-bottom: 90px;
    background: linear-gradient(90deg, #008b8b 0%, #63dade 100%);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.06);
}

.title-widget h5 {
    color: var(--titleWhite);
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 22px;
}

.title-widget h2 {
    color: var(--textColor);
    text-align: center;
    font-size: 46px;
    font-weight: 600;
    line-height: 126.087%;
    margin-bottom: 35px;
}

.title-widget p {
    max-width: 453px;
    margin: auto;
    color: var(--Black, #16205f);
    text-align: center;
}

.process-img {
    padding-bottom: 40px;
}

.process-img img {
    width: 138px;
    height: 118px;
    object-fit: contain;
}

.process-desc h2 {
    color: var(--textColor);
    font-size: 46px;
    font-weight: 600;
    line-height: 126.087%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
}

.process-desc h2 span {
    font-size: 28px;
    line-height: 128.571%;
}

.process-method {
    margin-top: 40.33px;
}

/*=============================
SPACIALIZED STAFF AREA CSS HERE
==============================*/
.spacialized-staff-area {
    padding-top: 142px;
    padding-bottom: 266px;
    background-color: #f9f9f9;
}

.spacialized-staff-wrpper > h5 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.spacialized-staff-wrpper h2 {
    max-width: 485px;
    color: #001d84;
    font-size: 46px;
    font-weight: 600;
    line-height: 126.087%;
    margin-bottom: 76px;
}

.single-staff {
    border-radius: 12px;
    background: #fff;
    min-height: 93px;
    display: flex;
    align-items: center;
    column-gap: 25px;
    border-left: 13px solid #63dade;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.06);
    padding-right: 15px;
    padding-top: 9px;
    padding-bottom: 10px;
}

.staff-img img {
    width: 52px;
    margin-left: 20px;
}

.staff-cntn h5 {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 18px;
}

.staff-introduction {
    row-gap: 56px;
}

/*=============================
TECHNOLOGY AREA CSS HERE
==============================*/
.technologie-area {
    padding-top: 121px;
    padding-bottom: 173px;
}

.technologie-title-wrpper h5 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.technologie-title-wrpper h2 {
    font-size: 46px;
    font-weight: 600;
    line-height: 126.087%;
    margin-bottom: 75px;
}

.single-technology img {
    width: 213px;
}

.technologies-wrpper .row {
    row-gap: 58px;
}

/*=============================
GET CONSULTATION AREA CSS HERE
==============================*/
.get-consultation-area {
    padding-bottom: 93px;
    border-bottom: 1px solid #c4c4c4;
}

.consultation-thumbnail img {
    width: 100%;
}

.consultation-row {
    position: relative;
}

.consultation-form-wrpper {
    width: 765px;
    padding: 86px;
    padding-right: 35px;
    border-radius: 100px 0px 0px 0px;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 15px;
    padding-top: 40px;
    padding-bottom: 65px;
}

.consultation-form-wrpper h2 {
    max-width: 526px;
    color: var(--titleWhite);
    font-size: 41px;
    font-weight: 600;
    line-height: 131.818%;
}

.single-row {
    display: flex;
    align-items: center;
    column-gap: 24px;
    margin-bottom: 30px;
}

.single-input {
    width: 50%;
}

.single-input label,
.message-detail-box label {
    color: var(--titleWhite);
    font-size: 16px;
    font-weight: 600;
    display: block;
}

.single-input input,
.message-detail-box textarea {
    padding: 10px 8px;
    border-radius: 8px;
    outline: none;
    border: 1px solid #c5e0ff;
    background: var(--White-Default, #fff);
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    line-height: 142.857%;
    width: 100%;
    resize: none;
}

.message-detail-box {
    margin-bottom: 20px;
}

.custom-checkbox {
    display: flex;
    cursor: pointer;
}

.custom-checkbox input {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    margin-top: 5px;
}

.custom-checkbox input:checked + .checkmark {
    background-color: var(--titleWhite);
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked + .checkmark::after {
    display: block;
}

.checkmark::after {
    left: 8px;
    top: 3px;
    width: 8px;
    height: 15px;
    border: solid #495255;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.confirm-box label {
    font-family: var(--poppins);
    font-size: 18px;
    font-weight: 300;
}

.custom-checkbox p {
    color: var(--titleWhite);
    font-size: 16px;
    width: calc(100% - 24px);
}

.custom-checkbox p a {
    color: var(--titleWhite);
    font-weight: 600;
}

.get-consultation-btn {
    padding-top: 45px;
}

.get-consultation-btn a {
    width: 310px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-self: unset;
    padding-left: 35.47px;
    border-radius: 8px;
    background: linear-gradient(90deg, #008b8b 0%, #63dade 50%);
    box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.12);
    color: var(--titleWhite);
    font-size: 16px;
    font-weight: 600;
    position: relative;
    z-index: 2222 !important;
}

.get-consultation-btn a img {
    margin-left: 5px;
}

.SMN_effect-86 a {
    overflow: hidden;
    z-index: 1;
}

.SMN_effect-86 a:before,
.SMN_effect-86 a:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-top: 28px solid #48D7DA;
    border-bottom: 28px solid #48D7DA;
    transition: 0.5s;
}

.SMN_effect-86 a:before {
    border-right: 20px solid transparent;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.SMN_effect-86 a:after {
    border-left: 20px solid transparent;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.SMN_effect-86 a:hover:before {
    -webkit-transform: translateX(-30%);
    transform: translateX(-30%);
}

.SMN_effect-86 a:hover:after {
    -webkit-transform: translateX(30%);
    transform: translateX(30%);
}

/*=============================
FOOTER AREA CSS HERE
==============================*/
.footer-top-wrpper {
    padding-top: 30px;
    padding-bottom: 36px;
    border-bottom: 1px solid #c4c4c4;
}

.footer-logo {
    padding-bottom: 30px;
}

.footer-sub-title h5 {
    max-width: 353px;
    font-size: 18px;
    margin-bottom: 30px;
}

.info-list {
    display: flex;
    flex-direction: column;
    row-gap: 26px;
}

.con-info-item {
    display: flex;
    align-items: flex-start;
    column-gap: 16px;
}

.con-info-item img {
    width: 24px;
    margin-top: 5px;
}

.con-info-item a,
.con-info-item span {
    color: var(--textColor);
}

.footer-company {
    padding-left: 30px;
}

.footer-company,
.footer-services,
.footer-start {
    padding-top: 18px;
}

.footer-company h4,
.footer-services h4,
.footer-start h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
    padding-top: 7px;
}

.company-list,
.service-list,
.start-list {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    padding-top: 28px;
}

.company-item a,
.service-item a,
.start-item a {
    color: var(--textColor);
    transition: all 0.3s ease;
}

.company-item a:hover,
.service-item a:hover,
.start-item a:hover {
    color: #48D7DA;
}

.follow-us {
    padding-top: 35px;
}

.follow-us h3 {
    color: var(--textColor);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 22px;
}

.social-media-list {
    display: flex;
    align-items: center;
    column-gap: 24px;
}

.single-social-media a img {
    transition: all 0.3s ease;
}

.single-social-media a img:hover {
    opacity: 0.7;
}

.footer-bottom-wrpper {
    padding: 30px 0;
}

/*=============================
ABOUT PAGE CSS HERE
==============================*/

/*=============================
BRADCOME AREA CSS HERE
==============================*/
.bradcome-area {
    background: url(images/about-banner.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.bradcome-overlay {
    padding-top: 139px;
    padding-bottom: 120px;
    background: rgba(19, 19, 19, 0.5);
}

.bradcome-wrpper h1 {
    color: var(--titleWhite);
    font-size: 64px;
    font-weight: 600;
    line-height: 121.875%;
    margin-bottom: 17px;
}

.bradcome-wrpper p {
    max-width: 455px;
    margin: auto;
    color: var(--titleWhite);
}

/*=============================
ABOUT DESCRIPTION AREA CSS HERE
==============================*/
.about-description {
    padding-top: 117px;
    padding-bottom: 49px;
}

.single-desc-widget {
    margin-bottom: 52px;
}

.single-desc-widget h2 {
    color: var(--textColor);
    font-size: 46px;
    font-weight: 600;
    line-height: 126.087%;
}

/*=============================
TAGLINE AREA CSS HERE
==============================*/
.tagline-area .row {
    row-gap: 39px;
}

.single-tagline h3 {
    color: var(--textColor);
    font-size: 28px;
    font-weight: 600;
    line-height: 128.571%;
}

.thumbnail-area {
    padding-top: 138px;
    padding-bottom: 174px;
}

.thumbnail-img img {
    width: 100%;
}

/*=============================
TECHNOLOGY PAGE CSS HERE
==============================*/
.technology-titel h2 {
    margin-bottom: 17px;
}

/*=============================
TECHNOLOGY LOGO AREA CSS HERE
==============================*/
.technology-logo-area {
    padding-top: 66px;
    padding-bottom: 235px;
}

.technology-logo-wrpper .row {
    row-gap: 58px;
}

.single-logo-widget {
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
}

#contact-description {
    padding-bottom: 0;
}

.consultation-thumbnail iframe {
    width: 100%;
    height: 730px;
    display: block;
}

/*=============================
MORE CONTACT INFO AREA CSS HERE
==============================*/
.more-contact-area {
    padding-top: 102px;
    padding-bottom: 100px;
}

#remove-border {
    border-bottom: none;
}

#add-border {
    border-top: 1px solid #c4c4c4;
}

.single-more-info h4 {
    color: var(--textColor);
    font-size: 28px;
    line-height: 128.571%;
    margin-bottom: 20px;
}

.single-more-info p {
    font-size: 24px;
}

.member-img {
    width: 132px;
    height: 132px;
    border-radius: 12px;
    background: #fff856;
    margin-bottom: 30px;
}

.single-more-info h3 {
    font-size: 28px;
    line-height: 128.571%;
}

.single-more-info span {
    font-size: 16px;
    font-weight: 600;
}

.single-more-info h6 {
    font-size: 24px;
    margin-top: 16px;
    margin-bottom: 6px;
}

.single-more-info h5 {
    font-size: 24px;
    font-weight: 600;
}

#contact-follow-us {
    padding-top: 139px;
    padding-bottom: 250px;
}

#contact-follow-us h3 {
    font-size: 46px;
    font-weight: 600;
    line-height: 126.087%;
}

#technology-desc {
    padding-bottom: 0;
}
