@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');


body {
    font-family: "Poppins", sans-serif;
}

.header {
    margin: 10px 0px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.header .logo a img {
    width: 15rem;
    height: auto;
}

.header .logo {
    display: flex;
    justify-content: start;
    align-items: center;
}

#mobile-menu .links,
.header .links {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
}

.header .links a {
    font-size: 0.8rem;
    color: #ffffff;
    text-decoration: none;
}

#mobile-menu .links a {
    font-size: 0.8rem;
    color: #000000;
    text-decoration: none;
}

.footer {
    font-size: 0.9rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../assets/footer-bg.png);
    background-position: center center;
    background-size: cover;
}

.footer-link {
    font-size: 0.9rem;
    text-decoration: none;
    color: #ffffff;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgb(0, 0, 0, 0.2);
}

.footer-phone {
    width: 3rem;
    height: auto;
}

.by-logo {
    width: 3rem;
    height: auto;
}

#mobile-menu {
    position: fixed;
    inset: 0;
    background-color: #ffffff;
    display: none;
    z-index: 999;
}

.hover-underline {
    display: inline-block;
    position: relative;
    color: #fff;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.img-sm {
    width: 4rem;
    height: auto;
}

.font-oswald {
    font-family: "Oswald", sans-serif;
}

.letter-spacing {
    letter-spacing: 5px;
}

.fs-xs {
    font-size: 1rem;
}

.fs-sm {
    font-size: 0.8rem;
}

.fs-xsm {
    font-size: 0.7rem;
}

.fs-xl {
    font-size: 5rem;
}

.text-blue {
    color: #4997D3;
}

.text-lightgray {
    color: #222222;
}

.text-lightgray2 {
    color: #b4b4b4;
}


.text-orange {
    color: #FF7A00;
}

.py-xl {
    padding: 10rem 0rem;
}

.bg-lightgray {
    background-color: #F6F6F6;
}

.bg-orange {
    background-color: #FF7A00;
}

.btn-main {
    outline: none;
    border: none;
    text-decoration: none;
    background-color: #FF7A00;
    color: #ffffff;
    fill: #ffffff;
    padding: 5px 10px;
    border-radius: 10px;
}

.btn-main:hover,
.btn-main:focus,
.btn-main:active {
    background-color: #FF7A00 !important;
    color: #ffffff !important;
}

.btn-main-reverse {
    outline: none;
    border: none;
    text-decoration: none;
    background-color: transparent;
    outline: 1px solid #FF7A00;
    color: #FF7A00;
    fill: #FF7A00;
    padding: 5px 10px;
    border-radius: 10px;
}

.btn-gray {
    outline: none;
    border: none;
    text-decoration: none;
    background-color: #F6F6F6;
    color: #000000;
    fill: #000000;
    padding: 5px 10px;
    border-radius: 10px;
}

.btn-gray-reverse {
    outline: none;
    border: none;
    text-decoration: none;
    background-color: transparent;
    color: #ffffff;
    fill: #ffffff;
    padding: 5px 10px;
    border-radius: 10px;
    border: 1px solid #FFFFFF;
}

.btn-white {
    outline: none;
    border: none;
    text-decoration: none;
    background-color: #ffffff;
    color: #000000;
    fill: #000000;
    padding: 5px 10px;
    border-radius: 10px;
}

.btn-blue {
    outline: none;
    border: none;
    text-decoration: none;
    background-color: #4997D3;
    color: #ffffff;
    fill: #ffffff;
    padding: 5px 10px;
    border-radius: 10px;
}

.form-select {
    background-color: #F6F6F6;
    border: none !important;
    color: #222222;
}

.form-select:focus {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}


.swiper {
    width: 100%;
    height: auto;
}

.swiper-pagination-bullet {
    background-color: #4997D380 !important;
}

.swiper-pagination-bullet-active {
    background-color: #4997D3 !important;
}






.breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff !important;
}