/*image overlay*/
.image-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    background: linear-gradient(to top, #090D1710, #000);
    top: 0;
    left: 0;
}

.image-overlay div {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    background: #0445DA60;
    top: 0;
    left: 0;
}

.image-overlay .dark {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    background: linear-gradient(to bottom, #ffffff00, #0000008c);
    top: 0;
    left: 0;
}

.bg-theme-color {
    background: var(--theme-color);
}

/*buttons*/
.theme-btn {
    background: var(--theme-color);
    color: #fff;
    padding: 11px 16px;
    font-weight: 600;
    border-radius: 8px;
    font-size: 16px;
    transition: 300ms;
}

.theme-btn:hover {
    background: var(--accent-color);
    color: #fff;
}

.theme-btn.no-hover {
    background: var(--theme-color);
    color: #fff;
}

.white-bg-btn {
    background: #fff;
    color: #000 !important;
    font-weight: 700;
}

.white-bg-btn.btn-gray {
    color: #4F4F4F !important;
}

.white-bg-btn:hover {
    background: var(--theme-color);
    color: #fff !important;
}

.padding-btn {
    padding: 11px 26px;
}

.text-black-1 {
    color: #1D1D1D;
}


.view-all h3 {
    color: #fff;
    width: max-content;
    font-weight: 600;
    margin-bottom: 0;
    margin-right: 17px;
    font-size: calc(32px * var(--scale));
}

.view-all img {
    height: calc(50px * var(--scale));
    width: calc(50px * var(--scale));
    transition: 200ms;
}

@media screen and (max-width: 597px) {
    .view-all h3 {
        display: none;
    }

    .view-all img {
        height: calc(40px * var(--scale));
        width: calc(40px * var(--scale));

    }
}

@media screen and (min-width: 597px) {
    .view-all:hover img {
        transform: translateX(7px);
    }
}

.inline-linkedin {
    background: var(--theme-color);
    border-radius: 10px;
    margin-left: 7px;
    transform: translateY(-1px);
}

.theme-btn:has(.inline-linkedin) {
    padding: 10px 30px 10px 32px;
}

.theme-btn:has(.inline-linkedin):hover {
    opacity: 0.9;
}

@media screen and (max-width: 597px) {
    .inline-linkedin {
        height: 26px;
        width: 26px;
    }
}

/*carousel nav*/
.floating-nav {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    cursor: pointer;
}

.floating-nav.center-arrow-right {
    transform: translate(-50%, -50%) rotate(180deg);
}

@media screen and (max-width: 597px) {
    .floating-nav {
        z-index: 5;
        height: 27px;
    }
}

/*forms*/
@media screen and (min-width: 1150px) {
    #contactForm {
        padding-left: 16%;
    }
}

.input-group input, .input-group textarea, .input-group select {
    background: transparent;
    font-size: 15px;
    color: #000;
    padding: 7px 10px;
    width: 100%;
    font-weight: 500;
    border: 1px solid #CCCBCB;
    outline: unset;
    transition: 300ms;
    border-radius: 10px !important;
}

.input-group input:focus {
    border: 1px solid var(--theme-color);
}

.input-group input.error {
    border: 2px solid #c10000;
    color: #c10000;
}

.input-group input.error::placeholder {
    color: #c10000;
}

.input-group .fa-times {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translate(-50%, -50%);
    color: #c10000;
    display: none;
}

.input-group .fa-times.active {
    display: block;
}

.input-group textarea {
    min-height: 140px;
}

.placeholder {
    color: #959595;
}

.placeholder.active {
    color: #383838;
}


input[type=checkbox] {
    width: fit-content;
}

.input-group input::placeholder, .input-group textarea::placeholder, .placeholder {
    font-weight: 500;
}

.input-group label {
    font-weight: 600;
    color: var(--theme-color);
    font-size: 14px;
    margin-bottom: 6px;
}

.input-group span.error {
    margin-left: 19px !important;
    margin-top: 4px;
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
}

.text-gray {
    color: #4F4F4F;
}

.input-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: start;
    font-weight: 500;
    width: 100%;
    position: relative;
}

/*@media screen and (max-width: 850px) {*/
/*    .input-group {*/
/*        width: fit-content;*/
/*    }*/
/*}*/

/*carousels*/
.owl-theme .owl-dots .owl-dot span {
    height: calc(15px * var(--scale));
    width: calc(15px * var(--scale));
    background: #020056;
    opacity: .4;
    transition: 300ms;
    margin: 0 4px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary-color);
    opacity: 1;
    transform: scale(1.15);
}

.home-slider .owl-dots {
    margin-top: 16px !important;
}

.error {
    color: red;
}

/*back to top*/
.back-to-top {
    width: 45px;
    height: 45px;
    background: #FFFFFF33;
    border-radius: 50%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 300ms;
    margin-bottom: 40px;
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-8px);
}

.back-to-top img {
    transition: 300ms;
    border-radius: unset;
}

.f-22 {
    font-size: 22px;
}

.bg-0 {
    background: unset;
}

.p-150 {
    padding: 150px 0;
}

.w-fit {
    width: fit-content;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

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

/* Hide content initially */
#content {
    display: none;
}

.small-label {
    font-weight: 500 !important;
    font-size: 12px !important;
}

.submit-btn {
    padding: 13px 33px;
}

.submit-btn:hover {
    box-shadow: 0 0 20px 1px #ff4563;
}

.location-section {
    height: 100%;
    width: 100%;
    background: red;
}

.parallax-image {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: inherit;
}
