/*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;
}


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

.theme-btn:hover {
    background: #487FFC;
    color: #fff;
}

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

.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 {
    position: relative;
}

.input-group input, .input-group textarea {
    background: #fff;
    font-size: 16px;
    color: #000;
    border-radius: 40px !important;
    padding: 12px 20px;
    width: 100%;
    font-weight: 500;
    max-width: 432px;
    border: 1px solid white;
    outline: unset;
}

.input-group input:focus {
    border: 1px solid white;
    outline: unset;
}

.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 {
    border-radius: 30px !important;
    min-height: 140px;
}

.placeholder {
    color: #959595;
}

.placeholder.active {
    color: #383838;
}

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

.input-group label {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    margin-left: 19px;
    margin-bottom: 5px;
}

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

.input-group {
    margin-bottom: calc(42px * var(--scale));
    display: flex;
    flex-direction: column;
    align-items: start;
    font-weight: 500;
    width: 100%;
}

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

/*carousels*/
.owl-theme .owl-dots .owl-dot span {
    height: calc(16px * var(--scale));
    width: calc(16px * var(--scale));
    background: #EEEEEE;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--theme-color);
}

.error {
    color: red;
}

/*back to top*/
.back-to-top {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translate(-50%, -100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: fit-content;
}

.back-to-top img {
    width: 19.8px;
    height: 39.6px;
    transform: rotate(90deg);
    transition: 300ms;
}

.back-to-top span {
    margin-top: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.back-to-top:hover img {
    transform: translateY(-5px) rotate(90deg);
}

.bg-0 {
    background: unset;
}
