@import "https://fonts.googleapis.com/css2?family=Cuprum:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&amp;family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&amp;display=swap";
:root {
    --primary-color1: rgb(255, 153, 51);
    --primary-opcaity: rgba(230, 0, 76, 0.1);
    --primary-color2: rgb(255, 153, 51);
    --primary-opcaity2: rgba(0, 202, 235, 0.1);
    --primary-color3: rgb(160, 68, 255);
    --primary-opcaity3: rgba(160, 68, 255, 0.1);
    --primary-color4: rgb(255, 153, 51);
    --primary-opcaity4: rgba(39, 174, 96, 0.1);
    --primary-color4-light: #f6fffc;
    --primary-color5: rgb(255, 153, 51);
    --primary-opcaity5: rgba(255, 76, 76, 0.1);
    --primary-color6: rgb(54, 156, 186);
    --primary-opcaity6: rgba(47, 128, 237, 0.1);
    --text-color: #18212e;
    --text-color2: #676767;
    --text-color3: #afafaf;
    --text-light: #eeeeee;
    --light-bg: #f8f8f8;
    --dark--bg: #0a120f;
    --dark-bg: #0a120f;
    --white: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: cuprum, sans-serif;
}
html {
    font-size: 1rem;
}
@media (min-width: 1200px) and (max-width: 1399px) {
    html {
        font-size: 94%;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    html {
        font-size: 90%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    html {
        font-size: 87%;
    }
}
@media (min-width: 576px) and (max-width: 768px) {
    html {
        font-size: 83%;
    }
}
@media (max-width: 576px) {
    html {
        font-size: 80%;
    }
}
body {
    font-family: poppins, sans-serif;
}
a {
    color: unset;
    text-decoration: none;
}
a:focus {
    outline: 0 solid;
}
a:hover {
    text-decoration: none;
    color: unset;
}
input:focus,
textarea:focus,
button:focus {
    outline: none;
}
ul {
    list-style: none;
}
i.bx {
    vertical-align: middle;
}
.pt-120 {
    padding-top: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .pt-120 {
        padding-top: 90px;
    }
}
@media (max-width: 991px) {
    .pt-120 {
        padding-top: 80px;
    }
}
.pb-120 {
    padding-bottom: 120px;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .pb-120 {
        padding-bottom: 90px;
    }
}
@media (max-width: 991px) {
    .pb-120 {
        padding-bottom: 80px;
    }
}
.mb-120 {
    margin-bottom: 120px;
}
.pt-80 {
    padding-top: 80px;
}
.pb-80 {
    padding-bottom: 80px;
}
.pb-60 {
    padding-bottom: 60px;
}
.mb-60 {
    margin-bottom: 60px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-45 {
    margin-bottom: 45px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mt-50 {
    margin-top: 50px;
}
@media (max-width: 991px) {
    .mt-50 {
        margin-top: unset;
    }
}
.mar-tp-50 {
    margin-top: 50px;
}
.mt-minus50 {
    margin-top: -50px;
}
@media (max-width: 991px) {
    .mt-minus50 {
        margin-top: unset;
    }
}
.mt-60 {
    margin-top: 60px;
}
.mb-70 {
    margin-bottom: 70px;
}
.swiper-fix {
    padding: 15px;
    margin: -12px;
}
.para {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color2);
    font-family: poppins, sans-serif;
    line-height: 28px;
}
.eg-card {
    border-radius: 5px;
    border: 1px solid #eee;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
}
.eg-btn {
    border-radius: 5px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    transition: all 0.4s ease;
    text-transform: capitalize;
    font-family: poppins, sans-serif;
}
.btn--primary {
    background: #18212e;
    color: var(--white);
    position: relative;
    z-index: 1;
    white-space: nowrap;
    font-family: poppins, sans-serif;
}
.btn--primary::before {
    width: 100%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background: var(--primary-color1);
    transition: all 0.52s;
    z-index: -1;
    border-radius: 5px;
}
.btn--primary::after {
    width: 100%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background: var(--primary-color1);
    transition: all 0.52s;
    z-index: -1;
    border-radius: 5px;
}
.btn--primary:hover {
    color: var(--white);
}
.btn--primary:hover::before {
    transform: rotateX(90deg);
}
.btn--primary:hover::after {
    transform: rotateY(90deg);
}
.btn--primary2 {
    background: #18212e;
    color: var(--white);
    position: relative;
    z-index: 1;
    white-space: nowrap;
    border-radius: 100px;
    font-family: poppins, sans-serif;
}
.btn--primary2::before {
    width: 100%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background: #369cba;
    transition: all 0.52s;
    z-index: -1;
    border-radius: 100px;
}
.btn--primary2::after {
    width: 100%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background: #369cba;
    transition: all 0.52s;
    z-index: -1;
    border-radius: 100px;
}
.btn--primary2:hover {
    color: var(--white);
}
.btn--primary2:hover::before {
    transform: rotateX(90deg);
}
.btn--primary2:hover::after {
    transform: rotateY(90deg);
}
.btn--primary2-light {
    background: var(--primary-color2);
    color: var(--primary-color2);
    font-weight: 600;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    border-radius: 100px;
    border: 1px solid transparent;
    font-family: poppins, sans-serif;
}
.btn--primary2-light::before {
    width: 100%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background: var(--white);
    transition: all 0.52s;
    z-index: -1;
    border-radius: 100px;
}
.btn--primary2-light::after {
    width: 100%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background: var(--white);
    transition: all 0.52s;
    z-index: -1;
    border-radius: 100px;
}
.btn--primary2-light:hover {
    color: var(--white);
}
.btn--primary2-light:hover::before {
    transform: rotateX(90deg);
}
.btn--primary2-light:hover::after {
    transform: rotateY(90deg);
}
.btn--primary3 {
    background: #18212e;
    color: var(--white);
    position: relative;
    z-index: 1;
    white-space: nowrap;
    border-radius: 5px;
}
.btn--primary3::before {
    width: 100%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background: #a044ff;
    transition: all 0.52s;
    z-index: -1;
    border-radius: 5px;
}
.btn--primary3::after {
    width: 100%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background: #a044ff;
    transition: all 0.52s;
    z-index: -1;
    border-radius: 5px;
}
.btn--primary3:hover {
    color: var(--white);
}
.btn--primary3:hover::before {
    transform: rotateX(90deg);
}
.btn--primary3:hover::after {
    transform: rotateY(90deg);
}
.btn--primary3.capsule {
    border-radius: 100px;
}
.btn--primary3.capsule::before {
    border-radius: 100px;
}
.btn--primary3.capsule::after {
    border-radius: 100px;
}
.btn--primary4 {
    background: #18212e;
    color: var(--white);
    position: relative;
    z-index: 1;
    white-space: nowrap;
    border-radius: 5px;
}
.btn--primary4::before {
    width: 100%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background: var(--primary-color4);
    transition: all 0.52s;
    z-index: -1;
    border-radius: 5px;
}
.btn--primary4::after {
    width: 100%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background: var(--primary-color4);
    transition: all 0.52s;
    z-index: -1;
    border-radius: 5px;
}
.btn--primary4:hover {
    color: var(--white);
}
.btn--primary4:hover::before {
    transform: rotateX(90deg);
}
.btn--primary4:hover::after {
    transform: rotateY(90deg);
}
.btn--primary4.capsule {
    border-radius: 100px;
}
.btn--primary4.capsule::before {
    border-radius: 100px;
}
.btn--primary4.capsule::after {
    border-radius: 100px;
}
.btn--primary5 {
    background: #18212e;
    color: var(--white);
    position: relative;
    z-index: 1;
    white-space: nowrap;
    border-radius: 0;
    border: 1px solid var(--primary-color5);
}
.btn--primary5::before {
    width: 100%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background: var(--primary-color5);
    transition: all 0.52s;
    z-index: -1;
    border-radius: 0;
}
.btn--primary5::after {
    width: 100%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background: var(--primary-color5);
    transition: all 0.52s;
    z-index: -1;
    border-radius: 0;
}
.btn--primary5:hover {
    color: var(--white);
    border: 1px solid var(--text-color);
}
.btn--primary5:hover::before {
    transform: rotateX(90deg);
}
.btn--primary5:hover::after {
    transform: rotateY(90deg);
}
.btn--primary5.capsule {
    border-radius: 100px;
}
.btn--primary5.capsule::before {
    border-radius: 100px;
}
.btn--primary5.capsule::after {
    border-radius: 100px;
}
.btn--primary5.btn--outline {
    background: var(--primary-color5);
    color: var(--primary-color5);
    border: 1px solid var(--primary-color5);
}
.btn--primary5.btn--outline::before {
    background: #fef4e9;
    border: 1px solid var(--primary-color5);
}
.btn--primary5.btn--outline::after {
    background: #fef4e9;
    border: 1px solid var(--primary-color5);
}
.btn--primary5.btn--outline:hover {
    color: var(--white);
}
.btn--primary5.btn--outline:hover::before {
    transform: rotateX(90deg);
}
.btn--primary5.btn--outline:hover::after {
    transform: rotateY(90deg);
}
.btn--transparent {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    position: relative;
    z-index: 1;
    white-space: nowrap;
    border-radius: 5px;
}
.btn--transparent::before {
    width: 100%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.52s;
    z-index: -1;
    border-radius: 5px;
}
.btn--transparent::after {
    width: 100%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.52s;
    z-index: -1;
    border-radius: 5px;
}
.btn--transparent:hover {
    color: var(--white);
}
.btn--transparent:hover::before {
    transform: rotateX(90deg);
}
.btn--transparent:hover::after {
    transform: rotateY(90deg);
}
.btn--primary3-outline {
    border: 1px solid #a044ff;
    color: #a044ff;
    white-space: nowrap;
    transition: all 0.52s ease;
}
.btn--primary3-outline:hover {
    background: #a044ff;
    color: var(--white);
}
.btn--lg {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 17px 32px;
}
@media (max-width: 767px) {
    .btn--lg {
        padding: 12px 25px;
    }
}
.btn--md {
    padding: 14px 45px;
    font-size: 16px;
    font-weight: 700;
}
@media (max-width: 767px) {
    .btn--md {
        padding: 10px 40px;
    }
}
.btn--sm {
    font-size: 14px;
    font-weight: 500;
    padding: 5px 12px;
}
.header-btn {
    background-color: var(--primary-color1);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    font-family: cuprum, sans-serif;
    padding: 9px 20px;
}
.action-btn {
    min-width: 26px;
    height: 26px;
    line-height: 0;
    border: none;
    outline: none;
}
.action-btn.red {
    background: #369cba;
}
.action-btn.green {
    background: var(--primary-color1);
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title span {
    font-size: 16px;
    font-weight: 500;
    font-family: poppins, sans-serif;
    padding: 5px 10px;
    margin-bottom: 15px;
    display: inline-block;
}
.section-title h3 {
    font-size: 2.8125rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}
.section-title.primary1 span {
    color: var(--primary-color1);
    background: var(--primary-opcaity);
}
.section-title.primary2 span {
    color: var(--primary-color2);
    background: var(--primary-opcaity2);
}
.section-title.primary3 span {
    color: var(--primary-color3);
    background: var(--primary-opcaity3);
}
.section-title.primary4 span {
    color: var(--primary-color4);
    background: var(--primary-opcaity4);
}
.section-title.primary5 span {
    color: var(--primary-color5);
    background: var(--primary-opcaity5);
}
.section-title2 {
    text-align: center;
    margin-bottom: 60px;
}
.section-title2 span {
    font-size: 16px;
    font-weight: 500;
    font-family: poppins, sans-serif;
    padding: 5px 10px;
    margin-bottom: 15px;
    display: inline-block;
}
.section-title2 h3 {
    font-size: 2.8125rem;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    padding-bottom: 10px;
}
.section-title2 h3::after {
    content: url(../images/icons/section-title-v.svg);
    position: absolute;
    right: 0;
    bottom: -10px;
}
.section-title2.primary1 span {
    color: var(--primary-color1);
    background: var(--primary-opcaity);
}
.section-title2.primary2 span {
    color: var(--primary-color2);
    background: var(--primary-opcaity2);
}
.section-title2.primary3 span {
    color: var(--primary-color3);
    background: var(--primary-opcaity3);
}
.section-title2.primary4 span {
    color: var(--primary-color4);
    background: var(--primary-opcaity4);
}
.section-title2.primary5 span {
    color: var(--primary-color5);
    background: var(--primary-opcaity5);
}
.section-title2.primary6 span {
    color: var(--primary-color6);
    background: var(--primary-opcaity6);
}
.section-title3 {
    text-align: center;
    margin-bottom: 50px;
}
.section-title3.style-2 {
    margin-bottom: 25px;
}
.section-title3.style-2 h3 {
    font-size: 2.5rem;
    line-height: 1.2;
}
.section-title3.style-3 span {
    color: var(--primary-color5);
}
.section-title3 span {
    font-size: 16px;
    font-weight: 500;
    font-family: poppins, sans-serif;
    margin-bottom: 5px;
    display: block;
    margin-top: -5px;
}
.section-title3 p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color2);
    font-family: poppins, sans-serif;
    line-height: 28px;
    margin-top: 15px;
}
.section-title3 h3 {
    font-size: 2.8125rem;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    line-height: 1;
}
.section-title3.primary1 span {
    color: var(--primary-color1);
}
.section-title3.primary2 span {
    color: var(--primary-color2);
}
.section-title3.primary3 span {
    color: var(--primary-color3);
}
.section-title3.primary4 span {
    color: var(--primary-color4);
}
.section-title3.primary5 span {
    color: var(--primary-color5);
}
.section-title3.primary6 span {
    color: var(--primary-color6);
}
.hover-style {
    background: var(--white);
    position: relative;
    z-index: 1;
}
.hover-style::before {
    width: 100%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background: var(--primary-color1);
    transition: all 0.52s;
    z-index: -1;
    border-radius: 5px;
    opacity: 0;
}
.hover-style::after {
    width: 100%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background: var(--primary-color1);
    transition: all 0.52s;
    z-index: -1;
    border-radius: 5px;
    opacity: 0;
}
.hover-style:hover::before {
    transform: rotateX(90deg);
    opacity: 0.2;
}
.hover-style:hover::after {
    transform: rotateY(90deg);
    opacity: 0.2;
}
.hover-border1 {
    background: var(--white);
    position: relative;
    z-index: 1;
}
.hover-border1::before {
    content: "";
    width: 0%;
    height: 1px;
    position: absolute;
    bottom: 0%;
    left: 0%;
    background: var(--primary-color1);
    transition: all 0.52s;
    z-index: -1;
}
.hover-border1:hover::before {
    width: 100%;
}
.hover-border2 {
    background: var(--white);
    position: relative;
    z-index: 1;
}
.hover-border2::before {
    content: "";
    width: 0%;
    height: 2px;
    position: absolute;
    bottom: 0%;
    left: 0%;
    background: var(--primary-color2);
    transition: all 0.52s;
    z-index: -1;
}
.hover-border2:hover::before {
    width: 100%;
}
.hover-border3 {
    background: var(--white);
    position: relative;
    z-index: 1;
}
.hover-border3::before {
    content: "";
    width: 0%;
    height: 2px;
    position: absolute;
    bottom: 0%;
    left: 0%;
    background: #a044ff;
    transition: all 0.52s;
    z-index: -1;
}
.hover-border3:hover::before {
    width: 100%;
}
.hover-border4 {
    background: var(--white);
    position: relative;
    z-index: 1;
}
.hover-border4::before {
    content: "";
    width: 0%;
    height: 2px;
    position: absolute;
    bottom: 0%;
    left: 0%;
    background: var(--primary-color4);
    transition: all 0.52s;
    z-index: -1;
}
.hover-border4:hover::before {
    width: 100%;
}
.egns-preloader {
    position: fixed !important;
    z-index: 99999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.egns-preloader::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
}
.circle-border {
    width: 100%;
    max-width: 140px;
    height: 100%;
    max-height: 140px;
    border: 0 solid var(--primary_color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    border-radius: 50%;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
}
.circle-border svg {
    fill: var(--primary-color1);
}
.circle-border svg path {
    stroke: var(--primary-color1);
}
.circle-border .moving-circle {
    width: 10px;
    height: 10px;
    background: var(--primary-color1);
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    margin: auto;
    animation: circle 2s linear infinite;
}
.circle-border .moving-circle:nth-child(2) {
    width: 10px;
    height: 10px;
    background: var(--primary-color1);
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    margin: auto;
    animation: circle 2.25s linear infinite;
}
.circle-border .moving-circle:nth-child(3) {
    width: 10px;
    height: 10px;
    background: var(--primary-color1);
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    margin: auto;
    animation: circle 2.5s linear infinite;
}
@keyframes circle {
    0% {
        transform: rotate(0deg) translate(-70px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translate(-70px) rotate(-360deg);
    }
}
#outline {
    stroke-dasharray: 2.427766571px, 242.7766571045px;
    stroke-dashoffset: 0;
    animation: anim 1.6s linear infinite;
}
@keyframes anim {
    12.5% {
        stroke-dasharray: 33.9887319946px, 242.7766571045px;
        stroke-dashoffset: -26.7054322815px;
    }
    43.75% {
        stroke-dasharray: 84.9718299866px, 242.7766571045px;
        stroke-dashoffset: -84.9718299866px;
    }
    100% {
        stroke-dasharray: 2.427766571px, 242.7766571045px;
        stroke-dashoffset: -240.3488905334px;
    }
}
.mobile-search {
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.09);
    width: 100%;
    height: 100%;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    align-items: center;
    position: fixed;
    cursor: popoppins;
    transform: scale(0);
    top: 0;
    left: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.65s ease;
    padding: 35px 100px;
}
@media (max-width: 767px) {
    .mobile-search {
        padding: 20px;
    }
}
.mobile-search label {
    color: #fff;
    margin-bottom: 20px;
    font-family: cuprum, sans-serif;
}
.mobile-search.slide {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}
.mobile-search input {
    border: none;
    border-radius: unset;
    border-bottom: 1px solid #eee;
    padding-left: 0;
    padding-bottom: 5px;
    width: 100%;
    background: 0 0;
    transition: 0.3s ease-in-out;
    color: #fff;
    margin-bottom: 20px;
}
.mobile-search input:focus {
    border-bottom: 1px solid #fff;
}
.mobile-search input::placeholder {
    font-family: cuprum, sans-serif;
    color: #676767;
}
.mobile-search .search-cross-btn {
    color: #fff;
    cursor: pointer;
    background: rgba(var(--primary-color1), 0.6);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    line-height: 43px;
    transition: 0.5s ease;
}
.mobile-search .search-cross-btn:hover {
    background: var(--primary-color1);
    color: #fff;
}
.mobile-search .search-cross-btn i {
    font-size: 25px;
    cursor: popoppins;
}
.menu-toggle-btn-full-shape.show-sidebar {
    transform: translateX(0) !important;
}
.menu-toggle-btn-full-shape.show-sidebar::-webkit-scrollbar {
    width: 6px;
    border-radius: 5px;
}
.menu-toggle-btn-full-shape.show-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.menu-toggle-btn-full-shape.show-sidebar::-webkit-scrollbar-thumb {
    background: #cacaca;
}
.menu-toggle-btn-full-shape.show-sidebar::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.menu-toggle-btn-full-shape {
    position: relative;
    width: 100%;
    max-width: 375px;
    padding: 30px 25px 0;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    transform: translateX(100%) !important;
    transition: all 0.6s ease 0s;
    background: #fff;
    overflow-y: auto;
    border-left: 1px solid rgba(238, 238, 238, 0.8);
}
.menu-toggle-btn-full-shape .cross-icon i {
    color: var(--text-color);
    font-size: 30px;
    cursor: pointer;
    transition: 0.4s;
    height: 36px;
    width: 36px;
    line-height: 36px;
    border-radius: 50%;
    background: rgba(var(--text-color), 0.08);
    text-align: center;
}
.menu-toggle-btn-full-shape .cross-icon i:hover {
    transform: rotate(90deg);
}
.menu-toggle-btn-full-shape .sidebar-body {
    padding-top: 30px;
    padding-bottom: 30px;
}
.menu-toggle-btn-full-shape .sidebar-body h5 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-color);
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 40px;
}
.menu-toggle-btn-full-shape .sidebar-body h5::after {
    content: "";
    width: 45px;
    height: 3px;
    border-radius: 4px;
    background: var(--text-color);
    position: absolute;
    left: 0;
    bottom: 0;
}
.menu-toggle-btn-full-shape .sidebar-body .sidebar-social {
    padding-left: 0;
    margin-left: 0;
}
.menu-toggle-btn-full-shape .sidebar-body .sidebar-social li {
    margin-bottom: 20px;
}
.menu-toggle-btn-full-shape .sidebar-body .sidebar-social i {
    height: 34px;
    width: 34px;
    line-height: 34px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    color: var(--text-color);
    margin-right: 15px;
}
.menu-toggle-btn-full-shape .sidebar-body .sidebar-social a {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
    transition: 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
}
.menu-toggle-btn-full-shape .sidebar-body .sidebar-social a:hover i {
    background: var(--text-color);
    border: 1px solid #eee;
    color: #fff;
}
.menu-toggle-btn-full-shape .sidebar-bottom {
    border-top: 1px solid #eee;
    padding-top: 20px;
    padding-bottom: 20px;
}
.menu-toggle-btn-full-shape .sidebar-bottom p {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}
.menu-toggle-btn-full-shape .sidebar-bottom span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
}
.mobile-menu-form {
    margin-top: 50px;
}
.mobile-menu-form input {
    width: 100%;
    border: 1px solid #eee;
    padding: 10px 15px;
    background-color: var(--white);
    margin-bottom: 15px;
    outline: none;
    border-radius: 5px;
}
.mobile-menu-form input::placeholder {
    font-size: 12px;
}
.mobile-menu-form input.style-capsule {
    border-radius: 30px;
}
.mobile-menu-form button {
    outline: none;
    border: none;
    padding: 10px;
}
.mobile-menu-form.style-2 input {
    border-radius: 30px;
}
.page-active {
    color: var(--primary-color1) !important;
}
header.style-1 {
    background-color: #0b0f14;
    width: 100%;
    z-index: 99;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
@media (min-width: 1200px) and (max-width: 1399px) {
    header.style-1 {
        padding: 0 30px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    header.style-1 {
        padding: 0 30px;
    }
}
@media (max-width: 991px) {
    header.style-1 {
        padding: 0 20px;
        top: 0;
    }
}
header.style-1.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: var(--dark--bg);
    box-shadow: 5px 3px 40px rgba(0, 72, 88, 0.1);
    animation: smooth-header 0.65s linear;
}
@keyframes smooth-header {
    0% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(0px);
    }
}
header.style-1 .nav-right .header-icons {
    margin-right: 20px;
}
@media (max-width: 1199px) {
    header.style-1 .nav-right .header-icons {
        margin-right: 0;
    }
}
header.style-1 .nav-right .hotline {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}
header.style-1 .nav-right .hotline .hotline-icon {
    margin-right: 8px;
}
header.style-1 .nav-right .hotline .hotline-icon svg {
    fill: var(--white);
}
header.style-1 .nav-right .hotline .hotline-info span {
    font-size: 12px;
    font-weight: 500;
    font-family: poppins, sans-serif;
    color: var(--white);
}
header.style-1 .nav-right .hotline .hotline-info h6 {
    font-size: 16px;
    font-weight: 500;
    font-family: poppins, sans-serif;
    color: var(--white);
    white-space: nowrap;
}
header.style-1 .nav-right .sidebar-btn .bi {
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
}
header.style-1 .nav-right .search-btn {
    height: 42px;
    line-height: 45px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
}
header.style-1 .nav-right .search-btn::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 20px;
    border-radius: 1px;
    background: var(--white);
}
header.style-1 .nav-right .search-btn .bi {
    font-size: 18px;
    color: var(--white);
}
@media (max-width: 991px) {
    header.style-1 .nav-right .search-btn {
        display: none;
        visibility: hidden;
    }
}
header.style-1 .nav-right.style-2 .hotline .hotline-icon {
    margin-right: 8px;
}
header.style-1 .nav-right.style-2 .hotline .hotline-icon svg {
    fill: var(--text-color);
}
header.style-1 .nav-right.style-2 .hotline .hotline-info span {
    color: var(--text-color);
}
header.style-1 .nav-right.style-2 .hotline .hotline-info h6 {
    color: var(--text-color);
}
header.style-1 .nav-right.style-2 .search-btn::after {
    content: "";
    background: var(--text-color);
}
header.style-1 .nav-right.style-2 .search-btn .bi {
    font-size: 20px;
    color: var(--text-color);
}
@media (max-width: 991px) {
    header.style-1 .nav-right.style-2 .search-btn {
        display: none;
        visibility: hidden;
    }
}
@media (min-width: 1200px) and (max-width: 1399px) {
    header.style-1 .header-logo {
        padding: 21px 0;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    header.style-1 .header-logo {
        padding: 21px 0;
    }
}
@media (max-width: 991px) {
    header.style-1 .header-logo {
        padding: 15px 0;
    }
}
header.style-1 .header-logo img {
    min-width: 120px;
    max-width: 100%;
}
header.style-1 .header-btn {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    display: inline-block;
    transition: 0.35s ease-in;
    background: var(--primary-color1);
    cursor: pointer;
    white-space: nowrap;
    font-family: poppins, sans-serif;
}
header.style-1 .header-btn:hover {
    background: #191a1c;
}
header.style-1 .header-btn:hover a {
    color: var(--white);
}
@media (max-width: 1199px) {
    header.style-1 .header-btn {
        display: none;
        visibility: hidden;
    }
}
header.style-1 .main-nav {
    display: inline-block;
}
header.style-1 .main-nav .mobile-menu-logo {
    display: none;
}
header.style-1 .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
header.style-1 .main-nav ul li {
    display: inline-block;
    position: relative;
    padding: 0 20px;
}
header.style-1 .main-nav ul li a {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    display: block;
    text-transform: capitalize;
    padding: 30px 0;
    position: relative;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
header.style-1 .main-nav ul li a:hover {
    color: #ff9933;
}
header.style-1 .main-nav ul li a.active {
    color: #ff9933;
}
header.style-1 .main-nav ul li i {
    width: 30px;
    font-size: 14px;
    text-align: center;
    color: #fff;
    font-style: normal;
    position: absolute;
    right: -8px;
    top: 33px;
    z-index: 999;
    cursor: pointer;
    display: none;
}
header.style-1 .main-nav ul li ul.sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    min-width: 215px;
    background: #0b0f14;
    text-align: left;
    transition: all 0.5s ease-out 0s;
    transform: translateY(20px);
}
header.style-1 .main-nav ul li ul.sub-menu > li {
    padding: 0;
    display: block;
    border-bottom: 1px solid rgba(56, 56, 56, 0.5);
    position: relative;
}
header.style-1 .main-nav ul li ul.sub-menu > li i {
    position: absolute;
    top: 10px;
    right: 6px;
    display: block;
}
header.style-1 .main-nav ul li ul.sub-menu > li a {
    display: block;
    padding: 15px;
    color: #fff;
    font-weight: 300;
    text-transform: capitalize;
    font-size: 15px;
    line-height: 1;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}
header.style-1 .main-nav ul li ul.sub-menu > li a:hover {
    color: var(--primary-color1);
    margin-left: 10px;
}
header.style-1 .main-nav ul li ul.sub-menu > li a.active {
    color: var(--primary-color1);
}
header.style-1 .main-nav ul li ul.sub-menu > li .sub-menu {
    left: 215px;
    position: absolute;
    max-width: 230px;
    min-width: 215px;
    background: #0b0f14;
    top: 0;
}
@media only screen and (max-width: 1199px) {
    header.style-1 .main-nav ul li ul.sub-menu > li .sub-menu {
        margin-left: 10px;
        position: unset;
        max-width: 230px;
        min-width: 215px;
        background: #242424;
        top: 0;
    }
}
header.style-1 .main-nav ul li ul.sub-menu > li .sub-menu li i {
    display: block;
}
header.style-1 .main-nav ul li ul.sub-menu > li:last-child {
    border-bottom: none;
}
header.style-1 .main-nav ul li:hover > ul.sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
header.style-1 .main-nav ul li.menu-item-has-children > i {
    display: block;
}
@media only screen and (max-width: 991px) {
    header.style-1 .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        padding: 30px 20px !important;
        z-index: 99999;
        height: 100%;
        overflow: auto;
        background: var(--dark-bg);
        -webkit-transform: translateX(-260px);
        transform: translateX(-100%);
        -webkit-transition: -webkit-transform 0.3s ease-in;
        transition: -webkit-transform 0.3s ease-in;
        transition: transform 0.3s ease-in;
        transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
    }
    header.style-1 .main-nav.show-menu {
        transform: translateX(0);
    }
    header.style-1 .main-nav .mobile-menu-logo {
        text-align: left;
        padding-top: 20px;
        display: block;
        border-bottom: 1px solid #ff9933;
        padding-bottom: 8px;
    }
    header.style-1 .main-nav ul {
        float: none;
        text-align: left;
        padding: 25px 10px 25px 0;
    }
    header.style-1 .main-nav ul li {
        display: block;
        position: relative;
        padding: 0 5px;
    }
    header.style-1 .main-nav ul li i {
        display: block;
    }
    header.style-1 .main-nav ul li a {
        padding: 10px 0;
        display: block;
        font-weight: 300;
    }
    header.style-1 .main-nav ul li ul.sub-menu {
        position: static;
        min-width: 200px;
        background: 0 0;
        border: none;
        opacity: 1;
        visibility: visible;
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transform: none;
        transform: none;
        -webkit-transition: none;
        transition: none;
        display: none;
        margin-top: 0 !important;
        transform: translateY(0px);
    }
    header.style-1 .main-nav ul li .bi {
        top: 8px;
        font-size: 16px;
    }
    header.style-1 .mobile-menu {
        position: relative;
        top: 2px;
        padding: 0 5px;
        border-radius: 50%;
        display: inline-block;
    }
    header.style-1 .cross-btn {
        display: inline-block !important;
        position: relative;
        width: 30px !important;
        height: 22px !important;
        cursor: pointer;
        border: 3px solid transparent !important;
    }
    header.style-1 .cross-btn span {
        width: 100%;
        height: 2px;
        background: linear-gradient(
            233.77deg,
            rgba(115, 0, 0, 0.8) 0.94%,
            rgba(217, 10, 44, 0.8) 99.09%
        ) !important;
        display: block;
        position: absolute;
        right: 0;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    header.style-1 .cross-btn .cross-top {
        top: 0;
    }
    header.style-1 .cross-btn .cross-middle {
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 100%;
    }
    header.style-1 .cross-btn .cross-bottom {
        bottom: 0;
        width: 100%;
    }
    header.style-1 .cross-btn.h-active span.cross-top {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 50%;
        margin-top: -1px;
    }
    header.style-1 .cross-btn.h-active span.cross-middle {
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
        opacity: 0;
    }
    header.style-1 .cross-btn.h-active span.cross-bottom {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        bottom: 50%;
        margin-bottom: -1px;
    }
}
header.style-1.style-3 {
    background: var(--white);
}
header.style-1.style-3 .main-nav ul li a {
    color: var(--text-color);
}
@media (max-width: 991px) {
    header.style-1.style-3 .main-nav ul li a {
        color: var(--white);
    }
}
header.style-1.style-3 .main-nav ul li a:hover {
    color: var(#a044ff);
}
header.style-1.style-3 .main-nav ul li a.active {
    color: var(#a044ff);
}
header.style-1.style-3 .main-nav ul li i {
    color: var(--text-color);
}
@media (max-width: 991px) {
    header.style-1.style-3 .main-nav ul li i {
        color: var(--white);
    }
}
header.style-1.style-3 .main-nav ul li ul.sub-menu a:hover {
    color: var(--primary-color3);
}
header.style-2 {
    background-color: var(--white);
    width: 94%;
    z-index: 99;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    z-index: 9;
    border-radius: 100px;
    margin: 0 auto;
    top: 30px;
    left: 0;
    right: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
    header.style-2 {
        padding: 0 30px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    header.style-2 {
        padding: 0 30px;
        border-radius: 0;
        width: 100%;
        top: 0;
    }
}
@media (max-width: 991px) {
    header.style-2 {
        padding: 0 20px;
        top: 0;
        border-radius: 0;
        width: 100%;
    }
}
header.style-2.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: var(--white);
    box-shadow: 5px 3px 40px rgba(0, 72, 88, 0.1);
    animation: smooth-header 0.65s linear;
}
@keyframes smooth-header {
    0% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(0px);
    }
}
header.style-2 .nav-right .header-icons {
    margin-right: 10px;
}
@media (max-width: 1199px) {
    header.style-2 .nav-right .header-icons {
        margin-right: 0;
    }
}
header.style-2 .nav-right .hotline {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
header.style-2 .nav-right .hotline .hotline-icon {
    margin-right: 8px;
}
header.style-2 .nav-right .hotline .hotline-icon svg {
    fill: var(--text-color);
}
header.style-2 .nav-right .hotline .hotline-info span {
    font-size: 12px;
    font-weight: 500;
    font-family: poppins, sans-serif;
    color: var(--text-color);
}
header.style-2 .nav-right .hotline .hotline-info h6 {
    font-size: 16px;
    font-weight: 500;
    font-family: poppins, sans-serif;
    color: var(--text-color);
    white-space: nowrap;
}
header.style-2 .nav-right .sidebar-btn .bi {
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
}
header.style-2 .nav-right .search-btn {
    height: 42px;
    line-height: 45px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
}
header.style-2 .nav-right .search-btn::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 20px;
    border-radius: 1px;
    background: var(--text-color);
}
header.style-2 .nav-right .search-btn .bi {
    font-size: 18px;
    color: var(--text-color);
}
@media (max-width: 991px) {
    header.style-2 .nav-right .search-btn {
        display: none;
        visibility: hidden;
    }
}
@media (min-width: 1200px) and (max-width: 1399px) {
    header.style-2 .header-logo {
        padding: 21px 0;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    header.style-2 .header-logo {
        padding: 21px 0;
    }
}
@media (max-width: 991px) {
    header.style-2 .header-logo {
        padding: 15px 0;
    }
}
header.style-2 .header-logo img {
    min-width: 120px;
    max-width: 100%;
}
header.style-2 .header-btn {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    display: inline-block;
    transition: 0.35s ease-in;
    background: var(--primary-color2);
    cursor: pointer;
    white-space: nowrap;
    font-family: poppins, sans-serif;
}
header.style-2 .header-btn:hover {
    background: #191a1c;
}
header.style-2 .header-btn:hover a {
    color: var(--white);
}
@media (max-width: 1199px) {
    header.style-2 .header-btn {
        display: none;
        visibility: hidden;
    }
}
header.style-2 .main-nav {
    display: inline-block;
}
header.style-2 .main-nav .mobile-menu-logo {
    display: none;
}
header.style-2 .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
header.style-2 .main-nav ul li {
    display: inline-block;
    position: relative;
    padding: 0 20px;
}
header.style-2 .main-nav ul li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    display: block;
    text-transform: capitalize;
    padding: 30px 0;
    position: relative;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
header.style-2 .main-nav ul li a:hover {
    color: var(--primary-color2);
}
header.style-2 .main-nav ul li a.active {
    color: var(--primary-color2);
}
header.style-2 .main-nav ul li i {
    width: 30px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: var(--text-color);
    font-style: normal;
    position: absolute;
    right: -8px;
    top: 33px;
    z-index: 999;
    cursor: pointer;
    display: none;
}
header.style-2 .main-nav ul li ul.sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    min-width: 215px;
    background: #000;
    text-align: left;
    transition: all 0.5s ease-out 0s;
    transform: translateY(20px);
}
header.style-2 .main-nav ul li ul.sub-menu > li {
    padding: 0;
    display: block;
    border-bottom: 1px solid #383838;
    position: relative;
}
header.style-2 .main-nav ul li ul.sub-menu > li i {
    position: absolute;
    top: 10px;
    right: 6px;
    display: block;
    color: #fff;
}
header.style-2 .main-nav ul li ul.sub-menu > li a {
    display: block;
    padding: 15px;
    color: #fff;
    font-weight: 300;
    text-transform: capitalize;
    font-size: 15px;
    line-height: 1;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}
header.style-2 .main-nav ul li ul.sub-menu > li a:hover {
    color: var(--primary-color2);
    margin-left: 10px;
}
header.style-2 .main-nav ul li ul.sub-menu > li a.active {
    color: var(--primary-color2);
}
header.style-2 .main-nav ul li ul.sub-menu > li .sub-menu {
    left: 215px;
    position: absolute;
    max-width: 230px;
    min-width: 215px;
    background: #000;
    top: 0;
}
@media only screen and (max-width: 1199px) {
    header.style-2 .main-nav ul li ul.sub-menu > li .sub-menu {
        margin-left: 10px;
        position: unset;
        max-width: 230px;
        min-width: 215px;
        background: #242424;
        top: 0;
    }
}
header.style-2 .main-nav ul li ul.sub-menu > li .sub-menu li i {
    display: block;
}
header.style-2 .main-nav ul li ul.sub-menu > li:last-child {
    border-bottom: none;
}
header.style-2 .main-nav ul li:hover > ul.sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
header.style-2 .main-nav ul li.menu-item-has-children > i {
    display: block;
}
@media only screen and (max-width: 991px) {
    header.style-2 .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        padding: 30px 20px !important;
        z-index: 99999;
        height: 100%;
        overflow: auto;
        background: var(--dark-bg);
        -webkit-transform: translateX(-260px);
        transform: translateX(-100%);
        -webkit-transition: -webkit-transform 0.3s ease-in;
        transition: -webkit-transform 0.3s ease-in;
        transition: transform 0.3s ease-in;
        transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
    }
    header.style-2 .main-nav.show-menu {
        transform: translateX(0);
    }
    header.style-2 .main-nav .mobile-menu-logo {
        text-align: left;
        padding-top: 20px;
        display: block;
        border-bottom: 1px solid transparent;
        padding-bottom: 8px;
    }
    header.style-2 .main-nav ul {
        float: none;
        text-align: left;
        padding: 25px 10px 25px 0;
    }
    header.style-2 .main-nav ul li {
        display: block;
        position: relative;
        padding: 0 5px;
    }
    header.style-2 .main-nav ul li i {
        display: block;
    }
    header.style-2 .main-nav ul li a {
        padding: 10px 0;
        display: block;
        font-weight: 300;
        color: var(--white);
    }
    header.style-2 .main-nav ul li ul.sub-menu {
        position: static;
        min-width: 200px;
        background: 0 0;
        border: none;
        opacity: 1;
        visibility: visible;
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transform: none;
        transform: none;
        -webkit-transition: none;
        transition: none;
        display: none;
        margin-top: 0 !important;
        transform: translateY(0px);
    }
    header.style-2 .main-nav ul li .bi {
        top: 8px;
        font-size: 16px;
        color: var(--white);
    }
    header.style-2 .mobile-menu {
        position: relative;
        top: 2px;
        padding: 0 5px;
        border-radius: 50%;
        display: inline-block;
    }
    header.style-2 .cross-btn {
        display: inline-block !important;
        position: relative;
        width: 30px !important;
        height: 22px !important;
        cursor: pointer;
        border: 3px solid transparent !important;
    }
    header.style-2 .cross-btn span {
        width: 100%;
        height: 2px;
        background: linear-gradient(
            233.77deg,
            rgba(115, 0, 0, 0.8) 0.94%,
            rgba(217, 10, 44, 0.8) 99.09%
        ) !important;
        display: block;
        position: absolute;
        right: 0;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    header.style-2 .cross-btn .cross-top {
        top: 0;
    }
    header.style-2 .cross-btn .cross-middle {
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 100%;
    }
    header.style-2 .cross-btn .cross-bottom {
        bottom: 0;
        width: 100%;
    }
    header.style-2 .cross-btn.h-active span.cross-top {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 50%;
        margin-top: -1px;
    }
    header.style-2 .cross-btn.h-active span.cross-middle {
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
        opacity: 0;
    }
    header.style-2 .cross-btn.h-active span.cross-bottom {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        bottom: 50%;
        margin-bottom: -1px;
    }
}
header.style-4 {
    background-color: transparent;
    width: 100%;
    z-index: 99;
    padding: 0 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    right: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
    header.style-4 {
        padding: 0 30px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    header.style-4 {
        padding: 0 30px;
    }
}
@media (max-width: 991px) {
    header.style-4 {
        padding: 0 20px;
        top: 0;
    }
}
header.style-4.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: var(--white);
    box-shadow: 5px 3px 40px rgba(0, 72, 88, 0.1);
    animation: smooth-header 0.65s linear;
}
@keyframes smooth-header {
    0% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(0px);
    }
}
header.style-4 .nav-right .header-icons {
    margin-right: 10px;
}
@media (max-width: 1199px) {
    header.style-4 .nav-right .header-icons {
        margin-right: 0;
    }
}
header.style-4 .nav-right ul.header-social {
    margin: 0;
    padding: 0;
}
header.style-4 .nav-right ul.header-social li a {
    font-size: 18px;
    font-weight: 500;
    font-family: poppins, sans-serif;
    color: var(--text-color);
    transition: all 0.35s ease-in-out;
}
header.style-4 .nav-right ul.header-social li a:hover {
    color: var(--primary-color4);
}
header.style-4 .nav-right .sidebar-btn .bi {
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
}
header.style-4 .nav-right .search-btn {
    height: 42px;
    line-height: 45px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
}
header.style-4 .nav-right .search-btn::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 20px;
    border-radius: 1px;
    background: var(--text-color);
}
header.style-4 .nav-right .search-btn .bi {
    font-size: 18px;
    color: var(--text-color);
}
@media (max-width: 991px) {
    header.style-4 .nav-right .search-btn {
        display: none;
        visibility: hidden;
    }
}
@media (min-width: 1200px) and (max-width: 1399px) {
    header.style-4 .header-logo {
        padding: 21px 0;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    header.style-4 .header-logo {
        padding: 21px 0;
    }
}
@media (max-width: 991px) {
    header.style-4 .header-logo {
        padding: 15px 0;
    }
}
header.style-4 .header-logo img {
    min-width: 120px;
    max-width: 100%;
}
header.style-4 .header-btn {
    color: var(--primary-color4);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0;
    display: inline-block;
    transition: 0.35s ease-in;
    background: 0 0;
    border: 1px solid var(--primary-color4);
    cursor: pointer;
    white-space: nowrap;
    font-family: poppins, sans-serif;
}
header.style-4 .header-btn:hover {
    background: var(--primary-color4);
}
header.style-4 .header-btn:hover a {
    color: var(--white);
}
@media (max-width: 1199px) {
    header.style-4 .header-btn {
        display: none;
        visibility: hidden;
    }
}
header.style-4 .main-nav {
    display: inline-block;
}
header.style-4 .main-nav .mobile-menu-logo {
    display: none;
}
header.style-4 .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
header.style-4 .main-nav ul li {
    display: inline-block;
    position: relative;
    padding: 0 20px;
}
header.style-4 .main-nav ul li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    display: block;
    text-transform: capitalize;
    padding: 30px 0;
    position: relative;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
header.style-4 .main-nav ul li a:hover {
    color: var(--primary-color4);
}
header.style-4 .main-nav ul li a.active {
    color: var(--primary-color4);
}
header.style-4 .main-nav ul li i {
    width: 30px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: var(--text-color);
    font-style: normal;
    position: absolute;
    right: -8px;
    top: 33px;
    z-index: 999;
    cursor: pointer;
    display: none;
}
header.style-4 .main-nav ul li ul.sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    min-width: 215px;
    background: #000;
    text-align: left;
    transition: all 0.5s ease-out 0s;
    transform: translateY(20px);
}
header.style-4 .main-nav ul li ul.sub-menu > li {
    padding: 0;
    display: block;
    border-bottom: 1px solid #383838;
    position: relative;
}
header.style-4 .main-nav ul li ul.sub-menu > li i {
    position: absolute;
    top: 10px;
    right: 6px;
    display: block;
    color: #fff;
}
header.style-4 .main-nav ul li ul.sub-menu > li a {
    display: block;
    padding: 15px;
    color: #fff;
    font-weight: 300;
    text-transform: capitalize;
    font-size: 15px;
    line-height: 1;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}
header.style-4 .main-nav ul li ul.sub-menu > li a:hover {
    color: var(--primary-color4);
    margin-left: 10px;
}
header.style-4 .main-nav ul li ul.sub-menu > li a.active {
    color: var(--primary-color4);
}
header.style-4 .main-nav ul li ul.sub-menu > li .sub-menu {
    left: 215px;
    position: absolute;
    max-width: 230px;
    min-width: 215px;
    background: #000;
    top: 0;
}
@media only screen and (max-width: 1199px) {
    header.style-4 .main-nav ul li ul.sub-menu > li .sub-menu {
        margin-left: 10px;
        position: unset;
        max-width: 230px;
        min-width: 215px;
        background: #242424;
        top: 0;
    }
}
header.style-4 .main-nav ul li ul.sub-menu > li .sub-menu li i {
    display: block;
}
header.style-4 .main-nav ul li ul.sub-menu > li:last-child {
    border-bottom: none;
}
header.style-4 .main-nav ul li:hover > ul.sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
header.style-4 .main-nav ul li.menu-item-has-children > i {
    display: block;
}
@media only screen and (max-width: 991px) {
    header.style-4 .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        padding: 30px 20px !important;
        z-index: 99999;
        height: 100%;
        overflow: auto;
        background: var(--dark-bg);
        -webkit-transform: translateX(-260px);
        transform: translateX(-100%);
        -webkit-transition: -webkit-transform 0.3s ease-in;
        transition: -webkit-transform 0.3s ease-in;
        transition: transform 0.3s ease-in;
        transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
    }
    header.style-4 .main-nav.show-menu {
        transform: translateX(0);
    }
    header.style-4 .main-nav .mobile-menu-logo {
        text-align: left;
        padding-top: 20px;
        display: block;
        border-bottom: 1px solid transparent;
        padding-bottom: 8px;
    }
    header.style-4 .main-nav ul {
        float: none;
        text-align: left;
        padding: 25px 10px 25px 0;
    }
    header.style-4 .main-nav ul li {
        display: block;
        position: relative;
        padding: 0 5px;
    }
    header.style-4 .main-nav ul li i {
        display: block;
    }
    header.style-4 .main-nav ul li a {
        padding: 10px 0;
        display: block;
        font-weight: 300;
        color: var(--white);
    }
    header.style-4 .main-nav ul li ul.sub-menu {
        position: static;
        min-width: 200px;
        background: 0 0;
        border: none;
        opacity: 1;
        visibility: visible;
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transform: none;
        transform: none;
        -webkit-transition: none;
        transition: none;
        display: none;
        margin-top: 0 !important;
        transform: translateY(0px);
    }
    header.style-4 .main-nav ul li .bi {
        top: 8px;
        font-size: 16px;
        color: var(--white);
    }
    header.style-4 .mobile-menu {
        position: relative;
        top: 2px;
        padding: 0 5px;
        border-radius: 50%;
        display: inline-block;
    }
    header.style-4 .cross-btn {
        display: inline-block !important;
        position: relative;
        width: 30px !important;
        height: 22px !important;
        cursor: pointer;
        border: 3px solid transparent !important;
    }
    header.style-4 .cross-btn span {
        width: 100%;
        height: 2px;
        background: linear-gradient(
            233.77deg,
            rgba(115, 0, 0, 0.8) 0.94%,
            rgba(217, 10, 44, 0.8) 99.09%
        ) !important;
        display: block;
        position: absolute;
        right: 0;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    header.style-4 .cross-btn .cross-top {
        top: 0;
    }
    header.style-4 .cross-btn .cross-middle {
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 100%;
    }
    header.style-4 .cross-btn .cross-bottom {
        bottom: 0;
        width: 100%;
    }
    header.style-4 .cross-btn.h-active span.cross-top {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 50%;
        margin-top: -1px;
    }
    header.style-4 .cross-btn.h-active span.cross-middle {
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
        opacity: 0;
    }
    header.style-4 .cross-btn.h-active span.cross-bottom {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        bottom: 50%;
        margin-bottom: -1px;
    }
}
header.style-4.style-5 {
    position: relative;
    background-color: var(--white);
}
header.style-4.style-5.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: var(--white);
    box-shadow: 5px 3px 40px rgba(0, 72, 88, 0.1);
    animation: smooth-header 0.65s linear;
}
@keyframes smooth-header {
    0% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(0px);
    }
}
header.style-4.style-5 .header-btn {
    color: var(--primary-color5);
    border: 1px solid var(--primary-color5);
    white-space: nowrap;
    font-family: poppins, sans-serif;
}
header.style-4.style-5 .header-btn:hover {
    background: var(--primary-color5);
}
header.style-4.style-5 .header-btn:hover a {
    color: var(--white);
}
@media (max-width: 1199px) {
    header.style-4.style-5 .header-btn {
        display: none;
        visibility: hidden;
    }
}
header.style-4.style-5 .nav-right .header-icons {
    margin-right: 10px;
}
@media (max-width: 1199px) {
    header.style-4.style-5 .nav-right .header-icons {
        margin-right: 0;
    }
}
header.style-4.style-5 .nav-right ul.header-social {
    margin: 0;
    padding: 0;
}
header.style-4.style-5 .nav-right ul.header-social li a:hover {
    color: var(--primary-color5);
}
header.style-4.style-5 .main-nav {
    display: inline-block;
}
header.style-4.style-5 .main-nav .mobile-menu-logo {
    display: none;
}
header.style-4.style-5 .main-nav ul li a:hover {
    color: var(--primary-color5);
}
header.style-4.style-5 .main-nav ul li a.active {
    color: var(--primary-color5);
}
header.style-4.style-5 .main-nav ul li ul.sub-menu > li a:hover {
    color: var(--primary-color5);
    margin-left: 10px;
}
header.style-4.style-5 .main-nav ul li ul.sub-menu > li a.active {
    color: var(--primary-color5);
}
.mobile-menu-btn {
    margin-left: 25px;
}
.mobile-menu-btn h5 {
    font-size: 18px;
}
.mobile-menu-btn .bx {
    color: var(--white);
    font-size: 28px;
}
.video-play {
    text-align: center;
    z-index: 9;
}
.video-play.style-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video-play.style-2 .video-icon {
    background: var(--white);
    border: 1px solid var(--white);
}
.video-play.style-2 .video-icon i {
    color: var(--primary-color1);
}
.video-play.style-2 .video-icon::before {
    background: var(--white);
}
.video-play.style-2 .video-icon::after {
    background: var(--white);
}
.video-play.style-3 {
    z-index: 9;
}
.video-play.style-3 .video-icon {
    background: var(--white);
    border: 1px solid var(--white);
}
.video-play.style-3 .video-icon i {
    color: var(--primary-color2);
}
.video-play.style-3 .video-icon::before {
    background: var(--white);
}
.video-play.style-3 .video-icon::after {
    background: var(--white);
}
.video-play.style-4 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}
.video-play.style-4 .video-icon {
    background: var(--primary-color3);
    border: 1px solid var(--primary-color3);
}
.video-play.style-4 .video-icon i {
    color: var(--white);
}
.video-play.style-4 .video-icon::before {
    background: var(--primary-color3);
}
.video-play.style-4 .video-icon::after {
    background: var(--primary-color3);
}
.video-play.style-5 {
    z-index: 9;
}
.video-play.style-5 .video-icon {
    background: var(--primary-color5);
    border: 1px solid var(--primary-color5);
}
.video-play.style-5 .video-icon i {
    color: var(--white);
}
.video-play.style-5 .video-icon::before {
    background: var(--primary-color5);
}
.video-play.style-5 .video-icon::after {
    background: var(--primary-color5);
}
.video-play .video-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    line-height: 52px;
    display: inline-block;
    text-align: center;
    position: relative;
    border: 1px solid var(--primary-color1);
    font-size: 36px;
    color: var(--white);
    background: var(--primary-color1);
}
.video-play .video-icon::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background: rgba(233, 0, 79, 0.5);
    -webkit-animation: ripple-1 2s infinite ease-in-out;
    animation: ripple-1 2s infinite ease-in-out;
    z-index: -1;
}
.video-play .video-icon::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background: rgba(233, 0, 79, 0.3);
    z-index: -1;
    -webkit-animation: ripple-2 2s infinite ease-in-out;
    animation: ripple-2 2s infinite ease-in-out;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.video-play .video-icon.style-2 {
    border: 1px solid var(--primary-color4);
    color: var(--white);
    background: var(--primary-color4);
}
.video-play .video-icon.style-2::before {
    background: rgba(39, 174, 96, 0.5);
}
.video-play .video-icon.style-2::after {
    background: rgba(39, 174, 96, 0.3);
}
@keyframes ripple-1 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.7);
        transform: scale(1.7);
        opacity: 0;
    }
}
@keyframes ripple-2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.9);
        transform: scale(1.9);
        opacity: 0;
    }
}
.banner-section1 {
    min-height: 90vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    background-image: linear-gradient(
            rgba(0, 1, 12, 0.75),
            rgba(0, 1, 12, 0.75)
        ),
        url("../images/bg/home1-banner.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
@media (max-width: 991px) {
    .banner-section1 {
        padding: 60px 0;
    }
}
.banner-section1 .banner-rain {
    position: absolute;
    top: 40px;
    right: 4%;
    z-index: -1;
}
.banner-section1 .banner-spring1 {
    position: absolute;
    bottom: 4%;
    left: 4%;
    z-index: -1;
}
@media (max-width: 991px) {
    .banner-section1 .banner-spring1 {
        display: none;
        visibility: hidden;
    }
}
.banner-section1 .banner-spring2 {
    position: absolute;
    top: 40px;
    left: 25%;
    z-index: -1;
}
@media (max-width: 991px) {
    .banner-section1 .banner-spring2 {
        display: none;
        visibility: hidden;
    }
}
.banner-section1 .banner-spring3 {
    position: absolute;
    bottom: 20%;
    right: 7%;
    z-index: -1;
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .banner-section1 .banner-spring3 {
        right: 2%;
        bottom: 10%;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .banner-section1 .banner-spring3 {
        right: 2%;
        bottom: 10%;
    }
}
.banner-content span {
    position: relative;
    font-size: 1rem;
    font-weight: 400;
    font-family: poppins, sans-serif;
    color: var(--white);
    padding-left: 20px;
    margin-bottom: 10px;
    display: inline-block;
}
.banner-content span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 2px;
    border-radius: 30px;
    background: var(--primary-color1);
}
.banner-content h1 {
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    font-family: cuprum, sans-serif;
    margin-bottom: 15px;
}
@media (max-width: 767px) {
    .banner-content h1 {
        font-size: 4rem;
        line-height: 1.1;
    }
}
.banner-content p {
    font-size: 16px;
    color: var(--white);
    line-height: 28px;
    font-weight: 400;
    font-family: poppins, sans-serif;
}
.banner-content .button-group {
    margin-top: 42px;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
}
@media (max-width: 991px) {
    .banner-content .button-group {
        justify-content: center;
    }
}
.banner-content .video-btn {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}
@media (max-width: 991px) {
    .banner-content {
        text-align: center;
    }
}
@media (max-width: 991px) {
    .banner-content.style-2 {
        margin-bottom: 50px;
        text-align: center;
    }
}
.banner-content.style-2 span {
    color: var(--primary-color4);
}
.banner-content.style-2 span::before {
    background: var(--primary-color4);
}
.banner-content.style-2 h1 {
    color: var(--text-color);
}
.banner-content.style-2 p {
    color: var(--text-color);
}
.banner-content.style-2 .video-btn {
    color: var(--primary-color4);
}
.banner-content.style-3 {
    width: 100%;
    max-width: 680px;
}
@media (max-width: 991px) {
    .banner-content.style-3 {
        margin-bottom: 50px;
        text-align: center;
    }
}
.banner-content.style-3 span {
    color: var(--text-color);
}
.banner-content.style-3 span::before {
    background: var(--text-color);
}
.banner-content.style-3 h1 {
    color: var(--text-color);
    font-size: 4.4rem;
}
@media (max-width: 1399px) {
    .banner-content.style-3 h1 {
        font-size: 4rem;
    }
}
.banner-content.style-3 p {
    color: var(--text-color);
}
.banner-content.style-3 .video-btn {
    color: var(--primary-color4);
}
.banner-social {
    position: absolute;
    left: -130px;
    top: 50%;
    transform: translateY(-50%) rotate(270deg);
    display: flex;
    flex-direction: row;
}
@media (max-width: 1500px) {
    .banner-social {
        display: none;
        visibility: hidden;
    }
}
.banner-social a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color3);
    transition: all 0.5s ease-out 0s;
}
.banner-social a:hover {
    color: var(--primary-color1);
}
.banner-social.style-2 {
    transform: translateY(-50%) rotate(0deg);
    display: flex;
    flex-direction: column;
    left: 1%;
    padding: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .banner-social.style-2 {
        display: none;
        visibility: hidden;
    }
}
.banner-social.style-2 li .bx {
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    text-align: center;
    transition: all 0.35s ease;
}
.banner-social.style-2 li:hover .bx {
    border: 1px solid var(--primary-color5);
    color: var(--white);
    background: var(--primary-color5);
    transform: scale(1.2);
}
.solar-vector-area {
    width: 100%;
}
@media (max-width: 991px) {
    .solar-vector-area {
        display: none;
        visibility: hidden;
    }
}
.solar-vector-area img {
    animation: spin 15s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
        transform-origin: 100 100;
    }
    100% {
        transform: rotate(360deg);
        transform-origin: 100 100;
    }
}
.solar-vector-area .banner1-img-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.banner-section2 {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}
.banner-section2 .banner-social2 {
    position: absolute;
    right: -6%;
    top: 50%;
    transform: translateY(-50%) rotate(270deg);
    display: flex;
    flex-direction: row;
    z-index: 2;
}
.banner-section2 .banner-social2 a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color3);
    transition: all 0.5s ease-out 0s;
}
.banner-section2 .banner-social2 a:hover {
    color: var(--primary-color2);
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .banner-section2 .banner-social2 {
        right: -8%;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .banner-section2 .banner-social2 {
        right: -10%;
    }
}
@media (max-width: 991px) {
    .banner-section2 .banner-social2 {
        display: none;
        visibility: hidden;
    }
}
.banner-section2 .banner2-vector {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    animation: rotate 7s linear infinite;
}
.banner-section2 .banner2-spring1 {
    position: absolute;
    left: 5%;
    top: 18%;
    z-index: 2;
}
@media (max-width: 576px) {
    .banner-section2 .banner2-spring1 {
        display: none;
        visibility: hidden;
    }
}
.banner-section2 .banner2-spring2 {
    position: absolute;
    right: 15%;
    bottom: 5%;
    z-index: 2;
}
@media (max-width: 576px) {
    .banner-section2 .banner2-spring2 {
        display: none;
        visibility: hidden;
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: translateY(180deg);
    }
    100% {
        transform: translateY(360deg);
    }
}
.banner-section2 .banner2-circle1 {
    position: absolute;
    right: 20%;
    top: 15%;
    z-index: 2;
    animation: rotate 7s linear infinite;
    animation-delay: 1s;
}
@media (max-width: 576px) {
    .banner-section2 .banner2-circle1 {
        top: 8px;
    }
}
.banner-section2 .banner2-circle2 {
    position: absolute;
    left: 20%;
    bottom: 15%;
    z-index: 2;
    animation: rotate 7s linear infinite;
    animation-delay: 1s;
}
@media (max-width: 576px) {
    .banner-section2 .banner2-circle2 {
        bottom: 10px;
        left: 15%;
    }
}
.banner-section2 .swiper-slide-active span {
    animation: fadeInDown 1.7s;
}
.banner-section2 .swiper-slide-active h1 {
    animation: fadeInDown 1.7s;
}
.banner-section2 .swiper-slide-active h2 {
    animation: fadeInDown 1.7s;
}
.banner-section2 .swiper-slide-active p {
    animation: fadeInUp 1.7s;
}
.banner-section2 .swiper-slide-active .eg-btn {
    animation: fadeInUp 1.7s;
}
.banner-section2 .banner2-pagination {
    position: absolute;
    bottom: 30px;
    z-index: 9;
    min-width: 140px;
}
.banner-section2 .banner2-pagination .swiper-pagination-bullet {
    background: var(--white);
    width: 15px;
    height: 15px;
}
.banner-section2 .banner2-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color2);
}
.banner-section2 .slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 60px;
    z-index: 2;
    padding: 5px;
}
.banner-section2 .slider-bg-1 {
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-section2 .slider-bg-1::before {
    content: "";
    background-color: rgba(0, 1, 12, 0.5);
    background-blend-mode: multiply;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: -9;
    animation: large 26s linear infinite alternate;
}
.banner-section2 .slider-bg-1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -9;
    background: rgba(0, 0, 0, 0.45);
}
@keyframes large {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.6);
    }
}
.banner-section2 .slider-bg-2 {
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-section2 .slider-bg-2::before {
    content: "";
    background-image: url(../images/sliders/banner2-bg2.png);
    background-color: rgba(0, 1, 12, 0.5);
    background-blend-mode: multiply;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: -9;
    animation: large 26s linear infinite alternate;
}
.banner-section2 .slider-bg-2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -9;
    background: rgba(0, 0, 0, 0.45);
}
@keyframes large {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.8);
    }
}
.banner-section2 .banner2-content {
    text-align: center;
    padding: 0 30px;
}
@media (max-width: 576px) {
    .banner-section2 .banner2-content {
        padding: 0;
    }
}
.banner-section2 .banner2-content span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--primary-color2);
    font-family: poppins, sans-serif;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}
.banner-section2 .banner2-content span::before {
    content: "";
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 2px;
    background: var(--primary-color2);
}
.banner-section2 .banner2-content span::after {
    content: "";
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 2px;
    background: var(--primary-color2);
}
.banner-section2 .banner2-content h1,
.banner-section2 .banner2-content h2 {
    font-size: 4.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
    text-transform: capitalize;
}
.banner-section2 .banner2-content p {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 40px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 991px) {
    .banner-section2 .banner2-content p {
        width: 90%;
    }
}
.banner-section3 {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.banner-section3 .banner-social3 {
    position: absolute;
    left: -7%;
    top: 50%;
    transform: translateY(-50%) rotate(270deg);
    display: flex;
    flex-direction: row;
    z-index: 2;
}
.banner-section3 .banner-social3 a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color3);
    transition: all 0.5s ease-out 0s;
}
.banner-section3 .banner-social3 a:hover {
    color: var(--primary-color3);
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .banner-section3 .banner-social3 {
        right: -8%;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .banner-section3 .banner-social3 {
        right: -10%;
    }
}
@media (max-width: 991px) {
    .banner-section3 .banner-social3 {
        display: none;
        visibility: hidden;
    }
}
.banner-section3 .banner3-circle {
    position: absolute;
    left: 7%;
    top: 10%;
    z-index: -1;
    animation: rotate 10s linear infinite;
}
@media (max-width: 576px) {
    .banner-section3 .banner3-circle {
        display: none;
        visibility: hidden;
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: translateY(180deg);
    }
    100% {
        transform: translateY(360deg);
    }
}
.banner-section3 .banner3-circle2 {
    position: absolute;
    right: 20%;
    top: 15%;
    z-index: 2;
    animation: rotate 7s linear infinite;
    animation-delay: 1s;
}
@media (max-width: 576px) {
    .banner-section3 .banner3-circle2 {
        top: 8px;
    }
}
.banner-section3 .banner3-circle3 {
    position: absolute;
    right: 10%;
    bottom: 15%;
    z-index: 2;
    animation: rotate 7s linear infinite;
    animation-delay: 1s;
}
@media (max-width: 767px) {
    .banner-section3 .banner3-circle3 {
        right: 5%;
        bottom: 5%;
    }
}
.banner-section3 .swiper-slide-active span {
    animation: fadeInDown 1.7s;
}
.banner-section3 .swiper-slide-active h1 {
    animation: fadeInDown 1.7s;
}
.banner-section3 .swiper-slide-active h2 {
    animation: fadeInDown 1.7s;
}
.banner-section3 .swiper-slide-active p {
    animation: fadeInUp 1.7s;
}
.banner-section3 .swiper-slide-active .eg-btn {
    animation: fadeInUp 1.7s;
}
.banner-section3 .banner3-pagination {
    position: absolute;
    left: 94%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    width: 100px;
}
.banner-section3 .banner3-pagination .swiper-pagination-bullet {
    background: var(--white);
    width: 15px;
    height: 15px;
    border: 1px solid var(--primary-color3);
}
.banner-section3 .banner3-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color3);
}
.banner-section3 .slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 60px;
    z-index: 2;
    padding: 5px;
}
.banner-section3 .slider-bg-1 {
    min-height: 90vh;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-section3 .slider-bg-1::before {
    content: "";
    background-image: linear-gradient(
            90deg,
            #00010c 21.87%,
            rgba(0, 0, 0, 0) 70.31%
        ),
        url("../images/sliders/banner31.png");
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: -9;
    animation: large 26s linear infinite alternate;
}
@keyframes large {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.6);
    }
}
.banner-section3 .slider-bg-2 {
    min-height: 90vh;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-section3 .slider-bg-2::before {
    content: "";
    background-image: linear-gradient(
            90deg,
            #00010c 21.87%,
            rgba(0, 0, 0, 0) 70.31%
        ),
        url("../images/sliders/banner32.png");
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: -9;
    animation: large 26s linear infinite alternate;
}
@keyframes large {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.8);
    }
}
.banner-section3 .banner3-content {
    text-align: left;
    padding: 80px 10px;
}
@media (max-width: 991px) {
    .banner-section3 .banner3-content {
        text-align: center;
    }
}
.banner-section3 .banner3-content span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    font-family: poppins, sans-serif;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    padding-left: 25px;
}
.banner-section3 .banner3-content span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 2px;
    background: var(--white);
}
.banner-section3 .banner3-content h1,
.banner-section3 .banner3-content h2 {
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
    text-transform: capitalize;
}
@media (max-width: 576px) {
    .banner-section3 .banner3-content h1,
    .banner-section3 .banner3-content h2 {
        font-size: 4rem;
    }
}
.banner-section3 .banner3-content p {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 40px;
}
.banner-section3 .banner3-content .button-group {
    margin-top: 50px;
}
.banner-section4 {
    background-color: var(--primary-color4-light);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 140px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.banner-section4 .go-down-btn {
    position: absolute;
    left: 50px;
    bottom: 50px;
    width: 22px;
    height: 40px;
    border: 1px solid #27ae60;
    border-radius: 30px;
}
.banner-section4 .go-down-btn::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color4);
    animation: scroll 3s linear infinite alternate;
}
@keyframes scroll {
    0% {
        top: 5px;
    }
    50% {
        top: 23px;
    }
    100% {
        top: 5px;
    }
}
@media (max-width: 1199px) {
    .banner-section4 .go-down-btn {
        display: none;
        visibility: hidden;
    }
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .banner-section4 .go-down-btn {
        left: 25px;
    }
}
.banner-section4 .banner4-dot-sq {
    position: absolute;
    bottom: 0;
    left: 10%;
}
.banner-section4 .banner4-spring {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 991px) {
    .banner-section4 .banner4-spring {
        left: 6%;
        top: 52%;
        transform: translateY(-50%);
    }
}
.banner-section4 .banner4-wave1 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.7;
}
.banner-section4 .banner4-wave2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.7;
}
.banner-section4 .banner4-img {
    max-width: 110% !important;
    height: auto;
    border-radius: 50%;
    overflow: hidden;
}
@media (max-width: 1399px) {
    .banner-section4 .banner4-img {
        max-width: 100%;
    }
}
.banner-section4 .banner4-img img {
    border-radius: 50%;
    width: 100%;
    animation: zoom 3s linear infinite alternate;
}
.banner-section4 .banner4-circel1 {
    position: absolute;
    left: -10px;
    bottom: -10px;
    z-index: -1;
    animation: fade 1.3s linear infinite alternate;
}
.banner-section4 .banner4-circel2 {
    position: absolute;
    right: -10px;
    top: -10px;
    z-index: -1;
    animation: fade 1.3s linear infinite alternate;
}
@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.8);
    }
    100% {
        transform: scale(1);
    }
}
.banner-section5 {
    background-image: url(../images/bg/banner5-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.banner-section5 .banner5-vector-left {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.banner-section5 .banner5-tirang1 {
    position: absolute;
    bottom: 10%;
    right: 22%;
    animation: movingobject 8s linear infinite;
}
@media (max-width: 576px) {
    .banner-section5 .banner5-tirang1 {
        bottom: 3%;
        right: 3%;
    }
}
.banner-section5 .banner5-tirang2 {
    position: absolute;
    bottom: 10%;
    left: 22%;
    animation: movingobject 8s linear infinite;
}
@media (max-width: 576px) {
    .banner-section5 .banner5-tirang2 {
        bottom: 3%;
        left: 5%;
    }
}
.banner-section5 .banner5-tirang3 {
    position: absolute;
    top: 10%;
    left: 22%;
    animation: movingobject 8s linear infinite;
}
@media (max-width: 576px) {
    .banner-section5 .banner5-tirang3 {
        top: 3%;
        left: 3%;
    }
}
.banner-section5 .banner5-tirang4 {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    animation: movingobject 8s linear infinite;
}
@media (max-width: 576px) {
    .banner-section5 .banner5-tirang4 {
        display: none;
        visibility: hidden;
    }
}
.banner-section5 .banner5-tirang5 {
    position: absolute;
    bottom: 30%;
    left: 55%;
    transform: translateX(-50%);
    animation: movingobject 8s linear infinite;
}
@media (max-width: 576px) {
    .banner-section5 .banner5-tirang5 {
        display: none;
        visibility: hidden;
    }
}
.banner-section5 .banner5-vector {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
@keyframes movingobject {
    0% {
        transform: rotate(0deg) translateY(5px);
    }
    0% {
        transform: rotate(360deg) translateY(0px);
    }
}
.about1-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.about1-section .section-bg1 {
    position: absolute;
    right: -70px;
    bottom: -70px;
    z-index: -1;
}
.about-section2 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.about-section2 .about2-vector {
    position: absolute;
    top: 0;
    left: 0;
}
.about1-content {
    padding-right: 30px;
}
.about1-content span {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color1);
    font-family: poppins, sans-serif;
    background: var(--primary-opcaity);
    padding: 5px 10px;
    margin-bottom: 15px;
    display: inline-block;
}
.about1-content h3 {
    font-size: 2.1875rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}
.about1-content ul.about-list {
    margin-top: 20px;
    margin-bottom: 35px;
    padding: 0;
    list-style: none;
}
.about1-content ul.about-list li {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    font-family: cuprum, sans-serif;
    color: var(--text-color2);
    padding-left: 20px;
    margin-bottom: 10px;
    transition: all 0.42s ease-in-out;
}
.about1-content ul.about-list li:hover {
    color: var(--primary-color1);
}
.about1-content ul.about-list li:last-child {
    margin-bottom: 0;
}
.about1-content ul.about-list li::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--primary-color1);
    border-radius: 50%;
}
.sun-icon {
    position: absolute;
    left: -95px;
    bottom: -30px;
}
@media (max-width: 767px) {
    .sun-icon {
        display: none;
        visibility: hidden;
    }
}
.about-triangle {
    position: absolute;
    right: -15px;
    top: -25px;
    z-index: 1;
    animation: rotate 8s linear infinite;
}
@media (max-width: 767px) {
    .about-triangle {
        display: none;
        visibility: hidden;
    }
}
.about-dot {
    position: absolute;
    right: -95px;
    bottom: -80px;
    z-index: -1;
    animation: jump 4s linear infinite;
}
@media (max-width: 991px) {
    .about-dot {
        display: none;
        visibility: hidden;
    }
}
@keyframes jump {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.experience-tag {
    clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
    background: var(--primary-color1);
    padding: 0 1px;
    z-index: 9;
    position: relative;
    margin-top: 30px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .experience-tag {
        margin-top: 0;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .experience-tag {
        margin-top: 0;
    }
}
@media (max-width: 767px) {
    .experience-tag {
        margin-top: -30px;
    }
}
.tag-inner {
    clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
    border: 1px solid var(--primary-color1);
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    padding: 7px 25px;
    background-color: var(--white);
}
.tag-inner img {
    margin-right: 10px;
}
@media (max-width: 576px) {
    .tag-inner img {
        display: none;
        visibility: hidden;
    }
}
.tag-inner h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color1);
    font-family: cuprum, sans-serif;
    margin-bottom: 0;
}
.about-images .about12 {
    border-radius: 0 100px 100px 0;
    margin-left: 15px;
    margin-bottom: 15px;
}
.about-images .about13 {
    margin-left: -20%;
    max-width: 120%;
}
.about-section3 {
    position: relative;
    padding-left: 6%;
    padding-right: 6%;
}
@media (max-width: 767px) {
    .about-section3 {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.about-section3 .about3-vector2 {
    position: absolute;
    bottom: -50px;
    right: 40px;
    opacity: 0.25;
}
.about3-content {
    position: relative;
    z-index: 1;
    background: #fff;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.1);
    padding: 100px 200px 100px 70px;
    overflow: hidden;
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .about3-content {
        padding: 100px 50px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .about3-content {
        padding: 80px 30px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .about3-content {
        padding: 80px 30px;
    }
}
@media (max-width: 767px) {
    .about3-content {
        padding: 40px 25px;
    }
}
.about3-content .about3-vctr {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    z-index: -1;
}
.about3-content h3 {
    font-size: 35px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 20px;
}
.about3-content span {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color2);
    font-family: poppins, sans-serif;
    margin-bottom: 10px;
}
.about3-content .about3-list {
    margin: 24px 0 50px;
    padding: 0;
}
.about3-content .about3-list li {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color2);
    font-family: cuprum, sans-serif;
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}
.about3-content .about3-list li:last-child {
    margin-bottom: 0;
}
.about3-content .about3-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color3);
}
.about3-content .about3-list.style-2 li::before {
    background: var(--primary-color2);
}
.about3-content .about-footer .experience svg {
    margin-right: 5px;
    fill: var(--primary-color3);
}
.about3-content .about-footer .experience h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color3);
    font-family: cuprum, sans-serif;
}
.about3-content.style-2 {
    box-shadow: unset;
    padding: unset;
    max-width: 530px;
    width: 100%;
}
@media (max-width: 991px) {
    .about3-content.style-2 {
        padding: unset;
    }
}
.about3-content.style-2 .about3-list {
    margin: 20px 0 50px;
    padding: 0;
}
.about3-content.style-2 .about3-list li::before {
    background: var(--primary-color4);
}
.about3-content.style-2 .about-footer .experience svg {
    margin-right: 5px;
    fill: var(--primary-color4);
}
.about3-content.style-2 .about-footer .experience h4 {
    color: var(--primary-color4);
}
.about3-content.style-3 {
    box-shadow: unset;
    padding: unset;
    width: 100%;
}
@media (max-width: 991px) {
    .about3-content.style-3 {
        padding: unset;
    }
}
.about3-content.style-3 h4 {
    font-size: 25px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
    margin-bottom: 30px;
}
.about3-content.style-3 .about3-list {
    margin: 20px 0 50px;
    padding: 0;
}
.about3-content.style-3 .about3-list li::before {
    background: var(--primary-color4);
}
.about3-content.style-3 .about-footer .experience svg {
    margin-right: 5px;
    fill: var(--primary-color5);
}
.about3-content.style-3 .about-footer .experience h4 {
    color: var(--primary-color5);
}
.about3-content.style-4 {
    box-shadow: unset;
    padding: unset;
}
.about3-content.style-4 .about-footer .experience svg {
    margin-right: 5px;
    fill: var(--primary-color2);
}
.about3-content.style-4 .about-footer .experience h4 {
    color: var(--primary-color2);
}
.about4-image {
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.07));
}
.about5-image {
    position: relative;
    margin-top: 50px;
}
.about5-image .about5-video {
    position: absolute;
    left: 10px;
    top: 28%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transform: rotate(50deg);
    padding: 35px;
}
@media (max-width: 991px) {
    .about5-image .about5-video {
        left: 50%;
        top: 35%;
        transform: translateX(-50%);
    }
}
.about5-image .about51 {
    height: auto;
    max-width: 460px;
    width: 100%;
    border-radius: 230px;
    transform: translateY(-50px);
    margin-left: 100px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .about5-image .about51 {
        margin-left: 0;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .about5-image .about51 {
        margin-left: 0;
    }
}
@media (max-width: 991px) {
    .about5-image .about51 {
        margin-left: 0;
        transform: translateY(0px);
    }
}
.about5-image .about52 {
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 230px;
    max-width: 100%;
    height: auto;
}
@media (max-width: 991px) {
    .about5-image .about52 {
        display: none;
        visibility: hidden;
    }
}
.about5-bg {
    position: absolute;
    top: 0;
    left: -90px;
    z-index: -1;
}
.snake-vector1 {
    position: absolute;
    top: 50px;
    right: 10%;
}
.snake-vector2 {
    position: absolute;
    bottom: 0;
    left: 30px;
}
.service-section {
    background-color: var(--light-bg);
    position: relative;
    z-index: 1;
}
.service-section .water-mark1 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
@media (max-width: 991px) {
    .service-section .water-mark1 {
        display: none;
        visibility: hidden;
    }
}
.service-section .water-mark2 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
@media (max-width: 991px) {
    .service-section .water-mark2 {
        display: none;
        visibility: hidden;
    }
}
.service3-section {
    margin-top: -120px;
    position: relative;
    z-index: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .service3-section {
        margin-top: -30px;
        padding-top: 90px;
    }
}
@media (max-width: 991px) {
    .service3-section {
        margin-top: -30px;
        padding-top: 80px;
    }
}
.service-item1 {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.service-item1:hover .service-img::before {
    background: rgba(10, 18, 15, 0.7);
}
.service-item1:hover .service-content {
    border: 1px solid var(--primary-color1);
}
.service-item1:hover .service-content .service-icon {
    border: 1px solid var(--primary-color1);
}
.service-item1 .service-img {
    position: relative;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}
.service-item1 .service-img img {
    width: 100%;
    max-width: 420px;
    transition: all 0.7s ease;
    border-radius: 5px 5px 0 0;
}
.service-item1 .service-img::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(10, 18, 15, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    border-radius: 5px;
    transition: all 0.55s ease-in-out;
}
.service-item1 .service-img .service-details-btn {
    position: absolute;
    right: 25px;
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    border: 1px solid var(--white);
    padding: 5px;
    -webkit-transition: all 0.35s ease-in;
    transition: all 0.35s ease-in;
    height: 36px;
    width: 36px;
    line-height: 24px;
}
.service-item1 .service-img .service-details-btn:hover {
    background-color: var(--primary-color1);
    border: 1px solid transparent;
}
.service-item1 .service-img .service-details-btn .bi {
    margin-right: 10px;
    font-size: 16px;
}
.service-item1 .service-content {
    position: relative;
    width: 94%;
    padding: 25px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    z-index: 9;
    box-shadow: 5px 1px 15px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    background: var(--white);
    transition: all 0.55s ease-in-out;
    margin-top: -50px;
    border: 1px solid var(--white);
}
.service-item1 .service-content .service-icon {
    width: 100%;
    max-width: 100px;
    height: 100px;
    line-height: 100px;
    margin: -75px auto 25px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.1);
    text-align: center;
    transition: all 0.55s ease-in-out;
}
.service-item1 .service-content h4 a {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.4;
    transition: all 0.42s ease-in-out;
}
.service-item1 .service-content h4:hover a {
    color: var(--primary-color1);
}
.service-item1 .service-content p {
    margin-bottom: 0;
}
.service-item2 {
    position: relative;
    z-index: 1;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.1);
    border-radius: 5px;
    background-color: var(--white);
    padding: 25px;
}
.service-item2:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 0;
}
.service-item2:hover .service-content span {
    color: var(--white);
}
.service-item2:hover .service-content h4 {
    font-size: 25px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}
.service-item2:hover .service-content p {
    color: var(--text-light);
}
.service-item2::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--primary-color2);
    z-index: -1;
    border-radius: 0 0 0 100px;
    transition: 550ms ease-in-out 25ms;
}
.service-item2 .service21-icon {
    position: absolute;
    top: 25px;
    right: 25px;
}
.service-item2 .service-content span {
    font-size: 20px;
    font-weight: 600;
    font-family: poppins, sans-serif;
    color: var(--primary-color2);
    display: inline-block;
    margin-bottom: 10px;
    transition: all 0.5s ease-in-out;
}
.service-item2 .service-content h4 {
    font-size: 25px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    transition: all 0.5s ease-in-out;
}
.service-item2 .service-content p {
    transition: all 0.5s ease-in-out;
    margin-bottom: 0;
}
.service-item2.style-2 {
    background: #fff;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.1);
    border-radius: 5px;
    padding: 40px 25px 25px;
    margin-top: 25px;
}
.service-item2.style-2 span {
    position: absolute;
    top: 22px;
    left: 15px;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color2);
    display: inline-block;
    transition: all 0.5s ease-in-out;
    border-radius: 5px;
    background-color: #eee;
    padding: 5px 10px;
    margin-top: -45px;
}
.service-item2.style-2 .service-content h4 {
    margin-bottom: 5px;
}
.service-item2.style-2:hover span {
    color: var(--primary-color4);
}
.service-item2.style-2:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 0;
}
.service-item2.style-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background: var(--primary-color4);
    border-radius: 0;
}
.service-item2.style-4 {
    background: #fff;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.1);
    border-radius: 5px;
    padding: 40px 25px 25px;
    margin-top: 25px;
}
.service-item2.style-4 span {
    position: absolute;
    top: 22px;
    left: 15px;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color2);
    display: inline-block;
    transition: all 0.5s ease-in-out;
    border-radius: 5px;
    background-color: #eee;
    padding: 5px 10px;
    margin-top: -45px;
}
.service-item2.style-4 .service-content h4 {
    margin-bottom: 5px;
}
.service-item2.style-4:hover span {
    color: var(--primary-color1);
}
.service-item2.style-4:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 0;
}
.service-item2.style-4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background: var(--primary-color1);
    border-radius: 0;
}
.service-item2.style-3 {
    background: #fff;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.1);
    border-radius: 5px;
    padding: 40px 25px 25px;
    margin-top: 25px;
    transition: transform 0.6s ease 0s;
    transform: perspective(3000px) rotateY(5deg);
}
.service-item2.style-3:hover {
    transform: perspective(1500px) rotateY(20deg);
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.16);
}
.service-item2.style-3:hover .service-content span {
    color: var(--white);
    background: var(--text-color2);
}
.service-item2.style-3:hover .service-content h4 {
    color: var(--text-color);
}
.service-item2.style-3:hover .service-content p {
    color: var(--text-color2);
}
.service-item2.style-3 span {
    position: absolute;
    top: 22px;
    left: 15px;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color2);
    display: inline-block;
    transition: all 0.5s ease-in-out;
    border-radius: 5px;
    background-color: #eee;
    padding: 5px 10px;
    margin-top: -45px;
}
.service-item2.style-3 .service-content h4 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
}
.service-item2.style-3 .service-content p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color2);
    line-height: 1.5;
    margin-bottom: 0;
}
.service-item2.style-3:hover span {
    color: var(--primary-color5);
}
.service-item2.style-3::before {
    content: unset;
}
.service-item3 {
    background: #fff;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.11);
    border-radius: 5px 35px;
    padding: 30px 25px;
    position: relative;
    margin-top: 30px;
}
.service-item3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color3);
    opacity: 0;
    transform: scale(0.3);
    transition: all 450ms ease-out 25ms;
    border-radius: 5px 35px;
}
.service-item3:hover::before {
    transform: scale(1);
    opacity: 0.1;
}
.service-item3:hover .read-more-icon {
    background: #a044ff;
}
.service-item3 .read-more-icon {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    background-color: var(--white);
    transition: all 400ms ease-out 25ms;
    cursor: pointer;
}
.service-item3 .read-more-icon .bi {
    font-size: 20px;
    color: #eee;
    transition: all 400ms ease-out 25ms;
}
.service-item3 .read-more-icon:hover {
    background: var(--primary-color3);
    border: 1px solid var(--primary-color3);
}
.service-item3 .read-more-icon:hover .bi {
    color: var(--white);
}
.service-item3 .icon {
    margin-bottom: 25px;
}
.service-item3 .content h4 a {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
}
.service-item3 .content p {
    margin-bottom: 0;
}
.service-item4 {
    background: #fff;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.1);
    border-radius: 5px;
    padding: 30px 25px;
}
.service-item4:hover .service-img img {
    transform: scale(1.1);
}
.service-item4 .service-img img {
    transform: scale(1);
    transition: all 0.42s ease;
}
.service-item4 .service-content h4 a {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
}
.service-item4 .service-content .text-btn {
    font-size: 16px;
    font-weight: 500;
    transition: all 0.42s ease;
}
.service-item4 .service-content .text-btn svg {
    fill: var(--text-color2);
    transition: all 0.42s ease;
    margin-left: 5px;
}
.service-item4 .service-content .text-btn:hover {
    color: var(--primary-color4);
}
.service-item4 .service-content .text-btn:hover svg {
    fill: var(--primary-color4);
}
.service-item5 {
    background: var(--white);
    box-shadow: 3px 4px 20px rgba(136, 136, 136, 0.1);
    border-radius: 5px;
    padding: 30px;
    transition: transform 0.6s ease 0s;
    transform: perspective(3000px) rotateY(5deg);
}
.service-item5 .icon-area {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
    transition: transform 0.6s ease 0s;
    transition-delay: 0.4s;
}
.service-item5 .icon-area .arrow {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}
.service-item5 .icon-area .arrow.style-1 {
    background: rgba(255, 115, 66, 0.1);
}
.service-item5 .icon-area .arrow.style-1 svg {
    fill: var(--primary-color5);
    transition: all 0.45s ease;
}
.service-item5 .icon-area .arrow.style-2 {
    background: rgba(11, 202, 157, 0.1);
}
.service-item5 .icon-area .arrow.style-2 svg {
    fill: #0bca9d;
    transition: all 0.45s ease;
}
.service-item5 .icon-area .arrow.style-3 {
    background: rgba(0, 202, 235, 0.1);
}
.service-item5 .icon-area .arrow.style-3 svg {
    fill: #369cba;
    transition: all 0.45s ease;
}
.service-item5 .icon-area .arrow.style-4 {
    background: rgba(160, 68, 255, 0.1);
}
.service-item5 .icon-area .arrow.style-4 svg {
    fill: #a044ff;
    transition: all 0.45s ease;
}
.service-item5 .icon-area .arrow.style-5 {
    background: rgba(255, 76, 76, 0.1);
}
.service-item5 .icon-area .arrow.style-5 svg {
    fill: var(--primary-color5);
    transition: all 0.45s ease;
}
.service-item5 .icon-area .arrow.style-6 {
    background: rgba(24, 46, 101, 0.1);
}
.service-item5 .icon-area .arrow.style-6 svg {
    fill: #182e65;
    transition: all 0.45s ease;
}
.service-item5 .icon-area .arrow:hover svg {
    transform: translateX(20px);
}
.service-item5 .service-title {
    position: relative;
    padding-bottom: 4px;
    margin-bottom: 15px;
}
.service-item5 .service-title::before {
    content: "";
    width: 75%;
    height: 2px;
    background-color: #eee;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    transition: all 0.45s ease;
    right: 0;
}
.service-item5 .service-title h4 a {
    font-size: 25px;
    font-weight: 700;
    color: var(--text-color);
}
.service-item5:hover {
    transform: perspective(1500px) rotateY(20deg);
    box-shadow: 0 0 30px rgba(136, 136, 136, 0.1);
}
.service-item5:hover .service-title::before {
    width: 100%;
}
.slider-arrows .swiper-prev-arrow {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #bebebe;
    border-radius: 50%;
    transition: all 0.42s ease;
}
.slider-arrows .swiper-prev-arrow svg {
    fill: transparent;
}
.slider-arrows .swiper-prev-arrow svg path {
    fill: #bebebe;
}
.slider-arrows .swiper-prev-arrow.style-2 svg {
    fill: transparent;
    transition: all 0.42s ease;
}
.slider-arrows .swiper-prev-arrow.style-2 svg path {
    fill: #bebebe;
}
.slider-arrows .swiper-prev-arrow.style-2:hover {
    border: 1px solid transparent;
}
.slider-arrows .swiper-prev-arrow.style-2:hover svg {
    fill: var(--primary-color5);
}
.slider-arrows .swiper-prev-arrow.style-2:hover svg path {
    fill: #fff;
}
.slider-arrows .swiper-next-arrow {
    border: 1px solid #bebebe;
    border-radius: 50%;
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.42s ease;
}
.slider-arrows .swiper-next-arrow svg {
    fill: transparent;
    transition: all 0.42s ease;
}
.slider-arrows .swiper-next-arrow svg path {
    fill: #bebebe;
}
.slider-arrows .swiper-next-arrow.style-2 svg {
    fill: transparent;
    transition: all 0.42s ease;
}
.slider-arrows .swiper-next-arrow.style-2 svg path {
    fill: #bebebe;
}
.slider-arrows .swiper-next-arrow.style-2:hover {
    border: 1px solid transparent;
}
.slider-arrows .swiper-next-arrow.style-2:hover svg {
    fill: var(--primary-color5);
}
.slider-arrows .swiper-next-arrow.style-2:hover svg path {
    fill: #fff;
}
.slider-arrows .swiper-prev-arrow:hover {
    border: 1px solid transparent;
}
.slider-arrows .swiper-prev-arrow:hover svg {
    fill: var(--primary-color1);
}
.slider-arrows .swiper-prev-arrow:hover svg path {
    fill: #fff;
}
.slider-arrows .swiper-next-arrow:hover {
    border: 1px solid transparent;
}
.slider-arrows .swiper-next-arrow:hover svg {
    fill: var(--primary-color1);
}
.slider-arrows .swiper-next-arrow:hover svg path {
    fill: #fff;
}
.slider-arrows2 .swiper-prev-arrow {
    border-radius: 50%;
    transition: all 0.42s ease;
}
.slider-arrows2 .swiper-prev-arrow svg {
    border: 1px solid #bebebe;
    border-radius: 50%;
    fill: transparent;
}
.slider-arrows2 .swiper-prev-arrow svg path {
    fill: #bebebe;
}
.slider-arrows2 .swiper-prev-arrow:hover svg {
    border: 1px solid transparent;
}
.slider-arrows2 .swiper-next-arrow {
    border-radius: 50%;
    transition: all 0.42s ease;
}
.slider-arrows2 .swiper-next-arrow svg {
    border: 1px solid #bebebe;
    border-radius: 50%;
    fill: transparent;
    transition: all 0.42s ease;
}
.slider-arrows2 .swiper-next-arrow svg path {
    fill: #bebebe;
}
.slider-arrows2 .swiper-next-arrow:hover svg {
    border: 1px solid transparent;
}
.slider-arrows2 .swiper-prev-arrow:hover svg {
    fill: var(--primary-color1);
}
.slider-arrows2 .swiper-prev-arrow:hover svg path {
    fill: #fff;
}
.slider-arrows2 .swiper-next-arrow:hover svg {
    fill: var(--primary-color1);
}
.slider-arrows2 .swiper-next-arrow:hover svg path {
    fill: #fff;
}
.slider-arrows2.style-2 .swiper-prev-arrow:hover svg {
    fill: var(--primary-color2);
}
.slider-arrows2.style-2 .swiper-prev-arrow:hover svg path {
    fill: #fff;
}
.slider-arrows2.style-2 .swiper-next-arrow:hover svg {
    fill: var(--primary-color2);
}
.slider-arrows2.style-2 .swiper-next-arrow:hover svg path {
    fill: #fff;
}
.slider-arrows2.style-3 .swiper-prev-arrow:hover svg {
    fill: var(--primary-color3);
}
.slider-arrows2.style-3 .swiper-prev-arrow:hover svg path {
    fill: #fff;
}
.slider-arrows2.style-3 .swiper-next-arrow:hover svg {
    fill: var(--primary-color3);
}
.slider-arrows2.style-3 .swiper-next-arrow:hover svg path {
    fill: #fff;
}
.slider-arrows2.style-4 .swiper-prev-arrow:hover svg {
    fill: var(--primary-color4);
}
.slider-arrows2.style-4 .swiper-prev-arrow:hover svg path {
    fill: #fff;
}
.slider-arrows2.style-4 .swiper-next-arrow:hover svg {
    fill: var(--primary-color4);
}
.slider-arrows2.style-4 .swiper-next-arrow:hover svg path {
    fill: #fff;
}
.slider-arrows2.style-5 .swiper-prev-arrow {
    border-radius: 50%;
    transition: all 0.42s ease;
    background: var(--white);
}
.slider-arrows2.style-5 .swiper-prev-arrow svg {
    border: 1px solid var(--white);
    border-radius: 50%;
    fill: transparent;
}
.slider-arrows2.style-5 .swiper-prev-arrow svg path {
    fill: var(--primary-color1);
}
.slider-arrows2.style-5 .swiper-prev-arrow:hover {
    background: var(--primary-color1);
}
.slider-arrows2.style-5 .swiper-prev-arrow:hover svg {
    border: 1px solid transparent;
}
.slider-arrows2.style-5 .swiper-prev-arrow:hover svg path {
    fill: var(--white);
}
.slider-arrows2.style-5 .swiper-next-arrow {
    border-radius: 50%;
    transition: all 0.42s ease;
    background: var(--white);
}
.slider-arrows2.style-5 .swiper-next-arrow svg {
    border: 1px solid var(--white);
    border-radius: 50%;
    fill: transparent;
}
.slider-arrows2.style-5 .swiper-next-arrow svg path {
    fill: var(--primary-color1);
}
.slider-arrows2.style-5 .swiper-next-arrow:hover {
    background: var(--primary-color1);
}
.slider-arrows2.style-5 .swiper-next-arrow:hover svg {
    border: 1px solid transparent;
}
.slider-arrows2.style-5 .swiper-next-arrow:hover svg path {
    fill: var(--white);
}
.service-section5,
.blog-section3 {
    position: relative;
    overflow: hidden;
}
.service-section5 .service-watermark,
.blog-section3 .service-watermark {
    position: absolute;
    right: 0;
    top: -90px;
}
.portfolio-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.portfolio-section .section-bg-top {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
@media (max-width: 1199px) {
    .portfolio-section .section-bg-top {
        display: none;
        visibility: hidden;
    }
}
.portfolio-section .section-bg-bottom {
    position: absolute;
    bottom: -100px;
    left: 0;
    z-index: -1;
}
@media (max-width: 1199px) {
    .portfolio-section .section-bg-bottom {
        display: none;
        visibility: hidden;
    }
}
.portfolio-section .slider-bottom {
    margin-top: 60px;
}
.portfolio-section .slider-bottom .swiper-pagination {
    bottom: -10px;
    left: 0;
    width: 100%;
}
.portfolio-section
    .slider-bottom
    .swiper-pagination
    span.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bbb;
}
.portfolio-section
    .slider-bottom
    .swiper-pagination
    span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-color1);
    border: 1px solid var(--primary-color1);
}
.portfolio-section
    .slider-bottom
    .swiper-pagination.style-2
    span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-color2);
    border: 1px solid var(--primary-color2);
}
.portfolio-section5 {
    background-image: url(../images/bg/portfolio-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;
}
.portfolio-section5 .rectangle-dot1 {
    position: absolute;
    top: -35px;
    left: 12%;
}
@media (min-width: 768px) and (max-width: 991px) {
    .portfolio-section5 .rectangle-dot1 {
        top: 0;
        left: 0;
    }
}
@media (max-width: 767px) {
    .portfolio-section5 .rectangle-dot1 {
        display: none;
        visibility: hidden;
    }
}
.portfolio-section5 .rectangle-dot2 {
    position: absolute;
    bottom: -35px;
    right: 12%;
}
@media (min-width: 768px) and (max-width: 991px) {
    .portfolio-section5 .rectangle-dot2 {
        bottom: 0;
        right: 0%;
    }
}
@media (max-width: 767px) {
    .portfolio-section5 .rectangle-dot2 {
        display: none;
        visibility: hidden;
    }
}
.portfolio-item1 {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.portfolio-item1:hover .portfolio-img img {
    transform: scale(1.2);
}
.portfolio-item1 .portfolio-img {
    overflow: hidden;
}
.portfolio-item1 .portfolio-img img {
    max-width: 100%;
    transition: all 500ms ease-in-out 25ms;
}
.portfolio-item1 .portfolio-content {
    padding: 30px 25px;
    background: var(--white);
    box-shadow: 3px 0 10px rgba(136, 136, 136, 0.1);
    border-radius: 0 0 5px 5px;
}
.portfolio-item1 .portfolio-content svg {
    margin-left: 5px;
}
.portfolio-item1 .portfolio-content span {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color1);
    display: inline-block;
    margin-bottom: 8px;
}
.portfolio-item1 .portfolio-content h4 {
    margin-bottom: 15px;
}
.portfolio-item1 .portfolio-content h4 a {
    font-size: 25px;
    font-weight: 700;
    color: #18212e;
    margin-bottom: 10px;
    font-family: cuprum, sans-serif;
}
.portfolio-item1 .portfolio-content > a {
    font-size: 16px;
    font-weight: 500;
    font-family: poppins, sans-serif;
    color: #676767;
    transition: all 0.42s ease;
}
.portfolio-item1 .portfolio-content > a:hover {
    letter-spacing: 1px;
}
.portfolio-item1.style-2:hover .portfolio-content {
    opacity: 1;
    transform: scaleY(1);
}
.portfolio-item1.style-2 .portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        #000000 83.33%
    );
    border-radius: 5px;
    width: 100%;
    height: auto;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: all 500ms ease-in-out 25ms;
}
.portfolio-item1.style-2 .portfolio-content span {
    color: var(--white);
}
.portfolio-item1.style-2 .portfolio-content h4 a {
    color: var(--white);
}
.portfolio-item1.style-3 .portfolio-content h4 a {
    font-size: 25px;
    font-weight: 700;
}
.portfolio-item1.style-3 .portfolio-content span {
    color: var(--primary-color4);
}
.portfolio-item1.style-4 .portfolio-content {
    text-align: center;
    padding: 30px 25px;
    background: var(--white);
    margin-top: -80px;
    z-index: 1;
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
}
.portfolio-item1.style-4 .portfolio-content span {
    color: var(--primary-color5);
    margin-bottom: 4px;
}
.dot-squire {
    position: absolute;
    left: -50px;
    top: -50px;
    max-width: 180px;
    width: 100%;
}
@media (max-width: 991px) {
    .dot-squire {
        display: none;
        visibility: hidden;
    }
}
.portfolio-vector {
    position: absolute;
    top: 60%;
    left: -80px;
    max-width: 100px;
}
.portfolio-item3 {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.portfolio-item3:hover .overlay {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}
.portfolio-item3:hover img {
    transform: scale(1.1);
}
.portfolio-item3 img {
    width: 100%;
    transition: all 620ms ease-in-out 25ms;
}
.portfolio-item3 .overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 39, 52, 0.75);
    padding: 25px;
    transition: all 650ms ease-in-out 25ms;
    opacity: 0;
    transform: scale(0.2) rotateY(180deg);
}
.portfolio-item3 .overlay .overlay-content {
    border: 2px solid #eee;
    width: 100%;
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .portfolio-item3 .overlay .overlay-content {
        padding: 20px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .portfolio-item3 .overlay .overlay-content {
        padding: 15px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .portfolio-item3 .overlay .overlay-content {
        padding: 20px;
    }
}
@media (max-width: 767px) {
    .portfolio-item3 .overlay .overlay-content {
        padding: 20px;
    }
}
.portfolio-item3 .overlay .overlay-content p {
    font-size: 16px;
    font-weight: 500;
    color: #ddd;
    margin-bottom: 5px;
}
.portfolio-item3 .overlay .overlay-content h4 {
    margin-bottom: 20px;
}
.portfolio-item3 .overlay .overlay-content h4 a {
    font-size: 25px;
    font-weight: 600px;
    color: var(--white);
    line-height: 1.4;
}
.portfolio-item3 .overlay .overlay-content > a {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
}
.portfolio-item3 .overlay .overlay-content > a:hover {
    background-color: var(--primary-color3);
}
.portfolio-item3 .overlay .overlay-content > a:hover i {
    color: var(--white);
}
.portfolio-item3 .overlay .overlay-content i {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color3);
    cursor: pointer;
    transition: all 420ms ease-out 25ms;
}
.portfolio-section3 {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.portfolio-section3::before {
    content: "";
    width: 100%;
    height: 530px;
    background-color: rgba(39, 174, 96, 0.12);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: -1;
}
.dotted-bg {
    position: absolute;
    top: 25%;
    left: 10%;
    z-index: -1;
}
@media (max-width: 991px) {
    .dotted-bg {
        display: none;
        visibility: hidden;
    }
}
.activities-section {
    background-color: var(--light-bg);
    position: relative;
    z-index: 1;
}
.activities-section .water-mark1 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
@media (max-width: 991px) {
    .activities-section .water-mark1 {
        display: none;
        visibility: hidden;
    }
}
.activities-section .water-mark2 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
@media (max-width: 991px) {
    .activities-section .water-mark2 {
        display: none;
        visibility: hidden;
    }
}
.company-vdo {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("../images/bg/work-vdo1.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    max-width: 770px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}
@media (max-width: 991px) {
    .company-vdo {
        margin-bottom: 40px;
    }
}
.company-vdo.style-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
        url("../images/bg/about3-bg.png");
    max-width: unset;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .company-vdo.style-2 {
        height: 450px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .company-vdo.style-2 {
        height: 380px;
    }
}
@media (max-width: 767px) {
    .company-vdo.style-2 {
        height: 300px;
    }
}
.company-counter {
    background-image: url(../images/bg/counter-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 50px;
    padding-top: 190px;
    margin-top: -150px;
}
@media (max-width: 991px) {
    .company-counter {
        padding-top: 30px;
        padding-bottom: 30px;
        margin-top: unset;
    }
}
.company-counter.style-2 {
    background-image: unset;
    padding-top: unset;
    margin-top: unset;
    padding-bottom: 80px;
}
.counter-single {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 2px 30px rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    padding: 30px;
}
@media (max-width: 576px) {
    .counter-single {
        padding: 20px 15px;
    }
}
.counter-single .counter-icon {
    margin-right: 15px;
}
.counter-single .coundown h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    padding-right: 15px;
    margin-bottom: 0;
}
.counter-single .coundown h2::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: -2px;
}
.counter-single .coundown a {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
}
.counter-single.style-2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 35px 30px;
    background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 576px) {
    .counter-single.style-2 {
        padding: 20px 15px;
    }
}
.counter-single.style-2 .coundown h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0;
    font-family: poppins, sans-serif;
    padding-right: unset;
}
.counter-single.style-2 .coundown h2::after {
    content: unset;
}
.counter-single.style-2 .coundown span i {
    color: var(--white) !important;
    font-size: 2.2rem !important;
    font-weight: 700;
}
.counter-single.style-2 .coundown a {
    margin-bottom: 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--white);
}
.team-section {
    position: relative;
    z-index: 1;
}
.team-section .water-mark1 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
@media (max-width: 991px) {
    .team-section .water-mark1 {
        display: none;
        visibility: hidden;
    }
}
.team-section .water-mark2 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
@media (max-width: 991px) {
    .team-section .water-mark2 {
        display: none;
        visibility: hidden;
    }
}
.single-team1 {
    background: #fff;
    box-shadow: 3px 5px 35px rgba(86, 68, 169, 0.1);
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
}
.single-team1:hover .team-image img {
    transform: scale(1.15);
}
.single-team1:hover .team-image .guide-social-links {
    transform: translate(0%);
    opacity: 1;
}
.single-team1 .team-image {
    position: relative;
    overflow: hidden;
}
.single-team1 .team-image img {
    width: 100%;
    transition: all 0.65s ease;
}
.single-team1 .team-image .social-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    padding-top: 15px;
    padding-left: 15px;
}
.single-team1 .team-image .social-area:hover .social-links {
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
}
.single-team1 .team-image .social-area .social-links {
    padding: 0;
    margin: 0;
    transform: scaleY(0);
    transition: all 0.55s ease-in-out;
    transform-origin: top;
    visibility: hidden;
    opacity: 0;
}
.single-team1 .team-image .social-area .social-links a .bx {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    font-size: 18px;
    color: var(--primary-color1);
    transition: all 0.42s ease-in-out;
}
.single-team1 .team-image .social-area .social-links a .bx:hover {
    background-color: var(--primary-color1);
    color: var(--white);
}
.single-team1 .team-image .social-area .social-plus {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    transition: all 0.42s ease-in-out;
}
.single-team1 .team-image .social-area .social-plus:hover {
    background-color: var(--primary-color1);
    color: var(--white);
}
.single-team1 .team-image .social-area .social-plus:hover .bx {
    font-size: 18px;
    color: var(--white);
}
.single-team1 .team-image .social-area .social-plus .bx {
    font-size: 18px;
    color: var(--primary-color1);
    transition: all 0.42s ease-in-out;
    cursor: pointer;
}
.single-team1 .team-content {
    text-align: center;
    padding: 25px;
    transition: all 0.45s ease-in;
}
.single-team1 .team-content .name {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 22px;
    text-transform: capitalize;
    color: var(--text-color);
}
.single-team1 .team-content .designation {
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    color: var(--text-color2);
    font-family: poppins, sans-serif;
    margin-bottom: 0;
}
.single-team1.style-2 .team-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
@media (max-width: 576px) {
    .single-team1.style-2 .team-content {
        padding: 20px;
    }
}
.single-team1.style-2 .team-content h4 {
    font-size: 25px;
    font-weight: 700;
    color: var(--text-color);
    transition: 400ms ease-in-out 25ms;
}
@media (max-width: 576px) {
    .single-team1.style-2 .team-content h4 {
        font-size: 20px;
        margin-bottom: 0;
    }
}
.single-team1.style-2 .team-content .designation {
    font-style: 1rem;
    font-weight: 400;
    font-family: poppins, sans-serif;
    color: var(--text-color2);
    transition: 400ms ease-in-out 25ms;
}
.single-team1.style-2 svg {
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 100%;
    max-width: 100%;
    min-height: 120px;
    fill: var(--white);
    transition: 400ms ease-in-out 25ms;
}
.single-team1.style-2 .team-image .social-area {
    position: absolute;
    top: 110px;
    z-index: 2;
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .single-team1.style-2 .team-image .social-area {
        top: 75px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .single-team1.style-2 .team-image .social-area {
        top: 145px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .single-team1.style-2 .team-image .social-area {
        top: 70px;
    }
}
@media (min-width: 576px) and (max-width: 768px) {
    .single-team1.style-2 .team-image .social-area {
        top: 135px;
    }
}
@media (max-width: 576px) {
    .single-team1.style-2 .team-image .social-area {
        top: 50px;
    }
}
.single-team1.style-2 .team-image .social-area:hover .social-links {
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
}
.single-team1.style-2 .team-image .social-area .social-links {
    padding: 0;
    margin: 0;
    transform: scaleY(0);
    transition: all 0.55s ease-in-out;
    transform-origin: bottom;
    visibility: hidden;
    opacity: 0;
}
.single-team1.style-2 .team-image .social-area .social-links a .bx {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    font-size: 18px;
    color: var(--primary-color3);
    transition: all 0.42s ease-in-out;
}
.single-team1.style-2 .team-image .social-area .social-links a .bx:hover {
    background-color: var(--primary-color3);
    color: var(--white);
}
.single-team1.style-2 .team-image .social-area .social-plus {
    width: 36px;
    height: 36px;
    line-height: 33px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--white);
    transition: all 0.42s ease-in-out;
    z-index: 2;
    border: 1px solid var(--primary-color3);
}
.single-team1.style-2 .team-image .social-area .social-plus:hover {
    background-color: var(--primary-color3);
    color: var(--white);
}
.single-team1.style-2 .team-image .social-area .social-plus:hover .bx {
    font-size: 18px;
    color: var(--white);
}
.single-team1.style-2 .team-image .social-area .social-plus .bx {
    font-size: 18px;
    color: var(--primary-color3);
    transition: all 0.42s ease-in-out;
    cursor: pointer;
}
.single-team1.style-2:hover .team-content h4 {
    color: var(--white);
}
.single-team1.style-2:hover .team-content p.designation {
    color: var(--white);
}
.single-team1.style-2:hover svg {
    fill: var(--primary-color3);
}
.single-team2 {
    border-radius: 0;
    transition: all 0.5s ease-in-out;
}
.single-team2:hover .team-image img {
    transform: scale(1.15);
}
.single-team2:hover .team-image .guide-social-links {
    transform: translate(0%);
    opacity: 1;
}
.single-team2:hover .team-image .social-area {
    transform: scaleY(1);
    opacity: 1;
}
.single-team2 .team-image {
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.single-team2 .team-image img {
    width: 100%;
    transition: all 0.65s ease;
    height: 450px;
    object-fit: cover;
}
.single-team2 .team-image .social-area {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        #369cba 83.33%
    );
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 60px;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: all 0.65s ease-in-out;
}
.single-team2 .team-image .social-area:hover .social-links {
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
}
.single-team2 .team-image .social-area .social-links {
    padding: 0;
    z-index: 99;
    margin: 0;
    transition: all 0.55s ease-in-out;
}
.single-team2 .team-image .social-area .social-links a .bx {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 5px;
    background-color: var(--white);
    font-size: 18px;
    color: var(--primary-color2);
    transition: all 0.42s ease-in-out;
}
.single-team2 .team-image .social-area .social-links a .bx:hover {
    background-color: var(--primary-color2);
    color: var(--white);
}
.single-team2 .team-content {
    width: 90%;
    margin: -46px auto 0;
    box-shadow: 0 0 25px rgba(86, 68, 169, 0.1);
    text-align: center;
    transition: all 0.45s ease-in;
    border-radius: 5px;
    background-color: var(--white);
    z-index: 2;
    position: relative;
    padding: 30px;
}
.single-team2 .team-content .name {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 25px;
    text-transform: capitalize;
    color: var(--text-color);
}
@media (max-width: 1399px) {
    .single-team2 .team-content .name {
        font-size: 24px;
    }
}
.single-team2 .team-content .designation {
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--text-color2);
    font-family: poppins, sans-serif;
    margin-bottom: 0;
}
.single-team2.style-2 .team-image .social-area {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        #27ae60 83.33%
    );
}
.single-team2.style-2 .team-image .social-area:hover .social-links {
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
}
.single-team2.style-2 .team-image .social-area .social-links a .bx {
    color: var(--primary-color4);
}
.single-team2.style-2 .team-image .social-area .social-links a .bx:hover {
    background-color: var(--primary-color4);
    color: var(--white);
}
.single-team2.style-3 {
    box-shadow: 0 0 25px rgba(86, 68, 169, 0.1);
    border-radius: 5px;
    overflow: hidden;
}
.single-team2.style-3 .team-content {
    width: 100%;
    margin: unset;
    text-align: center;
    transition: all 0.45s ease-in;
    border-radius: 5px;
    background-color: var(--white);
    z-index: 2;
    position: relative;
    padding: 30px;
}
.single-team2.style-3 .team-image {
    height: 380px;
}
.single-team2.style-3 .team-image .social-area {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.8) 20%,
        rgb(255, 115, 66) 73.33%
    );
    padding-bottom: 30px;
}
.single-team2.style-3 .team-image .social-area .social-links a .bx {
    border-radius: 0;
    background-color: var(--white);
    color: var(--primary-color5);
}
.single-team2.style-3 .team-image .social-area .social-links a .bx:hover {
    background-color: var(--primary-color5);
    color: var(--white);
}
.single-team2.style-4 .team-image .social-area {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(230, 0, 76, 0.83)
    );
}
.single-team2.style-4 .team-image .social-area:hover .social-links {
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
}
.single-team2.style-4 .team-image .social-area .social-links a .bx {
    color: var(--primary-color1);
}
.single-team2.style-4 .team-image .social-area .social-links a .bx:hover {
    background-color: var(--primary-color1);
    color: var(--white);
}
.team5-watermark {
    position: absolute;
    left: -200px;
    top: 0;
}
@media (max-width: 767px) {
    .team5-watermark {
        display: none;
        visibility: hidden;
    }
}
.client-vdo-area {
    background-image: url(../images/bg/client-vdo-bg.png);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 220px;
    height: 215px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transform: translateY(-110px);
}
@media (max-width: 991px) {
    .client-vdo-area {
        transform: translateY(0);
    }
}
.testimonial-section {
    overflow: hidden;
    position: relative;
}
.testimonial-section .section-bg-bottom {
    position: absolute;
    bottom: -180px;
    left: -100px;
    z-index: -1;
}
@media (max-width: 1199px) {
    .testimonial-section .section-bg-bottom {
        display: none;
        visibility: hidden;
    }
}
.testimonial-slider1 {
    padding-top: 85px;
}
.testimonial-single {
    background: var(--white);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    padding: 25px;
    transition: 0.42s ease;
    transition-delay: 0.3s;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.testimonial-single .quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
}
.testimonial-single .testi-img {
    margin-top: -84px;
    margin-bottom: 20px;
}
.testimonial-single .testi-img img {
    width: 100%;
    max-width: 95px;
    height: 108px;
    object-fit: cover;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.testimonial-single .testi-content p {
    font-size: 18px;
    font-weight: 100;
    line-height: 1.7;
}
.testimonial-single .testi-content .testi-designation {
    margin-bottom: 10px;
}
.testimonial-single .testi-content .testi-designation h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
}
.testimonial-single .testi-content .testi-designation p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color2);
}
.testimonial-section2 {
    position: relative;
}
.testimonial-section2 .slider-bottom {
    margin-top: 50px;
}
.testimonial-section2 .slider-bottom .swiper-pagination2 {
    bottom: -10px;
    left: 50%;
    width: 100%;
    height: 16px;
}
.testimonial-section2
    .slider-bottom
    .swiper-pagination2
    span.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bbb;
}
.testimonial-section2
    .slider-bottom
    .swiper-pagination2
    span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-color1);
    border: 1px solid var(--primary-color1);
}
.testimonial-section2
    .slider-bottom
    .swiper-pagination2.style-2
    span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-color2);
    border: 1px solid var(--primary-color2);
}
.testimonial-section2
    .slider-bottom
    .swiper-pagination2.style-3
    span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-color3);
    border: 1px solid var(--primary-color3);
}
.testimonial-section4 {
    padding-top: 80px;
    position: relative;
    z-index: 1;
}
.testimonial-section4::before {
    content: "";
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: -1;
    height: 520px;
    background-image: linear-gradient(
            rgba(18, 19, 24, 0.8),
            rgba(18, 19, 24, 0.8)
        ),
        url("../images/bg/testi4-bg.png");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
@media (max-width: 991px) {
    .testimonial-section4::before {
        height: 100%;
    }
}
.testimonial-section4 .testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.testimonial-section4 .testimonial-footer .testimonial4-pagination {
    max-width: 40px;
    text-align: center;
    height: 30px;
    font-family: cuprum, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-color);
}
.testimonial-section4 .slider-arrows2 {
    margin-left: auto;
}
.testimonial-section4 .slider-arrows2 .testi-prev4,
.testimonial-section4 .slider-arrows2 .testi-next4 {
    color: #bebebe;
    transition: all 0.45s ease;
}
.testimonial-section4 .slider-arrows2 .testi-prev4:hover,
.testimonial-section4 .slider-arrows2 .testi-next4:hover {
    color: var(--primary-color4);
}
.swiper-pagination-blog {
    bottom: -10px;
    left: 50%;
    width: 100%;
    height: 17px;
}
.swiper-pagination-blog span.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bbb;
}
.swiper-pagination-blog
    span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-color3);
    border: 1px solid var(--primary-color3);
}
.swiper-pagination-blog.style-2 span.swiper-pagination-bullet {
    background: #bbb;
}
.swiper-pagination-blog.style-2
    span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-color5);
    border: 1px solid var(--primary-color5);
}
.testimonial-single2 {
    box-shadow: 3px 4px 15px rgba(136, 136, 136, 0.1);
    border-radius: 5px;
    background-color: var(--white);
    position: relative;
    z-index: 1;
    padding: 30px;
    margin-top: 25px;
}
.testimonial-single2 .testi2-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.testimonial-single2 p.para {
    font-size: 18px;
    font-weight: 100;
    line-height: 1.7;
    margin-bottom: 0;
}
.testimonial-single2 .quote {
    position: absolute;
    right: 30px;
    top: -25px;
    background-color: var(--primary-color2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
}
.testimonial-single2 .author {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    margin-bottom: 15px;
}
.testimonial-single2 .author .author-desig h5 {
    font-weight: 600;
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 0;
}
.testimonial-single2 .author .author-desig p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    font-family: poppins, sans-serif;
    color: var(--text-color2);
}
.testimonial-single2 .author-img {
    margin-right: 15px;
}
.testimonial-single2 .author-img img {
    border-radius: 5px;
    max-width: 100%;
    height: auto;
}
.testimonial-single2.style-2 .quote {
    background-color: var(--primary-color3);
}
.testimonial-area {
    background: var(--white);
    padding: 40px 40px 30px;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.1);
    border-radius: 5px;
    z-index: 2;
}
@media (max-width: 991px) {
    .testimonial-area {
        margin-bottom: 50px;
        padding: 40px 30px 30px;
    }
}
.testimonial-single3 .author-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.testimonial-single3 > p {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 100;
    line-height: 1.7;
}
.testimonial-single3 .author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.testimonial-single3 .author .author-desig h5 {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 600;
}
.testimonial-single3 .author .author-desig p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
}
.testimonial-single3.style-2 {
    padding: 30px 25px;
    box-shadow: 3px 0 20px rgba(136, 136, 136, 0.1);
    background: var(--white);
}
.testimonial-single3.style-2 p.para {
    margin-bottom: 0;
    font-size: 18px;
}
.testimonial-single3.style-3 {
    padding-bottom: 30px;
    box-shadow: unset;
    background: var(--white);
}
@media (max-width: 767px) {
    .testimonial-single3.style-3 {
        padding-bottom: 25px;
    }
}
.testimonial-single3.style-3 p.para {
    margin-bottom: 0;
    font-size: 18px;
}
.slider-bottom {
    margin-top: 60px;
}
.slider-bottom .testimonial5-pagination {
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 12px;
}
.slider-bottom .testimonial5-pagination span.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bbb;
}
.slider-bottom
    .testimonial5-pagination
    span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-color5);
    border: 1px solid var(--primary-color5);
}
@media (max-width: 991px) {
    .testimonial-slider5 {
        margin-top: 40px;
    }
}
.blog-section {
    background-color: var(--light-bg);
    position: relative;
    z-index: 1;
}
.blog-section .water-mark1 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
@media (max-width: 991px) {
    .blog-section .water-mark1 {
        display: none;
        visibility: hidden;
    }
}
.blog-section .water-mark2 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
@media (max-width: 991px) {
    .blog-section .water-mark2 {
        display: none;
        visibility: hidden;
    }
}
.sigle-blog-1 {
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.1);
}
.sigle-blog-1.style-2 .blog-content h4:hover {
    color: var(--primary-color2);
}
.sigle-blog-1.style-2 .blog-content .designation h5 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 5px;
}
.sigle-blog-1.style-2 .blog-content .designation .date {
    color: var(--text-color2);
}
.sigle-blog-1.style-2 .blog-content .designation .date span::after {
    content: "";
    background: var(--primary-color2);
}
.sigle-blog-1:hover .blog-image img {
    transform: scale(1.125);
}
.sigle-blog-1 .blog-image {
    overflow: hidden;
}
.sigle-blog-1 .blog-image img {
    transform: scale(1);
    transition: all 0.67s ease-in-out;
}
@media (max-width: 767px) {
    .sigle-blog-1 .blog-image img {
        width: 100%;
    }
}
.sigle-blog-1 .blog-content {
    padding: 30px 25px;
    background-color: var(--white);
}
.sigle-blog-1 .blog-content span {
    display: inline-block;
    color: var(--text-color2);
    font-size: 16px;
    font-weight: 400px;
    font-family: poppins, sans-serif;
    margin-bottom: 10px;
}
.sigle-blog-1 .blog-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.4;
    transition: all 0.52s ease;
}
.sigle-blog-1 .blog-content h4:hover {
    color: var(--primary-color1);
}
.sigle-blog-1 .blog-content .blog-meta {
    margin-top: 25px;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.sigle-blog-1 .blog-content .blog-meta .author-img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.sigle-blog-1 .blog-content .designation h5 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 5px;
}
.sigle-blog-1 .blog-content .designation .date {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color2);
    margin-bottom: 0;
}
.sigle-blog-1 .blog-content .designation .date span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color2);
    margin-bottom: 0;
    position: relative;
    padding-left: 10px;
    margin-left: 15px;
}
.sigle-blog-1 .blog-content .designation .date span::after {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color1);
}
.sigle-blog-1 .bgrid-quote {
    background: #ffeaf1;
    width: 100%;
    min-height: 300px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 25px;
    position: relative;
    margin-bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .sigle-blog-1 .bgrid-quote {
        min-height: 258px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .sigle-blog-1 .bgrid-quote {
        min-height: 215px;
        padding: 30px 25px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .sigle-blog-1 .bgrid-quote {
        min-height: 245px;
        padding: 30px 25px;
    }
}
.sigle-blog-1 .bgrid-quote .quote-area {
    position: absolute;
    top: -10px;
    right: 20px;
    height: 56px;
    width: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.15);
}
.sigle-blog-1 .bgrid-quote h5 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.5;
}
.sigle-blog-1 .bgrid-quote h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color1);
}
.sigle-blog-1.grid-video .video-image {
    position: relative;
    z-index: 1;
}
.sigle-blog-1.grid-video .video-image img {
    width: 100%;
}
.sigle-blog-1.grid-video .video-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 1, 12, 0.45);
    z-index: 1;
}
.single-blog-2 {
    position: relative;
    min-height: 380px;
}
@media (max-width: 576px) {
    .single-blog-2 {
        min-height: 100%;
    }
}
.single-blog-2.style-2 .content h4 {
    margin-bottom: 14px;
}
.single-blog-2.style-2 .content h4 a {
    color: var(--text-color);
}
@media (max-width: 576px) {
    .single-blog-2.style-2 .content h4 a {
        color: var(--white);
    }
}
.single-blog-2.style-2 .content h4:hover a {
    color: var(--primary-color5);
}
.single-blog-2:hover .content {
    transform: perspective(800px) rotateY(-9deg) translateY(-50%);
}
@media (max-width: 576px) {
    .single-blog-2:hover .content {
        transform: perspective(800px) rotateY(0deg) translateY(0%);
    }
}
.single-blog-2 .blog-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 370px;
    height: auto;
}
@media (max-width: 576px) {
    .single-blog-2 .blog-img {
        display: none;
        visibility: hidden;
    }
}
.single-blog-2 .content {
    background: var(--white);
    padding: 30px 25px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30%;
    width: 100%;
    max-width: 400px;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.1);
    border-radius: 5px;
    transition: all 500ms ease-in-out 25ms;
    text-align: start;
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .single-blog-2 .content {
        left: 25%;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .single-blog-2 .content {
        left: 10%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .single-blog-2 .content {
        left: 40%;
    }
}
@media (min-width: 576px) and (max-width: 768px) {
    .single-blog-2 .content {
        left: 22%;
    }
}
@media (max-width: 576px) {
    .single-blog-2 .content {
        transform: translateY(0);
        background-color: rgba(0, 0, 0, 0.99);
        max-width: 100%;
        min-height: 100%;
        position: relative;
        left: 0;
    }
}
.single-blog-2 .content span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color2);
    font-family: poppins, sans-serif;
    display: inline-block;
    margin-bottom: 8px;
}
@media (max-width: 576px) {
    .single-blog-2 .content span {
        color: var(--text-color3);
    }
}
.single-blog-2 .content h4 {
    margin-bottom: 14px;
}
.single-blog-2 .content h4 a {
    font-size: 25px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.35;
    transition: all 350ms ease-in-out;
}
@media (max-width: 576px) {
    .single-blog-2 .content h4 a {
        color: var(--white);
    }
}
.single-blog-2 .content h4:hover a {
    color: var(--primary-color3);
}
@media (max-width: 576px) {
    .single-blog-2 .content h4:hover a {
        color: var(--white);
    }
}
@media (max-width: 576px) {
    .single-blog-2 .content p {
        color: var(--text-light);
    }
}
.single-blog-2 .content .meta {
    margin-top: 16px;
}
.single-blog-2 .content .meta .bi {
    font-size: 18px;
    vertical-align: middle;
    margin-right: 10px;
}
@media (max-width: 576px) {
    .single-blog-2 .content .meta .bi {
        color: var(--text-light);
    }
}
.single-blog-2 .content .meta span {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color2);
    margin-bottom: 0;
}
@media (max-width: 576px) {
    .single-blog-2 .content .meta span {
        color: var(--text-light);
    }
}
.blog-section3 {
    overflow: hidden;
}
.blog-section3 .blog-vector {
    position: absolute;
    bottom: 40%;
    right: -50px;
    max-width: 100px;
}
.join-section {
    overflow: hidden;
    position: relative;
}
.join-section .join-vector {
    position: absolute;
    left: 5%;
    bottom: 0;
}
footer {
    background-image: linear-gradient(
            rgba(18, 19, 24, 0.9),
            rgba(18, 19, 24, 0.9)
        ),
        url("../images/bg/footer1-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    background-position: center;
    overflow: hidden;
}
footer .footer-top {
    padding: 90px 0;
}
@media (max-width: 991px) {
    footer .footer-top {
        padding: 80px 0;
    }
}
footer .footer-item {
    min-width: 200px;
}
@media (max-width: 576px) {
    footer .footer-item {
        padding-left: 20px;
    }
}
footer .footer-item a img {
    margin-bottom: 25px;
}
footer .footer-item p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 28px;
}
footer .footer-item .input-with-btn {
    max-width: 350px;
    width: 100%;
    border: 1px solid var(--text-color2);
    padding: 5px;
    border-radius: 5px;
}
footer .footer-item .input-with-btn input {
    width: 100%;
    border-radius: 5px;
    background: 0 0;
    border: none;
    outline: none;
    padding: 7px 20px;
    transition: all 0.4s ease;
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
}
footer .footer-item .input-with-btn input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color2);
}
footer .footer-item .input-with-btn button {
    outline: none;
    border: none;
    background: var(--primary-color1);
    border-radius: 5px;
    min-width: 46px;
    min-height: 44px;
}
footer .footer-item .input-with-btn button img {
    transition: 0.65s ease;
}
footer .footer-item .input-with-btn button:hover img {
    transform: rotate(360deg);
}
footer .footer-item h5 {
    font-size: 25px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
}
footer .footer-item .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer .footer-item .footer-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 0;
    transition: all 0.4s ease-in;
}
footer .footer-item .footer-list li::before {
    content: "\f138";
    font-family: bootstrap-icons;
    font-weight: 600;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary-color1);
    opacity: 0;
    transition: all 0.65s ease;
}
footer .footer-item .footer-list li:last-child {
    margin-bottom: 0;
}
footer .footer-item .footer-list li:hover {
    padding-left: 20px;
}
footer .footer-item .footer-list li:hover a {
    color: var(--primary-color1);
}
footer .footer-item .footer-list li:hover::before {
    opacity: 1;
}
footer .footer-item .footer-list li a {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 400;
    font-family: poppins, sans-serif;
    transition: all 0.4s ease;
}
footer .footer-social {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: start;
}
footer .footer-social i {
    color: var(--white);
    width: 34px;
    height: 34px;
    line-height: 34px;
    border: 1px solid var(--text-color2);
    text-align: center;
    transition: all 0.42s ease;
}
footer .footer-social i:hover {
    background: var(--primary-color1);
    border: 1px solid var(--primary-color1);
}
footer .address-list {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--text-color2);
    padding-bottom: 10px;
    margin-bottom: 25px;
}
footer .address-list li {
    margin-bottom: 15px;
    display: flex;
    justify-content: start;
    align-items: start;
}
footer .address-list li svg {
    fill: var(--primary-color1);
    margin-top: 6px;
}
footer .address-list li a {
    font-size: 16px;
    font-weight: 500;
    font-family: poppins, sans-serif;
    color: var(--text-light);
    transition: all 0.42s ease;
    padding-left: 10px;
    line-height: 1.6;
}
footer .address-list li:hover a {
    color: var(--primary-color1);
}
footer .footer-bottom {
    padding: 15px 0;
    border-top: 1px solid #2f2f2f;
}
footer .footer-bottom p {
    font-size: 13px;
    font-weight: 400;
    font-family: poppins, sans-serif;
    color: var(--white);
    margin-bottom: 0;
    margin-right: 30px;
}
@media (max-width: 991px) {
    footer .footer-bottom p {
        margin-right: 0;
    }
}
footer .footer-bottom p .egns-lab {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color1);
}
footer .footer-bottom .footer-logo-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-flex;
}
footer .footer-bottom .footer-logo-list li {
    margin-right: 20px;
}
footer .footer-bottom .footer-logo-list li img {
    transition: all 0.6s ease;
}
footer .footer-bottom .footer-logo-list li:last-child {
    margin-right: 0;
}
footer .footer-bottom .footer-logo-list li:hover img {
    transform: rotate(360deg);
}
footer .footer-bottom .f-bottom-list {
    margin: 0;
    padding: 0;
}
footer .footer-bottom .f-bottom-list li:first-child a {
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
}
footer .footer-bottom .f-bottom-list li:first-child a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 15px;
    background: var(--white);
}
footer .footer-bottom .f-bottom-list a {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    transition: all 0.42s ease;
}
footer .footer-bottom .f-bottom-list a:hover {
    color: var(--primary-color1);
}
footer.style-2 {
    background-color: #17181a;
    background-image: unset;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
footer.style-2 .footer-vectr1 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    opacity: 0.1;
}
footer.style-2 .footer-vectr2 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.1;
}
footer.style-2 .footer-item .input-with-btn {
    border: 1px solid var(--text-color2);
}
footer.style-2 .footer-item .input-with-btn button {
    background: var(--primary-color2);
}
footer.style-2 .footer-item .footer-list li::before {
    color: var(--primary-color2);
}
footer.style-2 .footer-item .footer-list li:hover a {
    color: var(--primary-color2);
}
footer.style-2 .footer-social i:hover {
    background: var(--primary-color2);
    border: 1px solid var(--primary-color2);
}
footer.style-2 .address-list li svg {
    fill: var(--primary-color2);
    margin-top: 6px;
}
footer.style-2 .address-list li:hover a {
    color: var(--primary-color2);
}
footer.style-2 .footer-bottom p .egns-lab {
    color: var(--primary-color2);
}
footer.style-2 .footer-bottom .f-bottom-list a:hover {
    color: var(--primary-color2);
}
footer.style-3 {
    background-image: linear-gradient(
            rgba(18, 19, 24, 0.9),
            rgba(18, 19, 24, 0.9)
        ),
        url("../images/bg/footer3-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
footer.style-3 .footer-item .input-with-btn {
    border: 1px solid var(--text-color2);
}
footer.style-3 .footer-item .input-with-btn button {
    background: var(--primary-color3);
}
footer.style-3 .footer-item .footer-list li::before {
    color: var(--primary-color3);
}
footer.style-3 .footer-item .footer-list li:hover a {
    color: var(--primary-color3);
}
footer.style-3 .footer-social i:hover {
    background: var(--primary-color3);
    border: 1px solid var(--primary-color3);
}
footer.style-3 .address-list li svg {
    fill: var(--primary-color3);
    margin-top: 6px;
}
footer.style-3 .address-list li:hover a {
    color: var(--primary-color3);
}
footer.style-3 .footer-bottom p .egns-lab {
    color: var(--primary-color3);
}
footer.style-3 .footer-bottom .f-bottom-list a:hover {
    color: var(--primary-color3);
}
footer.style-4 {
    background-image: linear-gradient(
            rgba(18, 19, 24, 0.9),
            rgba(18, 19, 24, 0.9)
        ),
        url("../images/bg/footer3-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
footer.style-4 .footer-item .input-with-btn {
    border: 1px solid var(--text-color2);
}
footer.style-4 .footer-item .input-with-btn button {
    background: var(--primary-color4);
}
footer.style-4 .footer-item .footer-list li::before {
    color: var(--primary-color4);
}
footer.style-4 .footer-item .footer-list li:hover a {
    color: var(--primary-color4);
}
footer.style-4 .footer-social i:hover {
    background: var(--primary-color4);
    border: 1px solid var(--primary-color4);
}
footer.style-4 .address-list li svg {
    fill: var(--primary-color4);
    margin-top: 6px;
}
footer.style-4 .address-list li:hover a {
    color: var(--primary-color4);
}
footer.style-4 .footer-bottom p .egns-lab {
    color: var(--primary-color4);
}
footer.style-4 .footer-bottom .f-bottom-list a:hover {
    color: var(--primary-color4);
}
footer.style-5 {
    background-image: linear-gradient(
            rgba(18, 19, 24, 0.9),
            rgba(18, 19, 24, 0.9)
        ),
        url("../images/bg/footer3-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
footer.style-5 .footer-item .input-with-btn {
    border: 1px solid var(--text-color2);
}
footer.style-5 .footer-item .input-with-btn button {
    background: var(--primary-color5);
}
footer.style-5 .footer-item .footer-list li::before {
    color: var(--primary-color5);
}
footer.style-5 .footer-item .footer-list li:hover a {
    color: var(--primary-color5);
}
footer.style-5 .footer-social i:hover {
    background: var(--primary-color5);
    border: 1px solid var(--primary-color5);
}
footer.style-5 .address-list li svg {
    fill: var(--primary-color5);
    margin-top: 6px;
}
footer.style-5 .address-list li:hover a {
    color: var(--primary-color5);
}
footer.style-5 .footer-bottom p .egns-lab {
    color: var(--primary-color5);
}
footer.style-5 .footer-bottom .f-bottom-list a:hover {
    color: var(--primary-color5);
}
.single-sponsor {
    display: flex;
    justify-content: center;
    transition: all 0.4s ease;
}
.single-sponsor img {
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
}
.single-sponsor:hover {
    transform: translateY(-10px);
}
.joinus-area {
    background-image: url(../images/bg/joinus-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 1, 12, 0.8);
    background-blend-mode: multiply;
    min-height: 290px;
    padding: 80px 7%;
    border-radius: 5px;
    min-width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
}
.joinus-area .about3-vector2 {
    position: absolute;
    top: -50px;
    right: -50px;
    z-index: -1;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .joinus-area .about3-vector2 {
        right: -30px;
    }
}
@media (max-width: 991px) {
    .joinus-area .about3-vector2 {
        display: none;
        visibility: hidden;
    }
}
.joinus-area h2 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: cuprum, sans-serif;
    color: var(--white);
    line-height: 1.5;
}
.joinus-area .joinus-btn {
    padding: 14px 45px;
    font-size: 18px;
    font-weight: 600;
    font-family: poppins, sans-serif;
}
.video-section {
    background-image: url(../images/bg/work-vdo1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 1, 12, 0.8);
    background-blend-mode: multiply;
    border-radius: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background-attachment: fixed;
    z-index: 1;
    position: relative;
    overflow: hidden;
}
.video-section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
}
.video-section .video-vctr-top {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.1;
}
.video-section .video-vctr-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.1;
}
.documentation-tab-wrap button.nav-link {
    font-size: 18px;
    font-weight: 600;
    margin: 0 5px;
}
.documentation-tab-wrap .nav-pills .nav-link.active,
.documentation-tab-wrap .nav-pills .show > .nav-link {
    color: #fff;
    background-color: var(--primary-color1);
}
.jobpost-item {
    padding: 30px 25px;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.18);
}
.jobpost-item:hover .job-header .icon {
    transform: scale(1.2);
}
.jobpost-item .job-header {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 20px;
}
.jobpost-item .job-header .icon {
    margin-right: 15px;
    transition: 400ms ease-out 25ms;
}
.jobpost-item .job-header h4.title {
    margin-bottom: 0;
}
.jobpost-item .job-header h4.title a {
    font-size: 25px;
    font-weight: 700;
    color: var(--text-color);
}
.jobpost-item .job-body {
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.jobpost-item .job-body .job-meta {
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 20px 0 0;
    padding: 0;
}
.jobpost-item .job-body .job-meta li img {
    margin-right: 10px;
}
.jobpost-item .job-body .job-meta li:first-child {
    margin-right: 40px;
}
.jobpost-item .job-footer {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.job-details-wrap ul.about-list {
    margin-top: 15px;
    margin-bottom: 25px;
    padding: 0;
    list-style: none;
}
.job-details-wrap ul.about-list li {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    font-family: cuprum, sans-serif;
    color: var(--text-color2);
    padding-left: 20px;
    margin-bottom: 10px;
    transition: all 0.42s ease-in-out;
}
.job-details-wrap ul.about-list li:hover {
    color: var(--primary-color1);
}
.job-details-wrap ul.about-list li:last-child {
    margin-bottom: 0;
}
.job-details-wrap ul.about-list li::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--primary-color1);
    border-radius: 50%;
}
.offer-section {
    background: linear-gradient(95.58deg, #ffffff 0%, #f3dbff 100%);
    position: relative;
    overflow: hidden;
}
.offer-section .web-top {
    position: absolute;
    top: 0;
    right: 0;
}
.offer-section .web-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
}
.offer-section .triangle-icon {
    position: absolute;
    left: 5%;
    top: 80px;
    animation: rotation 8s linear infinite;
}
.offer-content {
    width: 100%;
    max-width: 550px;
}
@media (max-width: 991px) {
    .offer-content {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}
.offer-content img {
    max-width: 50px;
    margin-bottom: 15px;
}
.offer-content h3 {
    font-size: 2.125rem;
    font-weight: 700;
    font-family: cuprum, sans-serif;
    color: var(--text-color);
    margin-bottom: 15px;
}
.offer-content p {
    margin-bottom: 30px;
}
.offer-image-area {
    position: relative;
    background: var(--primary-color3);
    width: 100%;
    max-width: 400px;
    height: 400px;
    border-radius: 50%;
    animation: jump 1s linear infinite alternate;
}
.offer-image-area.style-2 {
    background: var(--primary-color5);
    position: relative;
    width: 100%;
    max-width: 530px;
    height: 100%;
    max-height: 530px;
}
.offer-image-area.style-2 .banner5-image {
    max-width: 108%;
    margin-left: -35px;
    margin-top: -30px;
}
@media (max-width: 991px) {
    .offer-image-area {
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 576px) {
    .offer-image-area {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }
}
.offer-image-area .snake-arrow {
    position: absolute;
    left: -320px;
    top: 40%;
}
@media (max-width: 1199px) {
    .offer-image-area .snake-arrow {
        display: none;
        visibility: hidden;
    }
}
.offer-image-area::before {
    content: "";
    width: 100%;
    height: 15px;
    background: rgba(113, 112, 112, 0.1);
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 50%;
    animation: rotate2 1s linear infinite alternate;
}
@keyframes jump {
    0% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes rotate2 {
    0% {
        transform: translateY(15px) scale(0.5);
        background: rgba(113, 112, 112, 0.1);
    }
    100% {
        transform: translateY(0px) scale(1);
        background: rgba(113, 112, 112, 0.12);
    }
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.offer-image-area .offer-ellipse {
    position: absolute;
    left: -40px;
    top: 50%;
    min-width: 105px;
    height: 105px;
    background-image: url(../images/bg/offer-ellipse.svg);
    line-height: 105px;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    font-weight: 700;
    color: var(--white);
}
.sponsor-section4 {
    margin-top: -37px;
    z-index: 2;
    position: relative;
}
.sponsor-section4 .sponsor-wrapper {
    background: #fff;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.1);
    border-radius: 100px;
    padding: 20px;
}
@media (max-width: 767px) {
    .sponsor-section4 .sponsor-wrapper {
        border-radius: 10px;
    }
}
.sponsor-section4 .sponsor-wrapper .brand-item {
    text-align: center;
    cursor: pointer;
}
.sponsor-section4 .sponsor-wrapper .brand-item svg {
    fill: var(--text-color2);
    transition: 0.35s ease-in-out;
}
.sponsor-section4 .sponsor-wrapper .brand-item:hover svg {
    fill: var(--primary-color4);
}
.feature-list {
    margin: 0 0 40px;
    padding: 10px 0 0;
}
.feature-list li {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color2);
    font-family: cuprum, sans-serif;
    position: relative;
    padding-left: 50px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: cuprum, sans-serif;
}
.feature-list li:last-child {
    margin-bottom: 0;
}
.feature-list li::before {
    content: "\f633";
    font-family: bootstrap-icons !important;
    position: absolute;
    top: 8px;
    left: 0;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    background: var(--primary-color5);
    color: var(--white);
    text-align: center;
    font-size: 16px;
    transition: all 0.35s ease-in-out;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.2);
}
.feature-list li:hover::before {
    background-color: var(--white);
    color: var(--primary-color5);
}
.feature-dotted {
    position: absolute;
    top: 0;
    right: 10%;
}
.feature-section5 {
    margin-bottom: 30px;
}
@media (max-width: 991px) {
    .feature-section5 {
        margin-bottom: 0;
    }
}
.faq-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.watermark2-bg {
    position: absolute;
    right: -80px;
    top: 0;
    z-index: -1;
    max-width: 100%;
}
@media (max-width: 1199px) {
    .watermark2-bg {
        display: none;
        visibility: hidden;
    }
}
.watermark1-bg {
    position: absolute;
    left: -80px;
    top: 0;
    z-index: -1;
    max-width: 100%;
}
@media (max-width: 1199px) {
    .watermark1-bg {
        display: none;
        visibility: hidden;
    }
}
.sidebar-card {
    padding: 30px 25px;
    background: var(--white);
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.1);
}
.sidebar-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
}
.faq-wrap .faq-item {
    margin-bottom: 24px;
    border: none;
}
.faq-wrap .faq-item:last-child {
    margin-bottom: 0;
}
.faq-wrap .faq-item.hover-btn {
    padding: 1px;
}
.faq-wrap .accordion-button {
    font-family: cuprum, sans-serif;
    font-weight: 600;
    font-size: 20px;
    background: rgba(39, 174, 96, 0.09);
    border-radius: 5px;
    color: var(--text-color2);
    cursor: pointer;
    transition: 0.45s ease-in-out;
    padding: 20px 25px;
    padding-right: 60px;
    margin-bottom: 0;
    line-height: 1.4;
}
.faq-wrap .accordion-button:focus {
    z-index: unset;
    border-color: unset;
    outline: 0;
    background: var(--primary-color4);
    box-shadow: 5px 7px 40px rgba(145, 145, 145, 0.1);
}
.faq-wrap .accordion-button::after {
    flex-shrink: 0;
    width: unset;
    height: unset;
    margin-left: auto;
    background-image: none;
    background-repeat: unset;
    background-size: unset;
    font-family: bootstrap-icons !important;
    position: absolute;
    right: 22px;
    content: "\f4fe";
    transition: unset;
    font-size: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-wrap .accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: unset;
    font-family: bootstrap-icons !important;
    content: "\f2ea";
    color: var(--white);
}
.faq-wrap .accordion-button:hover {
    background: var(--primary-color4);
    color: #fff;
}
.faq-wrap .accordion-button:hover::after {
    color: var(--white);
}
.faq-wrap .accordion-button.style-2 {
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.1);
    background: var(--white);
    color: var(--text-color2);
}
.faq-wrap .accordion-button.style-2:hover {
    color: var(--white);
    background: var(--primary-color1);
}
.faq-wrap .accordion-button.style-2:focus {
    background: var(--primary-color1);
}
.faq-wrap .accordion-button.style-2:not(.collapsed) {
    box-shadow: 5px 7px 40px rgba(145, 145, 145, 0.1);
    background: var(--primary-color1);
    color: #fff;
    border-radius: 5px 5px 0 0;
    font-weight: 600;
}
.faq-wrap .faq-body {
    font-weight: 400;
    font-size: 15px;
    font-family: poppins, sans-serif;
    background: rgba(39, 174, 96, 0.04);
    color: var(--text-color2);
    border-top: none;
    padding: 15px 25px;
    line-height: 28px;
    text-align: left;
}
.faq-wrap .faq-body.style-2 {
    background: rgba(207, 36, 53, 0.04);
}
.faq-wrap .accordion-button:not(.collapsed) {
    box-shadow: 5px 7px 40px rgba(145, 145, 145, 0.1);
    background: var(--primary-color4);
    color: #fff;
    border-radius: 5px 5px 0 0;
    font-weight: 600;
}
.inner-banner {
    min-height: 500px;
    position: relative;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../images/bg/inner_banner.png");
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .inner-banner {
        min-height: 420px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .inner-banner {
        min-height: 400px;
    }
}
@media (max-width: 991px) {
    .inner-banner {
        min-height: 370px;
    }
}
.inner-banner .inner-bannerdot {
    position: absolute;
    bottom: 10px;
    left: 20%;
    opacity: 0.9;
    animation: move 10s linear infinite alternate;
}
@keyframes move {
    0% {
        transform: rotate(0deg) scaleX(0);
    }
    100% {
        transform: rotate(360deg) scaleX(1);
    }
}
@media (max-width: 991px) {
    .inner-banner .inner-bannerdot {
        display: none;
        visibility: hidden;
    }
}
.inner-banner .inner-bannerwave {
    position: absolute;
    bottom: 0;
    right: 0%;
    opacity: 0.1;
}
.inner-banner a.down-arrow-icon {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.1);
    text-align: center;
    height: 3.75rem;
    width: 3.75rem;
    line-height: 3.75rem;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}
.inner-banner a.down-arrow-icon svg {
    animation: vibrate 1.5s linear infinite;
    fill: var(--primary-color1);
    width: 1rem;
    height: 1.75rem;
}
@keyframes vibrate {
    0% {
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(0px);
    }
    75% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0px);
    }
}
.breadcrumb {
    margin: 0;
    padding: 0;
    justify-content: center;
}
.breadcrumb .breadcrumb-item {
    color: var(--primary-color1);
    font-size: 20px;
    font-weight: 500;
    font-family: poppins, sans-serif;
    position: relative;
    padding-left: 20px;
}
.breadcrumb .breadcrumb-item:first-child {
    padding-left: 0;
}
.breadcrumb .breadcrumb-item.active {
    color: #ddd;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: unset;
}
.breadcrumb-item + .breadcrumb-item::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 15px;
    left: 0;
}
.inner-banner-title {
    font-size: 55px;
    font-weight: 700;
    color: var(--white);
}
.pagination-wrap {
    margin-top: 50px;
}
.pagination-wrap .page-item.active .page-link {
    z-index: 3;
    color: var(--white);
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
}
.pagination-wrap .pagination {
    margin: 0;
}
.pagination-wrap .page-item:first-child .page-link {
    border-radius: 5px 5px 5px 0;
}
.pagination-wrap .page-item:last-child .page-link {
    border-radius: 5px 5px 5px 0;
}
.pagination-wrap .page-link {
    position: relative;
    display: block;
    color: #18212e;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    background-color: var(--white);
    border: 1px solid #eee;
    border-radius: 5px 5px 5px 0;
    transition: 0.42s ease;
}
.pagination-wrap .page-link svg {
    fill: #000;
}
.pagination-wrap .page-link:focus {
    box-shadow: unset;
    color: var(--white);
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
}
.pagination-wrap .page-link:hover {
    color: var(--white);
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
}
.pagination-wrap .page-link:hover svg {
    fill: var(--white);
}
.pagination-wrap .page-item.active .page-link {
    z-index: 3;
    color: var(--white);
    background-color: var(--primary-color1);
    border-color: var(--primary-color1);
}
.form-inner input,
.form-inner textarea {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    width: 100%;
    transition: all 0.5s ease;
}
.form-inner input::placeholder,
.form-inner textarea::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color2);
    font-family: poppins, sans-serif;
}
.form-inner input:focus,
.form-inner textarea:focus {
    border: 1px solid var(--primary-color1);
}
.btn--submit {
    background-color: var(--primary-color1);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    font-family: poppins, sans-serif;
    border: none;
    outline: none;
    padding: 15px 35px;
    transition: all 0.5s ease;
}
.btn--submit:hover {
    background-color: var(--text-color);
    color: var(--white);
}
.address-card {
    position: relative;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.1);
}
.address-card:hover img {
    margin-top: 0%;
    opacity: 1;
    visibility: visible;
}
.address-card:hover .content {
    background: var(--primary-color1);
}
.address-card:hover .header h3 {
    color: var(--white);
}
.address-card:hover .address-list li {
    color: var(--white);
}
.address-card:hover .address-list li span {
    color: var(--white);
}
.address-card img {
    width: 100%;
    transition-delay: 0.52s;
    height: 245px;
    border-radius: 0;
}
@media (max-width: 991px) {
    .address-card img {
        display: none;
        visibility: hidden;
    }
}
.address-card .content {
    background: #fff;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.1);
    padding: 30px;
    z-index: 2;
    position: relative;
    transition: all 0.5s ease;
}
.address-card .header {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 20px;
}
.address-card .header svg {
    fill: var(--primary-color1);
    transition: all 0.5s ease;
}
.address-card .header .location {
    border: 1px solid var(--primary-color1);
    width: 2.8rem;
    height: 2.8rem;
    line-height: 2.8rem;
    border-radius: 50%;
    text-align: center;
    margin-right: 15px;
    background-color: var(--white);
}
.address-card .header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0;
    transition: all 0.5s ease;
}
.address-card .address-list {
    margin: 0;
    padding: 0;
}
.address-card .address-list li {
    font-size: 1rem;
    color: var(--text-color2);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 8px;
    transition: all 0.5s ease;
}
.address-card .address-list li:last-child {
    margin-bottom: 0;
}
.address-card .address-list li span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.5s ease;
}
.job-details-wrap h3 {
    font-size: 35px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 18px;
}
.job-details-wrap h4 {
    font-size: 25px;
    font-weight: 700;
    color: var(--text-color);
}
.apply-form {
    background: #fff;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.1);
    padding: 40px 35px;
}
@media (max-width: 991px) {
    .apply-form {
        padding: 25px 15px;
    }
}
.apply-form label {
    font-family: cuprum, sans-serif;
    font-size: 18px;
    font-weight: 600;
}
.apply-form-title {
    position: relative;
    margin-bottom: 45px;
}
.apply-form-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 135px;
    height: 2px;
    background: #eee;
}
.apply-form-title h4 {
    font-size: 25px;
    font-weight: 700;
    font-family: cuprum, sans-serif;
    color: #18212e;
    margin-bottom: 10px;
}
.apply-form-title p {
    font-size: 1rem;
    font-weight: 400;
    font-family: poppins, sans-serif;
    color: #676767;
    padding-bottom: 12px;
}
.proj-details-single img {
    border-radius: 5px;
}
.proj-details-single h4 {
    font-size: 25px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.4;
    margin-bottom: 15px;
}
.proj-details-single .challenge-box {
    background-color: #f8f8f8;
    border-radius: 5px;
    padding: 35px 25px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.proj-details-single .challenge-box h4 {
    font-size: 25px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}
.proj-details-single .challenge-box .challenge-list {
    padding: 0;
}
.proj-details-single .challenge-box .challenge-list li {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-color);
    position: relative;
    padding-left: 15px;
    margin-bottom: 15px;
    font-family: cuprum, sans-serif;
}
.proj-details-single .challenge-box .challenge-list li:last-child {
    margin-bottom: 0;
}
.proj-details-single .challenge-box .challenge-list li::before {
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: var(--primary-color1);
    position: absolute;
    top: 8px;
    left: 0;
}
.project-meta-list {
    padding: 0;
    margin: 40px 0 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.project-meta-list li {
    display: flex;
    justify-content: start;
    align-items: center;
}
.project-meta-list li .icon {
    margin-right: 15px;
}
.project-meta-list li .text h5 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}
.project-meta-list li .text p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color2);
}
.proj-details-right .title-area span {
    color: var(--primary-color1);
    display: inline-block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    font-family: poppins, sans-serif;
}
.proj-details-right .title-area h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 15px;
}
.proj-details-right .title-area h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 270px;
    height: 2px;
    background: #eee;
}
.proj-details-right h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 85px;
    line-height: 1.3;
}
.proj-details-imgs {
    margin-top: 40px;
    margin-bottom: 40px;
}
.proj-details-imgs img {
    border-radius: 5px;
}
.error-img {
    animation: zoom 4s linear infinite alternate;
}
@keyframes zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.7);
    }
}
.error-wrap .content {
    margin-top: 50px;
}
.error-wrap .content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}
.error-wrap .content p {
    margin-bottom: 0;
}
.service-list-area {
    background: #fff;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.1);
    padding: 40px 30px;
    margin-bottom: 50px;
}
.service-list-area .sidebar-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
}
.service-list-area .service-list {
    padding: 0;
    margin: 0;
}
.service-list-area .service-list li {
    border: 1px solid #eee;
    padding: 10px 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.45s ease-in-out;
}
.service-list-area .service-list li:hover {
    background-color: var(--primary-color1);
}
.service-list-area .service-list li:hover a {
    color: var(--white);
}
.service-list-area .service-list li:hover svg {
    fill: var(--white);
}
.service-list-area .service-list li:last-child {
    margin-bottom: 0;
}
.service-list-area .service-list li a {
    font-size: 19px;
    font-weight: 400;
    color: var(--text-color);
    font-family: cuprum, sans-serif;
    transition: all 0.45s ease-in-out;
}
.service-list-area .service-list li svg {
    fill: var(--text-color);
    transition: all 0.45s ease-in-out;
}
.service-banner {
    background-image: linear-gradient(
            rgba(24, 33, 46, 0.75),
            rgba(24, 33, 46, 0.75)
        ),
        url("../images/bg/service-sidebar-img.png");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 100px 50px;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .service-banner {
        padding: 90px 30px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .service-banner {
        padding: 90px 70px;
    }
}
@media (min-width: 576px) and (max-width: 768px) {
    .service-banner {
        padding: 90px 30px;
    }
}
.service-banner span {
    font-size: 20px;
    font-weight: 400;
    font-family: poppins, sans-serif;
    display: inline-block;
    color: var(--white);
    margin-bottom: 10px;
}
.service-banner h3 {
    font-size: 35px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 35px;
}
.service-details-area > img {
    border-radius: 5px;
    margin-bottom: 35px;
}
.service-details-area h3 {
    font-size: 35px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 15px;
}
.proj-planlist {
    padding: 0;
    margin: 0;
}
.proj-planlist li {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    font-family: cuprum, sans-serif;
    margin-bottom: 15px;
}
.proj-planlist li:last-child {
    margin-bottom: 0;
}
.proj-planlist li svg {
    fill: var(--text-color2);
    margin-right: 10px;
}
h3.service-subtitle {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}
.work-process-area {
    background: #fff;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.1);
    padding: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.work-process-area h3.service-subtitle {
    margin-bottom: 20px;
}
.work-process-item {
    text-align: center;
}
.work-process-item img {
    margin-bottom: 20px;
}
.work-process-item h4 {
    font-size: 25px;
    font-weight: 600;
    color: var(--text-color2);
    transition: all 0.4s ease-in-out;
}
.work-process-item:hover h4 {
    color: var(--primary-color1);
}
.blog-widget-item {
    background: #fff;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.1);
    border-radius: 5px;
    margin-bottom: 40px;
}
.blog-widget-item .search-area {
    padding: 18px 15px;
}
.blog-widget-item .search-area form .search-with-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog-widget-item .search-area form .search-with-btn input {
    height: 50px;
    border-radius: 5px 0 0 5px;
    width: 100%;
    border: 1px solid #eee;
    padding: 20px;
}
.blog-widget-item .search-area form .search-with-btn input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color2);
}
.blog-widget-item .search-area form .search-with-btn button {
    border-radius: 0 5px 5px 0;
    height: 50px;
    min-width: 60px;
    background: var(--primary-color1);
    border: none;
    transition: all 0.42s ease-in-out;
}
.blog-widget-item .search-area form .search-with-btn button i {
    color: var(--white);
}
.blog-widget-item .search-area form .search-with-btn button:hover {
    background: var(--text-color);
}
.blog-widget-item .blog-category {
    padding: 30px 25px;
}
.blog-widget-item .recent-blog {
    padding: 30px 25px;
}
.blog-widget-item .post-tag {
    padding: 30px 25px;
}
.blog-widget-item .follow-area {
    padding: 30px 25px;
}
.blog-widget-item .blog-widget-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}
.blog-widget-item .category-list {
    margin: 0;
    padding: 0;
}
.blog-widget-item .category-list li {
    margin-bottom: 15px;
}
.blog-widget-item .category-list li:last-child {
    margin-bottom: 0;
}
.blog-widget-item .category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.blog-widget-item .category-list li a span {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-color2);
    font-family: cuprum, sans-serif;
    transition: all 0.42s ease-in-out;
}
.blog-widget-item .category-list li a span i {
    font-size: 1rem;
    font-weight: 700;
}
.blog-widget-item .category-list li a:hover span {
    color: var(--primary-color1);
    padding-left: 10px;
}
.recent-post-list {
    margin: 0;
    padding: 0;
}
.recent-post-list li {
    margin-bottom: 30px;
}
.recent-post-list li:last-child {
    margin-bottom: 0;
}
.recent-post-list .recent-post-item {
    display: flex;
    justify-content: start;
    align-items: center;
}
.recent-post-list .recent-post-item:hover .recent-post-img img {
    filter: saturate(2);
}
.recent-post-list .recent-post-img {
    margin-right: 15px;
}
.recent-post-list .recent-post-img img {
    transition: all 0.35s ease-in-out;
}
.recent-post-list .recent-post-content h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    transition: all 0.35s ease-in-out;
}
.recent-post-list .recent-post-content h6:hover {
    color: var(--primary-color1);
}
.recent-post-list .recent-post-content .meta {
    display: flex;
    justify-content: start;
    align-items: center;
}
.recent-post-list .recent-post-content .meta img {
    margin-right: 8px;
}
.recent-post-list .recent-post-content .meta p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color2);
}
.tag-list {
    margin: 0;
    padding: 10px 0 0;
}
.tag-list li {
    display: inline-flex;
}
.tag-list li a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color2);
    background: #f8f8f8;
    padding: 8px 15px;
    text-transform: capitalize;
    transition: all 0.35s ease-in-out;
    border-radius: 3px;
}
.tag-list li:hover a {
    background-color: var(--primary-color1);
    color: var(--white);
}
.follow-list {
    margin: 0;
    padding: 10px 0 0;
}
.follow-list a i {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border: 1px solid #eee;
    background: var(--white);
    border-radius: 3px;
    font-size: 18px;
    color: var(--text-color2);
    transition: all 0.35s ease-in-out;
}
.follow-list a:hover i {
    background: var(--primary-color1);
    border: 1px solid var(--primary-color1);
    color: var(--white);
}
.blog-standard-single {
    margin-bottom: 40px;
}
.blog-standard-single h3 {
    font-size: 35px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.4;
    margin-bottom: 16px;
}
.blog-standard-single .meta {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 40px;
}
.blog-standard-single .meta .author {
    margin-right: 25px;
}
.blog-standard-single .meta li img {
    margin-right: 8px;
}
.blog-standard-single .meta li span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color2);
    display: inline-block;
}
.blog-standard-single .image {
    position: relative;
    margin-bottom: 30px;
}
.blog-standard-single .image img {
    border-radius: 5px;
}
.blog-standard-single .react-ellips {
    position: absolute;
    top: 30px;
    left: 30px;
    min-width: 75px;
    min-height: 75px;
    line-height: 1.7;
    text-align: center;
    background: var(--primary-color1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9;
}
@media (max-width: 576px) {
    .blog-standard-single .react-ellips {
        top: 10px;
        left: 10px;
    }
}
.blog-standard-single .react-ellips i {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0;
}
.blog-standard-single .react-ellips h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    font-family: poppins, sans-serif;
}
.blog-standard-single .bottom-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    position: relative;
    padding-bottom: 40px;
}
.blog-standard-single .bottom-area::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    border-radius: 30px;
    background: #eee;
}
.blog-standard-single .bottom-area::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 30px;
    height: 3px;
    background: #979797;
    border-radius: 1.5px 0 0 1.5px;
}
.blog-standard-single .bottom-area .blog-btn a {
    min-width: 170px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid var(--primary-color1);
    border-radius: 5px;
    cursor: pointer;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    display: block;
    padding: 0 30px;
    transition: all 0.5s ease-in-out;
}
.blog-standard-single .bottom-area .blog-btn a:hover {
    background: var(--primary-color1);
    color: var(--white);
    border: 1px solid var(--primary-color1);
}
.blog-standard-single .bottom-area .blog-share {
    overflow: hidden;
    height: 24px;
    cursor: pointer;
}
.blog-standard-single .bottom-area .blog-share:hover .front {
    transform: translateY(-24px);
}
.blog-standard-single .bottom-area .blog-share:hover .back {
    transform: translateY(-24px);
}
.blog-standard-single .bottom-area .blog-share .front {
    text-align: end;
    transition: all 0.62s ease-in-out;
}
.blog-standard-single .bottom-area .blog-share .front img {
    vertical-align: baseline;
}
.blog-standard-single .bottom-area .blog-share .front span {
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    display: inline-block;
    margin-bottom: 0;
    margin-left: 5px;
}
.blog-standard-single .bottom-area .blog-share .back {
    text-align: end;
    transition: all 0.62s ease-in-out;
}
.blog-standard-single .bottom-area .blog-share .back .share-list {
    margin: 0;
    padding: 0;
}
.blog-standard-single .bottom-area .blog-share .back .share-list a i {
    color: var(--text-color2);
    transition: all 0.35s ease-in-out;
}
.blog-standard-single .bottom-area .blog-share .back .share-list a:hover i {
    color: var(--primary-color1);
}
.blog-format {
    margin: 40px 0;
}
.blog-image-slider {
    position: relative;
    z-index: 9;
    margin-bottom: 30px;
}
.blog-image-slider .slider-arrows2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}
.blog-image-slider img {
    border-radius: 5px;
}
.blog-details-video {
    position: relative;
}
.blog-details-video img {
    border-radius: 5px;
}
.blog-qoote-area {
    background: #f8f8f8;
    max-width: 880px;
    width: 100%;
    height: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    min-height: 535px;
    margin-bottom: 30px;
    position: relative;
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .blog-qoote-area {
        min-height: 350px;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .blog-qoote-area {
        min-height: 290px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .blog-qoote-area {
        min-height: 330px;
    }
}
@media (max-width: 767px) {
    .blog-qoote-area {
        min-height: 230px;
    }
}
.blog-qoote-area .quote-area {
    position: absolute;
    top: -27px;
    right: 25px;
    height: 56px;
    width: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 3px 4px 30px rgba(136, 136, 136, 0.15);
}
.blog-qoote-area h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 40px;
}
.blog-qoote-area h2 {
    font-size: 35px;
    font-weight: 700;
    color: var(--primary-color1);
}
.blog-qoote-area h5 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.5;
}
.blog-qoote-area h4 {
    font-size: 25px;
    font-weight: 700;
    color: var(--primary-color1);
}
.blog-qoote-area.style-2 {
    min-height: auto;
    text-align: center !important;
    padding: 50px 70px;
    margin-bottom: unset;
}
@media (max-width: 1199px) {
    .blog-qoote-area.style-2 {
        padding: 50px 35px;
    }
}
.blog-details-single {
    margin-bottom: 40px;
}
.blog-details-single h3 {
    font-size: 35px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.4;
    margin-bottom: 16px;
}
.blog-details-single .meta {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 40px;
}
.blog-details-single .meta .author {
    margin-right: 25px;
}
.blog-details-single .meta .author img,
.blog-details-single .meta .date img {
    margin-right: 8px;
}
.blog-details-single .meta .author span,
.blog-details-single .meta .date span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color2);
    display: inline-block;
}
.blog-details-single .image {
    position: relative;
    margin-bottom: 30px;
}
.blog-details-single .react-ellips {
    position: absolute;
    top: 30px;
    left: 30px;
    min-width: 75px;
    min-height: 75px;
    line-height: 1.7;
    text-align: center;
    background: var(--primary-color1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9;
}
.blog-details-single .react-ellips i {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0;
}
.blog-details-single .react-ellips h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    font-family: poppins, sans-serif;
}
.blog-details-single .content > h4 {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-color);
}
.blog-details-single .quote-details h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
}
ul.blog-details-list {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
}
ul.blog-details-list li {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    font-family: poppins, sans-serif;
    color: var(--text-color);
    padding-left: 20px;
    margin-bottom: 10px;
    transition: all 0.42s ease-in-out;
}
ul.blog-details-list li:hover {
    color: var(--primary-color1);
}
ul.blog-details-list li:last-child {
    margin-bottom: 0;
}
ul.blog-details-list li::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--primary-color1);
    border-radius: 50%;
}
.blog-details-share {
    border-bottom: 1px solid #eee;
    padding-bottom: 35px;
    padding-top: 10px;
}
.blog-details-share h5 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
}
.blog-details-share .social {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: start;
}
@media (max-width: 991px) {
    .blog-details-share .social {
        justify-content: center;
    }
}
.blog-details-share .social i {
    color: var(--text-color2);
    width: 34px;
    height: 34px;
    line-height: 34px;
    border: 1px solid var(--text-color2);
    text-align: center;
    transition: all 0.42s ease;
    border-radius: 3px;
}
.blog-details-share .social i:hover {
    background: var(--primary-color1);
    border: 1px solid var(--primary-color1);
    color: var(--white);
}
.blogd-category-area {
    margin-top: 60px;
}
.blogd-category-area .category-box {
    background-color: #f8f8f8;
    padding: 30px 25px;
}
.blogd-category-area .category-box h4 {
    font-size: 25px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}
.blogd-category-area .category-box .cat-list {
    display: flex;
    justify-content: start;
    flex-flow: row wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
}
.blogd-category-area .category-box .cat-list li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color2);
    background: var(--white);
    padding: 10px 15px;
    border-radius: 3px;
    text-align: center;
    transition: all 0.42s ease-in-out;
    display: inline-flex;
}
.blogd-category-area .category-box .cat-list li a:hover {
    background: var(--primary-color1);
    color: var(--white);
}
.comment-title {
    position: relative;
    padding-bottom: 1px;
    margin-bottom: 35px;
}
.comment-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    border-radius: 30px;
    background-color: var(--primary-color1);
}
.comment-title h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-color);
}
.commetn-area {
    margin-bottom: 54px;
}
.commetn-area .comment-list {
    padding: 0;
    margin: 0;
}
.commetn-area .comment-list > li:last-child .comment-item {
    margin-bottom: 0;
}
.commetn-area .comment-list > li .comment-reply {
    margin: 0;
    padding: 0 0 0 10%;
}
.commetn-area .comment-list .comment-item {
    border-radius: 5px;
    border: 1px solid #eee;
    padding: 25px;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    margin-bottom: 35px;
}
@media (max-width: 576px) {
    .commetn-area .comment-list .comment-item {
        flex-wrap: wrap;
    }
}
.commetn-area .comment-list .comment-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 15px;
}
.commetn-area .comment-list .comment-meta h5 {
    margin-right: 10px;
}
@media (max-width: 576px) {
    .commetn-area .comment-list .comment-meta {
        gap: 5px;
        flex-wrap: wrap;
    }
}
.commetn-area .comment-list .comment-meta h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0;
}
.commetn-area .comment-list .comment-meta span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color2);
    font-family: poppins, sans-serif;
}
.commetn-area .comment-list .content p {
    font-size: 16px;
    font-weight: 400;
    font-family: poppins, sans-serif;
    color: "Poppins", sans-serif;
    line-height: 1.8;
}
.commetn-area .comment-list .content .reply {
    font-size: 16px;
    font-weight: 500;
    font-family: cuprum, sans-serif;
    color: var(--text-color);
    border: none;
    outline: none;
    background-color: var(--white);
    transition: all 0.35s ease;
    padding: 0;
}
.commetn-area .comment-list .content .reply:hover {
    color: var(--primary-color1);
}
.commetn-area .comment-list .content .reply .bi {
    margin-left: 5px;
}
