@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    --clr-black: #000000;
    --clr-white: #ffffff;
    --clr-white-1: #f0f8ff;
    /*#F3F7F6*/
    --clr-white-2: #dfdbde;
    --clr-white-3: #FFFAF8;
    --clr-white-4: #f9f2ed;
    --clr-red-1: #d4333c;
    --clr-red-2: #ac272f;
    --clr-red-light: #ffe3e4;
    --clr-purple: #fbeeff;
    --filter-1: initial;
}

html.dark-mode {
    --clr-black: #ffffff;
    --clr-white: #000000;
    --clr-white-1: #2A2D32;
    --clr-white-2: #2f3d58;
    /*#18191b*/
    --clr-white-3: #1A111C;
    --clr-white-4: #1C1A1E;
    --clr-red-1: #d4333c;
    --clr-red-2: #ac272f;
    --clr-red-light: #ac272f;
    --clr-purple: #563d5f;
    --filter-1: invert(1) brightness(1000);
}

body {
    font-family: "Manrope", sans-serif;
    line-height: 1.5;
    font-weight: 400;
    color: var(--clr-black);
    padding-top: 98.5px;
    background: var(--clr-white);
}

.section-padding {
    padding-top: 90px;
    padding-bottom: 90px;
    position: relative;
    overflow: hidden;
}

h1,
h2,
h3 {
    font-weight: 600;
    font-family: "Rajdhani", sans-serif;
}

h1 {
    font-size: 80px;
    line-height: 1.2;
    text-transform: capitalize;
    padding-right: 200px;
    font-weight: bold;
}

h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 16px;
}

h3 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
}

p:last-child {
    margin-bottom: 0px;
}

.bg-white {
    background: var(--clr-white) !important;
}

.bg-black {
    background: var(--clr-black) !important;
}

.bg-white-1 {
    background: var(--clr-white-1);
}

.bg-white-2 {
    background: var(--clr-white-2);
}

.bg-white-3 {
    background: var(--clr-white-3);
}

.bg-red-1 {
    background: var(--clr-red-1);
}

.bg-red-2 {
    background: var(--clr-red-2);
}

/* Header Styles */
header.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(45deg, #fff4f1, #FEFAF8);
    z-index: 111111;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);*/
    border-bottom: 1px solid #cccccc;
    transform: translateY(0px);
    transition: .3s cubic-bezier(.215, .61, .355, 1);
}

html.dark-mode header.header {
    background: linear-gradient(45deg, #1F121D, #1A0F1C);
}

header.header::before {
    width: 100%;
    height: 100%;
    position: absolute;
    background: var(--clr-white-1);
    content: '';
    opacity: 0;
    transition: opacity .8s cubic-bezier(.215, .61, .355, 1);
}

header.header.active::before {
    opacity: 1;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
}

.logo {
    width: 200px;
    position: relative;
    z-index: 1;
}

/* Hamburger Menu Icon */
.hamburger {
    width: 60px;
    height: 18px;
    position: relative;
    cursor: pointer;
    z-index: 1;
    transition: all .4s ease-in-out;
}

.hamburger::before {
    content: 'Menu';
    position: absolute;
    left: -100%;
    line-height: 1;
    text-transform: uppercase;
    opacity: 1;
    transition: .3s;
    font-weight: 500;
    color: var(--clr-black);
}

.hamburger.active {
    width: 40px;
}

.hamburger.active::before {
    opacity: 0;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 0px;
    width: 100%;
    border-top: 2px solid var(--clr-black);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all .4s ease-in-out;
    border-radius: 100px;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    width: 30%;
    left: auto;
    right: 0px;
    display: none;
}

.hamburger:hover span:nth-child(2) {
    width: 100%;
}

.hamburger span:nth-child(3) {
    top: 100%;
    transform: translateY(-100%);
}

/* Hamburger Animation to X */
.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    width: 0%;
}

.hamburger.active span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.hero-cricle {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    overflow: hidden;
    position: absolute;
    right: 0px;
    top: 0px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

}

.hero-cricle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    width: 163%;
    margin-left: -63%;
    height: 450px;
    object-fit: cover;
    object-position: top right;
}

.contact-hero .hero-image {
    object-position: top right;
}

/*.inner-hero .hero-image {
    height:400px;
}
.inner-hero.hero-2 .hero-image{
height: 450px;
}*/
.hero {
    padding-top: 60px;
    padding-bottom: 80px;
    position: relative;
}

.hero-label {
    background: var(--clr-black);
    padding: 6px 30px 7.3px 40px;
    width: fit-content;
    border-radius: 100px;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 15px;
    position: relative;
}

.hero-label::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: var(--clr-red-1);
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.hero p {
    font-size: 18px;
}

.hero::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 0;
    background-image: url(../images/hero-bg.png);
    background-size: cover;
    background-position: top right;
    /*opacity:.75;*/
}

.inner-hero .hero-link {
    display: none;
}

html.dark-mode .hero::before {
    background-image: url(../images/hero-bg-dark.png);
}

.z-1 {
    position: relative;
    z-index: 1;
}

ul {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

a {
    text-decoration: none;
}

.full-menu {
    height: 100vh;
    width: 100%;
    background-color: var(--clr-white-1);
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 11111;
    opacity: 0;
    transition: opacity .8s cubic-bezier(.215, .61, .355, 1);
    pointer-events: none;
    overflow: hidden;
}

.menu-header {
    width: 100%;
    flex: 0 0 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
    align-items: center;
}

.full-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.full-menu .container {
    height: 100%;
}

.full-menu .menu-left,
.full-menu .menu-right {
    height: calc(100%);
}

.full-menu .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 60px;
}

.full-menu .menu-left {
    width: 55%;
    flex: 0 0 55%;
}

.full-menu .menu-right {
    width: 45%;
    flex: 0 0 45%;
    position: absolute;
    right: 0px;
}

.full-menu ul.menu-list {
    padding: 30px 60px 30px 0px;
}

.full-menu ul.menu-list li a.menu-item {
    color: var(--clr-black);
    font-size: 46px;
    padding: 15px 0px;
    display: block;
    transform: translateX(-3rem) skewX(5deg);
    position: relative;
    display: flex;
    align-items: center;
    transition: transform .6s cubic-bezier(.215, .61, .355, 1), color .6s cubic-bezier(.215, .61, .355, 1), opacity .5s cubic-bezier(.215, .61, .355, 1);
    opacity: 0;
    font-weight: 500;
}

.full-menu ul.menu-list li a.menu-item:hover {
    color: var(--clr-red-1);
}

.full-menu ul.menu-list li a.menu-item.active {
    color: var(--clr-red-1);
}

.full-menu .menu-left.active ul.menu-list li a.menu-item {
    transform: none;
    opacity: 1;
}

.full-menu ul.menu-list li a.menu-item::before {
    content: '';
    background: var(--clr-red-1);
    ;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 0px;
    border-bottom: 1.75px solid var(--clr-red-1);
    ;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.full-menu ul.menu-list li a.menu-item:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.full-menu ul.menu-list li a.menu-item.active::before {
    transform-origin: left;
    transform: scaleX(1);
}

.full-menu ul.menu-list li a.menu-item .circle {
    width: 10px;
    height: 10px;
    position: absolute;
    background: var(--clr-black);
    left: auto;
    right: 0;
    border-radius: 50%;
    transition: opacity .7s cubic-bezier(.215, .61, .355, 1), transform .7s cubic-bezier(.215, .61, .355, 1), background .7s cubic-bezier(.215, .61, .355, 1);
}

.full-menu ul.menu-list li a.menu-item:hover .circle {
    background: var(--clr-red-1);
}

.full-menu ul.menu-list li a.menu-item.active .circle {
    background: var(--clr-red-1);
}

.full-menu .menu-left.active ul.menu-list li a.menu-item .circle {
    transform: none;
    opacity: 1;
}

.full-menu .menu-left.active ul.menu-list li a.menu-item .line-bottom {
    background: var(--clr-black);
    opacity: .15;
    transition: 1s;
    content: '';
    height: 0px;
    border-bottom: 1px solid var(--clr-black);
    position: absolute;
    bottom: 0;
    left: 0;
}

.full-menu .menu-left.active ul.menu-list li a.menu-item .line-bottom {
    width: 100%;
}

.menu-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-thumb {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
    transform: scale(1.2);
    filter: blur(1rem);
    transition: opacity .9s cubic-bezier(0.165, 0.84, 0.44, 1), transform .9s cubic-bezier(0.165, 0.84, 0.44, 1), filter .9s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-thumb--img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: top center;
    background-size: cover;
    transform: scale(1.2);
    transition: opacity .9s cubic-bezier(0.165, 0.84, 0.44, 1), transform .9s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
}

.menu-thumb--img.active {
    opacity: 1;
    transform: none;
}

.menu-thumb--img.menu-img-00 {
    background-image: url(../images/menu-image-0.jpg);
}

.menu-thumb--img.menu-img-01 {
    background-image: url(../images/menu-image-1.jpg);
    background-position: top right;
}

.menu-thumb--img.menu-img-02 {
    background-image: url(../images/menu-image-2.jpg);
}

.menu-thumb--img.menu-img-03 {
    background-image: url(../images/menu-image-3.jpg);
}

.menu-thumb--img.menu-img-04 {
    background-image: url(../images/menu-image-4.jpg);
}

.menu-right {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.menu-right.active .menu-thumb {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

.menu-text {
    position: relative;
}

.services-counter {
    position: absolute;
    font-size: 18px;
    right: -32px;
    top: 50%;
    transform: translateY(-50%);
}

.full-menu .right-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 100px 40px 40px 20px;
    position: relative;
    pointer-events: none;
    transition: transform .6s cubic-bezier(.215, .61, .355, 1), opacity .6s cubic-bezier(.215, .61, .355, 1), filter .6s cubic-bezier(.215, .61, .355, 1), background .6s cubic-bezier(.215, .61, .355, 1);
    opacity: 0;
    transform: translateY(3rem) skewY(5deg);
    filter: blur(1rem);
    background: rgba(255, 255, 255, 0);
}

.right-box.active {
    transform: none;
    opacity: 1;
    pointer-events: auto;
    filter: blur(0);
    background: rgba(255, 255, 255, .8);
    transition: background .6s cubic-bezier(.215, .61, .355, 1);
}

html.dark-mode .right-box.active {
    background: rgba(0, 0, 0, .6);
}

.submenu-items {}

.submenu-items li a {
    font-size: 32px;
    color: var(--clr-black);
    /*border-bottom: 1px solid;*/
    display: block;
    padding: 10px 0px;
    padding-left: 40px;
    position: relative;
}

.submenu-items li a:hover {
    color: var(--clr-red-1);
}

.submenu-items li a.active {
    color: var(--clr-red-1);
}

/*.submenu-items li a::after {
    content:'';
    width: 10px;
    height: 10px;
    position: absolute;
    background: black;
    left: auto;
    right: 0;
    border-radius: 50%;
    transition: opacity .7s cubic-bezier(.215, .61, .355, 1), transform .7s cubic-bezier(.215, .61, .355, 1), background .7s cubic-bezier(.215, .61, .355, 1);
}

.submenu-items li a:hover::after {
    background: orange;
}

.right-box.active .submenu-items li a::after{
    transform: none;
    opacity: 1;
}*/
.menu-list .submenu-items {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease;
    padding: 0;
    display: none;
}

.menu-list.submenu-open .submenu-items {
    max-height: 300px;
}

.submenu-items li a.submenu-item {
    padding-left: 40px;
}

.submenu-items li a.submenu-item::before {
    content: '⟡';
    position: absolute;
    left: 0px;
    top: 4px;
    font-size: 36px;
}

.btn-default {
    line-height: 1;
    font-weight: 500;
    display: inline-block;
    background-color: var(--clr-red-1);
    color: #ffffff;
    text-align: center;
    min-width: 200px;
    max-width: 100%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 30px;
    padding: 16px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: ease-in 500ms;
    transition: ease-in 500ms;
    border: 0px;
}

.btn-default i {
    margin-left: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    position: relative;
}

.btn-default span {
    position: relative;
}

html.dark-mode .btn-default:hover {
    color: #000000;
}

.btn-default:hover i {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

.btn-default * {
    z-index: 1;
}

.btn-default::after {
    position: absolute;
    left: -25%;
    top: 100%;
    width: 150%;
    padding-top: 150%;
    content: "";
    z-index: 0;
    background-color: var(--clr-black);
    opacity: 1;
    border-radius: 50%;
    -webkit-transition: ease-in 500ms;
    transition: ease-in 500ms;
}

.btn-default:hover::after {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.hero-arrow {
    position: absolute;
    width: 130px;
    top: -30px;
    right: 0px;
    transform: rotate(7deg);
}


@keyframes move {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(30px);
    }
}

.hero-link {
    width: 130px;
    height: 130px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1175em;
    word-spacing: 0.3em;
    text-decoration: none;
    font-size: 21px;
    line-height: 1.4em;
    position: absolute;
    right: -53px;
    top: -65px;
    border-radius: 50%;
    background-color: var(--clr-white-3);
    z-index: 1;
}

.hero-link img {
    width: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.link__svg {
    width: 100%;
    height: auto;
    transform-box: fill-box;
    fill: var(--clr-black);
    stroke: var(--clr-black);
    stroke-width: 0.05em;
    stroke-linecap: round;
    stroke-linejoin: round;
    border: 2px solid var(--clr-red-1);
    border-radius: 100%;
    padding: 5px;
}

.link__arrow {
    transform-origin: 50% 50%;
    stroke-width: 3px;
    transition: transform 0.15s cubic-bezier(0.32, 0, 0.67, 0);
    transform: rotate(-45deg);
    stroke: var(--clr-red-1);
}

.hero-link:hover .link__arrow {
    transform: scale(1.1);
    transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.link__text {
    transform-origin: 50% 50%;
    animation: rotateReverse 20s linear infinite;
}

.hero-link:hover .link__text {
    animation-play-state: paused;
}

@keyframes rotateReverse {
    to {
        transform: rotate(-360deg);
    }
}

.tt-style-switch {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 30%;
    right: 0;
    width: 40px;
    height: 35px;
    background-color: #444;
    font-size: 16px;
    color: #fff !important;
    cursor: pointer;
    z-index: 99999;
    border-radius: 50px 0 0 50px;
    transition: all 0.2s;
}

.tt-style-switch .bi {
    color: #fff;
    z-index: 9999;
}

.circle-bg {
    position: relative;
}

.circle-bg::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background: url(../images/circle-bg.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

html.dark-mode .circle-bg::before {
    filter: invert(1) brightness(3);
}

.line {
    width: 100%;
    height: 0px;
    border-top: 1px solid var(--clr-black);
}

ul.list-with-icon li {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 8px;
    margin-bottom: 15px;
}

ul.list-with-icon .service-check-icon img {
    width: 12px;
    margin-top: -4px;
    z-index: 1;
    position: relative;
}

ul.list-with-icon li strong {
    display: block;
}

ul.list-with-icon li:last-child {
    margin-bottom: 0px;
}

html.dark-mode .has-mode {
    filter: var(--filter-1);
}

.circle-shape {
    position: absolute;
    bottom: 0;
    right: 0px;
    z-index: 0;
    width: 100%;
}

html.dark-mode .circle-shape {
    filter: var(--filter-1);
}

.circle-shape img {
    width: 100%;
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.animation__rotate {
    -webkit-animation: rotate 30s linear infinite;
    animation: rotate 30s linear infinite;
}

.home-2-image {
    position: absolute;
    z-index: 1;
    width: 100%;
    max-width: 400px;
    bottom: 0px;
    right: 0px;
}

.process-style-one-item:nth-child(2n) .item span {
    top: auto;
    bottom: 50px
}

.process-style-one-item {
    position: relative;
    z-index: 1;
    border-top: 1px solid #cccccc;
    border-radius: 30px
}

.process-style-one-item:first-child {
    border-left: 1px solid #cccccc;
    border-bottom-left-radius: 0;
}

.process-style-one-item .item {
    padding: 30px 12px 15px;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.process-style-one-item .item .item-top {
    margin-bottom: 15px;
}

.process-style-one-item .item h3 {
    font-size: 24px;
}

.process-style-one-item .item .icon {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.process-style-one-item .item img {
    height: 70px;
    filter: var(--filter-1);
}

.process-style-one-item:nth-child(odd):after {
    position: absolute;
    right: 0;
    bottom: auto;
    content: "";
    top: 0;
    height: 64px;
    width: 50px;
    border-right: 1px solid #cccccc;
    border-top-right-radius: 30px;
}

.process-style-one-item:nth-child(2n) {
    border-top: none !important;
    border-bottom: 1px solid #cccccc;
}

.process-style-one-item:nth-child(2n):before {
    position: absolute;
    right: -1px;
    content: "";
    bottom: 0;
    height: 64px;
    width: 50px;
    border-right: 1px solid #cccccc;
    border-bottom-right-radius: 30px;
}

.process-style-one-item:nth-child(2n):after {
    position: absolute;
    left: -1px;
    top: 65px;
    width: 50px;
    content: "";
    border-left: 1px solid #cccccc;
    bottom: 0;
    border-bottom-left-radius: 30px;
}

.process-style-one-item:last-child {
    border-right: 1px solid #cccccc;
    border-top-right-radius: 0;
}

.process-style-one-item:nth-child(3n):before {
    position: absolute;
    left: 0;
    bottom: 60px;
    content: "";
    top: 0;
    width: 50px;
    border-left: 1px solid #cccccc;
    border-top-left-radius: 30px;
}

.our-services .service-btn {
    width: calc(100% - 30px);
    margin: 0 auto;
}

.our-services .service-btn a {
    border-radius: 0;
    margin-top: 0;
    transition: all 400ms linear;
    line-height: 1;
    text-transform: capitalize;
    color: var(--clr-black);
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    text-align: left;
}

.our-services .service-btn a i {
    height: 40px;
    width: 40px;
    line-height: 40px;
    background: var(--clr-white-3);
    text-align: center;
    border-radius: 50%;
    z-index: 1;
    border: 1px solid var(--clr-black);
    transition: 0.4s;
    color: var(--clr-black);
}

.our-services .service-btn a:before {
    position: absolute;
    content: "";
    z-index: 1;
    transition: .4s;
    opacity: 1;
    width: 70px;
    height: 0px;
    border-top: 1px solid var(--clr-black);
    left: 42px;
    right: 0;
    margin: auto;
    top: calc(50% + 1.5px);
    transform: translateY(-50%);
}

.process-style-one-item .item:hover .service-btn a {
    background-color: transparent;
    color: var(--clr-red-1);
}

.process-style-one-item .item:hover .service-btn a:before {
    border-top: 1px solid var(--clr-red-1);
    opacity: 1;
}

.process-style-one-item .item:hover .service-btn a i {
    background: var(--clr-red-1);
    border: 1px solid var(--clr-red-1);
    color: #fff;
    transform: rotate(-45deg);
}

.border-radius-1 {
    border-radius: 10px;
}

.meet-the-team-4 img {
    height: 100%;
    object-fit: cover;
}

.team-cover {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.team-cover img {
    width: calc(33.333% - 12px);
    flex: 0 0 calc(33.333% - 12px);
    height: 300px;
    object-fit: cover;
    object-position: top center;
}

.team-cover img.border-radius-1 {
    border-radius: 1000px;
}

.cta {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    background: var(--clr-white-1);
}

.cta-image {
    width: calc(40% - 30px);
    flex: 0 0 calc(40% - 30px);
    position: relative;
    border-right: 10px solid var(--clr-red-1);
}

.cta-image>img {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    object-fit: cover;
}

.cta-text {
    width: calc(60% - 30px);
    flex: 0 0 calc(60% - 30px);
    padding: 60px 15px;
}

.cta-circle {
    width: 90px;
    height: 90px;
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--clr-white-3);
    border-radius: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    animation: pulse1 2s infinite;
}

html.dark-mode .cta-circle {
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

@keyframes pulse1 {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.1);
    }

}

.cta-circle img {
    width: 100%;
}

html.dark-mode .cta-circle img {
    filter: var(--filter-1);
}

.cta .btn-default {
    padding: 16px 22px;
}

footer {
    background-color: var(--clr-white-4);
    color: var(--clr-black);
    position: relative;
}

footer::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 0;
    opacity: .05;
    background-position: center center;
    background-size: cover;
}

.footer {
    padding: 90px 12px 40px;
    position: relative;
    z-index: 1;
}

.copyright {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid var(--clr-red-1);
    position: relative;
    z-index: 1;
}

.copyright ul {
    display: flex;
    margin-left: auto;
    width: fit-content;
    gap: 15px;
}

footer p {
    color: var(--clr-black);
}

.company-details {
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 50px;
    text-align: center;
}

a.company-logo {
    width: fit-content;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-bottom: 12px;
    background: var(--clr-white-4);
    padding: 5px 30px;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    border-radius: 10px;
}

a.company-logo img {
    width: 200px;
}

footer h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--clr-red-1);
    text-align: center;
    font-weight: 600;
}

footer ul {
    margin: 0px;
    padding: 0px;
    margin: 0 auto;
    width: fit-content;
}

footer ul li {
    list-style-type: none;
}

footer ul li a {
    color: var(--clr-black);
    padding: 6px 0px;
    display: block;
    transition: .3s;
    text-decoration: none;
    width: fit-content;
    margin: 0 auto;
}

footer ul li a.active {
    pointer-events: none !important;
    cursor: default !important;
    color: var(--clr-red-1);
}

footer ul li a:hover {
    color: var(--clr-red-1);
}

.footer-line {
    width: 100%;
    height: 0px;
    border-bottom: 1px solid #cccccc;
    position: absolute;
    top: 120.915px;
}


.box {
    position: relative;
    transition: .3s;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 15px;
}

.box .box-icon {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    background-color: var(--clr-white);
    border-radius: 100%;
    padding: 15px;
    position: relative;
    z-index: 1;
    border: 6px double var(--clr-white-1);
}

.box-icon img {
    width: 100%;
    filter: var(--filter-1);
}

.meet-the-team-3 .row {
    margin: 0px;
    background: var(--clr-purple);
    padding: 50px 20px;
    border-radius: 12px;
}

.am-3 h2 {
    font-size: 36px;
}

.am-3 ul.list-with-icon .service-check-icon img {
    width: 20px;
    margin-top: -3px;
}

.am-3 {
    position: relative;
}

.am-3 .row {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    background: var(--clr-white);
    align-items: center;
    border-radius: 15px;
    position: relative;
}

.am-3 .row img {
    border-radius: 15px;
}

.am-3 .row:nth-child(1) {
    border: 1px solid #cccccc;
    border-left: 0px;
    padding-left: 0px;
    border-bottom: 0px;
}

.am-3 .row:nth-child(1)::before {
    content: '';
    width: 40px;
    height: 24px;
    background: var(--clr-white);
    position: absolute;
    left: 0px;
    top: -1px;
    border-top: 1px solid #cccccc;
}

.am-3 .row:nth-child(1)::after {
    content: '';
    width: 40px;
    height: 24px;
    background: var(--clr-white);
    position: absolute;
    right: 0px;
    bottom: -1px;
    border-bottom: 1px solid #cccccc;
    border-radius: 0px 0px 15px 0px;
}

.am-3 .row:nth-child(2) {
    border: 1px solid #cccccc;
    border-right: 0px;
    padding-right: 0px;
}

.am-3 .row:nth-child(2)::before {
    content: '';
    width: 40px;
    height: 24px;
    background: var(--clr-white);
    position: absolute;
    right: 0px;
    top: 0px;
}

.am-3 .row:nth-child(2)::after {
    content: '';
    width: 40px;
    height: 24px;
    background: var(--clr-white);
    position: absolute;
    right: 0px;
    bottom: -1px;
}

.am-3 .row:nth-child(3) {
    border: 1px solid #cccccc;
    border-left: 0px;
    border-top: 0px;
    padding-left: 0px;
}

.am-3 .row:nth-child(3)::before {
    content: '';
    width: 40px;
    height: 24px;
    background: var(--clr-white);
    position: absolute;
    right: 0px;
    top: -1px;
    border-radius: 0px 15px 0px 0px;
    border-top: 1px solid #cccccc;
}

.am-3 .row:nth-child(3)::after {
    content: '';
    width: 40px;
    height: 24px;
    background: var(--clr-white);
    position: absolute;
    left: 0px;
    bottom: -1px;
}

.am-3 .row:nth-child(4) {
    border: 1px solid #cccccc;
    border-right: 0px;
    border-top: 0px;
    padding-right: 0px;
}

.am-3 .row:nth-child(4)::before {
    content: '';
    width: 40px;
    height: 24px;
    background: var(--clr-white);
    position: absolute;
    left: 0px;
    top: -1px;
    border-radius: 15px 0px 0px 0px;
    border-top: 1px solid #cccccc;
}

.am-3 .row:nth-child(4)::after {
    content: '';
    width: 40px;
    height: 24px;
    background: var(--clr-white);
    position: absolute;
    right: 0px;
    bottom: -.7px;
    border-bottom: 1px solid #cccccc;
}

/*.ss-4::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-image: url(../images/affiliate-marketing-bg.jpg);
    z-index: 0;
    opacity:1;
    background-position:top center;
    background-size: cover;
}*/
.image-cover {
    position: relative;
    height: 100%;
}

.image-cover img {
    position: absolute;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.no-break {
    white-space: nowrap;
}

.seo-strategy-5 {}

.seo-strategy-5-image-1 {
    border-radius: 1000px;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.seo-strategy-5-image-2 {
    border-radius: 1000px 1000px 0px 0px;
    object-fit: cover;
    object-position: top;
}

.seo-strategy-5-box {
    background: var(--clr-purple);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid #cccccc;
}

.seo-strategy-5-box-1 {
    background: var(--clr-white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 15px;
}

html.dark-mode .seo-strategy-5-box {
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}

.seo-strategy-6 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.seo-strategy-6 .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.seo-strategy-6-box {
    width: 300px;
    background: var(--clr-white-1);
    position: relative;
    z-index: 1;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #cccccc;
    margin-left: 0px;
}

.seo-strategy-6 ul.list-with-icon .service-check-icon img {
    width: 20px;
    margin-top: -3px;
}

.form-group {
    text-align: left;
    margin-bottom: 15px;
}

.form-control {
    border: 1px solid var(--clr-black) !important;
    color: var(--clr-black);
    border-radius: 10px;
    box-shadow: none;
    outline: none;
    padding: 12px 10px 12px;
    background-color: var(--clr-white-1);
}

.recaptch-cover {
    border: 1px solid var(--clr-black) !important;
    padding: 0px;
    position: relative;
    background-color: var(--clr-white-1);
    border-radius: 10px;
}

.recaptch-cover .recaptch-cover-header {
    padding: 10px;
    text-align: left;
    display: block;
    border-bottom: 1px solid var(--clr-black) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recaptch-cover .recaptch-cover-header button {
    background: var(--clr-purple);
    color: var(--clr-black);
    border-color: var(--clr-black);
    border-radius: 3px;
}

.recaptch-cover .recaptch-cover-header button:active {
    background: transparent;
    border-color: var(--clr-black);
    color: var(--clr-black);
}

.recaptch-cover .recaptch-cover-header button:hover {
    background: transparent;
    border-color: var(--clr-black);
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    background-color: var(--clr-white-1);
    border-color: blue;
    color: var(--clr-black);
}

.loading-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 1111;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: #ffffff;
    display: none;
}

.loading-overlay.active {
    display: flex;
}

#refreshCaptcha {
    cursor: pointer;
}

.form-control::placeholder {
    color: rgba(0, 0, 0, .5);
    opacity: 1;
    /* Firefox */
}

.form-control::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgba(0, 0, 0, .5);
}

html.dark-mode .form-control::placeholder {
    color: rgba(255, 255, 255, .5);
    opacity: 1;
    /* Firefox */
}

html.dark-mode .form-control::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgba(255, 255, 255, .5);
}

.math-captcha {
    text-align: center;
}

.math-expression {
    font-size: 24px;
    font-weight: bold;
}

.answer-options {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.answer-option {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid var(--clr-black);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--clr-purple);
    color: var(--clr-black);
}

.answer-option:hover {
    background: var(--clr-red-light);
    color: var(--clr-black);
    border-color: var(--clr-red-light);
}

.answer-option.selected {
    background: var(--clr-red-light);
    color: var(--clr-black);
    border-color: var(--clr-red-light);
}

.error {
    color: red;
    display: none;
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#submitBtn.btn-default {
    padding: 18px;
}

.jconfirm-buttons button::after {
    display: none;
}

.legal-hero h2 {
    font-size: 36px;
}

.legal-pages h2 {
    margin-bottom: 12px;
    font-size: 36px;
}

.legal-pages p+ul {
    margin-top: -8px;
}

.legal-pages ul+p {
    margin-top: -20px;
}

.legal-pages ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.legal-pages ul li {
    list-style-type: disc;
    list-style-position: inside;
}

.legal-pages stronge {
    font-weight: 500;
}

.legal-pages a {
    color: var(--clr-red-1);
    text-decoration: none;
}

.legal-pages ul li::marker {
    left: 0px;
    position: absolute;
}

.dm-5 .row:nth-child(2) {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--clr-black);
}

.dm-5 .row .dm-5-col {
    border: 1px solid var(--clr-black);
    padding: 40px 30px;
    position: relative;
    text-align: center;
}

.dm-5 .row .dm-5-col img {
    width: 70px;
    margin-bottom: 15px;
}

.dm-5 .row .dm-5-col:nth-child(odd) {
    border-left: 0px;
    border-top: 0px;
    border-right: 0px;
}



.dm-5 .row .dm-5-col:nth-child(even) {
    border-right: 0px;
    border-top: 0px;
}

.dm-5 .row .dm-5-col:nth-child(3),
.dm-5 .row .dm-5-col:nth-child(4) {
    border-bottom: 0px;

}

.dm-5 ul.list-with-icon .service-check-icon img {
    width: 20px;
    margin-top: -3px;
}

.dm-item {
    background: var(--clr-purple);
    padding: 24px 32px 26px;
    text-align: center;
    border-radius: 10px;
    position: relative;
    border: 1px solid var(--clr-black);
    height: 100%;
}

/*.dm-item .dm-icon {
    width: 20px;
    margin: 0 auto;
    margin-bottom: 12px;
    position: relative;
}*/
.dm-item .dm-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto;
    margin-bottom: 12px;
    position: relative;
    padding: 6px;
    background: var(--clr-white-1);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(9deg);
}

.dm-item .dm-icon img {
    width: 100%;
    filter: var(--filter-1);
}

.dm-item .dm-item-content {
    position: relative;
    z-index: 1;
}

.dm-item::before {
    content: '';
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    position: absolute;
    background: var(--clr-white);
    top: 10px;
    left: 10px;
    border-radius: 1000px;
    z-index: 0;
}

.dm-card {
    background: var(--clr-white-1);
    padding: 20px 20px 26px;
    height: 100%;
    border-radius: 10px;
    border: 1px solid var(--clr-black);
}

.dm-card h3 {
    font-size: 28px;
}

img.h-100 {
    height: 100%;
    object-fit: cover;
}

.dm-2 .dm-item {
    background: var(--clr-white-1);
    border-radius: 10px;
    padding: 32px 24px;
}

.dm-2 .dm-item::before {
    border-radius: 10px;
}

.dm-6 ul.list-with-icon .service-check-icon img {
    width: 16px;
}

.wd-cards {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid var(--clr-black);
    border-radius: 10px;
}

.wd-card {
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid var(--clr-black);
    border-left: 0px;
    padding: 0px 20px;
    width: 33.3333%;
    flex: 0 0 33.3333%;
}

.wd-card:nth-child(1),
.wd-card:nth-child(2),
.wd-card:nth-child(3) {
    border-bottom: 0px;
    border-top: 0px;
}

.wd-card:nth-child(4),
.wd-card:nth-child(5),
.wd-card:nth-child(6) {
    border-bottom: 0px;
}

.wd-card:nth-child(3),
.wd-card:nth-child(6) {
    border-right: 0px;
}


.wd-card-icon {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 60px;
    border: 1px solid var(--clr-black);
    padding: 5px;
    border-radius: 10px;
}

.wd-card-icon img {
    width: 100%;
    filter: var(--filter-1);
}

.wd-card-content {
    padding: 22px 30px;
    border-left: 1px solid var(--clr-black);
    height: 100%;
    display: flex;
    align-items: center;
}

.wd-5 h2 {
    padding-right: 70px;
    margin-bottom: 50px;
}

.wd-5 .image-cover::before {
    content: '';
    width: 80px;
    height: 68%;
    background: var(--clr-white);
    position: absolute;
    left: -20px;
    z-index: 1;
    bottom: 0px;
    border-radius: 0px 20px 0px 0px;
}

.wd-5 .wd-5-content {
    width: calc(100% + 80px);
    position: relative;
    z-index: 2;
}

.wd-last-card {
    padding: 50px 50px 0px 50px;
    background: var(--clr-white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.wd-last-card * {
    position: relative;
    z-index: 1;
}

.wd-last-card::after {
    content: '';
    width: 500px;
    height: 500px;
    position: absolute;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    bottom: -300px;
    background: var(--clr-white-2);
    z-index: 0;
    border-radius: 10000px;
    opacity: .3;
}

.wd-last-card h2 {
    font-size: 32px;
}

.wd-last-card p {
    margin-bottom: 16px;
}

.wd-last-card-outer-border {
    padding: 5px;
    border: 1px solid var(--clr-white-2);
    width: fit-content;
    border-radius: 100%;
    margin: 0 auto;
    margin-bottom: 15px;
}

.wd-last-card-icon {
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 70px;
    padding: 10px;
    border-radius: 100%;
    margin: 0 auto;
    background: var(--clr-white-2);
}

.wd-last-card-icon img {
    width: 100%;
}

.wd-last-card>img {
    width: 200px !important;
    margin: 0 auto;
}

.wd-7 ul.list-with-icon .service-check-icon img {
    width: 24px;
}

.wd-7 .image-cover img.h-100 {
    object-fit: bottom center;
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:var(--clr-white-2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:10000001;
    transition: opacity 0.5s ease;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.half-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 8px solid transparent;
    border-radius: 50%;
    box-sizing: border-box;
}

.half-circle-top {
    border-top-color:var(--clr-black);
    border-right-color:var(--clr-black);
    animation: rotate-clockwise 1.25s linear infinite;
}

.half-circle-bottom {
    border-bottom-color:var(--clr-red-1);
    border-left-color:var(--clr-red-1);
    animation: rotate-counterclockwise 1.25s linear infinite;
}

@keyframes rotate-clockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-counterclockwise {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}
