.slide-buttons a,
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #368b65
}

.section-title-short {
    width: 60%;
    margin: 10px auto
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

.swiper {
    width: 100%;
    max-width: 100%;
    height: 880px;
    margin-top: -250px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2)
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff
}

.slide-content {
    position: absolute;
    top: 0;
    left: unset;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    padding: 290px 90px;
    display: flex;
    justify-content: center
}

.slide-content h2 {
    font-size: 115px;
    color: #fff;
    margin-bottom: 15px
}

.slide-content p {
    font-size: 30px;
    margin-bottom: 30px;
    margin-top: 30px
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center
}

.slide-buttons a {
    padding: 18px 34px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: background .3s
}

.slide-buttons a.secondary {
    border: 1px solid #e7fff4;
    background-color: transparent;
    color: #e7fff4;
    font-weight: 700
}

.slide-buttons a.secondary:hover {
    opacity: 1;
    background-color: #fff;
    color: #555
}

.slide-buttons a:hover {
    opacity: .85
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    display: none !important
}

.swiper-pagination-bullet {
    opacity: 1;
    background-color: #fff;
    padding: 12px
}

@media only screen and (max-width:768px) {
    .section-title-short {
        width: 100%
    }

    .slide-content {
        right: 16px
    }

    .slide-content h2 {
        font-size: 32px
    }
}

.swiper-pagination {
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: center;
    gap: 15px
}

.text-trim-1,
.text-trim-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden
}

.text-trim-2 {
    -webkit-line-clamp: 2
}

.text-trim-1 {
    -webkit-line-clamp: 1
}

.experts-area {
    background-color: #eff4fc;
    -moz-box-shadow: 10px 10px 30px -11px rgba(0, 0, 0, .8)
}

.blog-area {
    background-color: #f4f8ff
}

.services-area {
    background: linear-gradient(90deg, #fff 0, #ffeee8 100%)
}

.events-area,
.testimonials-area {
    background: #fff !important;
    text-align: center
}

.events-area h2 {
    font-size: 100px
}

.attachment-thumbnail {
    text-align: center;
    overflow: hidden;
    display: inline-block;
    position: relative
}

.events-area p {
    margin: 10px auto;
    width: 50%
}

.attachment-thumbnail img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 10px 10px 5px -7px rgba(0, 0, 0, .13);
    -webkit-box-shadow: 10px 10px 5px -7px rgba(0, 0, 0, .13);
    -moz-box-shadow: 10px 10px 5px -7px rgba(0, 0, 0, .13);
    transition: transform .3s ease-in-out;
    border: 5px solid #ff5722
}

.attachment-thumbnail img:hover {
    transform: scale(1.1)
}

@keyframes bounceInCustom {
    0% {
        opacity: 0;
        transform: scale(.3)
    }

    50% {
        opacity: 1;
        transform: scale(1.05)
    }

    70% {
        transform: scale(.9)
    }

    100% {
        transform: scale(1)
    }
}

.bounceInCustom {
    animation: 1s forwards bounceInCustom
}