@charset "UTF-8";

.divider {
    width: 100%;
    height: 3px;
    background: #e53e3e;
}

.bg-wrapper {
    z-index: 1;
}
.bg-wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.bg-wrapper--black:after {
    background-image: linear-gradient(to right, rgba(5, 20, 46, 0.64) 0%, rgba(22, 36, 64, 0.68) 100%);
}
.bg-wrapper--white:after {
    background-color: rgba(255, 255, 255, 0.9);
}

.bg-gradient-black {
    background-image: linear-gradient(to right, rgb(17, 21, 28) 0%, rgb(17, 21, 28) 100%);
}

.title {
    margin: 0;
    padding: 0;
    font-size: 2.3em;
    line-height: 1.7;
}

.text {
    font-family: "Roboto Slab", sans-serif;
    font-size: 1.3em;
    line-height: 1.6;
}
.text--red {
    color: #e53e3e;
}

.link {
    background: #000;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 11px;
    color: #fff;
    text-decoration: none;
}
.link:hover {
    background: rgba(230, 230, 230, 0);
    color: rgb(204, 204, 204);
}

.block {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 0.375rem;
    box-shadow: 0 5px 15px 0 rgb(0 0 0 / 10%);
    color: #000;
    text-align: center;
    padding: 10px;
}
.block__title {
    font-size: 1.25em;
}
.block__image {
    width: 100%;
}

.tabs {
    border: none;
    text-align: center;
    display: flex;
    align-content: stretch;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.tabs__item {
    flex: 1 1 33.33%;
}
.tabs__link {
    width: 100%;
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid rgba(255, 255, 255, 0.1);
    border-left: none;
    border-bottom: none;
    border-radius: 0;
    flex-grow: 1;
    position: relative;
    transition: all 0.25s ease;
    padding: 10px 5px;
    background-color: rgba(255, 255, 255, 0.05);
    font-size: 1.2em;
}
.tabs__link:hover {
    color: #e53e3e;
}
.tabs__link.active {
    color: #e53e3e;
    background: transparent;
    border-top-color: #e53e3e;
    border-bottom-color: transparent;
}
.tabs__content {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top-width: 0;
    padding: 10px;
}
.tabs__content>.tab-pane {
    display: none;
}
.tabs__content>.active {
    display: block;
}

.button {
    padding: 20px 50px;
    font-size: 14px;
    color: #000;
    border: none;
    border-radius: 0.375rem;
    text-decoration: none;
}
.button--red {
    background: #ef2525;
    box-shadow: 0 4px 10px 0 rgb(175, 69, 69);
}
.button--red:hover, .button--red:active {
    background: #c21515;
    border-color: #af1111;
    color: #000;
}
.button--yellow {
    background: #fff200;
    box-shadow: 0 4px 10px 0 rgb(189 181 58 / 50%);
}
.button--yellow:hover, .button--yellow:active {
    background: #fff540;
    border-color: #fff873;
    color: #000;
}
.button--green {
    background-color: rgb(132, 220, 159);
    box-shadow: 0 4px 10px 0 rgb(132 220 159 / 50%);
}
.button--green:hover, .button--green:active {
    background-color: rgb(105, 212, 138);
    border-color: rgb(50, 175, 88);
    color: #000;
}

.slider-container {
    position: relative;
    padding-bottom: 30px;
}
.slider-container .slider {
    width: 100%;
    height: 100%;
}
.slider-container .swiper-slide {
    height: auto;
}
.slider-container .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.slider-container .swiper-pagination .swiper-pagination-bullet-active {
    background: #e53e3e;
}
.slider-container .swiper-button-prev,
.slider-container .swiper-button-next {
    color: #e53e3e;
    user-select: none;
}
.slider-container .swiper-button-prev {
    left: -50px;
}
.slider-container .swiper-button-next {
    right: -50px;
}
@media screen and (max-width: 768px) {
    .slider-container .swiper-button-prev,
    .slider-container .swiper-button-next {
        display: none;
    }
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    background-color: #818a91;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
}
.social-icon:hover,
.social-icon:active {
    color: #fff;
    opacity: .9;
}
.social-icon i, .social-icon svg {
    color: #fff;
    width: 20px;
    height: 20px;
    position: relative;
    display: block;
}
.social-icon--whatsapp {
    background-color: #25d366;
}