
:root {
    --white: #fff;
    --lightGray: #f8f8f8;
    --mediumGray: #ccc;
    --darkGray: #2d2d2f;
    --black: rgb(0, 0, 0);
    --weboneBlue: #004679;
    --lightBlue:#d6e8f5;
    --red: #BC151C;
    --redTrans: #bc151d98;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    word-break: break-word;
    -webkit-text-size-adjust: 100%;
    line-height: 150%;
}

html {
    font-size: 62.5%;
}

body {
    /* background-color: var(--red); */
    background-color: var(--white);
}

body.loaded {
    opacity: 1;
}

body.menu-open {
    overflow: hidden;
}

a,
a:visited {
    text-decoration: none;
}

h1 {
    font-size: 32px;
    padding-bottom: 10px;
    line-height: 125%;
}

h2 {
    font-size: 26px;
    padding-bottom: 10px;
    line-height: 125%;
}

h3 {
    font-size: 24px;
    padding-bottom: 10px;
    line-height: 125%;
}

h4 {
    font-size: 20px;
    padding-bottom: 10px;
    line-height: 125%;
}

span {
    font-size: inherit;
    line-height: inherit;
}

.section-text-wrapper h1,
.section-text-wrapper h2 {
    padding: 10px 0;
}

a {
    color:var(--white);
}

a,
p,
label,
li,
button {
    font-size: 16px;
    /* line-height: 1.75rem; */
    padding-bottom: 10px;
}

span {
    font-size: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

hr {
    border: 1px solid var(--lightGray);
}

input:focus,
input:active,
textarea:focus,
textarea:active {
    border-bottom: 2px solid var(--lightGray) !important;
}

html,
body {
    width: 100%;
    height: 100%;
}

#content-wrapper {
    min-height: 100%;
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

main {
    width: 100%;
    transition: all 0.4s ease;
    flex-grow: 1;
}

footer {
    transition: all 0.4s ease;
}

header,
main,
footer {
    flex-shrink: 0;
}


/* Header */
#header-equalizer {
    position: relative;
    top: 0;
    left: 0;
    height: 0;
    width: 100%;
    z-index: -1;
}

body.sticky-body #header-equalizer {
    height: 11rem;
}

header {
    position: relative;
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.05), 0 5px 5px rgba(0, 0, 0, 0.05);
    /* background-color: var(--white); */
    background-color: var(--red);

    width: 100%;
}

.hide {
    display: none;
}

.shadow {
    box-shadow: 0 7px 14px rgba(171, 171, 171, 0.2), 0 5px 5px rgba(171, 171, 171, 0.2);
}

.app-menu {
    display: none;
    background-color: transparent;
    cursor: pointer;
}

.app-menu i {
    /* color: var(--black); */
    color: var(--white);
    font-size: 22px;
}

#open-menu-button {
    display: none;
}

#open-menu-button.open {
    display: block;
}

#close-menu-button {
    display: none;
}

#close-menu-button.open {
    display: block;
}

/* ############### */
.header-holder {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    max-width: 1800px;
    margin: 0 auto;
}

header.sticky {
    z-index: 998;
}

header.sticky {
    transition: all 0.4s ease;
    position: fixed;
    box-shadow: 0 2px 10px rgba(87, 87, 87, 0.31);
    top: 0;
    width: 100%;
}

header.sticky .app-menu {
    top: 20px;
}

header.sticky .header-holder {
    opacity: 0;
    height: 80px;
    -moz-animation: fadeIn 0.4s ease-in forwards;
    -webkit-animation: fadeIn 0.4s ease-in forwards;
    -o-animation: fadeIn 0.4s ease-in forwards;
    animation: fadeIn 0.4s ease-in forwards;
}

header.sticky .mainmenu li>ul {
    top: 80px;
}

header.sticky .mainmenu li>ul>li>ul {
    top: 0;
}

header.sticky .mainmenu a {
    font-size: 1.4rem;
}

header.sticky .mainmenu>li .desktop-arrow {
    bottom: 13px;
}

header.sticky img {
    opacity: 0;
    width: 100%;
    max-width: 6rem;
    position: relative;
    left: 0;
    -moz-animation: fadeIn 0.4s ease-in forwards;
    -webkit-animation: fadeIn 0.4s ease-in forwards;
    -o-animation: fadeIn 0.4s ease-in forwards;
    animation: fadeIn 0.4s ease-in forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

header img {
    /* width: 150px; */
    width: 80px;
    height: auto;
    padding: 16px 0;
    z-index: 2;
    display: block;
}

header nav {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.mainmenu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    flex-direction: row;
    justify-content: flex-end;
    height: 100%;
}

.mainmenu li {
    position: relative;
    padding: 0;
}

.mainmenu li>ul li {
    padding: 0;
}

.mainmenu li>ul {
    position: absolute;
    display: none;
    background-color: var(--lightGray);
    padding: 0;
    list-style-type: none;
    margin: 0;
    top: 110px;
    z-index: 200;
    min-width: 200px;
    box-shadow: 0 7px 14px rgba(171, 171, 171, 0.05), 0 5px 5px rgba(171, 171, 171, 0.05);
    border-top: 0;
    right: 0;
}

header.sticky .mainmenu li>ul {
    background-color: var(--white);
}

.mainmenu li>ul li a {
    padding: 20px;
    width: 100%;
    text-align: center;
    display: block;
}

.mainmenu li>ul>li>ul {
    display: none;
    right: calc(100% + -20px);
    top: 0;
    z-index: 300;
    right: 100%;
    background-color: var(--white);
}

header.sticky .mainmenu li>ul>li>ul {
    background-color: var(--white);
}

.mainmenu a.showsub {
    display: none;
}

.mainmenu a {
    /* color: var(--darkGray); */
    color: var(--white);

    font-size: 1.6rem;
    display: flex;
    height: 100%;
    align-items: center;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: relative;
    padding: 0 1.5rem;
}

.mainmenu a:hover {
    background-color: var(--lightGray);
}

.mainmenu li.active {
    background-color: var(--lightGray);
}

.mainmenu li.active .desktop-arrow i,
.mainmenu li.active .showsub i {
    /* color: var(--white) !important; */
    color: var(--black) !important;
}

.mainmenu li a.active {
    font-weight: normal;

    color: var(--black);
}


/*  */
#content-wrapper > header > div > nav > div > ul > li > ul > li > a:nth-child(1) {
    color: var(--black);
}
#content-wrapper > header > div > nav > div > ul > li > ul > li > ul > li > a {
    color: var(--black);
}
/*  */


.mainmenu a:hover {
    color: var(--darkGray) !important;
}

.menu-container {
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

header.sticky .menu-container {
    opacity: 0;
    -moz-animation: fadeIn 0.4s ease-in forwards;
    -webkit-animation: fadeIn 0.4s ease-in forwards;
    -o-animation: fadeIn 0.4s ease-in forwards;
    animation: fadeIn 0.4s ease-in forwards;
}

.mainmenu>li .desktop-arrow {
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 20px;
    left: calc(50% - 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 400;
    /* color: var(--darkGray); */
    color: var(--white);

}

.mainmenu .desktop-arrow i {
    position: absolute;
    font-size: 11px;
}

.mainmenu>li>ul>li>.desktop-arrow {
    transform: rotate(90deg);
    left: 0;
    top: 24px;

    color: var(--black);
}

/* #content-wrapper > header > div > nav > div > ul > li > ul > li > div > i */

.flex-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

footer {
    width: 100%;
    background-color: var(--black);
}

.footer-main {
    width: 100%;
    padding: 5rem 4rem 10rem 4rem;
    max-width: 1400px;
    margin: 0 auto;

    background-color: var(--black);

}

.footer-33-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}

.footer-33-wrapper .footer-33 {
    width: 31.33%;
    margin: 1%;
    width: calc(31.33% - 3rem);
    margin: 1.5rem 0;
    color: var(--white);
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
}

.footer-33-wrapper .footer-33:first-of-type {
    justify-content: flex-start;
}

.footer-33-wrapper .footer-33 a {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.footer-main .footer-33 a:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    color: var(--red);
}

#footer-33-1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#footer-33-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#footer-33-2 .partner-logo {
    max-width: 15rem;
    padding: 1rem;
}

.footer-logo {
    max-width: 200px;
    min-width: 200px;
}

.footer-logos {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-evenly;
}

/* .footer-logo img {
    width: 100%;
    height: auto;
    max-width: 80px;
} */

.footer-main .footer-33 a.footer-social:hover {
    color: var(--redTrans);
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.footer-main p,
.footer-main a {
    color: var(--white);
}

ul.footer-menu,
ul.footer-menu li {
    list-style-type: none;
}

ul.footer-menu li ul {
    padding-left: 5px;
}

ul.footer-menu li ul li {
    display: flex;
    display: none;
}

ul.footer-menu li ul li::before {
    content: "-";
    padding-right: 10px;
    color: var(--white);
}

ul.footer-menu .sub ul ul {
    display: none;
}

ul.footer-menu .showsub {
    display: none;
}


#footer-logo img {
    max-width: 120px;
    height:auto;
    margin:0 auto; 
}

.footer-social-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.footer-social-wrapper a {
    color: var(--white);
    margin-bottom: 1rem;
}

.social-link-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.social-link-wrapper i {
    font-size: 4rem;
}

.footer-social {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer-social i {
    font-size: 30px;
    margin-right: .75rem;
}


.footer-copy {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 10px 25px;
    background-color: var(--lightGray);
}




.social-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}


.footer-copy p,
.footer-copy a {
    color: var(--black);
    font-size: 12px;
    padding-bottom:0;
}

.footer-icons {
    text-align: center;
}

.footer-icons a,
.footer-icons div {
    color: var(--white);
    font-size: 9px;
}

.footer-icons a {
    font-weight: bold;
}

.center {
    text-align: center;
}

.fat {
    font-weight: bold;
    padding-bottom: 2.5px;
}

.bold {
    font-weight: bold;
}

.tiny {
    font-size: 4px;
    line-height: 100%;
}

.loader {
    align-items: center;
    justify-content: center;
    display: none;
    padding-top: 25px;
}

.circle {
    background-color: var(--mediumGray);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 4px;
    animation: bounce 0.5s ease-in infinite;
}

.circle:nth-of-type(2) {
    animation-delay: 0.1s;
}

.circle:nth-of-type(3) {
    animation-delay: 0.2s;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.loader-wrapper {
    width: 100%;
    display: none;
}

#message-confirm {
    display: flex;
}

.spinner {
    margin: 100px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

.spinner>div {
    background-color: var(--mediumGray);
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinner .rect3 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.4);
    }
    20% {
        -webkit-transform: scaleY(1);
    }
}

@keyframes sk-stretchdelay {
    0%,
    40%,
    100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}


.form-wrapper {
    max-width: 1000px;
    width: 100%;
    width: calc(100% - 3rem);
    margin: 10rem 1.5rem;
    display: flex;
    flex-flow: column-reverse;
    border-radius: 5px;
}

.contact-form {
    background-color: var(--lightGray);
    color: var(--darkGray);
    display: flex;
    justify-content: center;
    flex-flow: column;
    padding: 5% 15%;
    width: 100%;
    border-radius: 0 0 5px 5px;
}

.contact-form-100 {
    width: 100%;
    border-radius: 0;
}

.contact-form h2 {
    padding-bottom: 10px;
}

.contact-info {
    color: var(--white);
    width: 100%;
    background-image:url('../images/contact.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 25px;
    min-height: 35rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    border-radius: 5px 5px 0 0;
    position: relative;
}

.contact-info::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px 5px 0 0;
}

.contact-info-content {
    z-index: 1;
    text-align: center;
}

.contact-form label {
    display: block;
    margin: 5px 0;
    font-size: 14px;
    color: var(--darkGray);
    font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
    background-color: var(--lightGray);
    padding: 5px;
    display: block;
    border: none;
    min-width: 200px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--mediumGray);
    border-radius: 0 !important;
}

.contact-form textarea {
    background-color: var(--lightGray);
    padding: 5px;
    display: block;
    border: none;
    min-width: 200px;
    min-height: 100px;
    margin-bottom: 20px;
    resize: vertical;
    border-bottom: 1px solid var(--mediumGray);
    outline: 0;
    border-radius: 0 !important;
}

textarea:focus,
input:focus,
button:focus {
    outline: none;
}

.contact-form #contact-form-title {
    padding-bottom: 25px;
    color: #4d4c50;
}

.contact-form #submit-button {
    display: block;
    border: none;
    background-color: var(--redTrans);
    color: var(--white);
    margin-top: 25px;
    cursor: pointer;
    padding: 10px 30px;
    border-radius: 3px;
    width: fit-content;
    width: -moz-fit-content;
    display: table;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    position: relative;
    transition: all 0.4s ease;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    appearance: none;
    -webkit-appearance: none;
}

.contact-form #submit-button:disabled {
    background-color: var(--mediumGray);
    opacity: 0.7;
    color: var(--white);
    cursor: not-allowed;
}

.contact-form #submit-button:hover {
    background-color: var(--redTrans);
    color: var(--white);
    -webkit-animation-name: hvr-wobble-top;
    animation-name: hvr-wobble-top;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.contact-form #submit-button:disabled:hover {
    background-color: var(--mediumGray);
    cursor: not-allowed;
    animation: none !important;
    -webkit-animation: none !important;
}

.contact-form #submit-button i {
    color: var(--white);
}

.contact-info .big-icon-wrapper .big-icon {
    font-size: 100px;
    color: var(--white);
}

.contact-info .big-icon-wrapper .big-icon i {
    animation: twiggle 5s 3s ease forwards infinite;
}

@keyframes twiggle {
    0% {
        transform: scale(1);
        transform: rotate(180deg);
    }
    10% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1.25);
    }
    90% {
        transform: rotate(180deg);
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.error-message {
    font-size: 12px;
    color: var(--red);
    margin-bottom: 25px;
}


#message-box {
    height: 50px;
    width: 100%;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    z-index: 1;
    opacity: 0;
    background-color: var(--lightGray);
    animation-name: popUp;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    animation-delay: 1.5s;
}

#message-box p {
    text-align: center;
    line-height: 50px;
    font-weight: bold;
    font-size: 120%;
    color: var(--white);
}

@keyframes popUp {
    0% {
        bottom: -50px;
        opacity: 1;
    }
    10% {
        bottom: -25px;
        opacity: 1;
    }
    20% {
        bottom: 0px;
        opacity: 1;
    }
    79% {
        bottom: 0px;
        opacity: 1;
    }
    90% {
        bottom: -25px;
        opacity: 1;
    }
    99% {
        bottom: -50px;
        opacity: 1;
    }
    100% {
        bottom: -50px;
        opacity: 0;
    }
}


/* News */

.box-50-news,
.box-50-news:visited {
    width: 50%;
    width: calc(50% - 3rem);
    margin: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    color: var(--darkGray);
    border-radius: 0.3rem;
}

.box-50-news .box-date {
    /* background-color: var(--lightBlue); */
    background-color: var(--lightGray);
    width: 100%;
    height: 100%;
    max-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-wrap: wrap; */
    /* flex-flow: wrap; */
    padding: 2.5rem;
    color: var(--darkGray);
    border-radius: 3px 3px 0 0;
}

.box-date-text-date {
    color: var(--darkGray);
    font-weight: bold;
    font-size: 16px;
    margin-right: 10px;
}

.box-date-text-year {
    color: var(--darkGray);
    font-weight: bold;
    font-size: 16px;
}

.box-50-news .box-content {
    width: 100%;
    padding: 5rem;
    border-radius: 0 0 3px 3px;
}

.box-50-news .box-content h4 {
    color:var(--black);
}

.box-50-news .box-content .box-content-date {
    font-size: 12px;
    padding-top: 10px;
    color: var(--lightGray);
}

.news-link {
    color: var(--mediumGray);
    font-weight: bold;
}

.single-news-header {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
}

.single-news {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--white);
    margin: 50px auto;
    padding: 25px 50px;
}

.single-news h1 {
    position: relative;
    padding-bottom: 10px;
}

.single-news img {
    margin: 15px 0;
}

#news-wrapper {
    width: 100%;
    padding-top: 50px;
    display: flex;
    flex-wrap: wrap;
}

.latest-news-wrapper {
    padding: 5rem 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.box-33-news {
    width: 33.33%;
    width: calc(33.33% - 3rem);
    margin: 1.5rem;
    background-color: var(--white);
    background-color: var(--lightGray);
    border-radius: 0.3rem;
}

.box-33-news .box-image-container {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 65%;
}

.box-33-news .box-content {
    padding: 30px;
}

.box-33-news .item-action {
    margin-bottom: 0 !important;
}

#more-news-wrapper {
    width: 100%;
    padding: 0 1.5rem;
}

#more-news {
    margin: 50px auto;
    display: table;
}

.news-loader-wrapper {
    width: 100%;
    position: relative;
}

.news-loader {
    align-items: center;
    justify-content: center;
    display: none;
    padding-top: 25px;
}


/* SLideshows */

.box-slider-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* height: 75vh; */
    height: 60vh;
    min-height: 300px;
    width: 100%;
    position: relative;
}

.slider-text-holder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    width: calc(100% - 30px);
    max-width: 1100px;
}

.slider-text-holder h1 {
    color: var(--white);
    font-size: 44px;
    padding-bottom: 15px;
}

.slider-text-holder p {
    color: var(--white);
    font-size: 22px;
    line-height: 175%;
}

.slider-text {
    padding: 20px 50px;
}


/** Gallery **/

.gallery-modal-layer {
    transform: translateZ(0);
    transform: translateX(-200%);
    transition: transform 0.5s cubic-bezier(0.07, 0.23, 0.34, 1);
    position: fixed;
    overflow: visible;
    overflow-y: scroll;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-modal {
    background-color: var(--white);
    width: 80%;
    height: 80%;
    margin: auto;
    padding: 25px;
    position: relative;
    box-shadow: 0 7px 14px rgba(87, 87, 87, 0.12), 0 5px 5px rgba(88, 88, 88, 0.12);
}

.close-gallery-modal {
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
    padding: 15px;
    background-color: var(--black);
}

.close-gallery-modal i {
    font-size: 25px;
    color: var(--white);
}

.gallery-modal-image {
    width: 100%;
    height: calc(100% - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-modal-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.gallery-modal-inner {
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.gallery-modal-inner .prev,
.gallery-modal-inner .next {
    cursor: pointer;
}

.gallery-modal-inner .prev i,
.gallery-modal-inner .next i {
    color: var(--mediumGray);
    font-size: 50px;
}

.gallery-modal-content {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-flow: column;
    padding-top:25px;
}

body.gallery-modal-open .gallery-modal-layer {
    transform: translateX(0);
    transform: translateY(0);
    position: fixed;
}

body.gallery-modal-open .gallery-modal {
    filter: drop-shadow(0 7px 14px rgba(87, 87, 87, 0.308));
}

.gallery-wrapper {
    padding: 50px 0;
    display: flex;
    flex-wrap: wrap;
}

.gallery-item {
    margin: 1.5rem;
    width: 100%;
    width: calc(20% - 3rem);
    cursor: pointer;
    background-color: var(--white);
    border-radius: 0.3rem;
    /* padding: 2.5rem; */
    /* padding: .5rem; */
}

.gallery-item img {
    max-width: 100%;
}







/* search */
#mobile-search-button {
    display: none;
    width: 5.5rem;
    height: 5.5rem;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  #close-search-mobile {
    display: none;
    float: right;
    width: 5.5rem;
    height: 5.5rem;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

#header-close-search {
    display: none;
  }

#search-box {
    /* height: 1rem; */
    height: 0;
    transition: all 0.4s ease;
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background-color: var(--lightGray);
  }
  
  #search-box #search-box-inner-wrapper {
    opacity: 0;
    width: 95%;
    max-width: 75rem;
    display: none;
  }
  
  #search-box #search-box-inner-wrapper.open {
    animation: fadeIn 0.3s 0.4s linear forwards;
    display: flex;
    flex-flow: column;
  }
  
  #search-box #search-box-inner-wrapper #search-box-form {
    width: 100%;
    background-color: var(--white);
    border-radius: 0.5rem;
    display: flex;
  }
  
  #search-box #search-box-inner-wrapper #search-box-form input {
    padding: 1.5rem 2.5rem;
    width: calc(100% - 6.5rem);
    border: none;
    margin: 0;
  }
  
  #search-box #search-box-inner-wrapper #search-box-form button {
    width: 6.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 3rem;
    margin: 0.5rem;
    background-color: var(--red);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
  }
  
  #search-box #search-box-inner-wrapper #search-box-form button i {
    font-size: 2.5rem;
  }
  
  #search-box.open {
    -moz-animation: showSearch 0.2s linear forwards;
    -webkit-animation: showSearch 0.2s linear forwards;
    -o-animation: showSearch 0.2s linear forwards;
    animation: showSearch 0.2s linear forwards;
    z-index: 9;
  }
  
  .search_result_overview {
    padding: 0.5rem 0 0 0;
    width: 100%;
    display: flex;
  }
  
  body.sticky-body #search-box.open .search_result_overview {
    display: none;
  }
  
  body.sticky-body #search-box.open {
    position: fixed;
    top: 8.8rem;
    z-index: 996;
    -moz-animation: showSearchSticky 0.2s linear forwards;
    -webkit-animation: showSearchSticky 0.2s linear forwards;
    -o-animation: showSearchSticky 0.2s linear forwards;
    animation: showSearchSticky 0.2s linear forwards;
  }
  
  body.sticky-body #search-box #search-box-inner-wrapper #search-box-form input {
    padding: 1rem 2rem;
  }
  
  body.sticky-body #search-box #search-box-inner-wrapper #search-box-form button {
    padding: 1rem 2rem;
  }
  

  
@keyframes showSearch {
	from {
		padding: 0;
		height: 0;
		visibility: hidden;
		top: 0;
	}

	to {
		padding: 2.5rem;
		height: auto;
		visibility: visible;
		top: 12rem;
	}
}

@-webkit-keyframes showSearch {
	from {
		padding: 0;
		height: 0;
		visibility: hidden;
		top: 0;
	}

	to {
		padding: 2.5rem;
		height: auto;
		visibility: visible;
		top: 12rem;
	}
}
@keyframes showSearchSticky {
	from {
		padding: 0;
		height: 0;
		visibility: hidden;
	}

	to {
		padding: 1.5rem 2.5rem;
		height: auto;
		visibility: visible;
	}
}

@-webkit-keyframes showSearchSticky {
	from {
		padding: 0;
		height: 0;
		visibility: hidden;
	}

	to {
		padding: 1.5rem 2.5rem;
		height: auto;
		visibility: visible;
	}
}
/* end search */



@media all and (max-width: 1250px) {
    body.sticky-body #header-equalizer {
        height: 7rem;
    }
    body.menu-open main,
    body.menu-open footer {
        margin-left: 300px;
        position: relative;
        overflow: hidden;
    }
    body.menu-open main::after,
    body.menu-open footer::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        content: "";
        overflow: hidden;
        z-index: 2;
    }
    .header-content {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        /* padding-right: 62px; */
        padding-right: 8px;
    }
    .mainmenu.open {
        border-top: 1px solid var(--lightGray);
    }
    header.sticky img {
        /* width: 50px; */
        /* width: 32px; */
        width: 100%;
        /* max-width: 10rem; */
        max-width: 6rem;
        position: relative;
        left: 0;
        top: 0;
    }

    .header-content #logo {
        padding-bottom: 0;
    }

    header img {
        width: 100%;
        /* max-width: 10rem; */
        max-width: 6rem;
        padding: 0.3rem;
    }
    header.sticky .header-holder {
        height: 70px;
        -moz-animation: fadeIn 0.4s ease-in forwards;
        -webkit-animation: fadeIn 0.4s ease-in forwards;
        -o-animation: fadeIn 0.4s ease-in forwards;
        animation: fadeIn 0.4s ease-in forwards;
    }
    header.sticky .mainmenu li>ul {
        top: 0;
    }
    header.sticky .mainmenu li>ul>li>ul {
        top: 10px;
    }
    .header-holder {
        height: 70px;
        padding: 0;
    }
    header.sticky header-holder {
        height: 70px;
    }
    .menu-open {
        overflow: hidden;
    }
    .app-menu {
        display: block;
        z-index: 600;
        padding: 20px;
    }
    header.sticky .app-menu {
        position: relative;
        left: 0;
        top: 0;
    }
    .mainmenu.open {
        top: 70px;
        left: 0;
    }
    .mainmenu>li {
        font-size: 20px;
        margin: 20px 0 !important;
        margin: 0 !important;
        padding: 0;
        /* border-bottom: 1px solid #f3f3f3; */
    }
    .mainmenu li>ul {
        background-color: var(--white);
    }
    .mainmenu li>ul>li>ul {
        background-color: var(--white);
    }
    .mainmenu>li>ul>li {
        font-size: 16px;
    }
    .mainmenu>li>ul>li a {
        font-weight: normal !important;
        padding: 1rem 2.5rem;
    }
    .mainmenu>li>ul>li>ul>li {
        font-size: 15px;
    }
    .mainmenu>li>ul>li>ul>li a {
        font-weight: normal;
        margin-bottom: 10px;
        margin-top: -10px;
        margin-left: 5px;
    }
    .mainmenu {
        display: block;
        position: fixed;
        top: 70px;
        left: -100%;
        width: 300px;
        max-width: 300px;
        height: 100%;
        background-color: var(--white);
        z-index: 998;
        overflow: scroll;
        padding-bottom: 200px;
        transition: all 0.4s ease;
        box-shadow: 0 7px 14px rgba(171, 171, 171, 0.15), 0 5px 5px rgba(171, 171, 171, 0.15);
    }
    .mainmenu a {
        padding: 1.5rem 2rem;
        color: var(--black);
    }




    .mainmenu li>ul li a {
        text-align: left;
    }
    .mainmenu li {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .mainmenu>li .desktop-arrow {
        display: none;
    }
    .mainmenu a:after {
        display: none;
    }
    .mainmenu li a.active:after {
        display: none;
    }
    .mainmenu a.showsub {
        position: absolute;
        bottom: 0;
        width: 40px;
        height: 40px;
        right: 10px;
        top: 6px;
        display: flex;
        justify-content: center;
    }
    .showsub:hover {
        text-decoration: none;
        background-color: transparent !important;
    }
    .mainmenu>li>ul>li>a.showsub {
        right: 10px;
        top: 4px;
    }
    .mainmenu a.showsub i {
        /* color: var(--mediumGray); */
        color: var(--black);
        font-size: 16px;
    }
    .mainmenu li.sub a.showsub i {
        color: var(--black);
        font-size: 16px;
    }
    .mainmenu a.showsub i.hide {
        display: none;
    }
    .mainmenu li>ul {
        position: relative;
        top: 11px;
        box-shadow: none;
        border: none;
        background-color: var(--white);
        background-image: none;
        margin-top: -1.5rem;
    }
    .mainmenu li>ul>li>ul {
        top: 10px;
        right: 0;
        background-color: var(--white);
        background-image: none;
    }
    header.sticky .mainmenu li>ul>li>ul {
        background-color: var(--white);
        background-image: none;
    }
    .slider-text {
        padding: 20px;
    }
    .gallery-item {
        width: calc(25% - 3rem);
    }




    #header-close-search-button {
        display: none;
    }
    #header-search-button{
		display: none;
        color: var(--white);
	}
    #mobile-search-button {
		/* color: var(--blue); */
        color: var(--white);
		display: flex;
		float: right;
	}

	#mobile-search-button:hover,
	#close-search-mobile,
	#close-search-mobile:hover {
		color: var(--white);
		background-color: var(--blue);
		text-decoration: none;
	}


}

@media all and (max-width: 960px) {
    /* header img {
    width: 90px;
    padding: 19px 0;
  } */
    .single-news-header {
        min-height: 500px;
    }


/* small screen menu open */
    .mainmenu.open li a {
        color: var(--black);
    }


    .footer-triangle {
        clip-path: polygon(50% 65%, 0% 100%, 100% 100%);
        -webkit-clip-path: polygon(50% 65%, 0% 100%, 100% 100%);
    }
    .footer-main .icons-wrapper i {
        font-size: 24px;
        padding: 12px;
    }
    .footer-top:after {
        background-color: transparent;
    }
    .gallery-item {
        width: calc(33.33% - 3rem);
    }
    .single-news {
        padding: 25px 20px;
    }
    .box-50-news .box-content {
        padding: 3.5rem;
    }
    .form-wrapper {
        margin: 2rem 1.5rem;
    }
    .footer-logo {
        width:100%;
        max-width: 200px;
        min-width: 200px;
        padding:30px;
    }
    
    .footer-logos {
        flex-wrap: wrap;
    
    }


    #footer-logo img {
        max-width: 80px;
        height: auto;
        margin: 0 auto;
    }


    #header-close-search-button {
        display: none;
    }
    #header-search-button{
		display: none;
        color: var(--white);
	}
    #mobile-search-button {
		/* color: var(--blue); */
        color: var(--white);
		display: flex;
		float: right;
	}

	#mobile-search-button:hover,
	#close-search-mobile,
	#close-search-mobile:hover {
		color: var(--white);
		background-color: var(--blue);
		text-decoration: none;
	}

}

@media all and (max-width: 768px) {
    h1,
    section.section-header>div .section-text-wrapper h1,
    section.section-header>div .section-text-wrapper h1>span {
        font-size: 24px;
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 18px;
    }
    h4 {
        font-size: 16px;
    }
    p,
    a,
    label,
    li {
        font-size: 14px;
    }
    .slider-text-holder h1 {
        font-size: 24px;
    }
    .slider-text-holder p {
        font-size: 16px;
        line-height: 150%;
    }

    .box-slider-image {
        height: 50vh;
    }

    .gallery-wrapper {
        columns: 2;
    }
   
    .single-news-header {
        min-height: 400px;
    }
    .form-wrapper {
        flex-flow: column-reverse;
        width: 100%;
        margin: 0;
    }
    .contact-form {
        width: 100%;
        border-radius: 0;
        padding: 50px;
    }
    .contact-info {
        width: 100%;
        border-radius: 0;
        padding: 25px;
        background-attachment: unset !important;
    }
    .contact-info .big-icon-wrapper {
        padding: 25px;
    }
    .contact-info .big-icon-wrapper .big-icon {
        font-size: 50px;
        color: var(--white);
    }
    .contact-info .big-icon-wrapper .big-icon i {
        font-size: 50px;
        color: var(--white);
    }
    .gallery-item {
        width: calc(50% - 3rem);
    }
    
    .box-50-news {
        flex-flow: column;
        width: calc(100% - 4rem);
        margin: 1.5rem 2rem;
    }
    .box-50-news .box-date {
        width: 100%;
        padding: 25px 0;
    }
    .box-33-news {
        width: calc(100% - 4rem);
        margin: 1.5rem 2rem;
    }
    .contact-info .big-icon-wrapper .big-icon {
        font-size: 50px;
        color: var(--white);
    }
    .contact-form {
        padding: 50px 20px;
        border-radius: 0;
    }
    .form-wrapper,
    .contact-info,
    .contact-info::after {
        border-radius: 0;
    }

    .footer-main .footer-33 {
        width: 100%;
        width: calc(50% - 3rem);
        margin: 0;
    }

    .footer-main {
        padding: 5rem 2rem;
    }
    .footer-33-wrapper .footer-33 {
        padding: 1.5rem 0;
    }
    #footer-33-2 {
        border: none;
    }
    #footer-33-2 .partner-logo {
        max-width: 10rem;
        padding: 1rem;
    }

    .footer-33 .footer-contact-info {
        text-align: center;
    }

    #footer-33-3 {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #footer-33-3 .footer-social {
        display: flex;
        justify-content: center;
    }
    .footer-menu {
        text-align: center;
    }

    .footer-social-wrapper {
        align-items: center;
    }

}

@media all and (max-width: 550px) {
    p,
    a,
    label,
    li {
        font-size: 14px;
    }
    .gallery-wrapper {
        columns: 1;
    }
    .gallery-item {
        width: 100%;
        margin: 1rem 0;
        padding: 0 2rem;
    }
    .single-news-header {
        min-height: 350px;
    }
    .footer-main {
        padding: 50px 0;
    }
    .footer-copy p,
    .footer-copy a {
        font-size: 8px;
    }
    .footer-main .icons-wrapper i {
        font-size: 20px;
        padding: 10px;
    }
    .footer-main .footer-33 {
        width: 100%;
        margin: 0;
        padding: 20px;
    }
    .gallery-modal-inner {
        padding: 10px;
    }
    .gallery-modal-inner .next i,
    .gallery-modal-inner .prev i {
        font-size: 20px;
    }
    .gallery-modal {
        padding: 25px;
    }
    .close-gallery-modal {
        padding: 10px;
    }
    .close-gallery-modal i {
        font-size: 20px;
    }
}