:root {
    --font-family-main: "Montserrat", sans-serif;
    --color-corp: #050D69;
    --color-corp-2: #030947;
}

body {
    font-family: var(--font-family-main);
    line-height: 1.2;
    background: #F9FAFB;
}

a {
    color: inherit;
    text-decoration: none;
}


/* typography */

.text-4xl {
    font-size: clamp(2.125rem, 1.3rem + 4.125vw, 6.25rem);
}

.text-3xl {
    font-size: clamp(1.5rem, 0.8rem + 3.5vw, 5rem);
}

.text-2xl {
    font-size: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem);
}

.text-xl {
    font-size: clamp(1.625rem, 1.325rem + 1.5vw, 3.125rem);
}

.text-lg {
    font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2.75rem);
}

.text-md {
    font-size: clamp(1.125rem, 1rem + 0.625vw, 1.75rem);
}

.text-sm {
    font-size: clamp(1rem, 0.925rem + 0.375vw, 1.375rem);
}

.text-xs {
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
}

.text-2xs {
    font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
}


/* utils */

.text-corp {
    color: var(--color-corp)
}

.text-corp-2 {
    color: var(--color-corp-2)
}

.text-light-blue {
    color: #6B9EEE;
}

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

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

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

.bg-dark-2 {
    background: #0A1D37;
}

.text-dark-2 {
    color: #0A1D37;
}

.bg-main {
    background: #EAF5FF;
}

.bg-main-2 {
    background: rgba(249, 250, 251, 1);
}

.bg-linear-corp {
    background: linear-gradient(90deg, #a80306 0%, #bc0209 26.92%, #d41b18 49.52%, #c1070c 75%, #a30003 100%);
}

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

.w-max-content {
    width: max-content !important;
}

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

.position-md-absolute {
    position: absolute;
}

.position-lg-absolute {
    position: absolute;
}

.btn {
    border-radius: 8px;
    font-family: var(--font-family-2);
    min-width: 250px;
    padding: 10px 10px;
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
}

.btn-corp {
    background: var(--color-corp);
    color: white;
}

.btn-white {
    background: white;
    color: var(--color-corp);
}

.btn-dark {
    background: #0A1D37;
    color: white;
}

.btn-dark:hover {
    color: white;
}

.btn-outline-corp {
    border: 1px solid var(--color-corp);
}

.btn-outline-white {
    border: 1px solid white;
    color: white;
}

.btn-long {
    min-width: 300px;
}

.rounded-sm-5 {
    border-radius: 40px;
}

.fw-extralight {
    font-weight: 200 !important;
}

.mt-custom {
    margin-top: -40px;
}

.w-40 {
    width: 40%;
}

.w-60 {
    width: 60%;
}

.w-90 {
    width: 90%;
}

.border-corp {
    border-color: var(--color-corp-2) !important;
}

.text-lg-white {
    color: white;
}


/* bootstrap components castomization */

.navbar-toggler:focus {
    box-shadow: none;
}

.main-header .nav-link {
    color: white;
}

.main-header .nav-link:hover {
    color: rgb(149, 149, 149);
}

.main-header .navbar-toggler-icon {
    background-image: url('icons/main-icons/burger-light.svg');
    width: 1em;
    height: 1em;
}

.navbar-toggler {
    border: none;
}

.dropdown-toggle::after {
    display: none;
}


/* custom styles */

.icon-size-xl {
    height: 110px;
}

.icon-size-md {
    height: 70px;
}

.icon-size-sm {
    height: 60px;
}

.icon-box-position {
    margin-bottom: -50px;
    position: relative;
    z-index: 2;
}

.mb-custom {
    margin-bottom: -40px;
}

.main-header {
    position: absolute;
    top: 0;
    z-index: 4;
    width: 100%;
}

.main-header .navbar-collapse.show,
.main-header .navbar-collapse.collapsing {
    background: var(--color-corp);
    padding-left: 10px;
}

.icon-hover i {
    transition: all 0.3s ease;
}

.icon-hover:hover i {
    transform: rotate(45deg);
}

.icon-size-xs {
    height: 30px;
}

.icon-conteiner {
    border: 6px solid white;
    margin-top: -30px;
    margin-left: 10px;
    position: relative;
    z-index: 2;
}

.border-lg-end {
    border-right: 1px solid #BABABA;
}

.icon-form {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    left: 8px;
}

.form-control {
    padding: 20px 10px 20px 50px;
    background: transparent;
    border-radius: 11px solid #A7A7A7;
}

.bi-chat-square-text.icon-form {
    top: 20px;
    transform: unset;
}

.standarts img {
    height: 100px;
}

.p-height {
    height: 50px;
}

#services .bg-main {
    height: 120px;
}

footer {
    background: #0A1D37;
}

@media(max-width: 990px) {
    .navbar-brand>img {
        width: 13vh;
    }

    .w-lg-fit-content {
        width: 100%;
    }

    .banner-img {
        height: 100vh;
    }

    .icon-size-md {
        height: 50px;
    }

    .icon-size-sm {
        height: 40px;
    }

    .overlay::before {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        z-index: 2;
        background: rgba(255, 255, 255, 0.785);
    }

    .icon-size-xl {
        height: 80px;
    }

    .border-lg-end {
        border-right: none;
    }

    .text-lg-white {
        color: var(--color-corp);
    }
}