* {
    font-family: "Roboto", sans-serif !important;
}
:root {
    --red: #ff0b09;
    --gray-50: #f7f7f7;
    --gray-100: #ede5e5;
    --gray-150: #d9d9d9;
    --gray-200: #f9f9f9;
    --gray-300: #8c8c8c;
    --blue-300: #477fff;
    --blue-700: #161618;
    --black: #010d2e;
    --black-real: #000;
    --footer: #000515;
}

/* Utilities */
.min-w-165 {
    min-width: 165px;
}

.button {
    min-width: 165px;
    height: 50px;
    border: solid 2px;
    border-radius: 30px;
}

.cursor-pointer {
    cursor: pointer;
}

.gap-0 {
    gap: 0;
}
.gap-8 {
    gap: 8px;
}
.gap-10 {
    gap: 10px;
}

/* end utilities */

/* background util */
.bg-red {
    background-color: var(--red) !important;
}
.bg-gray-50 {
    background-color: var(--gray-50) !important;
}
.bg-gray-100 {
    background-color: var(--gray-100) !important;
}
.bg-gray-150 {
    background-color: var(--gray-150) !important;
}
.bg-gray-200 {
    background-color: var(--gray-200) !important;
}
.bg-gray-300 {
    background-color: var(--gray-300) !important;
}
.bg-blue-300 {
    background-color: var(--blue-300) !important;
}
.bg-black {
    background-color: var(--black) !important;
}
.bg-footer {
    background-color: var(--footer) !important;
}
.bg-black-real {
    background-color: var(--black-real) !important;
}
/* end background util */

/* text util */
.text-gray-100 {
    color: var(--gray-100) !important;
}
.text-gray-150 {
    color: var(--gray-150) !important;
}
.text-gray-200 {
    color: var(--gray-200) !important;
}
.text-gray-300 {
    color: var(--gray-300) !important;
}
.text-blue-300 {
    color: var(--blue-300) !important;
}
.text-blue-700 {
    color: var(--blue-700) !important;
}
/* end text util */

/* border util */
.border-red {
    border-color: var(--red) !important;
}
.border-gray-100 {
    border-color: var(--gray-100) !important;
}
.border-w-2 {
    border-width: 2px !important;
}
.border-radius-10 {
    border-radius: 10px !important;
}
.border-radius-20 {
    border-radius: 20px !important;
}
.border-radius-30 {
    border-radius: 30px !important;
}
/* end border util */

/* font size */
.text-2xs {
    font-size: 10px !important;
}
.text-xs {
    font-size: 12px !important;
}
.text-sm {
    font-size: 14px !important;
}
.text-base {
    font-size: 16px !important;
}
.text-lg {
    font-size: 18px !important;
}
.text-xl {
    font-size: 20px !important;
}
.text-2xl {
    font-size: 24px !important;
}
.text-3xl {
    font-size: 26px !important;
}
.text-4xl {
    font-size: 28px !important;
}
.text-5xl {
    font-size: 32px !important;
}
/* end font size */

/* position */
.top-0 {
    top: 0 !important;
}
.right-0 {
    right: 0 !important;
}
.left-0 {
    left: 0 !important;
}
.bottom-0 {
    bottom: 0 !important;
}

.top-5 {
    top: 5px !important;
}
.right-5 {
    right: 5px !important;
}
.left-5 {
    left: 5px !important;
}
.bottom-5 {
    bottom: 5px !important;
}

.top-10 {
    top: 10px !important;
}
.right-10 {
    right: 10px !important;
}
.left-10 {
    left: 10px !important;
}
.bottom-10 {
    bottom: 10px !important;
}

.top-15 {
    top: 15px !important;
}
.right-15 {
    right: 15px !important;
}
.left-15 {
    left: 15px !important;
}
.bottom-15 {
    bottom: 15px !important;
}
/* end position */

.shadow {
    box-shadow: 0px 0px 10px rgba(184, 184, 184, 0.25);
}

.section-subtitle {
    font-size: 10px;
}
.section-title {
    font-weight: bold;
    font-size: 18px;
    line-height: 27px;
}
.section-title span {
    font-weight: normal;
}

/* solution */
.service-standard .service-block {
    min-height: 365px;
    border: var(--gray-200);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}
.service-standard .service-block:hover {
    border-color: var(--red) !important;
}
.service-standard .service-block .title {
    color: var(--blue-700);
    font-weight: bold;
    font-size: 16px;
}

.service-standard .service-block:hover .title {
    color: var(--red);
}

.service-standard .service-block .service-description {
    color: var(--blue-700);
    font-size: 12px;
    line-height: 15px;
    height: 65px;
    overflow-y: auto;
}
/* end solution */

/* location */
.new-locations .location-item {
    width: 228px;
    height: 100%;
    border-radius: 10px;
    background-color: white;
    height: 370px;
}

.new-locations .location-item .location-image {
    height: 223px;
    width: 100% !important;
    object-fit: cover;
}

.new-locations .location-item .location-name {
    height: 50px;
    line-height: 22px;
    overflow-y: auto;
}

.location-image {
    gap: 8px;
}
/* end location */

/* skeleton loading */
.skeleton {
    animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
    0% {
        background-color: hsl(200, 20%, 80%);
    }
    100% {
        background-color: hsl(200, 20%, 95%);
    }
}

.skeleton-text {
    width: 100%;
    height: 0.7rem;
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
}

.skeleton-text__body {
    width: 75%;
}

.skeleton-footer {
    width: 30%;
}
/* end skeleton loading */

/* promotion */
.promotion {
    min-height: 590px;
}
.overlay-promotion {
    position: relative;
    z-index: 1;
    height: 100px;
    background: linear-gradient(
        174.45deg,
        #010d2e 16.79%,
        rgba(1, 13, 46, 0) 76%
    );
}
.promotion .img-phone {
    position: absolute;
}
/* end promotion */

/* locations page */
.dropdown-filter {
    min-width: 254px;
}
/* end locations page */

.min-vh-50 {
    min-height: 50vh;
}

.line-wrapper {
    flex-basis: 0px;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    flex-direction: column;
    width: 3%;
    display: flex;
    margin: 0 20px 0 0;
}

.timeline:last-of-type .line {
    display: none;
}

.timeline:first-of-type .circle::before {
    width: 15px;
    position: absolute;
    height: 15px;
    background-color: #477fff;
    content: "";
    border-radius: 50%;
}

.timeline:first-of-type .circle::after {
    background-color: var(--blue-300);
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    left: 2px;
    top: 2px;
    border-radius: 50%;
}

.timeline:first-of-type .circle {
    background-color: transparent;
}

.timeline .circle {
    width: 15px;
    height: 15px;
    position: relative;
    margin-bottom: auto;
    background-color: #40ff7599;
    border-color: #13d448;
    border-radius: 50%;
    top: 3px;
}

.timeline .line-wrapper .line {
    width: 1px;
    height: calc(100% - 20px);
    margin-bottom: -6px;
    background-image: linear-gradient(
        rgb(219, 222, 226) 55%,
        rgba(255, 255, 255, 0) 55%
    );
    background-size: 1px 12px;
    background-position: left center;
    background-repeat: repeat-y;
}

.timeline-wrapper {
    margin-bottom: 30px;
}
