/* Custom Font: Majalla */
@font-face {
    font-family: 'Majalla';
    src: url('../fonts/majalla.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.header {
    position: relative;
    width: 100%;
    background: #fff;
    padding: 12px 0px;
    z-index: 1002;
    -webkit-box-shadow: 4px 4px 60px #0000000d;
    -moz-box-shadow: 4px 4px 60px #0000000d;
    -o-box-shadow: 4px 4px 60px #0000000d;
    -ms-box-shadow: 4px 4px 60px #0000000d;
    box-shadow: 4px 4px 60px #0000000d;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    /* End NavMenu */
}

.header.sticky {
    position: fixed;
    top: 0px;
    left: 0px;
    padding: 8px 0px;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .burger {
    position: absolute;
    display: none;
    left: 118px;
    cursor: pointer;
    user-select: none;
    width: 24px;
    height: 1rem;
    background: transparent;
}

.header .burger-line {
    position: absolute;
    display: block;
    left: 0px;
    width: 100%;
    height: 2px;
    opacity: 1;
    border: none;
    outline: none;
    background: #000;
}

.header .burger-line:nth-child(1) {
    top: 0px;
}

.header .burger-line:nth-child(2) {
    top: 0.5rem;
    width: 80%;
}

.header .burger-line:nth-child(3) {
    top: 1rem;
    width: 60%;
}

@media only screen and (max-width: 999px) {
    .header .burger {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

.header .logo img {
    max-width: 140px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

@media (max-width: 999px) {
    .header .logo img {
        max-width: 90px;
    }
}

.header .language {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #9cc661;
    color: #9cc661;
    padding: 4px 24px;
    border-radius: 60px;
    font-family: 'Majalla';
    -webkit-box-shadow: 4px 4px 60px #0000000d;
    -moz-box-shadow: 4px 4px 60px #0000000d;
    -o-box-shadow: 4px 4px 60px #0000000d;
    -ms-box-shadow: 4px 4px 60px #0000000d;
    box-shadow: 4px 4px 60px #0000000d;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.header .language:hover {
    background: #9cc661;
    color: #fff;
}

.header .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0px;
}

.header .navbar .logo {
    display: none;
    margin: 12px 0px 0px 12px;
}

@media screen and (max-width: 999px) {
    .header .navbar .logo {
        display: block;
    }
}

.header .navbar .logo img {
    max-width: 140px;
}

.header .navbar .cancel {
    display: none;
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
}

.header .navbar .cancel svg {
    width: 16px;
    height: 16px;
    fill: #BD3C2F;
}

@media screen and (max-width: 999px) {
    .header .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 290px;
        height: 100%;
        z-index: 10;
        overflow: hidden;
        overflow-y: auto;
        visibility: hidden;
        background: #fff;
        transition: all 0.5s ease;
    }

    .header .navbar.active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
        display: block;
    }

    .header .navbar .cancel {
        display: block;
    }
}

.header .menu {
    display: flex;
    align-items: center;
}

.header .menu-item {
    position: relative;
    display: inline-block;
    margin: 0px 16px;
}

.header .menu-link {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    text-transform: capitalize;
    color: #000;
    font-weight: 700;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    font-size: 25px;
}

@media (max-width: 999px) {
    .header .menu-link {
        height: auto;
        padding: 8px 12px;
        border-bottom: 1px solid #F3F4F6;
    }
}

.header .menu-link::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 0px;
    height: 4px;
    background: #9cc661;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

@media (max-width: 999px) {
    .header .menu-link::after {
        display: none;
    }
}

.header .menu-link svg {
    width: 14px;
    height: 14px;
    fill: #000;
}

@media only screen and (max-width: 999px) {
    .header .menu-link svg {
        z-index: -1;
    }
}

@media only screen and (min-width: 999px) {
    .header .menu-dropdown:hover>.submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        z-index: 100;
    }
}

@media only screen and (max-width: 999px) {
    .header .menu {
        display: block;
        width: 100%;
        height: auto;
        margin-top: 48px;
    }

    .header .menu-item {
        display: block;
        margin: 0px;
    }

    .header .menu-link {
        justify-content: space-between;
    }
}

.header .menu .activelink .menu-link::after,
.header .menu .menu-item:hover .menu-link::after {
    width: 100%;
}

@media (max-width: 999px) {

    .header .menu .activelink .menu-link,
    .header .menu .menu-item:hover .menu-link {
        color: #9cc661;
    }
}

@media only screen and (max-width: 999px) {
    .header .menu .activelink .submenu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

.header .submenu {
    position: absolute;
    top: 100%;
    right: 0px;
    width: 180px;
    height: auto;
    visibility: hidden;
    transform: translateY(1rem);
    background: #fff;
    box-shadow: 0px 4px 8px 0px #00000033;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    padding: 12px;
}

@media only screen and (max-width: 999px) {
    .header .submenu {
        display: block;
        position: relative;
        max-height: 0px;
        outline: none;
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
        box-shadow: none;
        padding: 0px;
        background: #F3F4F6;
        width: 100%;
    }
}

.header .submenu a {
    display: block;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    text-transform: capitalize;
    font-weight: 300;
    border-bottom: 1px solid #ECECEC;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

@media only screen and (max-width: 999px) {
    .header .submenu a {
        padding: 4px 12px;
    }
}

.header .submenu a:last-child {
    margin: 0px;
    border-bottom: 0px;
    padding-bottom: 0px;
}

.header .submenu a:hover {
    color: #9cc661;
}

.header .overlay {
    position: fixed;
    inset: 0px;
    height: 100%;
    width: 100%;
    z-index: 9;
    visibility: hidden;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    background-color: rgba(0, 0, 0, 0.65);
}

@media only screen and (max-width: 999px) {
    .header .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

.header.cust-style {
    position: absolute;
    right: 0px;
    top: 0px;
    max-width: 54%;
    background: #9cc661;
    border-radius: 0px 0px 10px 10px;
    padding: 16px 0px;
}

@media (max-width: 1320px) {
    .header.cust-style {
        max-width: 55%;
    }
}

@media (max-width: 1199px) {
    .header.cust-style {
        max-width: 64%;
    }
}

@media (max-width: 999px) {
    .header.cust-style {
        position: relative;
        background: #fff;
        border-radius: 0px;
        max-width: 100%;
    }
}

.header.cust-style .container {
    justify-content: center;
}

@media (max-width: 999px) {
    .header.cust-style .container {
        justify-content: space-between;
    }
}

.header.cust-style .language {
    box-shadow: none;
    background: none;
}

.header.cust-style.sticky {
    position: absolute;
    left: auto;
    right: 0px;
}

@media (max-width: 999px) {
    .header.cust-style.sticky {
        position: fixed;
        padding: 12px 0px;
    }
}

.header.cust-style .hidelink {
    display: none;
}

@media (max-width: 999px) {
    .header.cust-style .hidelink {
        display: block;
    }
}

.header.cust-style .logo {
    display: none;
}

@media (max-width: 999px) {
    .header.cust-style .logo {
        display: block;
    }
}

.header.cust-style .logo img {
    max-width: 140px;
}

@media (max-width: 999px) {
    .header.cust-style .logo img {
        max-width: 90px;
    }
}

@media (max-width: 999px) {
    .header.cust-style .navbar .logo img {
        max-width: 140px;
    }
}

.header.cust-style .menu-item {
    border-right: 1px solid #ffffff42;
    margin: 0px;
}

@media (max-width: 999px) {
    .header.cust-style .menu-item {
        border: 0px;
    }
}

.header.cust-style .menu-item:last-child {
    border: 0px;
}

@media (max-width: 999px) {
    .header.cust-style .menu-item:last-child {
        display: none;
    }
}

.header.cust-style .menu-link {
    color: #fff;
    padding: 0px 20px;
}

@media (max-width: 1320px) {
    .header.cust-style .menu-link {
        padding: 0px 16px;
    }
}

@media (max-width: 999px) {
    .header.cust-style .menu-link {
        color: #000;
        padding: 8px 16px;
    }
}

.header.cust-style .menu-link::after {
    display: none;
}

.slider__item {
    position: relative;
    width: 100%;
    height: 80vh;
    padding: 0px !important;
}

@media (max-width: 1199px) {
    .slider__item {
        height: 100vh;
    }
}

@media (max-width: 999px) {
    .slider__item {
        height: 400px;
    }
}

.slider__item .carousel {
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.slider__item .carousel:hover .carousel-control-next {
    right: 24px;
}

.slider__item .carousel:hover .carousel-control-prev {
    left: 24px;
}

.slider__item .carousel .carousel-inner {
    height: 100%;
}

.slider__item .carousel .carousel-item {
    height: 100%;
    overflow: hidden;
}

@media (max-width: 767px) {
    .slider__item .carousel .carousel-item {
        height: 400px;
    }
}

.slider__item .carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider__item .carousel .carousel-control-next,
.slider__item .carousel .carousel-control-prev {
    width: 38px;
    height: 38px;
    top: 50%;
    opacity: 1;
    margin-top: -19px;
    background: #00000078;
    border-radius: 50%;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

@media (max-width: 767px) {

    .slider__item .carousel .carousel-control-next,
    .slider__item .carousel .carousel-control-prev {
        display: none;
    }
}

.slider__item .carousel .carousel-control-next svg,
.slider__item .carousel .carousel-control-prev svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.slider__item .carousel .carousel-control-next:hover,
.slider__item .carousel .carousel-control-prev:hover {
    background: #9cc661;
}

.slider__item .carousel .carousel-control-next {
    right: -90px;
}

.slider__item .carousel .carousel-control-prev {
    left: -90px;
}

.slider__item .carousel .carousel-control-prev svg {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media (max-width: 999px) {
    .slider__item .carousel {
        position: relative;
    }
}

.slider__item .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 50%;
    height: 160px;
    background: #fff;
    z-index: 10;
}

@media (max-width: 999px) {
    .slider__item .logo {
        display: none;
    }
}

.slider__item .logo img {
    max-width: 220px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

@media (max-width: 999px) {
    .slider__item .logo img {
        max-width: 90px;
    }
}

.slider__item .carousel-item {
    background: linear-gradient(180deg, #057783 0%, #80acb3 100%);
}

.slider__item .photo {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
}

@media (max-width: 999px) {
    .slider__item .photo {
        position: relative;
        width: 100%;
    }

    .slider__item .photo::after {
        content: "";
        position: absolute;
        inset: 0px;
        background: #00000091;
        z-index: 1;
    }
}

.slider__item .container {
    display: flex;
    align-items: center;
    height: 100%;
}

@media (max-width: 999px) {
    .slider__item .container {
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        z-index: 10;
        justify-content: center;
        text-align: center;
    }
}

.slider__item .w-50 {
    width: 44% !important;
    margin-top: 10%;
}

@media (max-width: 999px) {
    .slider__item .w-50 {
        width: 100% !important;
        margin: 0px;
    }
}

.slider__item .tag {
    display: block;
    color: #9cc661;
    margin-bottom: 16px;
}

@media (max-width: 999px) {
    .slider__item .tag {
        text-align: center;
    }
}

.slider__item .title {
    display: -webkit-box;
    line-clamp: 2;
    /* standard property */
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #fff;
    margin-bottom: 16px;
}

@media (max-width: 999px) {
    .slider__item .title {
        text-align: center;
    }
}

.services__item .title {
    text-align: center;
}

.services__item .rowbox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 999px) {
    .services__item .rowbox {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 12px;
    }
}

.services__item .item {
    border-radius: 12px;
    background: #81bac1;
    border: 1px solid #68979d;
    padding: 24px;
}

.services__item .item:nth-child(2) {
    background: #e5e5e5;
    border: 1px solid #d1cfcf;
}

.services__item .item:nth-child(3) {
    background: #9cc661;
    border: 1px solid #80a152;
}

.services__item .item .title {
    font-size: 20px;
    margin-top: 12px;
}

.services__item .item p {
    margin-top: 12px;
    text-align: center;
}

.services__item .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #fff;
}

.services__item .item .icon svg,
.services__item .item .icon img {
    width: 50px;
    height: 50px;
}

.services__item.cst-style .rowbox {
    margin: 0px !important;
}

@media (max-width: 999px) {
    .services__item.cst-style .rowbox {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .services__item.cst-style .rowbox {
        grid-template-columns: 1fr;
    }
}

.services__item.cst-style .item {
    display: flex;
    background: #F3F4F6;
    border: 0px !important;
}

@media (max-width: 400px) {
    .services__item.cst-style .item {
        display: block;
    }
}

.services__item.cst-style .item .icon {
    min-width: 84px;
    max-width: 84px;
    margin: 0px;
    margin-right: 8px;
    background: #fff;
}

@media (max-width: 400px) {
    .services__item.cst-style .item .icon {
        margin: 0px;
        margin-bottom: 8px;
    }
}

.services__item.cst-style .item .title {
    font-size: 18px;
    margin: 0px;
    text-align: left;
}

.services__item.cst-style .item p {
    margin-top: 8px;
    text-align: left;
}

.about__item {
    display: flex;
    align-items: center;
    min-height: 604px;
}

@media (max-width: 767px) {
    .about__item {
        display: block;
        min-height: inherit;
    }
}

.about__item .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.about__item .w-50 {
    padding-left: 48px;
}

@media (max-width: 767px) {
    .about__item .w-50 {
        margin-top: 24px;
        padding: 0px;
        width: 100% !important;
    }
}

.about__item .photo {
    position: absolute;
    left: 0px;
    top: 48px;
    width: 50%;
    height: calc(100% - 96px);
    border-radius: 0px 20px 20px 0px;
    border-right: 8px solid #9cc661;
    background: #F3F4F6;
    overflow: hidden;
}

@media (max-width: 767px) {
    .about__item .photo {
        position: relative;
        width: 100%;
        height: 400px;
        top: auto;
        border-radius: 0px;
        border: 0px;
    }
}

.about__item .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__item .tag {
    display: block;
    text-transform: capitalize;
    color: #9cc661;
    margin-bottom: 4px;
}

.about__item .title,
.about__item .slogan {
    color: #057783;
    margin-bottom: 8px;
}

.about__item .slogan {
    display: block;
    font-size: 20px;
}

.about__item .bottom {
    background: #057783;
    color: #fff;
    margin-top: 24px;
}

.banner__item {
    display: flex;
    align-items: center;
    min-height: 600px;
}

.banner__item::after {
    content: '';
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100%;
    background: #252e1780;
}

.banner__item .parallax-image {
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner__item .parallax-image img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner__item .inner {
    position: relative;
    width: 100%;
    padding: 24px;
    background: #ffffffb3;
    border-radius: 12px;
    z-index: 1;
}

.banner__item .inner .title {
    color: #057783;
    margin-bottom: 8px;
}

.aboutus__item .container {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 999px) {
    .aboutus__item .container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.aboutus__item .photo {
    height: 500px;
    border-radius: 20px;
    background: #F3F4F6;
    overflow: hidden;
}

@media (max-width: 999px) {
    .aboutus__item .photo {
        width: 100%;
        height: 400px;
    }
}

.aboutus__item .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutus__item .tag {
    display: block;
    text-transform: capitalize;
    color: #9cc661;
    margin-bottom: 4px;
}

.aboutus__item .title {
    margin-bottom: 8px;
}

.identity__item {
    display: flex;
    align-items: center;
    min-height: 600px;
}

.identity__item::after {
    content: '';
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100%;
    background: #252e1780;
}

.identity__item .parallax-image {
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.identity__item .parallax-image img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.identity__item .container {
    z-index: 10;
}

.identity__item .title {
    color: #fff;
    text-align: center;
}

.identity__item .rowbox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 999px) {
    .identity__item .rowbox {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 12px;
    }
}

.identity__item .item {
    border-radius: 12px;
    background: #fff;
    padding: 48px;
}

@media (max-width: 999px) {
    .identity__item .item {
        padding: 24px;
    }
}

.identity__item .item .title {
    font-size: 20px;
    color: #000;
    margin-top: 12px;
}

.identity__item .item p {
    margin-top: 12px;
    text-align: center;
}

.identity__item .item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #9cc661;
}

.identity__item .item .icon svg,
.identity__item .item .icon img {
    width: 50px;
    height: 50px;
    fill: #fff;
}

.teamwork__item .title {
    text-align: center;
}

.teamwork__item .rowbox {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 1199px) {
    .teamwork__item .rowbox {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 999px) {
    .teamwork__item .rowbox {
        gap: 12px;
        margin-top: 12px;
    }
}

@media (max-width: 767px) {
    .teamwork__item .rowbox {
        grid-template-columns: 1fr;
    }
}

.teamwork__item .item {
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    padding: 24px;
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.teamwork__item .item:hover {
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
}

.teamwork__item .item .title {
    font-size: 20px;
    margin-top: 12px;
}

.teamwork__item .item span {
    display: block;
    text-align: center;
    color: #057783;
}

.teamwork__item .item .social {
    justify-content: center;
    margin-top: 12px;
}

.teamwork__item .item .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #057783;
    min-width: 38px;
    max-width: 38px;
    height: 38px;
    border-radius: 50%;
    margin: 0px 4px;
}

.teamwork__item .item .photo {
    margin: 0px auto;
    width: 225px;
    height: 225px;
    background: #F3F4F6;
    border-radius: 50%;
    overflow: hidden;
}

.teamwork__item .item .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.questions__item .accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 999px) {
    .questions__item .accordion {
        grid-template-columns: 1fr;
        gap: 0px;
        margin-top: 12px;
    }
}

.questions__item .accordion-button:not(.collapsed) {
    background-color: #077687;
    color: #fff;
}

.questions__item .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}

.questions__item .accordion-item {
    background: #0776870d;
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.questions__item .accordion-body {
    background: #0776870d;
}

.questions__item .accordion-button {
    padding: 1rem;
    background: #0776870d;
    font-size: 18px;
    font-weight: 700;
}

.questions__item .accordion-button:focus {
    box-shadow: none;
}

.questions__item.cst-faq .accordion {
    margin-top: 16px;
    grid-template-columns: 1fr 348px;
    gap: 48px;
}

@media (max-width: 999px) {
    .questions__item.cst-faq .accordion {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.questions__item.cst-faq .item .inner {
    width: 100%;
    background: #077687;
    padding: 24px;
    border-radius: 12px;
}

.questions__item.cst-faq .item .inner .title {
    color: #fff;
    font-size: 24px;
}

.questions__item.cst-faq .item .inner p {
    color: #fff;
    margin-top: 4px;
}

.questions__item.cst-faq .item .inner .form-control {
    margin-top: 12px;
    background: #fff;
}

.questions__item.cst-faq .item .inner .bottom {
    margin-top: 12px;
    background: #9cc661;
    width: 100%;
    color: #fff;
}

.questions__item.cst-faq .item .inner .bottom:hover {
    background: #81a949;
}

.questions__item.cst-faq .item .follow {
    margin-top: 24px;
}

@media (max-width: 999px) {
    .questions__item.cst-faq .item .follow {
        margin-top: 12px;
    }
}

.questions__item.cst-faq .item .follow .title {
    font-size: 20px;
    text-align: center;
}

.questions__item.cst-faq .item .follow .social {
    justify-content: center;
    margin-top: 12px;
}

.questions__item.cst-faq .item .follow .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #057783;
    min-width: 38px;
    max-width: 38px;
    height: 38px;
    border-radius: 50%;
    margin: 0px 4px;
}

.contact__item .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

@media (max-width: 999px) {
    .contact__item .container {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 12px;
    }
}

.contact__item .item .tag {
    display: block;
    color: #9cc661;
}

.contact__item .item p {
    margin-top: 12px;
}

.contact__item .item .flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    border-block: 1px solid #e9e9e9;
    padding-bottom: 16px;
    margin-top: 24px;
}

@media (max-width: 767px) {
    .contact__item .item .flex {
        margin-top: 12px;
        grid-template-columns: 1fr;
    }
}

.contact__item .item .flex .media {
    display: flex;
    justify-content: flex-start;
    margin-top: 16px;
}

.contact__item .item .flex .media .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    max-width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e5f1f3;
}

.contact__item .item .flex .media .icon svg,
.contact__item .item .flex .media .icon img {
    fill: #077687;
    width: 28px;
    height: 28px;
}

.contact__item .item .flex .media .contant {
    margin-left: 12px;
}

.contact__item .item .flex .media .contant .title {
    font-size: 16px;
}

.contact__item .item .flex .media .contant p,
.contact__item .item .flex .media .contant a {
    display: block;
    width: 100%;
    margin: 0px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.contact__item .item .flex .media .contant a:hover {
    color: #9cc661;
}

.contact__item .item .follow {
    margin-top: 24px;
}

@media (max-width: 999px) {
    .contact__item .item .follow {
        margin-top: 12px;
    }
}

.contact__item .item .follow .title {
    font-size: 20px;
}

.contact__item .item .follow .social {
    margin-top: 12px;
}

.contact__item .item .follow .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #057783;
    min-width: 38px;
    max-width: 38px;
    height: 38px;
    border-radius: 50%;
}

.contact__item .itemform {
    padding: 48px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #dcdcde;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 999px) {
    .contact__item .itemform {
        padding: 24px;
    }
}

.contact__item .itemform .field {
    margin-top: 12px;
}

.contact__item .itemform .field label {
    margin-bottom: 4px;
    color: #000;
}

.contact__item .itemform .field .bottom {
    width: 100%;
    background: #077687;
    color: #fff;
}

.contact__item .itemform .field .bottom:hover {
    background: #9cc661;
}

.contact__item .itemform .field .form-control {
    border: 1px solid #07768740;
    background: #e5f1f3;
}

.contact__item .itemform .field .form-control:focus {
    border: 1px solid #077687;
    background: #fff;
}

.map {
    width: 100%;
    height: 455px;
    background: #F3F4F6;
    margin-bottom: -48px;
}

@media (max-width: 999px) {
    .map {
        height: 300px;
        margin: 0px;
    }
}

.map iframe {
    display: block;
    border: 0px;
    width: 100%;
    height: 100%;
}

.about__tabs .container {
    display: grid;
    grid-template-columns: 255px 1fr;
    gap: 48px;
    max-width: 80%;
}

@media (max-width: 999px) {
    .about__tabs .container {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 12px;
        max-width: 100%;
    }
}

.about__tabs .nav-tabs {
    display: block;
    border: 0px;
    border-right: 1px solid #dee2e6;
}

@media (max-width: 999px) {
    .about__tabs .nav-tabs {
        display: flex;
        justify-content: space-between;
        border: 0px;
        border-bottom: 1px solid #dee2e6;
    }
}

.about__tabs .nav-tabs a {
    display: flex;
    align-items: center;
    border-radius: 0px;
    padding: 24px 0px;
    color: #3B3B3B;
    font-weight: 800;
    margin: 0px !important;
    border: 0px !important;
    border-bottom: 1px solid #dee2e6 !important;
    cursor: pointer;
}

.about__tabs .nav-tabs a:last-child {
    border: 0px !important;
}

.about__tabs .nav-tabs a.active {
    border-bottom: 1px solid #dee2e6 !important;
    color: #000;
}

.about__tabs .nav-tabs a.active:last-child {
    border: 0px !important;
}

@media (max-width: 999px) {
    .about__tabs .nav-tabs a.active {
        border: 0px !important;
        border-right: 1px solid #dee2e6 !important;
    }
}

@media (max-width: 999px) {
    .about__tabs .nav-tabs a {
        border: 0px !important;
        border-right: 1px solid #dee2e6 !important;
        min-width: 33.333%;
        max-width: 33.333%;
        justify-content: center;
        padding: 12px;
    }
}

.about__tabs .nav-tabs a svg {
    min-width: 24px;
    max-width: 24px;
    height: 24px;
    margin-right: 8px;
}

@media (max-width: 550px) {
    .about__tabs .nav-tabs a svg {
        display: none;
    }
}

.about__tabs b {
    font-weight: 800;
    color: #000;
    margin-right: 4px;
}

.news__item .title {
    text-align: center;
}

.news__item .rowbox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 999px) {
    .news__item .rowbox {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 12px;
    }
}

.news__item .item {
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0px 4px 20px #0000001a;
}

.news__item .item:hover .photo::after {
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}

.news__item .item:hover .photo img {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
}

.news__item .item .title {
    font-size: 20px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.news__item .item .title:hover {
    color: #077687;
}

.news__item .item p {
    margin-top: 8px;
}

.news__item .item .more {
    display: flex;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #F3F4F6;
    color: #077687;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.news__item .item .more:hover {
    color: #9cc661;
}

.news__item .item .photo {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    height: 260px;
    background: #F3F4F6;
}

.news__item .item .photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.news__item .item .photo::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    content: '';
    z-index: 1;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    -o-transition: transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -180%, 0);
}

.news__item .item .photo .date {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 24px;
    top: 24px;
    color: #fff;
    background: #077687;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 2;
}

.news__inner__item .container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
}

@media (max-width: 999px) {
    .news__inner__item .container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.news__inner__item .item .mintitle {
    padding-bottom: 24px;
    border-bottom: 1px solid #F3F4F6;
}

@media (max-width: 999px) {
    .news__inner__item .item .mintitle {
        padding-bottom: 12px;
    }
}

.news__inner__item .item .mintitle .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

@media (max-width: 767px) {
    .news__inner__item .item .mintitle .flex {
        display: block;
    }
}

@media (max-width: 767px) {
    .news__inner__item .item .mintitle .social {
        margin-top: 12px;
    }
}

.news__inner__item .item .mintitle .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #057783;
    min-width: 38px;
    max-width: 38px;
    height: 38px;
    margin-right: 4px;
    border-radius: 50%;
}

.news__inner__item .item .mintitle .social a:last-child {
    margin: 0px;
}

.news__inner__item .item .date {
    display: block;
    color: #9cc661;
}

.news__inner__item .item .photo {
    position: relative;
    width: 100%;
    height: 500px;
    background: #F3F4F6;
    border-radius: 12px;
    margin-top: 24px;
    overflow: hidden;
}

@media (max-width: 999px) {
    .news__inner__item .item .photo {
        height: 300px;
        margin-top: 12px;
    }
}

.news__inner__item .item .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news__inner__item .item .minitem {
    position: relative;
    width: 100%;
    background: #F3F4F6;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

@media (max-width: 999px) {
    .news__inner__item .item .minitem {
        margin-bottom: 12px;
    }
}

.news__inner__item .item .minitem:last-child {
    margin: 0px;
}

.news__inner__item .item .minitem .title {
    font-size: 24px;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 12px;
}

.news__inner__item .item .minitem form {
    position: relative;
    margin-top: 24px;
}

.news__inner__item .item .minitem form .form-control {
    background: #fff;
    padding-right: 48px;
}

.news__inner__item .item .minitem form .bot-search {
    position: absolute;
    top: 6px;
    right: 12px;
    padding: 0px;
    border: 0px;
    outline: 0px;
    background: none;
    cursor: pointer;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.news__inner__item .item .minitem form .bot-search svg,
.news__inner__item .item .minitem form .bot-search img {
    width: 24px;
    height: 24px;
    fill: #9cc661;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.news__inner__item .item .minitem .inner {
    display: flex;
    align-items: center;
    align-items: flex-start;
    margin-top: 24px;
}

@media (max-width: 999px) {
    .news__inner__item .item .minitem .inner {
        margin-top: 12px;
    }
}

.news__inner__item .item .minitem .inner .photo {
    min-width: 84px;
    max-width: 84px;
    height: 84px;
    margin: 0px;
    margin-right: 16px;
}

.news__inner__item .item .minitem .inner .text {
    height: auto;
    border-radius: 0px;
    padding: 0px;
    border: 0px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .news__inner__item .item .minitem .inner .text {
        margin: 0px;
    }

    .news__inner__item .item .minitem .inner .text .lineclamp {
        display: none;
    }
}

.news__inner__item .item .minitem .inner .text .title {
    display: -webkit-box;
    line-clamp: 2;
    /* standard property */
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    padding: 0px;
    border: 0px;
    margin-top: 4px;
}

@media (max-width: 767px) {
    .news__inner__item .item .minitem .inner .text .title {
        margin: 0px;
    }
}

.news__inner__item .item .minitem .inner .text .date {
    font-size: 14px;
}

.scrollTopBtn {
    position: fixed;
    right: -100px;
    bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0px;
    z-index: 998;
    border-radius: 5px;
    background: #9cc661;
    cursor: pointer;
    opacity: 0;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

@media (max-width: 999px) {
    .scrollTopBtn {
        display: none;
    }
}

.scrollTopBtn.show {
    right: 12px;
    opacity: 1;
}

.scrollTopBtn svg {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 15px;
    height: 15px;
}

.scrollTopBtn svg path {
    fill: #fff;
}

.footer {
    position: relative;
    width: 100%;
    background: #077687;
    padding-top: 32px;
    margin-top: 48px;
}

@media (max-width: 999px) {
    .footer {
        margin-top: 0px;
        padding-top: 12px;
    }
}

.footer .newsletter {
    margin: -70px auto 0px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 80%;
    background: #9cc661;
    padding: 16px;
    border-radius: 16px;
}

@media (max-width: 999px) {
    .footer .newsletter {
        display: block;
        margin-top: 12px;
        max-width: 100%;
    }

    .footer .newsletter .form-control {
        text-align: center;
    }
}

.footer .newsletter label {
    white-space: nowrap;
    text-transform: capitalize;
    font-size: 24px;
    color: #fff;
    margin-right: 16px;
}

@media (max-width: 999px) {
    .footer .newsletter label {
        width: 100%;
        margin: 0px;
        margin-bottom: 16px;
        text-align: center;
    }
}

.footer .newsletter .bottom {
    height: 42px;
    min-width: 134px;
    margin-left: 16px;
    background: #077687;
    color: #fff;
    border-radius: 8px;
}

@media (max-width: 999px) {
    .footer .newsletter .bottom {
        width: 100%;
        margin: 0px;
        margin-top: 16px;
    }
}

.footer .rowbox {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 999px) {
    .footer .rowbox {
        display: block;
        margin: 0px;
    }
}

.footer .item {
    min-width: 25%;
    max-width: 25%;
    margin-top: 32px;
    padding-right: 24px;
}

@media (max-width: 999px) {
    .footer .item {
        min-width: 100%;
        max-width: 100%;
        padding: 0px;
    }
}

.footer .item:last-child {
    padding-right: 0px;
}

.footer .item:first-child {
    min-width: 50%;
    max-width: 50%;
}

@media (max-width: 999px) {
    .footer .item:first-child {
        min-width: 100%;
        max-width: 100%;
    }
}

.footer .item .title {
    position: relative;
    color: #fff;
    font-size: 20px;
    border-bottom: 1px solid #ffffff75;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

@media (max-width: 999px) {
    .footer .item .title {
        text-align: center;
    }
}

.footer .item .title::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: #9cc661;
    width: 60px;
    height: 2px;
}

@media (max-width: 999px) {
    .footer .item .title::after {
        right: 0px;
        margin: 0px auto;
    }
}

@media (max-width: 999px) {
    .footer .item .logo {
        width: 100%;
        text-align: center;
    }
}

.footer .item .logo img {
    max-width: 280px;
}

.footer .item p {
    margin-top: 12px;
    color: #fff;
}

@media (max-width: 999px) {
    .footer .item p {
        text-align: center;
    }
}

.footer .item .navmenu a {
    display: block;
    position: relative;
    margin-top: 8px;
    color: #fff;
    text-transform: capitalize;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    margin-bottom: 8px;
}

.footer .item .navmenu a:hover {
    color: #9cc661;
}

.footer .item .navmenu a:last-child {
    margin: 0px;
}

@media (max-width: 999px) {
    .footer .item .navmenu a {
        text-align: center;
    }
}

.footer .social {
    margin-top: 16px;
}

@media (max-width: 999px) {
    .footer .social {
        justify-content: center;
    }

    .footer .social a {
        margin: 0px 4px;
    }
}

.footer .media {
    display: flex;
    justify-content: flex-start;
    margin-top: 16px;
}

@media (max-width: 991px) {
    .footer .media {
        justify-content: center;
    }
}

.footer .media svg,
.footer .media img {
    fill: #9cc661;
    min-width: 18px;
    min-height: 18px;
    margin-top: 4px;
}

.footer .media .contant {
    margin-left: 12px;
}

.footer .media .contant p,
.footer .media .contant a {
    display: block;
    width: 100%;
    color: #fff;
    margin: 0px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.footer .media .contant a:hover {
    color: #9cc661;
}

.footer .copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 0px;
    border-top: 1px solid #ffffff75;
    margin-top: 48px;
}

.footer .copyright p {
    color: #fff;
    text-transform: capitalize;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
ul,
li,
hr,
strong,
b,
input,
select,
textarea,
.highcharts-title,
.highcharts-axis-labels,
.highcharts-yaxis-title {
    direction: ltr;
    text-align: left;
    margin: 0px;
    padding: 0px;
    border: 0px;
    text-decoration: none;
    list-style: none;
    color: #3B3B3B;
    font: normal 500 16px/28px 'Majalla';
    font-size: 30px;
}

.editor-data :is(h1, h2, h3, h4, h5, h6, p, a, img, ul, li, hr, strong, b, input, select, textarea,
    .highcharts-title, .highcharts-axis-labels, .highcharts-yaxis-title) {
    all: revert;
    src: url('../fonts/majalla.ttf') format('truetype');
    font-family: 'Majalla' !important;

    /* or revert-layer if you use cascade layers */
}

::-webkit-scrollbar {
    width: 5px;
    height: 2px;
}

::-webkit-scrollbar-track {
    background: #D9D9D9;
}

::-webkit-scrollbar-thumb {
    background-color: #9cc661;
    cursor: pointer;
}

.che-box {
    position: relative;
    cursor: pointer;
    font-weight: 300;
    padding-right: 22px;
}

.che-box input[type="checkbox"],
.che-box input[type="radio"] {
    position: absolute;
    left: 9000px;
}

.che-box input[type="checkbox"]+.label-text:before,
.che-box input[type="radio"]+.label-text:before {
    content: ' ';
    border: 1px solid #D9D9D9;
    background: #D9D9D9;
    width: 18px;
    height: 18px;
    position: absolute;
    z-index: 1;
    top: 7px;
    right: 0;
    border-radius: 4px;
}

.che-box input[type="radio"]+.label-text:before {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-clip: padding-box;
}

.che-box input[type="radio"]:checked+.label-text:before {
    background: #9cc661;
    box-shadow: inset 0 0 0px 4px #fff;
}

.che-box input[type="checkbox"]:checked+.label-text:before {
    background: #9cc661 url(../images/tick.svg) no-repeat center center;
    border: 1px solid #9cc661;
}

.che-box span.label-text {
    font-weight: 300;
    color: #000;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

textarea.form-control {
    height: 110px;
    resize: none;
}

section {
    position: relative;
    width: 100%;
    padding: 48px 0px;
    overflow: hidden;
}

@media (max-width: 999px) {
    section {
        padding: 24px 0px;
    }
}

.title {
    font-size: 36px;
    font-weight: bold;
    line-height: 150%;
    color: #000;
    text-transform: capitalize;
}

@media (max-width: 999px) {
    .title {
        font-size: 28px;
    }
}

.bottom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: #000;
    outline: none;
    outline-style: none;
    border: 0px;
    text-align: center;
    background: #fff;
    border-radius: 60px;
    white-space: nowrap;
    text-transform: capitalize;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    cursor: pointer;
    padding: 8px 24px;
}

.bottom:hover {
    background: #9cc661;
    color: #fff;
}

.bottom:hover svg path,
.bottom:hover svg line {
    stroke: #fff;
}

.bottom:focus {
    outline: none;
    outline-style: none;
    border: 0px;
}

.bottom svg {
    margin-right: 4px;
    min-width: 18px;
    max-width: 18px;
}

.bottom svg path,
.bottom svg line {
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.map-back {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 366px;
    padding: 0px;
    background: linear-gradient(180deg, #057783 0%, #80acb3 100%);
}

@media (max-width: 999px) {
    .map-back {
        height: 266px;
    }
}

.map-back img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-back:before {
    content: '';
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100%;
    background: #08474e91;
    z-index: 1;
}

.map-back .container {
    z-index: 10;
}

.map-back .title,
.map-back p {
    color: #fff;
    text-align: center;
}

.map-back p {
    margin-top: 12px;
    font-size: 20px;
}

@media (max-width: 999px) {
    .map-back p {
        font-size: 16px;
    }
}

.alert {
    display: flex;
    align-items: center;
    border: 0px;
    margin: 0px;
    margin-top: 16px;
    padding: 16px;
    border-radius: 4px;
    height: 60px;
}

.alert strong {
    margin-left: 8px;
    color: #856404;
}

.alert a {
    text-decoration: underline;
    color: #fff;
    font-weight: 400;
}

.alert a:hover {
    text-decoration: none;
}

.alert .text-mass {
    margin: 0px !important;
    margin-right: 12px !important;
}

.alert p {
    color: #fff;
    margin: 0px !important;
}

.alert.alert-success {
    background: linear-gradient(303.91deg, #1F7A66 7.57%, #60B3A7 94.39%);
}

.alert.alert-danger {
    background: linear-gradient(303.91deg, #C24848 7.57%, #D34A4A 94.39%);
}

.form-control {
    height: 42px;
    text-transform: none;
    background: #F8FAFD;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    background-clip: padding-box;
    border: 1px solid transparent;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.form-control:focus,
.form-control:hover,
.form-control:focus-visible {
    border: 1px solid #9cc661;
    outline: 0;
    outline-style: none;
    box-shadow: none;
}

select.form-control {
    appearance: none;
    /* standard property */
    -webkit-appearance: none;
    background: #fff url(../images/arrow.svg) no-repeat;
    background-position: 12px 16px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.pagination {
    justify-content: center;
    margin-top: 24px;
    overflow: hidden;
}

.pagination li {
    display: inline-block;
    margin-left: 8px;
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
    -webkit-border-radius: 5px !important;
    border-radius: 5px !important;
    background-clip: padding-box;
    min-width: 38px;
    height: 38px;
    border: 0px;
    background: #fff;
    border: 1px solid #077687;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    color: #077687;
}

.pagination li a:focus,
.pagination li span:focus {
    box-shadow: none;
    outline: 0px;
}

.pagination li svg {
    width: 12px;
    height: 12px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.pagination li:first-child a svg,
.pagination li:last-child a svg {
    max-width: 12px;
    height: 12px;
    fill: #0095DA;
}

.pagination li:last-child svg {
    transform: rotate(180deg);
}

.pagination li:first-child svg {
    transform: rotate(-180deg);
}

.pagination .page-link.active,
.pagination .page-link:hover {
    background: #077687 !important;
    border: 1px solid #077687;
}

.pagination .page-link.active svg,
.pagination .page-link:hover svg {
    fill: #fff;
}

.social {
    display: flex;
    align-items: center;
}

.social a {
    position: relative;
    margin-right: 12px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.social a svg {
    fill: #fff;
    width: 20px;
    height: 20px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.social a:hover {
    opacity: 0.7;
}

/*# sourceMappingURL=home.css.map */