/* =============================================================
                 start home section
================================================================ */
.home {
    width: 100%;
    margin: 50px 0;
}

.home .sub-home {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .sub-home .img-home {
    width: 50%;
    text-align: center;
    transition: .3s ease-in-out;
}

.home .sub-home .img-home img {
    width: 80%;
    transition: .3s ease-in-out;
}

.home .sub-home .side {
    width: 50%;
}

.home .sub-home .title {
    width: 100%;
    height: 80px;
}

.content-title h2 {
    position: absolute;
    font-size: 4em;
    letter-spacing: 2px;
    font-weight: 900;
    margin-left: -12px;
    /* font-family: 'Bebas Neue', sans-serif; */

}

.content-title h2 span {
    margin-left: 10px;
}

.content-title h2:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 2px #004071
}

.content-title h2:nth-child(1) span {
    color: transparent;
    -webkit-text-stroke: 2px var(--main-color)
}

.content-title h2:nth-child(2) {
    color: #004071;
    animation: animate 3s ease-in-out infinite alternate;
}

@keyframes animate {

    0%,
    100% {
        clip-path: polygon(0 43%, 19% 45%, 39% 53%, 55% 57%, 72% 56%, 82% 52%,
                93% 47%, 100% 43%, 100% 99%, 1% 98%);
    }

    50% {
        clip-path: polygon(0 68%, 15% 60%, 31% 54%, 49% 57%, 65% 53%,
                76% 44%, 90% 40%, 100% 42%, 100% 99%, 1% 98%);
    }
}

.content-title h2:nth-child(2) span {
    color: var(--main-color);
    animation: animate 3s ease-in-out infinite alternate;
}

@keyframes animate {

    0%,
    100% {
        clip-path: polygon(0 43%, 19% 45%, 39% 53%, 55% 57%, 72% 56%, 82% 52%,
                93% 47%, 100% 43%, 100% 99%, 1% 98%);
    }

    50% {
        clip-path: polygon(0 68%, 15% 60%, 31% 54%, 49% 57%, 65% 53%,
                76% 44%, 90% 40%, 100% 42%, 100% 99%, 1% 98%);
    }
}

/* ------------------------------------------ */
.typed-cursor,
.content .auto-input {
    font-size: 23px;
}

.home .sub-home .content {
    width: 100%;
    height: 100px;
}

.home .sub-home .content h3 {
    font-size: 1.5rem;
    margin: 0;
}

.home .sub-home .content .button {
    height: 2rem;
    width: 7rem;
    background: #004071;
    color: #fff;
    font-size: 1rem;
    text-transform: capitalize;
    border-radius: .5rem;
    cursor: pointer;
    position: relative;
    z-index: 0;
    overflow: hidden;
    margin: 1rem 0;
    border: none;
}

.home .sub-home .content .button::before {
    content: '';
    position: absolute;
    top: 0%;
    left: -100%;
    height: 100%;
    width: 100%;
    background-color: var(--main-color);
    z-index: -1;
    transition: .4s linear;
}

.home .sub-home .content .button:hover::before {
    left: 0;
}

/* ---------------------------------------- */
@media only screen and (max-width: 767px) {
    .home {
        margin: 20px 0;
    }

    .sub-home {
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .home .sub-home .img-home {
        width: 60%;
        text-align: center;
    }

    .home .sub-home .img-home img {
        width: 100%;
    }

    .home .sub-home .side {
        width: 100%;
        padding-top: 20px;
    }

    .sub-home .title .content-title {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .home .sub-home .title .content-title h2 {
        font-size: 3em;
        margin-left: 0;
    }

    .home .sub-home .content {
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;
        height: 140px;
    }

    .home .sub-home .content h3 {
        font-size: 1rem;
    }

    .typed-cursor,
    .content .auto-input {
        font-size: 16px;
        font-weight: lighter;
    }
}

/* =============================================================
                 Start About us section
================================================================ */
.about-us {
    padding: 50px 20px 100px 20px;
    width: 100%;
    background-color: #d4eeee;
}

.about-us h2 {
    padding-left: 10px;
    margin: 0 0 30px;
    background: var(--main-color);
    color: #fff;
    letter-spacing: 1px;
    border-left: 5px solid #004071;
    /* font-family: 'Bebas Neue', sans-serif; */
}

.about-us .content {
    display: flex;
}

.about-us .content .img-about img {
    width: 400px;
    border-right: 5px solid #004071;
}

.about-us .info {
    width: 65%;
    margin-left: 20px;
}

.about-us .info p {
    margin-top: 0px;
    color: #6f6f6f;
    font-size: 19px;
}

.about-us .info p span {
    color: #004071;
    font-weight: 600;
}

@media only screen and (max-width: 450px) {
    .about-us h2 {
        font-size: 18px;
    }

    .about-us .content {
        display: block;
        text-align: center;
    }

    .about-us .content .img-about img {
        width: 300px;
        margin-bottom: 10px;
        border: none;
        border-right: none;
    }

    .about-us .info {
        width: 100%;
        text-align: center;
        margin-left: 0px;
    }

    .about-us .info p {
        font-size: 14px;
    }
}

@media only screen and (min-width: 451px) and (max-width: 767px) {
    .about-us .content {
        display: block;
        text-align: center;
    }

    .about-us .content .img-about img {
        width: 300px;
        margin-bottom: 10px;
        border: none;
    }

    .about-us .info {
        width: 100%;
        text-align: center;
        margin-left: 0px;
    }

    .about-us .info p {
        font-size: 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .about-us .content .img-about img {
        width: 350px;
    }

    .about-us .info p {
        font-size: 18px;
    }
}

/* =============================================================
                 Start services section
================================================================ */
.services {
    padding: 50px 20px 50px 20px;
    width: 100%;
}

.services h2 {
    padding-left: 10px;
    margin: 0 0 30px;
    font-weight: normal;
    background: var(--main-color);
    color: #fff;
    letter-spacing: 1px;
    border-left: 5px solid #004071;
    /* font-family: 'Bebas Neue', sans-serif; */
}

.services .container p span {
    color: #004071;
    font-weight: 600;
}

.services .content {
    display: block;
    align-items: center;
    justify-content: center;
}

.services .content .info {
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 15px;
    width: 100%;
    background-color: #eeeeee;
    opacity: 0.7;
    position: relative;
}

.services .content .info .image-box {
    width: 20%;
    height: 100%;
    padding: 15px;
}

.services .content .info .image-box img {
    width: 100%;
}

.services .content .info p {
    width: 80%;
    color: #000;
    margin-bottom: 0;
    font-size: 19px;
}

.services .container p:first-of-type {
    /* margin-top: 0px; */
    color: #6f6f6f;
    font-size: 19px;
}

@media only screen and (max-width: 450px) {
    .services h2 {
        font-size: 18px;
    }

    .services .container p:first-of-type {
        font-size: 14px;
    }

    .services .content .info {
        padding: 10px;
    }

    .services .content .info .image-box {
        width: 30%;
        padding: 0px;
    }

    .services .content .info p {
        width: 70%;
        font-size: 13px;
        margin: 0 0 0 10px;
    }
}

@media only screen and (min-width: 451px) and (max-width: 767px) {
    .services .container p:first-of-type {
        font-size: 16px;
    }

    .services .content .info p {
        width: 70%;
        font-size: 16px;

    }

    .services .content .info .image-box {
        width: 40%;
    }

}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .services .container p:first-of-type {
        font-size: 18px;
    }
}

/* =============================================================
                 Start Articles section
================================================================ */
.articles {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px 50px 20px;
    width: 100%;
    background-color: #d4eeee;
}

.articles .title {
    padding-left: 10px;
    margin: 0 0 30px;
    font-weight: normal;
    background: var(--main-color);
    color: #fff;
    letter-spacing: 1px;
    border-left: 5px solid #004071;
    /* font-family: 'Bebas Neue', sans-serif; */
}

.wrapper {
    padding: 30px 5px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: flex;
    justify-content: center;
    height: 30px;
    width: 30px;
    background: #71aaa6;
    text-align: center;
    /* line-height: 30px; */
    border-radius: 100%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.23);
    color: whitesmoke;
    margin: 0 5px;
    padding: 6px 15px;
    font-size: 20px !important;
    font-weight: bold;
}

.wrapper span:hover {
    color: #004071;
}

.material-symbols-outlined {
    font-weight: bold;
    font-size: 20px;
}

.wrapper .slide-content {
    align-items: center;
    display: grid;
    width: 100%;
    grid-auto-flow: column;
    /* grid-auto-columns: calc((100%/4) - 12px); */
    grid-gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.slide-content::-webkit-scrollbar {
    display: none;
}

.slide-content :where(.card .card-image) {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.slide-content.no-transition {
    scroll-behavior: auto;
}

.slide-content.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.slide-content.dragging .card {
    cursor: grab;
    user-select: none;
}

.slide-content .card {
    scroll-snap-align: start;
    padding-top: 10px;
    height: 100%;
    width: 100%;
    list-style: none;
    background-color: whitesmoke;
    border-radius: 10px;
    /* padding-bottom: 15px; */
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}

/* =============================================================
                 Start subscribe section
================================================================ */
.subscribe {
    padding: 80px 20px 80px 20px;
    width: 100%;
    background: whitesmoke;
}

.subscribe-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.image-box-sub {
    padding: 20px;
    flex: 1;
    background: #71aaa6;
    text-align: center;
    border-radius: 5px;
    box-shadow: 4px 5px 20px #004071;
}

.image-box-sub img {
    width: 200px;
}

.subscribe-form {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding-left: 50px;
    flex: 2;
}

.subscribe-form p {
    font-size: 25px;
    font-weight: bold;
    margin: 0;
}

.subscribe-form span {
    color: #6f6f6f;
}

.subscribe-form span img {
    width: 50px;
    margin-left: 10px;
    transform: rotate(20deg) scale(1);
    /* Start with rotation and original size */
    animation: animateSub 3s ease-in-out infinite alternate;
}

@keyframes animateSub {

    0%,
    100% {
        transform: rotate(0deg) scale(0.85);
        /* No rotation and original size */
    }

    50% {
        transform: rotate(20deg) scale(1);
        /* Rotate and scale */
    }
}

.subscribe-form .inputs {
    padding-top: 30px;
    width: 80%;
    display: flex;
}

.subscribe-form .inputs .email {
    height: 40px;
    width: 100%;
    padding: 0 1rem;
    font-size: 15px;
    border: 1px solid #71aaa6;
    border-radius: 5px 0 0 5px;
}

.subscribe-form .inputs .email:focus {
    border: 1px solid var(--main-color);
    outline: none;

}

.subscribe-form .inputs .btn-subscribe,
.subscribe-form .inputs .btn-subscribe-arabic {
    height: 40px;
    padding: .5em 1em;
    border: none;
    border-radius: 0 5px 5px 0;
    background-color: var(--main-color);
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.subscribe-form .inputs .btn-subscribe:hover,
.subscribe-form .inputs .btn-subscribe-arabic:hover {
    color: #004071;
}

.subscribe-form .sub-message-empty {
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: crimson;
    height: 30px;
    padding-top: 5px;
    font-weight: normal;
}

.subscribe-form .sub-message-empty span {
    color: crimson;
    padding-left: 5px;
    font-size: 20px;
}

@media only screen and (max-width: 450px) {
    .subscribe-box {
        display: flex;
        flex-direction: column;
    }

    .image-box-sub img {
        width: 80px;
    }

    .subscribe-form p {
        font-size: 16px;

    }

    .subscribe-form {
        align-items: center;
        padding-top: 40px;
        padding-left: 0;
        width: 100%;
    }

    .subscribe-form span {
        font-size: 12px;
    }

    .subscribe-form span img {
        width: 30px;
    }

    .subscribe-form .inputs {
        width: 100%;
    }

    .subscribe-form .inputs .email,
    .subscribe-form .inputs .btn-subscribe {
        height: 30px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .subscribe-form .sub-message-empty,
    .subscribe-form .sub-message-empty span {
        font-size: 12px;
    }
}

@media only screen and (min-width: 451px) and (max-width: 767px) {
    .image-box-sub img {
        width: 100px;
    }

    .subscribe-form p {
        font-size: 20px;
        font-weight: bold;
    }

    .subscribe-form .inputs {
        width: 100%;
    }

    .subscribe-form .inputs .email,
    .subscribe-form .inputs .btn-subscribe {
        height: 30px;
        font-size: 14px;
    }

    .subscribe-form .sub-message-empty,
    .subscribe-form .sub-message-empty span {
        font-size: 12px;
    }


}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .subscribe-form .inputs {
        width: 100%;
    }
}

/* =============================================================
                 Start FAQs section
================================================================ */
.faqs {
    padding: 50px 20px 50px 20px;
    width: 100%;
}

.faqs h2 {
    padding-left: 10px;
    margin: 0 0 30px;
    font-weight: normal;
    background: var(--main-color);
    color: #fff;
    letter-spacing: 1px;
    border-left: 5px solid #004071;
    /* font-family: 'Bebas Neue', sans-serif; */
}

.faqs p {
    font-size: 19px;
}

.faqs p span {
    color: #004071;
    font-weight: 600;
}

.faqs .container-faqs {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.container-faqs .wrapper-faqs {
    padding: 0 20px;
}

.container-faqs .wrapper-faqs .parent-tab {
    margin-bottom: 10px;
    border-radius: 5px;
}

.wrapper-faqs .parent-tab label {
    background-color: #eeeeee;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
    z-index: 99;
}

.wrapper-faqs label span {
    color: #000;
    font-size: 18px;
    font-weight: 700;
}

.wrapper-faqs label .icon {
    position: relative;
    color: #004071;
    display: flex;
    /* Center the icon horizontally and vertically */
    align-items: center;
    /* Center the icon vertically */
    justify-content: center;
    /* Center the icon horizontally */
    font-size: 15px;
    background-color: #fff;
    border-radius: 100%;
    text-align: center;
    margin-left: 10px;
    padding: 8px;

}

/* .container-faqs .wrapper-faqs .parent-tab input:checked ~ label .icon i::before {
    content: "\f068"; 
} */

/* .wrapper-faqs label .icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
} */
.wrapper-faqs .parent-tab .content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
}

.parent-tab input:checked~.content {
    max-height: 100vh;
}

.wrapper-faqs .parent-tab .content p {
    font-size: 20px;
    font-weight: normal;
    padding: 15px 20px;
    border-bottom: 2px solid #bbb;
    border-radius: 5px;
    margin-top: 5px;
}

.wrapper-faqs .parent-tab input {
    display: none;
}

@media only screen and (max-width: 450px) {

    .faqs h2 {
        font-size: 18px;
    }

    .faqs p {
        font-size: 14px;
    }

}

@media only screen and (min-width: 451px) and (max-width: 767px) {
    .faqs p {
        font-size: 17px;
    }

}

@media only screen and (max-width: 767px) {
    .wrapper-faqs label span {
        font-size: 14px;
        font-weight: 500;
    }

    .wrapper-faqs label .icon {
        right: 0;
    }

    .wrapper-faqs .parent-tab .content p {
        font-size: 14px;
    }
}

/* =============================================================
                Start Contact us section
================================================================ */
.contact {
    width: 100%;
    background: url(../../images/site/contact.webp);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: hidden;
}

.overlay {
    background: rgba(49, 55, 61, 0.7);
    width: 100%;
    height: 100%;
}

.contact .overlay {
    width: 100%;
    padding: 50px 0;
    color: #fff;
}

.contact .sub-contact {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact h2 {
    font-size: 35px;
    /* font-family: 'Bebas Neue', sans-serif; */
}

.contact h2 span:first-of-type {
    color: var(--main-color)
}

.contact h2 span:first-of-type span {
    color: #004071;
}

.sub-contact form {
    margin: 20px;
    text-align: center;
    overflow: hidden;
    width: 70%;
}

.sub-contact form .contact-message-empty {
    visibility: hidden;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 15px;
    height: 30px;
    padding-top: 5px;
    font-weight: normal;
    color: tomato;
}

.sub-contact form .contact-message-empty span {
    color: tomato;
    padding-left: 5px;
    font-size: 20px;
}

.sub-contact form .form-first-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.sub-contact form .form-first-row .form-subject-div,
.sub-contact form .form-first-row .form-email-div {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    width: 98%;
}

.contact form input[type="text"],
.contact form input[type="email"] {
    width: 100%;
    height: 50px;
    line-height: 40px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 17px;
}

.contact form input[type="text"] {
    float: left;
}

.contact form input[type="email"] {
    float: right;
}

.contact form textarea {
    margin-top: 10px;
    width: 100%;
    padding: 10px;
    height: 150px;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 17px;
    resize: none;
}

.contact form .info {
    overflow: hidden;
    margin-top: 10px;
}

.contact form .info .send {
    float: left;
    padding: 10px;
    width: 130px;
    border: none;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.contact form .info .send:hover {
    font-weight: bold;
    color: #004071;
}

@media only screen and (max-width: 767px) {

    .contact {
        background: url(../../images/site/con-mobil.webp);
        background-repeat: no-repeat;
        background-position: center;
    }

    .contact .overlay {
        padding: 20px;
    }

    .contact h2 {
        font-size: 25px;
        margin: 0;
    }

    .contact form {
        display: block;
        position: relative;
        margin: 20px 50px;
        text-align: center;
    }

    .sub-contact form .form-first-row {
        display: block;
    }

    .sub-contact form .form-first-row .form-subject-div,
    .sub-contact form .form-first-row .form-email-div {
        margin-bottom: 10px;
        width: 100%;
    }

    .contact form input::placeholder,
    .contact form textarea::placeholder {
        font-size: 14px;
    }

    .contact form input[type="text"],
    .contact form input[type="email"] {
        width: 100%;
    }

    .contact form input[type="text"] {
        float: none;
    }

    .contact form input[type="email"] {
        float: none;
    }

    .contact form textarea {
        margin-top: 0px;

    }

    .sub-contact form .contact-message-empty,
    .sub-contact form .contact-message-empty span {
        font-size: 12px;
    }

}

/* =============================================================
                Start download section
================================================================ */
.download-section {
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #d4eeee;

}

.download-section .logo-app img {
    width: 320px;
    background-color: var(--main-color);
    border-radius: 10px;
    margin: 5px 0 20px 0;
    border-radius: 50%;
}

.download-section p img {
    width: 50px;
    padding: 0 10px;
    margin-top: 3px;
    border-radius: 50%;
}

.download-section h2 {
    text-align: center;
    font-size: 20px;
}

.download-section p {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    font-size: 20px;
}

.download-section .btn-download {
    margin-top: 10px;
}

.btn-download a img {
    width: 150px;
}

#message-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    opacity: 0.95;
    color: #004071;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    border-top: 4px solid #004071;
}

#message-container strong {
    color: var(--main-color);
}

.btn-download {
    text-align: center;
}

/* Add the line at the bottom with animation */
#message::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background-color: var(--main-color);
    animation: fillAnimation 6s linear forwards;
    transform: width;
    /* Start with 0% filled */
}

@keyframes fillAnimation {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .download-section .logo-app img {
        width: 220px;
    }

    .download-section h2 {
        width: 220px;
        font-size: 16px;
    }

    .download-section p img {
        width: 50px;
    }

    .download-section p {
        font-size: 16px;
    }

    .download-section .btn-download button {
        width: 140px;
        font-size: 0.8rem;
    }

    .btn-download a img {
        width: 110px;
    }

    #message-container {
        font-size: 12px;
        width: 300px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .download-section .logo-app img {
        width: 280px;
    }

    .download-section p img {
        width: 50px;
    }

    .download-section h2 {
        width: 280px;
        font-size: 18px;
    }

    .download-section p {
        font-size: 18px;
    }

    .btn-download a img {
        width: 150px;
    }
}

/* =============================================================
                End download section
================================================================ */
@keyframes o-fade-in {
    0% {
        display: none;
        transform: translateY(20px);
    }

    100% {
        display: block;
        transform: translateY(0px);
    }
}

.syp-checkbox {
    display: none;
}

.syp-slider {
    margin-top: 4px;
    width: 40px;
    height: 20px;
    background-color: lightgray;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 2px solid transparent;
    transition: .3s;
    box-shadow: 0 0 10px 0 rgb(0, 0, 0, 0.25) inset;
    cursor: pointer;
}

.syp-slider::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: translateX(-20px);
    border-radius: 20px;
    transition: .3s;
    box-shadow: 0 0 10px 3px rgb(0, 0, 0, 0.25);
}

.syp-checkbox:checked~.syp-slider::before {
    transform: translateX(20px);
    box-shadow: 0 0 10px 3px rgb(0, 0, 0, 0.25);
}

.syp-checkbox:checked~.syp-slider {
    background-color: var(--main-color);
}

.syp-checkbox:active~.syp-slider::before {
    transform: translate(0);
}

.offer-card-3 {
    animation: o-fade-in 0.8s;
}

.offer-card-4 {
    animation: o-fade-in 1.2s;
}

.offer-card-5 {
    animation: o-fade-in 1.6s;
}