@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
    font-family: 'Montserrat', sans-serif;;
    overflow-x: hidden;
    padding: 0;
}

.main, body {
    background: #edf2f9 !important;
}

/*------------------------------
            FONT
------------------------------*/
h1, h2, h3, h4, h5, h6, p, span, div {
    font-family: 'Montserrat', sans-serif;
}

/*------------------------------
           TEXT
------------------------------*/
.text-primary {
    color: #095096 !important;
}

/*------------------------------
           BACKGROUND
------------------------------*/
.bg-primary {
    background-color: #095096 !important;
}

.bg-soft-black {    
    background-color: rgba(0, 0, 0, 0.5);
}

#hero {    
    height: calc(100vh - 80px) !important;
    background-color: #cccecf;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/static/img/general/hero.jpg');
}

/*------------------------------
           BUTTON
------------------------------*/
.btn {
    border-radius: 8px !important;
}

.btn-transition {
    transition: all .2s ease-in-out !important;
}

.btn-transition:hover, .btn-transition:focus {
    box-shadow: none !important;
    transform: translateY(-2px);
    transition: all .2s ease-in-out !important;
}

/*------------------------------
            CARD
------------------------------*/
.card {
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.12) !important;
}

.padding-3 {
    padding: 30px 30px 30px 30px;
}

@media (max-width: 600px) {
    .padding-3 {
        padding: 20px 20px 20px 20px !important;
    }
  }

/*------------------------------
            SCROOLBAR
------------------------------*/
/* width */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    /*box-shadow: inset 0 0 2px grey;*/
    box-shadow: none;
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #b6b6b6;
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #e4e4e6;
}

/* ---------------------------------------- */
/*              LIGHT BOX
/* ---------------------------------------- */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    transition: .3s;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#lightbox-image {
    max-width: 100%;
    max-height: 100%;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

.image-name {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
}

.media-viewer {
    position: relative;
    display: block;
}

.media-viewer-container {
    position: absolute;
}

.media-viewer-icon {
    display: inline-flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    text-align: center;
    width: 2.25rem;
    height: 2.25rem;
    font-size: .9rem;
    color: #fff;
    background-color: #095096;
    border-radius: 50%;
    opacity: 0;
    transform: scale(.7);
    transition: .3s;
}

.media-viewer-container:hover .media-viewer-icon {
    opacity: 1;
    transform: scale(.7);
    transition: .3s;
}

.cursor-pointer {
    cursor: pointer;
}

/*------------------------------
            ALPINE
------------------------------*/
[x-cloak] {
    display: none !important;
}

/*------------------------------
            SWIPER
------------------------------*/
.swiper {
    width: 100%;
    height: 300px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide .card {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.swiper-slide {
    width: 40%;
}

@media (max-width: 600px) {
    .swiper-slide {
        width: 100% !important;
    }
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 100%;
    top: var(--swiper-navigation-top-offset, 50%);
    width: 50px;
    height: 50px;
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black !important;
}

/*------------------------------
           CARD
------------------------------*/
.carousel .card {
    padding: 100px;
}

@media (max-width: 600px) {
    .carousel .card {
        padding: 20px;
    }
}

.card {
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.12) !important;
    border: 0 !important;
}

.collapse.show {
    visibility: visible;
}

/*------------------------------
        GO TO TOP
------------------------------*/
.go-to-top-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #15803d;
    color: white;
    border: none;
    border-radius: 100%;
    cursor: pointer;
    z-index: 1000;
}

.go-to-top-button:hover {
    opacity: 0.8;
}