@import url('../fonts/gilroy/style.css');

:root {
--bs-font-sans-serif: "Inter", sans-serif;
--bs-font-heading: "Gilroy", sans-serif;
--bs-font-icons: "remixicon";
}

.hero {
    padding-top: 90px;
}

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1366px;
    }
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1440px;
    }
}

a {
    transition: all 0.3s;
}

.opacity-15,
.opacity-15-hover:hover {
    opacity: .15 !important;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6,
.display-1,
.display-2,
.display-3 {
    font-family: var(--bs-font-heading);
}

h4, .h4 {
    font-size: clamp(1.2rem, 1.1rem + 0.46vw, 1.65rem);
}

.btn {
    border-radius: 0.5rem;
}

.rounded-3 {
    border-radius: .5rem !important;
}

.rounded-35 {
    border-radius: .75rem !important;
}

.start-35 {
    left: 35%;
}

.bottom-30 {
    bottom: 30%;
}

.aspect-ratio-1 {
    aspect-ratio: 1;
}

.form-control {
    background-color: #f1f5f9;
    border: 1px solid #cbd5e1;
}

.navbar.fixed-top {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.is-scrolling .navbar.fixed-top .btn {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.is-scrolling .navbar.fixed-top {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.navbar-brand {
    padding: 0;
}

.navbar-logo img {
    height: 40px;
}

.navbar-logo-2 img {
    height: 35px;
}

.navbar-logo-2 {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
}

.navbar-logo-2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: #e2e8f0;
}

.navbar-nav .nav-link {
    white-space: nowrap;
    margin: 0 0.5rem;
    padding: 1rem;
}

.bg-image {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-info,
.bg-info-hover:hover {
    background-color: #0192d0 !important;
}

.bg-primary-gradient {
    background-image: linear-gradient(315deg, rgba(3, 67, 191, 0.75), rgba(15, 23, 42, 0.25));
}

.bg-dark-gradient {
    background-image: linear-gradient(315deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.15));
}

.bg-white-50 {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.bg-danger-30 {
    background-color: rgba(219, 26, 42, 0.3) !important;
}

.text-info,
.text-info-hover:hover {
    color: #0192d0 !important;
}

.pointer-events-none {
    pointer-events: none;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    flex-grow: 0;
}

.icon-sm {
    width: 3rem;
    height: 3rem;
}

.icon-md {
    width: 4rem;
    height: 4rem;
}

.icon-lg {
    width: 5rem;
    height: 5rem;
}

.icon i {
    line-height: 1;
}

.pt-2rem {
    padding-top: 2rem;
}

.shadow-xl,
.shadow-xl-active:active,
.shadow-xl-focus:focus,
.shadow-xl-hover:hover {
    box-shadow: 0 2rem 4rem rgba(29, 48, 61, .2) !important
}

.border-light-10,
.border-light-active:active,
.border-light-focus:focus,
.border-light-hover:hover {
    border-color: rgba(255,255,255,0.1) !important;
}

.swiper-single-auto .swiper-pagination {
    --swiper-pagination-color: var(--bs-blue);
    --swiper-pagination-bullet-inactive-color: var(--bs-blue);
    --swiper-pagination-bullet-inactive-opacity: 0.3;
    bottom: 0;
    left: 0 !important;
    transform: none !important;
    text-align: left !important;
}

.swiper-single-auto .swiper-pagination-bullet {
    transform: scale(0.75);
    transition: transform 0.3s;
}

.swiper-single-auto .swiper-pagination-bullet-active {
    transform: scale(1.25);
}

.footer-nav li {
    color: hsla(0, 0%, 100%, .75);
    transition: color .3s ease-in;
    font-size: 1.025rem;
}

.footer-nav li a {
    color: hsla(0, 0%, 100%, 1);
    transition: color .3s ease-in;
    font-size: 1.025rem;
}

.form-control {
    border-radius: 6px;
}

.card-text p:last-of-type {
    margin-bottom: 0;
}

.list-marked {
    margin-bottom: 0;
}

.list-marked li {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
}

.list-marked li:before {
    content: '\EB80';
    font-family: var(--bs-font-icons);
    font-size: 1.5rem;
    line-height: 1.1;
    color: var(--bs-danger);
    margin-right: 8px;
}

.list-marked li:last-child {
    margin-bottom: 0;
}

.link-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}