@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Akshar:wght@300..700&display=swap');

:root {
    --black: #000000;
    --white: #ffffff;
    --white-1: #E1E8F0;
    --blue-1: #122746;
    --green-1: #1ea4a7;
    --red-1: #e15b40;
    --gr-1: linear-gradient(89.09deg, #19a6a9 0.78%, #E15B40 99.55%);
    --filter-1: invert(1) brightness(1000);
}

body {
    color: var(--black);
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    padding-top: 90.2px;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

.text-white {
    color: var(--white) !important;
}

.text-black {
    color: var(--black) !important;
}

.text-blue-1 {
    color: var(--blue-1) !important;
}

.text-green-1 {
    color: var(--green-1) !important;
}

.text-red-1 {
    color: var(--red-1) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

.bg-white-1 {
    background-color: var(--white-1) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.bg-blue-1 {
    background-color: var(--blue-1) !important;
}

.bg-green-1 {
    background-color: var(--green-1) !important;
}

.bg-red-1 {
    background-color: var(--red-1) !important;
}

ul,
ol {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

h1,
h2,
h3 {
    font-family: "Akshar", sans-serif;
    font-weight: 500;
}

h1 {
    font-size: 60px;
    /*text-transform: uppercase;*/
    font-weight: 500;
}

h2 {
    font-size: 52px;
    margin-bottom: 15px;
}

h3 {
    font-size: 24px;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.inner-section {
    padding: 30px 18px;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
}

.z-1 {
    position: relative;
    z-index: 1;
}

/* Header Styles */
.header {
    background-color: var(--white);
    padding: 16px 12px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 120px;
    height: auto;
}

.hamburger-btn {
    background-color: var(--red-1);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    background-color: var(--blue-1);
}

.hamburger-btn:focus {
    background-color: var(--red-1);
}

.close-btn {
    background-color: var(--red-1);
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.close-btn svg path {
    stroke: var(--white);
}

.close-btn:hover,
.close-btn:focus {
    transform: scale(1);
}

/* Fullscreen Menu Styles */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blue-1);
    color: var(--white);
    z-index: 1020;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    overflow-y: auto;
    z-index: 1031;
    font-family: "DM Sans", sans-serif;
}

.fullscreen-menu::after {
    content: url(../images/resource-menu-vector.svg);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    opacity: 1;
}

.fullscreen-menu.active {
    transform: translateY(0);
}

.menu-header {
    padding: 1rem 0;
    color: #000;
    width: 100%;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid transparent;
}

.fullscreen-menu.active .menu-header {
    border-bottom: 1px solid var(--white);
    transition: .4s;
    transition-delay: .7s;
}

.menu-header img.logo {
    filter: invert(1) brightness(10000);
}

.menu-content {
    flex: 1;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

/* Visual Links Styles */
.visual-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-link {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 200px;
    display: block;
    text-decoration: none;
    color: var(--white);
    transition: transform 0.4s ease;
}

.visual-link:hover {
    color: var(--red-1);
}

.visual-link.active {
    color: var(--red-1);
}

.visual-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.visual-link:hover img,
.visual-link:focus img {
    transform: scale(1.1);
}

.visual-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    justify-content: center;
}

.visual-link h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
}

/* Expertise Links Styles */
.expertise-links {
    /*margin-top: 2rem;*/
}

.expertise-links h3 {
    font-size: 24px;
    margin-bottom: 15px;
    ;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    color: var(--green-1);
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.expertise-item {
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.expertise-item a {
    display: flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    padding: 4px 0;
    transition: all 0.3s ease;
}

.expertise-item a:hover,
.expertise-item a:focus {
    color: var(--red-1);
    transform: translateX(5px);
}

.expertise-item a:hover svg,
.expertise-item a:focus svg {
    stroke: var(--red-1);
}

.expertise-item a:hover svg path,
.expertise-item a:focus svg path {
    fill: var(--red-1);
}

.expertise-item a.active {
    color: var(--red-1);
}

.expertise-item a.active svg {
    stroke: var(--red-1);
}

.expertise-item a.active svg path {
    fill: var(--red-1);
}

.expertise-item svg {
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-btn {
    background-color: var(--white);
    color: var(--blue-1);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 18px 18px;
    font-weight: 700;
    line-height: 1;
    border-radius: 6px;
}

.contact-btn:hover {
    background-color: var(--red-1);
    color: #ffffff;
    border: 2px solid var(--red-1);
}

.contact-btn svg {
    fill: none;
    stroke: var(--blue-1);
}

.contact-btn:hover svg {
    stroke: var(--white);
}

/* Animation delays for staggered effect */
.expertise-item:nth-child(1) {
    transition-delay: 0.1s;
}

.expertise-item:nth-child(2) {
    transition-delay: 0.15s;
}

.expertise-item:nth-child(3) {
    transition-delay: 0.2s;
}

.expertise-item:nth-child(4) {
    transition-delay: 0.25s;
}

.fullscreen-menu.active .expertise-item {
    opacity: 1;
    transform: translateY(0);
}

/* Focus management */
.fullscreen-menu:focus {
    outline: none;
}

#slider {
    height: calc(100vh - 90.2px);
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.carousel-item::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 0;
    background: linear-gradient(to top, RGBA(0, 0, 0, 0.85) 0%, RGBA(0, 0, 0, 0.75) 25.9%, RGBA(0, 0, 0, .5) 100%);

}

.carousel-item .carousel-caption {
    z-index: 1;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    right: 0px;
    text-align: left;
    padding: 0px 12px;
    padding-right: 200px;
}

#slider img {
    width: 100%;
    object-fit: cover;
    object-position: left;
    height: 100%;
}

.carousel-item .carousel-caption h2 {
    font-size: 70px;
    font-weight: 500;
    margin-bottom: 15px;
    /*text-transform: uppercase;*/
}

.carousel-item .carousel-caption p {
    font-size: 18px;
    margin-bottom: 40px;
}

.carousel-indicators {
    /*flex-direction: column;*/
    gap: 12px;
    margin: 0px;
    bottom: 38px;
    /*transform: translateY(50%);*/
    width: fit-content;
    left: auto;
    right: 140px;
}

.carousel-indicators [data-bs-target] {
    border: 0px;
    opacity: 1;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: transparent;
    border: 0px;
    text-indent: 0px;
    margin: 0px;
    transition: .3s;
    border: 2px solid var(--white);
    padding: 4px;
}

.carousel-indicators .active {
    /*background:var(--gr-1);*/
    border: 2px solid var(--red-1);
}

.carousel-control-next,
.carousel-control-prev {
    width: 100px;
    height: 48px;
    right: 20px;
    left: auto;
    top: auto;
    border-radius: 100px;
    border: 1.5px solid var(--white);
    opacity: 1 !important;
    display: flex;
    gap: 15px;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
    background-color: var(--red-1);
    color: var(--white);
}

.carousel-control-next:hover img,
.carousel-control-prev:hover img {
    filter: invert(1) brightness(1000);
}

.carousel-control-next img,
.carousel-control-prev img {
    width: 15px !important;
    height: auto !important;
}

.carousel-control-prev {
    bottom: 50px;
    right: 400px;
}

.carousel-control-next {
    bottom: 50px;
}

.btn-default {
    position: relative;
    text-decoration: none;
    padding: 15px 28px;
    background: linear-gradient(90deg, #19a6a9, #E15B40);
    border-radius: 100px;
    color: #ffffff;
    line-height: 1;
    width: fit-content;
    display: block;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease-in-out;
}

.btn-default::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100px;
    background: linear-gradient(90deg, #E15B40, #19a6a9);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

.btn-default:hover::before {
    opacity: 1;
}

#slider .carousel-indicators button img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

.image-cover {
    height: 100%;
    position: relative;
    padding: 20px;
    min-height: 350px;
}

.image-cover img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 16px;
}

.check-list-icon {
    width: 20px;
    flex: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.check-list-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-item {
    background-color: #FFFFFF1A;
    padding: 30px 24px;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: #0eaaaf24;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 10px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-btn a {
    border-radius: 100px;
    border: 1.5px solid var(--white);
    opacity: 1 !important;
    display: flex;
    gap: 15px;
    padding: 10px 20px;
    width: fit-content;
    align-items: center;
    justify-content: start;
    color: var(--white);
    font-size: 16px;
}

.service-btn a img {
    width: 13px !important;
    height: auto !important;
    filter: invert(1) brightness(1000);
}

.service-btn a:hover {
    background-color: var(--green-1);
}

.home-3 .home-3-sub-1 .check-list-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    background: var(--gr-1);
    border-radius: 100%;
    margin-top: 0px;
    border: 1px solid var(--white);
}

.home-3 .home-3-sub-1 .check-list {
    gap: 20px;
}

.box {
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(to bottom, var(--blue-1) 20%, var(--green-1) 100%);
    height: 100%;
}

.home-3 .box .check-list-icon img {
    filter: invert(1) brightness(1000);
}

footer.main-footer {
    background: black;
    color: var(--white);
    font-weight: 400;
    font-size: 17px;
}

.footer {
    padding: 100px 12px 80px;
}

.copyright {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #ffffff;
}

.copyright ul {
    display: flex;
    margin-left: auto;
    width: fit-content;
    gap: 15px;
}

footer p {
    color: #ffffff;
}

a.company-logo {
    width: fit-content;
    margin-bottom: 13px;
    filter: invert(1) brightness(1000);
    display: block;
}

a.company-logo img {
    width: 120px;
}

.company-details {
    margin-top: 3px;
}

footer h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--green-1);
}

footer ul {
    margin: 0px;
    padding: 0px;
}

footer ul li {
    list-style-type: none;
}

footer ul li a {
    color: #fff;
    padding: 6px 0px;
    display: block;
    transition: .3s;
    text-decoration: none;
    width: fit-content;
}

footer ul li a.active {
    pointer-events: none !important;
    cursor: default !important;
    color: var(--red-1);
}

footer ul li a:hover {
    color: var(--red-1);
}


.cta-section {
    text-align: center;
    overflow: hidden;
    position: relative;
    background-color: #E7F7F7;
}

.cta-inner {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-element {
    width: 370px;
    height: 370px;
    position: absolute;
    border-radius: 100%;
    z-index: 0;
}

.cta-element-1 {
    left: -185px;
    top: -150px;
    background-color: rgba(14, 170, 175, 1);
    filter: blur(150px);
    -webkit-filter: blur(150px);
}

.cta-element-2 {
    left: 50px;
    top: 150px;
    background-color: rgba(255, 255, 255, 1);
    filter: blur(75px);
    -webkit-filter: blur(75px);
}

.cta-element-3 {
    right: 50px;
    top: -150px;
    background-color: rgba(255, 255, 255, 1);
    filter: blur(75px);
    -webkit-filter: blur(75px);
}

.cta-element-4 {
    right: -185px;
    bottom: -150px;

    background-color: rgba(14, 170, 175, 1);
    filter: blur(150px);
    -webkit-filter: blur(150px);
}

.hero {
    height: calc(100vh - 90.2px);
    background-image: url(../images/hero-1.jpg);
    background-size: cover;
    background-position: center center;
    position: relative;
    color: var(--white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-1 {
    background-image: url(../images/hero-1.jpg);
}

.hero-2 {
    background-image: url(../images/hero-2.jpg);
}

.hero-3 {
    background-image: url(../images/hero-3.jpg);
}

.hero-4 {
    background-image: url(../images/hero-4.jpg);
}

.hero-5 {
    background-image: url(../images/hero-5.jpg);
}

.hero-6 {
    background-image: url(../images/hero-6.jpg);
}

.hero-7 {
    background-image: url(../images/hero-7.jpg);
}

.hero-8 {
    background-image: url(../images/hero-8.jpg);
}

.hero-9 {
    background-image: url(../images/hero-9.jpg);
}

.hero-10 {
    background-image: url(../images/hero-10.jpg);
    background-position: top center;
}


.hero .container {
    position: relative;
    z-index: 1;
}

.hero::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 0;
    background: linear-gradient(to top, RGBA(0, 0, 0, 0.85) 0%, RGBA(0, 0, 0, 0.75) 25.9%, RGBA(0, 0, 0, .55) 100%);
}

.subtitle {
    border-radius: 100px;
    background: var(--blue-1);
    width: fit-content;
    margin: 0 auto;
    padding: 6px 20px;
    margin-bottom: 30px;
    border: 1.5px solid var(--red-1);
}

.image-cover-1 {
    min-height: 500px;
    margin-bottom: -150px;
}

.image-cover-2 {
    min-height: 500px;
    margin-top: -150px;
}

.item {
    border-radius: 20px;
    border: 1.5px solid var(--white);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.item-header {
    border-bottom: 1.5px solid var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.item-icon {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-icon img {
    width: 100%;
}

.item-content {
    padding: 20px;
}

p:last-child {
    margin-bottom: 0px;
}

.tmf-2 .item-icon img {
    filter: var(--filter-1);
}

.tmf-2 .process-arrow-1 {
    position: absolute;
    top: -27px;
    right: -60px;
    width: 120px;
}

.tmf-2 .process-arrow-2 {
    position: absolute;
    bottom: -27px;
    right: -60px;
    width: 120px;
}

.step {
    font-size: 65px;
    color: transparent;
    -webkit-text-stroke: 2px var(--white-1);
    line-height: 1;
}

.border-box {
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0px 4px 75px 0px #00000014;
}

.border-box-red {
    border-left: 3px solid var(--red-1);
    color: var(--red-1);
}

.border-box-blue {
    border-left: 3px solid var(--blue-1);
    color: var(--blue-1);
}

.item-1 {
    background-color: var(--blue-1);
    padding: 20px;
    border-radius: 12px;
    height: auto;
}

.seo-2 .item-1 p {
    position: relative;
    padding-left: 15px;
}

.seo-2 .item-1 p::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: var(--red-1);
    position: absolute;
    left: -7px;
    top: 7px;
    border-radius: 100%;
}

.seo-4 .check-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
}

/*.seo-4 .check-list .check-item {
    width: calc(50% - 24px);
    flex: 0 0 calc(50% - 24px);
}*/
.seo-4 .check-list>div {
    width: calc(50% - 24px);
    flex: 0 0 calc(50% - 24px);
}

.seo-5 .item-1 {
    background-color: var(--green-1);
    color: var(--white);
    height:100%;
}

.seo-5 .item-1 .item-1-icon {
    padding: 7px;
}

.item-1 .item-1-icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: var(--blue-1);
    border-radius: 12px;
    margin-bottom: 15px;
}

.item-1 .item-1-icon img {
    width: 100%;
    filter: var(--filter-1);
}

.sem-2 .item-1 {
    background-color: #FFFFFF1A;
    font-size: 16px;
    height: 100%;
}

.sem-2 .item-1 .item-1-icon {
    margin-left: auto;
    margin-right: auto;
}

.sem-2 .item-1 h3 {
    font-size: 23px;
}

.border-r {
    border-radius: 10px;
}

.box-1 {
    padding: 32px;
    border-radius: 15px;
    height: 100%;
}

.b-2 .check-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
}

/*.b-2 .check-list .check-item {
    width: calc(50% - 24px);
    flex: 0 0 calc(50% - 24px);
}*/
.b-2 .check-list>div {
    width: calc(50% - 24px);
    flex: 0 0 calc(50% - 24px);
}

.b-3 .item-1 {
    background-color: var(--black);
    font-size: 16px;
    height: 100%;
}

.b-3 .item-1 .item-1-icon {
    background-color: var(--red-1);
}

.b-5 .check-list {
    gap: 25px;
}

.sd-card {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

.sd-card-1 .sd-card,
.sd-card-2 .sd-card,
.sd-card-3 .sd-card {
    padding-top: 20px;
}

.sd-card-1 {
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.sd-card-2 {
    border-left: 1px solid rgba(255, 255, 255, .3);
    border-right: 1px solid rgba(255, 255, 255, .3);
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.sd-card-3 {
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.sd-card-4 {
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.sd-card-5 {
    border-left: 1px solid rgba(255, 255, 255, .3);
    border-right: 1px solid rgba(255, 255, 255, .3);
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.sd-card-6 {
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    padding: 30px;
}

.sd-card-6 img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sd-card-icon {
    width: 82px;
    height: 82px;
    background: #edf9fa;
    border-radius: 50%;
    text-align: center;
    position: relative;
    margin-bottom: 28px;
    transition: 400ms ease-in-out;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-card-icon img {
    width: 100%;
}

.sd-card-icon::before {
    content: "";
    width: 100%;
    height: 100%;
    background: transparent;
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 50%;
    z-index: 1;
    transition: 400ms ease-in-out;
    opacity: 0;
}

.sd-card-icon::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--red-1);
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 50%;
    z-index: -1;
    transition: 400ms ease-in-out;
}

.legal-pages h2 {
    margin-bottom: 6px;
    font-size: 32px;
}

.legal-pages p+ul {
    margin-top: -8px;
}

.legal-pages ul+p {
    margin-top: -15px;
}

.legal-pages ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-pages ul li {
    list-style-type: disc;
    list-style-position: inside;
}

.legal-pages stronge {
    font-weight: 500;
}

.legal-pages a {
    color: var(--red-1);
    text-decoration: none;
}


.legal-pages ul li::marker {
    left: 0px;
    position: absolute;
}

.no-break {
    white-space: nowrap;
}

.form-group {
    text-align: left;
    margin-bottom: 15px;
}

.form-control {
    border: 1.5px solid var(--red-1) !important;
    box-shadow: none;
    outline: none;
    background: transparent;
    padding: 18px 16px;
    border-radius: 100px;
    color: var(--white);
}

textarea.form-control {
    border-radius: 30px;
}

.recaptch-cover {
    border: 1.5px solid var(--red-1) !important;
    padding: 0px;
    position: relative;
    background-color: transparent;
    border-radius: 30px;
}

.recaptch-cover .recaptch-cover-header {
    padding: 12px 16px;
    text-align: left;
    display: block;
    border-bottom: 1.5px solid var(--red-1) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0px;
}

.recaptch-cover .recaptch-cover-header button {
    background: var(--green-1);
    border-color: var(--green-1);
    color: #ffffff;
    border-radius: 100px;
    padding: 8px 18px 8px;
}

.recaptch-cover .recaptch-cover-header button i {
    margin-right: 5px;
}

.recaptch-cover .recaptch-cover-header button:active {
    background: var(--red-1);
    border-color: var(--red-1);
    /*color: var(--green-1);*/
}

.recaptch-cover .recaptch-cover-header button:hover {
    background: var(--red-1);
    border-color: var(--red-1);
    /*color: var(--green-1);*/
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    background-color: transparent;
    border-color: var(--red-1);
    color: var(--white);
}

.loading-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 1111;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: #ffffff;
    display: none;
}

.loading-overlay.active {
    display: flex;
}

#refreshCaptcha {
    cursor: pointer;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, .55);
    opacity: 1;
    /* Firefox */
}

.form-control::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgba(255, 255, 255, .55);
}

.error {
    color: red;
    display: none;
    margin-left: 20px;
}

.recaptch-cover-body {
    min-height: 300px;
    padding: 30px 20px 0px 20px;
}

#captchaContainer {
    max-width: 600px;
    margin: 0 auto;
}

.captcha-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 300px;
    margin-bottom: 1.5rem;
}

.captcha-grid-item {
    background-size: cover;
    background-position: center;
    border-radius: 100px;
    outline: 1.5px solid var(--red-1);
    padding: 10px;
    outline-offset: 5px;
}

.captcha-grid-item[style*="assets/captcha/images/15.jpg"] {
    background-position: center left;
}

.emoji-options {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.emoji-option {
    font-size: 2rem;
    cursor: pointer;
    padding: 0px;
    border-radius: 100px;
    transition: all 0.3s ease;
    margin: 0px;
    background-color: transparent;
    border: 1.5px solid var(--white);
    flex: 1;
    min-width: 60px;
    text-align: center;
}

.emoji-option:hover {
    background-color: var(--green-1);
    border-color: var(--green-1);
}

.emoji-option.selected {
    border-color: var(--red-1);
    background-color: var(--red-1);
}

.captcha-feedback {
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
    min-height: 24px;
}

.captcha-success {
    color: #198754;
}

.captcha-error {
    color: #dc3545;
}

#submitBtn.btn-default {
    border: 0px;
    outline: none !important;
    padding: 20px 36px;
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.process-card {
    position: relative;
    text-align: center;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.process-card p {
    font-size: 16px;
}

.process-card_icon {
    position: relative;
    width: 100px;
    height: 100px;
    line-height: 1;
    background-color: var(--white);
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    margin: 0 auto 20px auto;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-card_icon:before {
    content: "";
    position: absolute;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px dashed var(--green-1);
    z-index: -1;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.process-card:hover .process-card_icon:before {
    background-color: var(--green-1);
}

.process-card_icon img {
    width: 50px;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    -webkit-filter: none;
    filter: none;
}

.process-card:hover .process-card_icon img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.process-card_number {
    position: absolute;
    top: 0;
    right: -8px;
    width: 30px;
    height: 30px;
    line-height: 40px;
    background-color: var(--green-1);
    color: var(--white);
    border-radius: 50%;
    line-height: 26px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.process-line {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 13%;
    left: 50%;
    -webkit-transform: translate(calc(-50% + 500px), calc(-50% + 25px));
    -ms-transform: translate(calc(-50% + 500px), calc(-50% + 25px));
    transform: translate(calc(-50% + 500px), calc(-50% + 25px));
    margin: 0 -500px;
}

.process-line img {
    width: 80%;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10000001;
}

.loader {
    width: 80px;
    aspect-ratio: 1;
    display: grid;
    animation: l14 3s infinite;
}

.loader::before,
.loader::after {
    content: "";
    grid-area: 1/1;
    border: 8px solid;
    border-radius: 50%;
    border-color: var(--red-1) var(--blue-1) var(--red-1) var(--blue-1);
    animation: l14 1s infinite linear;
}

.loader::after {
    border-color: var(--blue-1) var(--red-1) var(--blue-1) var(--green-1);
    animation-direction: reverse;
}

@keyframes l14 {
    100% {
        transform: rotate(1turn)
    }
}