/*=== google fonts ===*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&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&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --primary-font: "Poppins", sans-serif;
    --secondary-font: "Red Hat Display", sans-serif;
    --third-font: "Plus Jakarta Sans", sans-serif;
    --bg-black: #000;
    --bg-white: #fff;
    --white: #fff;
    --black: #000;
    --primary-color: #4640DE;
    --text-color: #59667E;
    --dark-navy-blue: #10134D;
    --dark-blue-black: #08041C;
    --iris: #4640DE;
    --peacoat: #25324B;
    --ghost-white: #F3F3F9;
    --marengo: #515B6F;
}

/*=== Basic css ===*/
html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {	
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 400;    
    background: var(--bg-white);
    color: var(--black);
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 34px;
    border-radius: 50%;
    background: var(--primary-color); 
    text-align: center; 
    font-size: 16px;
    color: var(--white);
    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;
    border: 2px solid var(--primary-color);
    z-index: 8888;    
}

.scrolltotop i {
    color: var(--white);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--primary-color); 
    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);
    }
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

.title-large {
    color: var(--dark-navy-blue);
    font-size: 54px;
    font-weight: 700;
    line-height: 125%;
    letter-spacing: -1.08px;
    text-transform: capitalize;
}

.title-medium {
    color: var(--dark-navy-blue);
    font-size: 24px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.24px;
    text-transform: capitalize;
}

.text-16 {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

.text-18 {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
}

.button {
    font-size: 18px; 
    font-weight: 600;
    color: var(--white);
    padding: 10px;
    padding-left: 29.2px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.button span {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
    background-color: var(--bg-white);
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.button span img {
    max-width: 100%;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.button:hover {
    color: var(--white);
}

.button:hover span {
    background-color: var(--primary-color);
}

.button:hover span img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7478%) hue-rotate(184deg) brightness(109%) contrast(96%);
}

.button:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-100%);
    background: var(--dark-navy-blue);
    z-index: -1;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.button:before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    right: 51%;
    transform: translateX(100%);
    background: var(--dark-navy-blue);
    z-index: -1;
    transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
}

.button:hover:after {
    width: 60%;
}

.button:hover:before {
    width: 60%;
}

.row {
    --bs-gutter-x: 32px;
}

/*=== Header area start ===*/

.header-area {
    background-image: url(../images/header-bg.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: right bottom;
    overflow: hidden;
    background-color: var(--ghost-white);
}

.header-top {
    padding: 35px 0 10px;
}

.header-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo a {
    font-family: var(--secondary-font);
    color: var(--peacoat);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.2px;
    display: inline-flex;
    align-items: center;
}

.header-logo img {
    max-width: 100%;
    margin-right: 9px;
}

.header-logo a:hover {
    color: var(--primary-color);
}

.header-navigation-link ul {
    display: flex;
    align-items: center;
}

.header-navigation-link ul li a {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    margin-left: 58px;
}

.header-navigation-link ul li a.button {
    color: var(--white);
    font-weight: 600;
    padding: 11px 29.2px;
}

.header-navigation-link ul li a.button:hover {
    color: var(--white);
}

.header-navigation-link ul li a:hover {
    color: var(--primary-color);
}

.hamburger {
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    border-radius: 4px;
    display: block;
    background: var(--primary-color);
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.hamburger span:nth-of-type(2) {
    margin: 6px 0;
}

.hamburger:hover span {
    background: var(--dark-navy-blue);
}

/*=== offcanvas start ===*/

.offcanvas-start {
    width: 300px;
    border: none;
    background: #fff; 
}

.offcanvas-body {
    padding: 30px 20px;
}

.side-menu-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.side-menu-logo .header-logo a {
    font-size: 16px;
}

.side-menu-logo img {
    max-width: 100%;
}

.side-menu-logo .close {
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.side-menu-logo .close span {
    width: 25px;
    height: 3px;
    display: block;
    background: var(--primary-color);
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.side-menu-logo .close:hover span {
    background: var(--dark-navy-blue);
}

.side-menu-logo .close span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-top: 13px;
}

.side-menu-logo .close span:nth-of-type(2) {
    transform: rotate(-45deg);
    margin-top: -3px;
}

.side-menu-link ul {
    flex-direction: column;
    align-items: start;
}

.side-menu-link ul li a {
    margin: 0 0 15px;
}

/*=== banner area start ===*/

.banner-area {
    position: relative;
    z-index: 9;
}

.banner-area::after {
    content: '';
    position: absolute;
    width: 283.384px;
    height: 716.252px;
    transform: rotate(64deg);
    right: -0;
    bottom: -400px;
    background-color: var(--bg-white);
}

.banner-content {
    display: flex;
    flex-wrap: wrap;
}

.banner-left {
    padding-top: 78px;
}

.banner-left h1 {
    color: var(--dark-navy-blue);
    font-size: 63px;
    font-weight: 700;
    letter-spacing: -1.26px;
    text-transform: capitalize;
    margin-bottom: 29px;
}

.banner-left h1 span {
    color: var(--primary-color);
    background-image: url(../images/banner-01.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left 90%;
}

.banner-left p {
    max-width: 570px;
    margin-bottom: 23px;
}

.banner-left p:nth-of-type(2) {
    font-family: var(--secondary-font);
    color: var(--peacoat);
    font-weight: 600;
}

.banner-right {
    margin-bottom: -245px;
}

.banner-right img {
    max-width: 100%;
}

/*=== main content start ===*/

.main-content {
    overflow: hidden;
}

.offer-area {
    padding: 100px 0 68px;
    background-color: var(--bg-white);
}

.offer-area .container {
    max-width: 1230px;
}

.offer-title {
    text-align: center;
    margin-bottom: 50px;
}

.offer-item {
    padding: 40px 35px;
    background-image: url(../images/offer-05.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: top right;
    background-color: var(--ghost-white);
    border-radius: 15px;
    margin-bottom: 32px;
}

.offer-item img {
    max-width: 100%;
    display: block;
    margin-bottom: 40px;
}

.offer-item .title-medium {
    margin-bottom: 10px;
}

/*=== choose area start ===*/

.choose-area {
    background-image: url(../images/choose-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 90px 0 75px;
}

.choose-title {
    text-align: center;
    margin-bottom: 68px;
}

.choose-title .title-large {
    color: var(--white);
}

.choose-item {
    padding: 50px 35px;
    border-radius: 16px;
    background-color: var(--bg-white);
    margin-bottom: 32px;
}

.choose-item img {
    max-width: 100%;
    display: block;
    margin-bottom: 30px;
}

.choose-item .title-medium {
    margin-bottom: 10px;
}

.choose-item p {
    color: var(--marengo);
    font-weight: 500;
}

.choose-item-second {
    padding: 66px 39px;
    background-image: url(../images/choose-05.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right bottom;
    min-height: 592px;
}

/*=== serve area start ===*/

.serve-area {
    background-image: url(../images/serve-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 107px 0 79px;
}

.serve-area .row {
    --bs-gutter-x: 28px;
}

.serve-title {
    text-align: center;
    margin-bottom: 39px;
}

.serve-title .title-large {
    margin-bottom: 20px;
}

.serve-item {
    padding: 65px 0 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 313px;
    border-radius: 15px;
    background-color: var(--bg-white);
    margin-bottom: 28px;
}

.serve-item img {
    max-width: 100%;
}

.serve-item .title-medium {
    display: flex;
    align-items: center;
    min-height: 72px;
    margin-top: auto;
}

/*=== footer area start ===*/

.footer-area {
    background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    padding: 104px 0 36px;
    overflow: hidden;
}

.footer-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left .title-large {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-left .text-18 {
    color: var(--white);
}

.footer-item-second {
    padding: 116px 0 130px;
    display: flex;
    flex-wrap: wrap;
}

.footer-item-second > div.footer-item-second-inner:nth-of-type(1) {
    padding-right: 166px;
    position: relative;
}

.footer-item-second > div.footer-item-second-inner:nth-of-type(1)::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 70px;
    background-color: var(--bg-white);
    opacity: 0.2;
    top: 50%;
    transform: translateY(-50%);
    right: 83px;
}

.footer-item-second-inner img {
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
}

.footer-item-second-inner .text-18 {
    color: var(--white);
}

.footer-item-second-inner .text-18 a {
    color: var(--white);
}

.footer-item-second-inner .text-18 a:hover {
    color: var(--primary-color);
}

.footer-item-second-inner .text-16 {
    color: var(--white);
    opacity: 0.7;
    margin-top: 4px;
}

.footer-bottom {
    padding-top: 44px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    top: 0;
    left: 0;
    background-color: var(--bg-white);
    opacity: 0.1;
}

.footer-bottom-left .text-16 {
    color: var(--white);
    opacity: 0.6;
}

.footer-bottom-right ul {
    display: flex;
    align-items: center;
}

.footer-bottom-right ul li a {
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, .1);
    margin-left: 20px;
}

.footer-bottom-right ul li a:hover {
    background-color: var(--primary-color);
}