/* Імітація основних кастомних змінних */

.border-body-color\/50 {
    border-color: rgba(100, 116, 139, 0.5);
}

.border-body-color\/20 {
    border-color: rgba(100, 116, 139, 0.2);
}

.shadow-btn {
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.shadow-btn-hover {
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.25);
}

/* щоб .container вів себе схоже на проєктний */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

html {
    scroll-behavior: smooth;
}

header {
    background: rgba(255, 255, 255, 0);
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
}

.styleh1 h1{
    font-size: clamp(1rem, 5vw + 0.75rem, 4rem);
}

.styleh2 h1 {
    font-size: clamp(1rem, 4vw + 0.75rem, 3.5rem);
}

:root {
    --color-primary: #38A3EE;
    --color-body: #8BD2FD;
}

.text-primary {
    color: var(--color-primary);
}

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

.list-diz{
    padding-left: 40px;
    position: relative;
}

.list-diz::after{
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 6px;
    content: '';
    background:#E9F6FF url('../images/check.svg') center center no-repeat;
    width: 30px;
    height: 30px;
}

.tech-img-2 {
    position: relative;
    z-index: 1;
    padding: 75px 0px;
}

.tech-img-2 .shape {
    position: absolute;
    z-index: -1;
}

.tech-img-2 .shape.shape-1 {
    top: 50%;
    transform: translateY(-50%);
    right: -70px;
}

@media (max-width: 767px) {
    .tech-img-2 .shape.shape-1 {
        right: 0px;
    }
}



.tech-img-2 .shape.shape-2 {
    bottom: 0px;
    left: 50px;
}

.tech-img {
    position: relative;
    z-index: 1;
    padding: 75px 0px;
}

.tech-img .shape.shape-1 {
    top: 50%;
    transform: translateY(-50%);
    left: -70px;
}

@media (max-width: 767px) {
    .tech-img .shape.shape-1 {
        left: 0px;
    }
}

.tech-img .shape.shape-2 {
    bottom: 0px;
    right: 50px;
}

.tech-img .shape {
    position: absolute;
    z-index: -1;
}

.icon path {
    fill: #38A3EE;
    
}

@media (max-width: 768px) {
    .icon path {
        fill: #fff;
        
    }
}

.message_sent_formsmall {
    text-align: center;
}

.message_sent_formsmall strong {
    color: #ff2143;
    font-size: 18px;
}



.icon-error {
    padding-bottom: 0px;
    display: block;
    content: "";
    background: url('../images/close.svg') 0px 0px no-repeat;
    width: 54px;
    height: 54px;
    margin-right: 20px;
    position: relative;
    z-index: 100;
}

.icon-thank {
    padding-bottom: 0px;
    display: block;
    content: "";
    background: url('../images/thank.svg') 0px 0px no-repeat;
    width: 54px;
    height: 54px;
    margin-right: 20px;
    position: relative;
    z-index: 100;
}

.thankyou {
    display: flex;
    justify-content: start;
    align-items: center;
    gap:10px;
}

.response {
    font-size: 18px;
    color: #000;
}

/* Mobile burger -> close animation */
#navbarToggler {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 50;
}

#navbarToggler span {
    transform-origin: center;
}

#navbarToggler.is-active span {
    position: absolute;
    left: -18px;
    right: 0;
    top: 15px;
}

#navbarToggler.is-active span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
}

#navbarToggler.is-active span:nth-child(2) {
    opacity: 0;
}

#navbarToggler.is-active span:nth-child(3) {
    transform: translateY(-50%) rotate(-45deg);
}

/* Mobile menu above fixed header when scrolled */
#navbarCollapse {
    z-index: 45;
}

@media (max-width: 768px) {
    #navbarCollapse {
        height: 100vh;
    }
}
