@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');
/* --- VARIABLES --- */
:root {
    /* colors */
    --white-color: #FFF;
    --black-color: #000;
    --darkgray-color: #484747;
    --lightgray-color: #DADADA;
    --blue-color: #446CFD;
    /* Border Radius */
    --border-radius-1: 10px;
    --border-radius-2: 30px;
    --border-radius-3: 30px;
    --border-rounded: 50%;
}

/* GENERAL STYLING */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Onest", sans-serif;
    font-size: 16px;
    color: var(--darkgray-color);
    background-color: #F4F4F4;
    overflow-x: hidden;
}

p, h1, h3 {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--darkgray-color);
    border: 1px solid transparent;
    height: 65px;
    padding: 15px;
    font-size: 16px;
    color: var(--white-color);
    outline: none;
    transition: .5s ease-in-out;
    border-radius: var(--border-radius-3);
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--darkgray-color);
    border: 1px solid var(--darkgray-color);
}

.container {
    max-width: calc(1450px - 30px);
    padding: 0 30px;
    margin: 0 auto;
}

.section {
    padding-top: 100px;
}


/*
** Header
*/
header {
    position: relative;
    z-index: 1000;
}

.main-header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    transition: all 0.3s;
    background-color: #F4F4F4;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 65px;
}

.right-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Search */
.search {
    position: relative;
    width: 65px;
    height: 65px;
    background-color: var(--white-color);
    border: 1px solid #DADADA;
    border-radius: 4rem;
    overflow: hidden;
    transition: width .5s cubic-bezier(.9, 0, .3, .9);
}

.search-input {
    border: none;
    outline: none;
    width: calc(100% - 64px);
    height: 100%;
    border-radius: 4rem;
    padding-left: 14px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.5s;
}

.search-input:-webkit-autofill {
    box-shadow: 0 0 0 100px var(--white-color) inset;
}

.search-button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform .6s cubic-bezier(.9, 0, .3, .9);
}

.search-icon,
.search-close {
    width: 24px;
    height: 24px;
    position: absolute;
    transition: opacity .5s cubic-bezier(.9, 0, .3, .9);
}

.search-close {
    opacity: 0;
}

.show-search {
    width: 300px;
}

.show-search .search-input {
    opacity: 1;
    pointer-events: initial;
}

.show-search .search-button {
    transform: rotate(90deg);
}

.show-search .search-icon {
    opacity: 0;
}

.show-search .search-close {
    opacity: 1;
}

.sideSearch {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 450px;
    background: #F4F4F4;
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.10);
    z-index: 1600;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: translate(100%, 0);
    transition: all .3s cubic-bezier(.29, .39, .68, .53);
    -webkit-transition: all .3s cubic-bezier(.29, .39, .68, .53);
    overflow: hidden;
}

.searchOpen .sideSearch {
    transform: translate(0, 0);
    transition: all .3s cubic-bezier(.29, .39, .68, .53);
    -webkit-transition: all .3s cubic-bezier(.29, .39, .68, .53);
}

body.searchOpen {
    overflow: hidden;
}

.search-mobile-close {
    align-self: flex-end;
}

.search-mobile-form {
    display: flex;
    justify-content: space-between;
    background-color: var(--white-color);
    border: 1px solid #DADADA;
    padding: 10px 15px;
    border-radius: var(--border-radius-2);
}

.search-mobile-form input {
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
}

.mobile-search-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.search_overlay {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.2);
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: 1500;
}

.searchOpen .search_overlay {
    display: block;
}

.desktop-search {
    position: relative;
}

.search-separation h2 {
    font-size: 20px;
    padding-bottom: 15px;
}

.desktop-search-result,
.blog-search-result {
    display: none;
    position: absolute;
    width: 100%;
    max-height: 500px;
    overflow: auto;
    top: 70px;
    left: 0;
    border-radius: var(--border-radius-1);
    background-color: var(--white-color);
    z-index: 50;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.desktop-search-result::-webkit-scrollbar {
    width: 8px;
}

.desktop-search-result::-webkit-scrollbar-track {
    background: var(--lightgray-color);
    border-radius: 10px;
}

.desktop-search-result::-webkit-scrollbar-thumb {
    background: var(--blue-color);
    border-radius: 10px;
}

.desktop-search-result::-webkit-scrollbar-thumb:hover {
    background: #3a65fd;
}

.blog-search-result {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    width: calc(100% - 50px);
    top: 95px;
    left: 25px;
}

.desktop-search-result p,
.blog-search-result p {
    font-size: 12px;
    padding-bottom: 10px;
}

.search-products-containers {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.search-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-right: 10px;
}

.search-product-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #515151;
    width: 100%;
}

.search-product-title img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 3px;
}

.search-product-title h3 {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.search-result-box {
    position: relative;
}

.search-label {
    position: absolute;
    left: 0;
    top: 15px;
    padding: 10px 25px;
    background-color: rgba(0, 32, 221, 0.54);
    color: var(--white-color);
}

/*
** Spinner
*/
.loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.cart-item .loader {
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    top: -30px;
    left: -30px;
}

.loading {
    display: inline-block;
    width: 80px;
    height: 80px;
}

.loading:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #446CFD;
    border-color: #446CFD transparent #446CFD transparent;
    animation: loadingAnimation 1.2s linear infinite;
}

@keyframes loadingAnimation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* ------- */
.status-btn {
    width: 300px;
    background-color: var(--white-color);
    border: 1px solid #DADADA;
    color: var(--darkgray-color);
}

.status-btn:hover {
    background-color: var(--darkgray-color);
    color: var(--white-color);
}

.header-headphones.headphones {
    gap: 15px;
}

.header-headphones .headphones-text p {
    font-size: 18px;
    color: var(--darkgray-color);
}

.header-headphones.headphones span {
    color: var(--darkgray-color);
}

.header-headphones .headphones-icon {
    height: 30px;
}

.header-headphones .headphones-icon path {
    fill: var(--darkgray-color);
}

.unique-btn {
    width: 300px;
    background-color: var(--blue-color);
    border: 1px solid var(--blue-color);
}

.unique-btn:hover {
    background-color: var(--darkgray-color);
    color: var(--white-color);
}

/* Lang */
.lang {
    position: relative;
}

.lang-item {
    min-width: 85px;
    height: 65px;
    border: 1px solid #DADADA;
    border-radius: var(--border-radius-3);
    background-color: var(--white-color);
    color: var(--darkgray-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.5s;
}

.lang-item:hover {
    color: var(--blue-color);
    border: 1px solid var(--blue-color);
}

.lang-dropdown {
    display: flex;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-height: 0;
    opacity: 0;
    flex-direction: column;
    align-items: center;
    border: 1px solid #DADADA;
    background-color: var(--white-color);
    color: var(--black-color);
    border-radius: var(--border-radius-1);
    overflow: hidden;
    transition: all 0.5s;
    z-index: 50;
}

.lang-dropdown.active {
    max-height: 140px;
    opacity: 1;
}

.chevron {
    transition: 0.5s;
}

.chevron.active {
    transform: rotate(180deg);
}

.lang-dropdown a {
    width: 100%;
    text-align: center;
    color: var(--darkgray-color);
    padding: 10px 0;
    transition: 0.5s;
}

.lang-dropdown a:hover {
    background-color: var(--blue-color);
    color: var(--white-color);
}

/* ----- */
.navigation-header {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1;
    transition: all 0.4s;
    background-color: var(--white-color);
}

.menu-head {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.menu-head .menu-logo {
    height: 45px;
}

.menu-head h1 {
    font-size: 24px;
}

.menu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

body.open {
    overflow: hidden;
}

.menu ul > li {
    display: inline-block;
}

.menu ul > li > a {
    text-transform: uppercase;
}

.menu .dropdown {
    position: relative;
}

.link-chevron img,
.second-level-chevron img {
    transition: 0.5s;
}

.link-chevron.active img,
.second-level-chevron.active img {
    transform: rotate(180deg);
}

.second-level-chevron {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
}

.menu a {
    color: var(--darkgray-color);
    display: block;
}

.menu li:hover > .submenu {
    opacity: 1;
    transform: none;
    visibility: visible;
    transition: all 0.5s ease;
}

.menu > ul > .dropdown {
    padding: 25px 0;
}

.dropdown-head {
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.upper-link {
    width: 100%;
    position: relative;
}

.upper-link:before {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: var(--blue-color);
    transform: scale(0);
    transform-origin: 50%;
    transition: 0.5s;
}

.upper-link:hover:before {
    transform: scale(1);
}

.dropdown-head:hover .link-chevron img,
.dropdown-head .submenu li:hover .link-chevron img {
    transform: rotate(180deg);
    transition: 0.5s;

}

.middle-link span,
.lower-link span {
    background-image: linear-gradient(hsl(227, 98%, 63%), hsl(0, 0%, 100%));
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.5s ease;
}

.middle-link:hover span,
.lower-link:hover span {
    background-size: 100% 2px;
}

.menu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 500px;
    padding: 15px 0;
    background-color: var(--white-color);
    border-bottom-left-radius: var(--border-radius-1);
    border-bottom-right-radius: var(--border-radius-1);
    z-index: 5;
    align-items: start;
    flex-direction: column;
    transform-origin: top;
    transform: scaleY(0);
    visibility: hidden;
    opacity: 0;
}

.menu .dropdown.active .submenu {
    max-height: 500px;
}

.submenu li {
    width: 100%;
    padding: 6px 0;
    border-bottom: 1px solid var(--lightgray-color);
}

.submenu li:last-child {
    border-bottom: none;
}

.menu .submenu-right {
    left: 100%;
    top: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: var(--border-radius-1);
    border-top-right-radius: var(--border-radius-1);
}

.menu .submenu a {
    padding: 6px 24px;
    text-transform: none;
}

.menu-buttons {
    display: none;
}

.menu-overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.menu-overlay.open {
    display: block;
}

.lines {
    position: relative;
    display: none;
    flex-direction: column;
    align-items: end;
    gap: 12px;
    height: 35px;
    width: 37px;
    z-index: 200;
    cursor: pointer;
    transition: 0.5s;
}

.line {
    width: 100%;
    height: 2px;
    background-color: var(--darkgray-color);
    transition: 0.5s;
}

.lines:hover .line:nth-child(2) {
    width: 40px;
}

.line:nth-child(1) {
    width: 40px;
}

.line:nth-child(2) {
    width: 20px;
}

.line:nth-child(3) {
    width: 40px;
}

/*
** Banner
*/
.banner {
    margin-top: 30px;
}

.bannerSwiper {
    margin-bottom: 30px;
}

.banner-box {
    width: 100%;
    padding: 90px 30px 30px;
    border-radius: var(--border-radius-2);
    background-size: cover;
    color: var(--white-color);
    display: flex;
    justify-content: flex-end;
    height: 60vh !important;
}

.banner-left {
    width: 35%;
    position: absolute;
    top: 90px;
    left: 30px;
    z-index: 20;
    color: var(--white-color);
}

.banner-left p:first-child {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    padding-bottom: 50px;
}

.banner-right {
    width: 60%;
    align-self: end;
}

.banner-right-text {
    padding-bottom: 180px;
}

.banner-right-text h1 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    padding-bottom: 25px;
}

.banner-btns {
    display: flex;
    align-items: center;
    gap: 25px;
}

.banner-btn {
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    gap: 10px;
    font-weight: 400;
    font-size: 12px;
    width: 172px;
    height: 55px;
    border-radius: 5px;
}

.banner-date {
    background-color: rgba(255, 255, 255, 0.75);
    color: var(--darkgray-color);
}

.banner-press {
    background-color: rgba(68, 108, 253, 0.71);
}

.bannerSwiper .swiper-button-next,
.bannerSwiper .swiper-button-prev {
    position: absolute;
    left: auto;
    top: auto;
    min-width: 50px;
    height: 50px;
    background-color: rgba(15, 27, 140, 0.56);
    border: 1px solid rgba(68, 108, 253, 0.60);
    border-radius: var(--border-rounded);
    transition: 0.5s;
    bottom: 30px !important;
}

.bannerSwiper .swiper-button-next:hover,
.bannerSwiper .swiper-button-prev:hover {
    background-color: rgba(68, 108, 253, 0.60);
}

.bannerSwiper .swiper-button-next::after,
.bannerSwiper .swiper-button-prev::after {
    font-size: 16px;
    color: var(--white-color);
}

.bannerSwiper .swiper-button-next {
    right: 30px !important;
}

.bannerSwiper .swiper-button-prev {
    right: 90px !important;
}

.hero-container {
    display: flex;
    gap: 50px;
}

.hero-left {
    position: relative;
    width: 35%;
}

.inner-hero-left {
    position: absolute;
    width: 100%;
    height: 500px;
    padding: 25px;
    background: linear-gradient(#446CFDBF 75%, #446CFDBF 75%);
    border-radius: var(--border-radius-2);
    bottom: 0;
    z-index: 15;
    backdrop-filter: blur(30px);
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.inner-hero-left::after {
    content: '';
    position: absolute;
    top: 80px;
    left: -530px;
    width: 980px;
    height: 890px;
    border-radius: var(--border-rounded);
    background: linear-gradient(#446CFD1A, #15007300);
    z-index: 3;
}

.hero-left-title {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-left-title .hero-chat {
    min-width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color);
    border-radius: var(--border-rounded);
}

.hero-left-title h2 {
    font-size: 24px;
    font-weight: 700;
}

.hero-left-content p {
    font-size: 28px;
}

.hero-left-content p span {
    font-weight: 900;
}

.hero-left-btns {
    position: relative;
    display: flex;
    gap: 5px;
    padding-top: 20px;
    z-index: 5;
}

.hero-left-btn {
    text-transform: uppercase;
    width: 33.33%;
    height: 35px;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    color: var(--darkgray-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-hero-left .apply {
    text-transform: uppercase;
    position: relative;
    z-index: 5;
}

.hero-right {
    width: 65%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.hero-right-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    background-color: var(--white-color);
    padding: 20px;
    border-radius: var(--border-radius-2);
    transition: 0.5s;
}

.acts-box {
    grid-column: span 2;
}

.hero-right-icon {
    min-width: 45px;
    height: 45px;
    border-radius: var(--border-rounded);
    background-color: var(--blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.hero-right-icon svg path {
    transition: 0.5s;
}

.hero-right-box:hover .hero-right-icon .fill path {
    fill: var(--blue-color);
}

.hero-right-box:hover .hero-right-icon .stroke path {
    stroke: var(--blue-color);
    mask: var(--blue-color);
}

.hero-right-text h3 {
    font-size: 18px;
    color: var(--darkgray-color);
    transition: 0.5s;
}

.hero-right-text > img {
    opacity: 0;
    position: absolute;
    right: 15px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.5s;
}

.hero-right-box:hover .hero-right-text > img {
    opacity: 1;
}

.hero-right-box:hover {
    background-color: var(--blue-color);
}

.hero-right-box:hover h3 {
    color: var(--white-color);
}

.hero-right-box:hover .hero-right-icon {
    background-color: var(--white-color);
}


/*
**  Projects
*/
.swiperGeneral .swiper-wrapper,
.swiperGallery .swiper-wrapper {
    margin-bottom: 30px;
}

.title {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.title h2,
.title h1 {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    color: var(--lightGray-color);
}

.title .swiper-button-next,
.title .swiper-button-prev {
    min-width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(5px);
    border-radius: var(--border-rounded);
}

.title .swiper-button-next {
    right: 0;
    transition: 0.5s;
    color: var(--lightGray-color);
}

.title .swiper-button-prev {
    position: absolute;
    right: 65px;
    left: auto;
    transition: 0.5s;
    color: var(--lightGray-color);
}

.title .swiper-button-next:hover,
.title .swiper-button-prev:hover {
    color: var(--white-color);
    background-color: rgba(68, 108, 253, 0.60);
}

.title .swiper-button-next::after,
.title .swiper-button-prev::after {
    font-size: 20px;
    color: var(--blue-color);
    transition: 0.5s;
}

.title .swiper-button-next:hover::after,
.title .swiper-button-prev:hover::after {
    color: var(--white-color);
}

.swiper-box {
    display: flex;
    flex-direction: column;
    color: var(--darkgray-color);
    transition: 0.5s;
}

.swiper-box:hover .swiper-text span::before {
    width: 100%;
}

.swiper-image img {
    width: 100%;
    height: 330px;
    border-radius: var(--border-radius-1);
    object-fit: cover;
}

.swiper-text {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px;
    font-weight: normal;
}

.swiper-text h3 {
    font-size: 20px;
}

.swiper-text span {
    position: relative;
    font-weight: 500;
}

.swiper-text span::before {
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--blue-color);
    transition: 0.5s;
}

.swiper-scrollbar-drag {
    background-color: var(--blue-color);
}

.project-galley-img img {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius-2);
    object-fit: cover;
}

/*
** Service
*/
.service-box {
    position: relative;
    height: 530px;
    border-radius: var(--border-radius-2);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    backdrop-filter: blur(50px);
    overflow: hidden;
    background-color: #446CFD;
}

.service-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 0 25px 60px 25px;
    z-index: 15;
}

.service-box::before {
    position: absolute;
    content: '';
    top: 120px;
    left: -460px;
    width: 900px;
    height: 900px;
    background: linear-gradient(#446CFD80 100%, #15007300 0%);
    border-radius: var(--border-rounded);
    z-index: 10;
    transition: 0.5s ease-in-out;
}

.service-box:hover::before {
    transform: scale(1.7);
}

.service-box::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 370px;
    background: linear-gradient(#446CFD00 0%, #446CFD 100%);
    z-index: 8;
}

.service-icon {
    min-width: 45px;
    min-height: 45px;
    background-color: var(--white-color);
    border-radius: var(--border-rounded);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-icon .fill path {
    fill: var(--blue-color);
}

.service-icon .stroke path {
    stroke: var(--blue-color);
}

.service-box > img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    z-index: 5;
}

.service-box h3 {
    color: var(--white-color);
}


/*
** Counter
*/
.counter {
    margin-top: 100px;
    background-color: var(--white-color);
    padding: 40px 0;
}

.counter .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.number-box {
    font-size: 64px;
    font-weight: 200;
    color: var(--blue-color);
}

.large-num {
    width: 250px;
}

.medium-num {
    width: 220px;
}

.counter-number {
    font-weight: 900;
}

/*
** Projection
*/
.projection .container {
    display: flex;
}

.projection-left {
    position: relative;
    width: 50%;
    background: linear-gradient(#446CFDBF 75%, #446CFDBF 75%);
    color: var(--white-color);
    border-top-left-radius: var(--border-radius-2);
    border-bottom-left-radius: var(--border-radius-2);
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.projection-left::after {
    content: '';
    position: absolute;
    top: 120px;
    left: -400px;
    width: 980px;
    height: 890px;
    border-radius: var(--border-rounded);
    z-index: 3;
    background: linear-gradient(104.55deg, rgba(40, 0, 217, 0.1) 34.7%, rgba(21, 0, 115, 0) 87.27%);
}

.projection-left h2 {
    font-size: 36px;
    font-weight: 700;
    padding-bottom: 40px;
}

.projection-text > p {
    width: 460px;
    font-size: 28px;
    padding-bottom: 25px;
}

.projection-text > p span {
    font-weight: 900;
}

.projection-numbers {
    display: flex;
    gap: 50px;
    padding-bottom: 70px;
}

.projection-numbers .number-box {
    color: var(--white-color);
}

.projection-left .more {
    width: 400px;
    z-index: 5;
}

.swiperProjection {
    width: 50%;
    border-top-right-radius: var(--border-radius-2);
    border-bottom-right-radius: var(--border-radius-2);
}

.projection-box {
    position: relative;
}

.projection-box::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border-top-right-radius: var(--border-radius-2);
    border-bottom-right-radius: var(--border-radius-2);
}

.projection-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiperProjection .swiper-pagination-bullets,
.swiperProjection .swiper-pagination-horizontal {
    position: absolute;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    z-index: 20;
    padding: 0 25px 15px;
}

.swiperProjection .swiper-pagination-bullet {
    width: 100%;
    border-radius: 10px;
    height: 2px;
    background-color: var(--white-color);
    opacity: 1;
    transition: 0.5s ease;
}

.swiperProjection .swiper-pagination-bullet-active {
    background-color: rgba(0, 32, 221, 0.54);
}

/*
** About us
*/
.about-us-image {
    width: 50%;
    position: relative;
    height: 600px;
    border-top-right-radius: var(--border-radius-2);
    border-bottom-right-radius: var(--border-radius-2);
    overflow: hidden;
}

.about-us-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us-image::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border-top-right-radius: var(--border-radius-2);
    border-bottom-right-radius: var(--border-radius-2);
}

.about-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.about-logo img {
    width: 280px;
}

/*
** All services
*/
.all-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-3 {
    position: static;
    grid-row: span 3 / span 3;
}

.headphones-btn {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--blue-color);
    border-radius: var(--border-radius-2);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.headphones-btn:hover {
    background-color: var(--darkgray-color);
}

.headphones-btn img {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.headphones-btn h3 {
    font-size: 20px;
    color: var(--white-color);
}

.all-services-grid .hero-right-text > img {
    bottom: 50px;
}

/* Service page */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.services-page-grid .inner-hero-left {
    position: static;
    height: auto;
}

/*
** Subscription
*/
.subscription-inner {
    position: relative;
    background: linear-gradient(#446CFDBF 75%, #446CFDBF 75%);
    color: var(--white-color);
    border-radius: var(--border-radius-2);
    padding: 40px 40px 70px;
    display: flex;
    gap: 50px;
    justify-content: space-between;
    overflow: hidden;
}

.subscription-inner::after {
    content: '';
    position: absolute;
    top: 80px;
    left: -400px;
    width: 980px;
    height: 890px;
    border-radius: var(--border-rounded);
    z-index: 3;
    background: linear-gradient(104.55deg, rgba(40, 0, 217, 0.1) 34.7%, rgba(21, 0, 115, 0) 87.27%);
}

.subscription-inner .titles {
    width: 50%;
}

.subscription-inner .titles h1 {
    font-size: 36px;
    padding-bottom: 25px;
}

.subscription-inner .titles p {
    width: 460px;
    font-size: 24px;
}

.subscription-inner .titles p span {
    font-weight: 900;
}

.subscription-form {
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 5;
}

.subscription-form p {
    font-size: 28px;
    font-weight: 900;
}

.subscription-inputs {
    display: flex;
    gap: 30px;
}

.subscription-inputs input,
.subscription-inputs textarea {
    width: 100%;
    padding: 20px 10px;
    border: none;
    outline: none;
    border-radius: 5px;
}

.subscription-inputs textarea {
    resize: none;
    height: 145px;
}

.subscription-inputs input::placeholder,
.subscription-inputs textarea::placeholder {
    color: var(--darkgray-color);
    font-family: "Onest", sans-serif;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

.checkbox {
    display: flex;
    width: 100%;
    align-self: center;
}

.control {
    width: 100%;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px;
}

.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    left: 0;
    bottom: 0;
}

.control_indicator {
    position: absolute;
    top: -2px;
    left: 0;
    height: 23px;
    width: 23px;
    border-radius: var(--border-rounded);
    background-color: var(--white-color);
}

.control_indicator:after {
    content: '';
    position: absolute;
    display: none;
}

.control input:checked ~ .control_indicator:after {
    display: block;
}

.control-checkbox .control_indicator:after {
    top: -0.55px;
    height: 25px;
    width: 25px;
    border-radius: var(--border-rounded);
    background-color: var(--darkgray-color);
}

.checkbox a {
    color: var(--white-color);
    text-decoration: underline;
}

.subscription-btn {
    width: 330px;
    text-transform: uppercase;
}


/*
** Partners
*/
.swiperPartners .swiper-scrollbar-drag,
.swiperPartners .swiper-scrollbar {
    background-color: transparent;
}

/*
** About text
*/
.about-text .container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-text a {
    color: var(--blue-color);
}

/*
** Footer
*/
footer {
    margin-top: 100px;
    background-color: #444444;
    background-color: var(--darkgray-color);
}

.logo-section {
    border-bottom: 1px solid var(--white-color);
    padding: 25px 0;
}

.logo-section .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.footer-logo img {
    height: 50px;
}

.footer-socials {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-rounded);
    width: 36px;
    height: 36px;
    background-color: var(--white-color);
    transition: 0.5s;
}

.footer-socials a svg {
    height: 20px;
}

.footer-socials a svg path {
    height: 20px;
    fill: #444;
    transition: 0.5s;
}

.footer-socials a:hover {
    background-color: var(--blue-color);
}

.footer-socials a:hover svg path {
    fill: var(--white-color);
}

.headphones {
    justify-self: end;
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
}

.headphones:hover p {
    color: var(--blue-color);
}

.headphones-text p {
    font-size: 24px;
    color: var(--white-color);
    transition: .5s;
}

.headphones span {
    color: var(--white-color);
    padding-top: 10px;
}

.head-appear {
    display: none;
}

.footer-navigation {
    padding: 25px 0 40px;
    background-color: #444444;
    border-bottom: 1px solid var(--white-color);
}

.footer-navigation .container {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.links-box {
    max-width: 550px;
}

.links-box > a,
.links-box > h3 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    color: var(--white-color);
    padding-bottom: 25px;
    transition: .5s;
}

.links-box ul {
    padding: 0;
    margin: 0;
}

.links-box ul li {
    padding: 10px 0;
}

.links-box ul a,
.copy-section a {
    color: var(--white-color);
    transition: .5s;
}

.links-box a:hover,
.copy-section a:hover,
.nav-section nav a:hover {
    color: var(--blue-color);
}

.nav-section {
    background-color: #444;
    border-bottom: 1px solid var(--white-color);
    padding: 25px 0;
}

.nav-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-section nav {
    display: flex;
    align-items: center;
    gap: 100px;
}

.nav-section nav a {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--white-color);
    transition: 0.5s;
}

.footer-nav-btns {
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-nav-btns .btn {
    width: 300px;
    text-transform: uppercase;
}

.footer-stat {
    background-color: var(--white-color);
    color: var(--darkgray-color);
}

.footer-stat:hover {
    background-color: var(--blue-color);
    border: 1px solid var(--white-color);
    color: var(--white-color);
}

.footer-unique {
    background-color: var(--blue-color);
    border: 1px solid var(--white-color);
}

.footer-unique:hover {
    background-color: var(--white-color);
    color: var(--darkgray-color);
    border: 1px solid var(--blue-color);
}

.copy-section {
    background-color: #484747;
    padding: 25px 0;
}

.copy-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white-color);
}

.policy-block {
    display: flex;
    gap: 25px;
}

/*
** Breadcrumbs
*/
.breadcrumbs {
    padding: 30px 0;
}

.breadcrumbs .prev-link {
    font-size: 14px;
    color: #7A7A7A;
    transition: .5s;
}

.breadcrumbs .prev-link span {
    transition: .5s;
}

.breadcrumbs .prev-link:hover span {
    color: var(--blue-color);
}

.breadcrumbs .current-link {
    font-size: 14px;
    color: var(--blue-color);
}


/*
** Features
*/
.features-container .about-us-image::after {
    border-radius: var(--border-radius-2);
}

.features-container .about-us-image {
    height: auto;
}

.features-container .about-us-image > img {
    border-radius: var(--border-radius-2);
}

.features-container {
    display: flex;
    gap: 25px;
}

.features-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    gap: 25px;
}

.feature-text {
    font-size: 20px;
}

.feature-text span,
.feature-text strong {
    font-weight: 900;
    color: var(--blue-color);
}

.feature-boxes {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-box {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: var(--border-radius-2);
}

.feature-box h2 {
    font-size: 24px;
    padding-bottom: 10px;
}

.features-two {
    align-items: center;
}

.features-two .about-us-image::after {
    content: none;
}

.features-paraghraphs {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 20px;
    padding-left: 15px;
}

.features-paraghraphs a {
    color: var(--blue-color);
    text-decoration: underline;
}

.features-list h2 {
    font-size: 24px;
    padding-bottom: 15px;
}

.features-list ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 30px;
}

.features-list ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
}

.features-list .btn {
    width: 400px;
}

/*
** Objectives
*/
.objective-box {
    background-color: var(--white-color);
    border-radius: var(--border-radius-2);
    height: 360px;
    padding: 30px 30px 65px;
}

.objective-box p {
    padding-top: 30px;
    font-size: 22px;
}

.objective-box p span {
    font-weight: 900;
    color: var(--blue-color);
}

/*
** About boxes
*/
.about-boxes .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-box {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 20px;
    font-weight: 700;
    background-color: var(--white-color);
    border-radius: var(--border-radius-2);
    transition: 0.5s;
}

.about-box p {
    color: var(--darkgray-color);
    transition: 0.5s;
}

.about-box .about-box-icon svg path {
    transition: 0.5s;
}

.about-box:hover {
    background-color: var(--blue-color);
}

.about-box:hover .about-box-icon .fill path {
    fill: var(--white-color);
}

.about-box:hover .about-box-icon .stroke path {
    stroke: var(--white-color);
}

.about-box:hover p {
    color: var(--white-color);

}

/*
** Team
*/
.team-page .about-us-image::after {
    content: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 25px;
    row-gap: 50px;
}

.member-img {
    border-radius: var(--border-radius-1);
    height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.member-content h2 {
    padding: 20px 0 15px;
    font-size: 32px;
    font-weight: 700;
}

.member-content p {
    padding-bottom: 15px;
}

.member-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.member-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.member-contact {
    color: var(--darkgray-color);
    transition: 0.5s;
}

.member-contact svg path {
    transition: 0.5s;
}

.member-contact:hover {
    color: var(--blue-color);
}

.member-contact:hover svg path {
    fill: var(--blue-color);
}

/*
** Organigram
*/
.organigram-container img {
    width: 100%;
    border-radius: var(--border-radius-2);
}

/*
** Partners page
*/
.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.partner-box img {
    width: 100%;
    height: 56px;
}


/*
** Attestation page
*/
.attestation-page .about-us-image {
    overflow: visible;
}

.attestation-page .feat-img {
    height: 560px;
    width: 100%;
    border-radius: var(--border-radius-2);
}

.lab-content {
    justify-content: start;
    gap: 110px;
}

/* categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category {
    background-color: var(--white-color);
    border-radius: var(--border-radius-2);
    color: var(--darkgray-color);
    padding: 30px 25px;
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.5s ease-in-out;
}

.category .category-check {
    min-width: 55px;
}

.direction-icon {
    height: 50px;
    width: 50px;
    margin-left: 30px;
}

.pdf-box:hover {
    background-color: var(--blue-color);
    color: var(--white-color);
}

.pdf-box svg,
.pdf-icon {
    width: 45px;
    height: 45px;
}

.pdf-box svg path {
    transition: 0.5s ease-in-out;
}

.pdf-box:hover svg path {
    fill: var(--white-color);
}
.pdf-box {
    position: relative;
}

.pdf-box .hover-icon {
    display: none;
}

.pdf-box:hover .default-icon {
    display: none;
}

.pdf-box:hover .hover-icon {
    display: block;
}


/* conditions */
.conditions-pluses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.plus-block {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-bottom: 15px;
}

.plus-block h3 {
    font-size: 20px;
    font-weight: 700;
}

.condition {
    padding: 20px 0;
}

.important {
    color: #FF6F6F;
}

.blue {
    color: var(--blue-color);
}

/* documents */
.document-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--blue-color);
}

.document-text a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-color);
    font-size: 16px;
    font-weight: 400;
    padding-top: 15px;
}

.document-text a span {
    text-decoration: underline;
}

.document-text p:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    padding-top: 10px;
}

/* application form */
.application-form {
    background-color: rgba(68, 108, 253, 0.75);
    border-radius: var(--border-radius-2);
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    color: var(--white-color);
}

.form-box h3 {
    font-size: 16px;
    padding-bottom: 10px;
}

.drop-files {
    position: relative;
    color: #7A7A7A;
}

input#file {
    display: inline-block;
    width: 100%;
    height: 300px;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: var(--white-color);
    border-radius: var(--border-radius-1);
    cursor: pointer;
    color: transparent;
}

.drop-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    pointer-events: none;
}

::-webkit-file-upload-button {
    display: none;
}

.uploaded-files-display {
    position: absolute;
    left: 0;
    bottom: 0;
    border: none;
    border-bottom-right-radius: var(--border-radius-1);
    border-bottom-left-radius: var(--border-radius-1);
    padding: 10px;
    font-size: 14px;
    color: #333;
    background: #fff;
    width: 100%;
    cursor: not-allowed;
}

.form-contacts {
    padding-top: 30px;
}

.form-contact-box {
    height: 120px;
    background: var(--blue-color);
    border-radius: var(--border-radius-2);
    border: 1px solid var(--blue-color);
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px;
    transition: 0.5s;
}

.form-contact-icon svg {
    height: 50px;
    width: 50px;
}

.form-contact-icon svg path {
    fill: var(--white-color);
    transition: 0.5s;
}

.form-contact-box span {
    color: var(--white-color);
    word-break: break-all;
    transition: 0.5s;
}

.form-contact-box:hover {
    background-color: var(--white-color);
}

.form-contact-box:hover svg path {
    fill: var(--blue-color);
}

.form-contact-box:hover span {
    color: var(--blue-color);
}

.suspended {
    background-color: #FF6F6F;
    color: var(--white-color);
}

.suspended svg path {
    fill: var(--white-color);
}

/* Laborator */
.feature-bottom {
    width: 100%;
    display: flex;
    gap: 25px;
    padding-top: 20px;
}

.feature-bottom .category {
    width: 100%;
    gap: 15px;
}

.mobile-lab:after {
    content: none;
}

.lab-proj .projection-left,
.features-instructions {
    justify-content: start;
    gap: 60px;
}

.lab-proj .projection-left h2 {
    padding: 0;
}

/* Materials */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.materials-grid .category {
    position: relative;
    gap: 25px;
    padding: 0;
    height: 110px;
    padding: 10px 15px;
    cursor: pointer;
}

.materials-grid .category .material-image img {
    height: 80px;
}

.category-box .category-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 100%;
    max-height: 0;
    border-radius: var(--border-radius-2);
    background-color: var(--white-color);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    z-index: 5;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(.9, 0, .3, .9);
}

.category-box .category-dropdown.active {
    max-height: 500px;
    transition: max-height .5s cubic-bezier(.9, 0, .3, .9);
}

.category-dropdown li a {
    padding: 10px 20px;
}

.category-dropdown li:first-child a {
    padding-top: 20px;
}

.category-dropdown li:last-child a {
    padding-bottom: 20px;
}

.material-chevron {
    position: absolute;
    width: 20px;
    right: 15px;
    top: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.material-chevron.active {
    transform: rotate(180deg);
}

/* Directions */
.directions-grid .pdf-box {
    padding: 30px 25px;
    font-size: 20px;
}

/* Instructions */
.course-objective-box {
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 15px;
}


.course-number {
    display: flex;
    align-items: center;
    gap: 15px;
}

.course-nr-circle {
    width: 50px;
    height: 50px;
    border-radius: var(--border-rounded);
    background-color: var(--blue-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.course-objective-box p {
    font-size: 20px !important;
    font-weight: 400;
    line-height: 1.39;
    padding: 0;
}


.course-image {
    position: relative;
    height: 480px;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: var(--border-radius-2);
    border-top-right-radius: var(--border-radius-2);
}

.course-price {
    position: absolute;
    left: 15px;
    bottom: 15px;
    padding: 10px 25px;
    font-weight: 700;
    color: var(--blue-color);
    background-color: var(--white-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-content {
    height: 155px;
    width: 100%;
    border-bottom-left-radius: var(--border-radius-2);
    border-bottom-right-radius: var(--border-radius-2);
    background-color: var(--white-color);
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.5s ease;
}

.course-text h3 {
    font-size: 20px;
    padding-bottom: 15px;
    color: #484747;
    transition: 0.5s ease;
}

.course-text p {
    font-size: 14px;
    color: #7A7A7A;
    transition: 0.5s ease;
}

.see-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #7A7A7A;
    transition: 0.5s ease;
}

.see-details svg path {
    transition: 0.5s ease;
}

.course-box:hover .course-content {
    background-color: var(--blue-color);
}

.course-box:hover .course-text h3,
.course-box:hover .course-text p,
.course-box:hover .see-details {
    color: var(--white-color);
}

.course-box:hover .see-details svg path {
    fill: var(--white-color);
}

.dorm-left {
    gap: 25px;
}

.dorm-title {
    padding-bottom: 0 !important;
}

.projection-checks {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 20;
}

.projection-check {
    display: flex;
    gap: 25px;
}

.projection-check svg {
    min-width: 35px;
    height: 35px;
}

.projection-check svg path {
    fill: var(--white-color);
}

.projection-check p {
    font-size: 28px;
}

.projection-check p span {
    font-weight: 700;
}

.disponibility {
    position: relative;
    font-size: 24px;
    z-index: 20;
}

.disponibility a {
    color: var(--white-color);
    font-weight: 700;
    transition: 0.5s;
}

.disponibility:hover a {
    color: #ff6F6F;
}

/* Course detail */
.cours-detail-content .job-text-box {
    width: 67%;
    display: flex;
    flex-direction: column;
}

.cours-detail-content .job-text-box img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-top-left-radius: var(--border-radius-2);
    border-top-right-radius: var(--border-radius-2);
}

.job-text-box .job-text {
    width: 100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.cours-detail-content .job-cv {
    width: 33%;
}

.cours-details {
    background-color: var(--white-color);
    border-radius: var(--border-radius-2);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cours-details h2 {
    font-size: 20px;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.cours-detail {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cours-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cours-icon span {
    font-weight: 600;
}

.cours-detail-price {
    font-size: 48px;
    padding-top: 15px;
    font-weight: 900;
    color: var(--blue-color);
}

.cours-detail-price span {
    font-size: 24px;
}

.apply-now {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.apply-now:hover {
    color: var(--blue-color);
}

.cours-detail-page .categories-grid {
    padding-top: 90px;
}

/* POP UP MODAL */
.custom-model {
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    outline: 0;
    opacity: 0;
    transition: opacity 0.15s linear;
    z-index: -1;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-open {
    z-index: 9999;
    opacity: 1;
    overflow: hidden;
}

.custom-inner {
    transform: translate(0, -25%);
    transition: transform 0.5s ease-out;
}

.model-open .custom-inner {
    transform: translate(0, 0);
    position: relative;
    z-index: 999;
}

body.model-open {
    overflow: hidden;
}

.model-open .bg-overlay {
    background: rgba(0, 0, 0, 0.80);
    z-index: 99;
}

.bg-overlay {
    background: rgba(0, 0, 0, 0);
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: background 0.15s linear;
}

.close-btn {
    position: absolute;
    right: 25px;
    top: 25px;
    cursor: pointer;
    z-index: 99;
    font-size: 30px;
    color: var(--green-color);
}

.custom-inner .about-us-image {
    height: auto;
}

/* Register */
.register-years {
    position: relative;
    width: 250px;
    margin-bottom: 25px;
}

.register-years .category {
    padding: 25px;
    border-radius: 15px;
    cursor: pointer;
}

.register-years .category-dropdown li {
    cursor: pointer;
}

.register-years .category-dropdown li a {
    display: block;
    width: 100%;
    color: var(--darkgray-color);
    transition: 0.3s;
}

.register-years .material-chevron {
    width: 15px;
}

.register-years .category-dropdown li a:hover {
    background-color: var(--blue-color);
    color: var(--white-color);
}

/* Design service */
.design-category {
    flex-direction: column;
    align-items: start;
    gap: 0;
}

.design-category-top {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-bottom: 25px;
}

.design-category-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 25px;
}

.design-category-bottom li {
    list-style: disc;
    font-size: 16px;
    font-weight: 400;
}

/* Ghiseu */
.ghiseu-text {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/*
** Blog page
*/
.blog-page .container {
    display: flex;
    /*gap: 40px;*/
}

.blog-page .left-side {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-right: 60px;
}

.blog-title,
.project-title {
    padding-top: 30px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.serach-form {
    position: relative;
    padding: 25px;
    width: 100%;
    background-color: var(--white-color);
    border-radius: var(--border-radius-1);
}

.serach-form input {
    width: 100%;
    outline: none;
    border: none;
    padding: 25px;
    background-color: #F1F2F1;
    border-radius: var(--border-radius-1);
}

.serach-form input::placeholder {
    color: var(--darkgray-color);
}

.serach-form button {
    position: absolute;
    top: 25px;
    right: 25px;
    min-width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--blue-color);
    border-radius: var(--border-radius-1);
    outline: none;
    border: none;
    cursor: pointer;
    transition: 0.5s;
}

.serach-form button:hover {
    background-color: var(--darkgray-color);
}

.left-blog {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 10px;
}

.left-blog h3 {
    padding-bottom: 25px;
}

.left-blog-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 15px 0;
    color: var(--darkgray-color);
    border-top: 1px solid #F1F2F1;
    transition: 0.5s;
}

.left-blog-box.active {
    color: var(--blue-color);
}

.left-blog-box.active path {
    fill: var(--blue-color)
}

.left-blog-box path {
    transition: 0.5s;
}

.left-blog-box:hover {
    color: var(--blue-color);
}

.left-blog-box:hover path {
    fill: var(--blue-color);
}

.blog-page .right-side {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.search-appaer {
    display: none;
}

/* pagination */
.pagination {
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-link {
    width: 40px;
    height: 40px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lightGray-color);
    border-radius: 10px;
    transition: 0.5s ease;
    border: none;
}

.page-item.active .page-link {
    color: var(--white-color);
    background-color: var(--blue-color);
    border-radius: 10px;
    border: 1px solid var(--blue-color);
    font-weight: 600;
}

.page-item.disabled {
    display: none;
}

.page-link:hover {
    background-color: var(--blue-color);
    color: var(--white-color);
}

.page-link:focus {
    outline: none !important;
    border: 1px solid transparent;
    background-color: transparent;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    font-size: 24px;
    border: 1px solid transparent;
    background-color: transparent;
    border-radius: 10px;
}

.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
    border: 1px solid var(--blue-color);
    color: var(--white-color);
    background-color: var(--blue-color);
}

.share {
    padding: 50px 0 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.share a {
    min-width: 60px;
    height: 60px;
    border-radius: 5px;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.share a:hover {
    background-color: var(--blue-color);
}

.share a path {
    transition: .5s;
    fill: var(--blue-color);
}

.share a:hover path {
    fill: var(--white-color);
}

/* Contact page */
.contacts-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
}

.contacts-top-left {
    width: 50%;
    display: flex;
    gap: 25px;
}

.contacts-top-left .form-contact-box {
    width: 100%;
}

.contacts-top-right {
    width: calc(50% - 25px);
}

.contact-hero {
    display: flex;
}

.contact-hero .projection-left {
    justify-content: start;
}

.contact-hero .projection-left h2 {
    padding-bottom: 25px;
}

.contact-hero .projection-left::after {
    content: none;
}

.contact-hero .contact_form {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
}

.contact-hero .subscription-inputs {
    flex-direction: column;
}

#map {
    width: 50%;
    height: 730px;
    background-color: var(--white-color);
    border-top-right-radius: var(--border-radius-2);
    border-bottom-right-radius: var(--border-radius-2);
}

.gm-style .gm-style-iw-c,
.gm-style .gm-style-iw-tc {
    left: -500px;
}

.table-container h2 {
    padding-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.contacts-tables {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 30px;
}

.contcats-tables:last-of-type {
    padding-bottom: 0;
}

.person-table {
    width: 100%;
    display: flex;
    background-color: var(--white-color);
    border-radius: var(--border-radius-2);
}

.table-box {
    width: 240px;
    display: flex;
    gap: 15px;
    flex-direction: column;
    padding: 10px 25px 25px;
    border-right: 1px solid #f4f4f4;
}

.table-box span {
    font-size: 12px;
}

.table-box:first-of-type {
    width: 270px;
}

.table-box:first-of-type p {
    font-weight: 700;
}

.table-box:last-of-type {
    width: 400px;
    border-right: none;
}

.box-with-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--darkgray-color);
    transition: 0.5s;
    word-break: break-all;
}

.box-with-icon:hover {
    color: var(--blue-color);
}

/*
** Jobs
*/
.jobs-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.job-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 25px 40px;
    border-radius: 20px;
    gap: 25px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.job-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.job-left h2 {
    font-size: 20px;
}

.job-box .btn {
    min-width: 400px;
}

.job-content {
    display: flex;
    gap: 25px;
}

.job-text {
    width: 70%;
    background-color: #fff;
    border-radius: var(--border-radius-2);
    padding: 25px;
}

.job-text ul,
.job-text ol {
    padding-left: 25px;
}

.job-text ul li,
.job-text ol li {
    list-style: disc;
    padding-bottom: 5px;
}

.job-cv {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.job-cv .projection-left {
    width: 100%;
    border-radius: var(--border-radius-2);
    padding: 25px;
}

.job-cv .projection-left h2 {
    font-size: 24px;
}

.job-cv .projection-left .btn {
    width: 100%;
    padding: 10px 15px;
}

.job-cv .projection-left::after {
    top: 70px;
}

/*
** Procurement
*/
.procurement-box .job-left {
    align-items: start;
}

.procurement-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.publish-date {
    font-weight: 500;
    color: #7A7A7A;
}

.procurement-text p {
    font-weight: 500;
    padding: 15px 0;
}

.procurement-text .btn {
    width: 400px;
}

.procurement-documents {
    padding-top: 30px;
}

.procurement-documents .pdf-box {
    border: 1px solid var(--blue-color);
}

.procurement-date {
    flex-direction: column;
    align-items: start;
    gap: 10px;
    color: var(--white-color);
    background-color: #FF6F6F;
    border: 1px solid #FF6F6F;
}

.procurement-date:hover {
    background-color: #FF6F6F;
    color: var(--white-color);
}

.procurement-date:hover span {
    color: var(--white-color);
}

.procurement-date span {
    font-size: 14px;
}

.procurement-date p {
    font-weight: 500;
}

/*
** Anticoruption
*/
.anticoruption-top {
    flex-direction: row-reverse;
    gap: 25px;
}

.anticoruption-top .contacts-top-left {
    width: calc(50% - 25px);
}

.anticoruption-top .contacts-top-right {
    width: 50%;
    background-color: #FF6F6F;
    border: 1px solid #ff6F6F;
    font-size: 32px;
    font-weight: 700;
}

.anticoruption-top .contacts-top-right:hover span {
    color: var(--white-color);
}

.anticoruption-hero {
    flex-direction: row-reverse;
}

.anticoruption-hero .projection-left {
    border-radius: 0;
    border-top-right-radius: var(--border-radius-2);
    border-bottom-right-radius: var(--border-radius-2);
}

.anticoruption-hero .text {
    width: 50%;
    padding: 40px;
    color: var(--white-color);
    background-color: #ff6F6F;
    border-top-left-radius: var(--border-radius-2);
    border-bottom-left-radius: var(--border-radius-2);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.report-container .job-left h2 {
    font-size: 16px;
}


.legal-content {
    flex-direction: column;
}

.legal-content .job-text {
    width: 100%;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 25px;
    color: var(--black-color);
}


/*
** Auth page
*/
.auth-page {
    padding-top: 100px;
    padding-bottom: 100px;
    width: 100%;
    min-height: 100vh;
}

.auth-page .row {
    display: flex;
    justify-content: center;
}

.auth-form {
    width: 450px;
    background-color: #fff;
    padding: 30px 55px;
    border: 1px solid #ebebeb;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .375);
}

.auth-form .logo {
    margin-bottom: 25px;
}

.auth-form .logo img {
    width: 140px;
}

.auth-form h4 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #141414;
}

.auth-form .auth-field {
    width: 100%;
    position: relative;
    display: flex;
}

.auth-form .auth-field input {
    width: 100%;
    margin: 20px 0;
    height: 50px;
    border-radius: 35px;
    border: 1px solid #141414;
    padding-left: 65px;
}

.auth-form .auth-field span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
}

.auth-form .auth-field span img {
    width: 25px;
}

.auth-form .auth-action button {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 20px;
    margin-top: 15px;
    background-color: var(--blue-color);
    border-color: var(--blue-color);
    border: 1px solid var(--blue-color);
    color: #141414;
    transition: 0.5s;
}

.auth-form .auth-action button:hover {
    background-color: transparent;
    border: 1px solid var(--blue-color);
}

.auth-form .auth-forgot a {
    color: #141414;
    text-decoration: none;
    border-bottom: 1px solid #141414;
    font-weight: 500;
}

.auth-page ul li {
    text-align: left;
}

.register-field {
    margin-top: 15px;
    display: flex;
    justify-content: end;
}

.register-field h6 {
    text-align: center;
    font-weight: 100;
}

.register-field h6 a {
    color: #141414;
    font-weight: 700;
}

.auth-check-forgot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.auth-check-forgot .form-check {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.auth-field-checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.auth-field-checkbox label {
    margin-top: 2px;
}

.auth-field-checkbox a {
    border-bottom: 1px solid #141414;
}

.auth-form .auth-field input[type="checkbox"] {
    margin: 0;
    height: 15px;
    width: 15px;
    border-radius: 5px;
    border: 1px solid #141414;
    padding-left: 0;
    margin-right: 10px;
}

.auth-form .auth-field input[type="checkbox"]:checked {
    background-color: var(--blue-color) !important;
    border-color: var(--blue-color) !important;
}

.auth-form .auth-field label {
    text-align: left;
    line-height: 1;
}

.swal2-actions button {
    box-shadow: 0 0 0 transparent !important;
}

.policy-container {
    width: 100%;
}

.policy-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}


/* Cookies */
#cookieConsent {
    background-color: rgba(255, 255, 255, 1);
    min-height: 26px;
    font-size: 14px;
    color: var(--darkgray-color);
    padding: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 9999;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.2);
    gap: 100px;
}

.cookie-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#cookieConsent a {
    color: #446cfdbf;
    text-decoration: none;
    font-weight: bold;
    transition: 0.5s ease-in-out;
}

#cookieConsent a:hover {
    color: #446cfdbf;
}

#cookieConsent a.cookieConsentOK {
    color: white;
    height: 40px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    max-width: 120px;
}

#cookieConsent a:hover.cookieConsentOK {
    color: #446cfdbf;
    border-color: #446cfd;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    max-width: 120px;
}


/* FLOATING CHAT */
.floating-chat {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 50px;
    border-radius: var(--border-rounded);
    /*background-color: var(--red-color);*/
    z-index: 9999;
    transition: bottom 0.2s ease;
}

.floating-chat img {
    min-width: 60px;
    width: 60px;
    height: 60px;
}

.floating-chat.down {
    bottom: 170px;
}

@media (max-width: 767px) {
    .floating-chat {
        right: 20px;
    }

}

.act-note{
    padding-top: 2rem;
}
@media (max-width: 1480px) and (min-width: 1201px) {
    .banner-box {
        height: 60vh !important;
    }
    .banner-right-text h1{
        font-size:35px!important;
    }
    .banner-right-text{
        padding-bottom: 150px;

    }
}
@media (max-width: 1200px) and (min-width: 991px) {
    .banner-box {
        height: 65vh !important;
    }
    .banner-right-text h1{
        font-size:35px!important;
    }
    .banner-right-text{
        padding-bottom: 60px;

    }
}

.swiper-navigation-icon{
    display: none;
}
