@import url('Fonts/GillSans/stylesheet.css');
@import url('../Fonts/DidonesqueRoman/stylesheet.css');
@import url('Fonts/Serenity/stylesheet.css');

:root {
    --gray: #e5ded1;
    --green: #2D503F;
    --greenHover: #10543a;
    --blue: #162348;
    --blueHover: #374366;
    --white: #fff;
    --footerGray: #cbcbcb;
    --lightBlue: #6c7e97;
    --red: #f30000;
    --lightGray: #a99a80;
    --headerBlue: #1C355E;
    /*--cream: #f3e7cc;*/
    --cream: #e6dcc6;
    /*--cream: #cbb9a1;*/
    --textGray: #929593;
    --textGrayHover: #929593;
    --lightCream: #f8f5ef;
}

body {
    font-family: 'gill_sansregular' !important;
    max-width: 100% !important;
}

*:focus,
*:active {
    outline: 0 !important;
    /*box-shadow: none !important;*/
    border-color: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.form-control {
    box-shadow: none !important;
}

a {
    text-decoration: none;
}

/*ol, ul {
    list-style: none;
    list-style-type:none;
}*/


.firstNav {
    background-color: var(--cream);
    font-size: 13px;
    font-weight: bold;
}

.firstNav a,
.firstNav a:focus {
    color: var(--green);
}

.firstNav .border-end {
    border-color: #bdb5a3 !important;
}

.firstNav ul li a:hover {
    background-color: var(--greenHover);
    color: #c8ba9e;
}

.navDivider {
    height: 18px;
    width: 1px;
    opacity: 1;
    color: white;
}

.secondNav {
    background-size: 5px 5px;
    background-image: repeating-linear-gradient(135deg, #273a31 0, #273a31 1px, #e5e5f700 0, #e5e5f700 50%);
    transition: all .4s;
}

.secondNav .navbar-nav .nav-link {
    padding: 8px 20px;
}

.secondNav ul li a {
    color: var(--cream);
    font-weight: 400;
    font-size: 18px;
    display: block;
}

.secondNav ul li a:hover,
.secondNav ul li a:focus,
.secondNav ul li a:active {
    background-color: rgb(45 80 63 / 1);
    color: var(--gray);
}


.navbar .megamenu {
    padding: 1rem;
    background-color: rgb(45 80 63 / 0.9);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(230,220,198, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}

.navbar-toggler {
    border-color: rgba(230, 220, 198, 0.40) !important;
}


@media all and (min-width: 992px) {

    .navbar .has-megamenu {
        position: static !important;
    }

    .navbar .megamenu {
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 0;
    }

    .bannerQuote p {
        font-size: 14px;
        letter-spacing: 4px;
    }

    .bannerQuote img {
        height: 25px;
        width: 15px;
    }
}

@media(max-width: 991px) {

    .navbar.fixed-top .navbar-collapse,
    .navbar.sticky-top .navbar-collapse {
        overflow-y: auto;
        max-height: 90vh;
        margin-top: 10px;
    }

    .bannerQuote p {
        font-size: 10px;
        letter-spacing: 2px;
        line-height: 20px;
    }

    .bannerQuote img {
        height: 15px;
        width: 10px;
    }
}

.dropdownitem li a {
    padding: 20px !important;
}

.dropdown-menu {
    background-color: var(--blue);
}


.steamCards p {
    color: var(--white);
    font-size: 26px;
}

/*.steamCards:hover .card-body {
    transform: scale(1.2);
    transition: transform .4s;
}*/

/*.steamCards {
    transition: 2s;
}
steamCard animation
    .steamCards:hover{
    transition:2s;
    transform:translateY(-200px);
}*/







.scScienceBg {
    background-image: url('https://media3.giphy.com/media/l41m3Dps5EQ8W1rZS/giphy.gif?cid=790b7611b5c57f2e579e14f52549a3305424eafdad1a3019&rid=giphy.gif&ct=g');
    padding: 0px;
}

.scScience {
    background-color: #f7b22e
}

.scScience:hover img {
    animation: rotate 1s infinite;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(359deg);
    }
}

.scTechnology {
    background-color: var(--greenHover);
}

.scTechnology:hover img {
    transform: scale(1.2);
    transition: transform .4s;
}

.scTechnologyBg {
    background-image: url('https://media3.giphy.com/media/3otPoUSjx4rU5XZp84/giphy.gif?cid=790b7611550459db8feda674d8eb875ecd88da5b346a2580&rid=giphy.gif&ct=g');
    padding: 0px;
}

.scEngineering {
    background-color: #194e70
}

.scEngineering:hover img {
    animation: coin-rotate 1s infinite;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

@keyframes coin-rotate {
    25% {
        transform: rotateX(90deg);
        -ms-transform: rotateX(90deg);
        -webkit-transform: rotateX(90deg);
    }

    50% {
        transform: rotateX(180deg);
        -ms-transform: rotateX(180deg);
        -webkit-transform: rotateX(180deg);
    }

    75% {
        transform: rotateX(270deg);
        -ms-transform: rotateX(270deg);
        -webkit-transform: rotateX(270deg);
    }

    100% {
        transform: rotateX(360deg);
        -ms-transform: rotateX(360deg);
        -webkit-transform: rotateX(360deg);
    }
}

.scEngineeringBg {
    background-image: url('https://media3.giphy.com/media/3otPoUSjx4rU5XZp84/giphy.gif?cid=790b7611550459db8feda674d8eb875ecd88da5b346a2580&rid=giphy.gif&ct=g');
    padding: 0px;
}

.scArt {
    background-color: #f77f00
}

.scArt:hover img {
    animation: swing 1s infinite;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(25deg);
        -ms-transform: rotate(25deg);
        transform: rotate(25deg);
    }

    40% {
        -webkit-transform: rotate(-20deg);
        -ms-transform: rotate(-20deg);
        transform: rotate(-20deg);
    }

    60% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    80% {
        -webkit-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.scArtBg {
    background-image: url('https://i.gifer.com/C8ik.gif');
    background-size: cover;
    padding: 0px;
}

.scMath {
    background-color: #d62828
}

.scMath:hover img {
    animation: flip 1s infinite;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}


.scMathBg {
    background-image: url('https://media3.giphy.com/media/3otPoUSjx4rU5XZp84/giphy.gif?cid=790b7611550459db8feda674d8eb875ecd88da5b346a2580&rid=giphy.gif&ct=g');
    padding: 0px;
}

.firstCarousel ol li {
    height: 30px;
    width: 3px;
    border-radius: 100%;
}

.secondCarousel.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%230048ba' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.secondCarousel.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%230048ba' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.indexCarousel-prev {
    /*transform: translateX(240px);*/
    left: -15% !important;
}

.indexCarousel-next {
    right: -15% !important;
}


.secondCarousel element.style {
    width: 100%;
    height: auto;
}

.vl {
    border-left: 1px solid var(--blue);
    /*border-left: 1px solid #162348;*/
    height: 100px;
    opacity: 0.5;
}

.divider {
    border-left: 1px solid var(--blue);
    /*border-left: 1px solid #162348;*/
    height: 100px;
    opacity: 0.5;
    width: 1px;
    margin: 0 auto;
}

.botFooter {
    font-size: 8px;
    background-color: rgb(45 80 63 / 0.9);
    background-size: 5px 5px;
    background-image: repeating-linear-gradient(135deg, #273a31 0, #273a31 1px, #1C355E 0, #1C355E 50%);
}

.botFooter,
.botFooter p,
.botFooter a,
.botFooter .border-top {
    color: #c6cee3;
    border-color: #c6cee3 !important;
}

.botFooter p,
.botFooter a {
    font-size: 12px;
    background-color: inherit;
    margin-right: 3px;
}

.botFooter a:hover {
    color: gray;
}


.footerList img {
    background-color: transparent;
    border-color: transparent;
}

.bottomCards p {
    color: var(--white);
}

.bg {
    background-size: cover;
}


.indexBanner.carousel-indicators .active {
    background-color: var(--red) !important;
}


.indexBanner.carousel-indicators {
    top: 0;
    margin: auto;
    height: 20px;
    right: 10px;
    left: auto;
    display: block;
}

/*left menu*/
.navMenu {
    background-color: var(--lightCream);
    /*margin-top: -2%;*/
}

.navMenu a {
    color: var(--textGray) !important;
    font-style: normal;
    font-size: 17px;
}

.navMenu p {
    color: var(--textGray);
    font-style: normal;
    font-size: 17px;
}

.navMenu a:hover {
    color: inherit;
    font-style: normal;
    text-decoration: none;
}

.navMenu li {
    padding: 3%;
}

navMenuContext {
    padding: 0px;
    color: black !important;
}

.navMenuHeader {
    font-size: 22px !important;
    margin-left: 25px;
}

.menuText p {
    font-size: 14px;
    font-weight: 500;
}

.menuText.h4 {
    /*color: #6c7e97;*/
    color: var(--lightBlue);
}



.photoGallery a,
.photoGallery p {
    /*color: #6c7e97;*/
    color: var(--lightBlue);
}

ul#nav li {
    background-color: inherit;
    border: none;
    border-radius: 0;
}

.nav-pills .nav-link:hover {
    background-color: inherit !important;
    font-weight: bold;
    text-align: start;
}

.nav-pills .nav-link.active {
    background-color: inherit !important;
    font-weight: bold;
    text-align: start;
}

.nav-pills .nav-link {
    background-color: inherit !important;
    color: var(--textGray) !important;
    font-size: 24px !important;
}

.nav-pills .nav-link.galleryTitles {
    font-size: 18px !important;
}

#myVideo {
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

.content {
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    width: 100%;
    padding: 20px;
}

#myBtn {
    width: 200px;
    font-size: 18px;
    padding: 10px;
    border: none;
    background: #000;
    color: var(--white);
    cursor: pointer;
}

#myBtn:hover {
    background: #ddd;
    color: black;
}

.videoText {
    position: relative;
    text-align: center;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--white);
    overflow: hidden;
    margin: 0 auto;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 20px;
    z-index: 3;
}



.ourDivision {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, 150%);
    color: var(--white);
    text-align: center;
}

.footerTextColor {
    color: var(--footerGray);
}

.ourDivision {
    position: absolute;
    bottom: 100px;
    right: 20px;
    font-size: 8px;
    width: 100%;
}

.ourDivision p {
    color: var(--white);
}

.ourDivisionCards a {
    color: var(--gray);
}

.divisionImage {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 5px solid white;
    z-index: 1;
    background-size: cover;
}

.divisionHover:hover .ourDivisionContent {
    background-color: #283457;
    box-shadow: 0 5px 7px 4px rgb(0 0 0 / 20%);
    transition: .5s all;
}

.ourDivisionContent {

    color: var(--cream);
    background-color: #285745;
    box-shadow: 0 5px 10px 4px rgb(0 0 0 / 20%);
    transition: .5s all;
}

.ourDivisionContent:hover {
    background-color: #283457;
    box-shadow: 0 5px 7px 4px rgb(0 0 0 / 20%);
    transition: .5s all;
}

.footerIcons {
    border-width: 1px;
    border-style: solid;
    border-color: orange;
    border-radius: 100%;
}

.carousel-indicators button {
    /*background-color: white !important;*/
    background-color: var(--white) !important;
    opacity: 1 !important;
}

.carousel-indicators .active {
    /*background-color: red !important;*/
    background-color: var(--red) !important;
}


/*ul#nav li a:hover,
ul#nav li.navMenuactive a,
ul#nav li.navMenuactive a:active {
    color: var(--lightBlue);
    background-color: inherit;
    font-weight: bold;
}*/

.navMenuactive a:hover,
.navMenuactive a,
.navMenuactive a:active {
    background-color: inherit;
    font-weight: bold;
}

.steamBannerContext {
    text-shadow: 2px 2px #0000007d;
    color: var(--cream);
}

@media(max-width: 991px) {
    #pageBanner {
        min-height: 300px !important;
    }

    .searchContext {
        margin-top: 3vh;
    }

    .searchbar-open {
        width: 45% !important;
    }

    .videoPlayIcon {
        width: 45px;
        height: 45px;
    }

    .calendarBtn {
        background-color: var(--greenHover);
        color: var(--cream) !important;
        border: none;
        padding: 5px;
        transition: all 1s;
        font-weight: bold;
        letter-spacing: 2px;
        font-size: 12px !important;
    }

    .calendarBtn span {
        vertical-align: middle;
        font-size: 8px;
    }

    .sbButton {
        opacity: 0.6;
        font-size: 10px;
    }

    #backToTop {
        position: fixed;
        bottom: 10px;
        right: 10px;
        z-index: 99;
        font-size: 18px;
        border: none;
        outline: none;
        background-color: #c6cee3;
        color: #1c355e;
        cursor: pointer;
        height: 35px;
        width: 35px;
        padding: 5px;
        border-radius: 50%;
    }

    /*#backToTop::after {
            content: "";
            background-color: lightcoral;
            border-color: transparent;
            border-radius: 50%;
            transform: translate(-10px, -70px) scale(0.1);
            opacity: 0;
            z-index: -1;
            transition: transform 0.3s, opacity 0.3s, background-color 0.3s
        }

        #backToTop:hover::after {
            opacity: 1;
            transform-origin: 100px 100px;
            transform: scale(1) translate(-10px, -70px);
        }*/


    .navbar.fixed-top .navbar-collapse,
    .navbar.sticky-top .navbar-collapse {
        overflow-y: auto;
        max-height: 90vh;
        margin-top: 10px;
    }

    .secondNav {
        /*background-color: #162348;*/
        background-color: var(--blue);
    }

    .navMenuactive::before {
        content: " ";
        font-weight: bolder;
        font-size: 8px;
        margin-left: -20px;
        margin-right: 5%;
        padding: 1px 12px 0px 10px;
        background-color: var(--textGray);
    }

    .videoText p {
        font-size: 12px;
        line-height: 6px;
    }

    .videoText .videoHeadline {
        font-size: 14px !important;
        font-weight: 600;
    }

    .pageContentSpace {
        /*min-height: 80px;*/
        /*margin-top:1vh;*/
        margin-top: 8px;
    }

    .backgroundCarousel {
        display: none;
    }

    .mdCarousel {
        display: block;
    }

    .steamBannerContext {
        margin: 0 auto;
        /* font-size: 12px;
        line-height: 0px; */
    }

    .steamBannerContext h5 {
        font-size: 10px;
    }

    .steamCards p {
        font-size: 18px !important;
    }

    .indexBanner.carousel-indicators button {
        height: 10px !important;
        width: 10px !important;
        margin: 0 10px !important;
        border-radius: 100%;
        /*background-color: white !important;*/
        background-color: var(--white) !important;
        opacity: 1 !important;
    }

    .indexBanner.carousel-indicators {
        bottom: 80px !important;
    }
}

@media(min-width: 991px) {
    #videoBg1 {
        background-repeat: no-repeat;
        background-position: center;
        background-attachment: fixed;
    }

    .videoModal .modal-dialog {
        max-width: 70%;
    }

    .searchContext {
        margin-top: 25vh;
    }

    .videoPlayIcon {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .calendarBtn {
        background-color: var(--greenHover);
        color: var(--cream) !important;
        border: none;
        padding: 5px;
        transition: all 1s;
        font-weight: bold;
        letter-spacing: 2px;
        font-size: 22px !important;
    }

    .calendarBtn span {
        vertical-align: text-bottom;
        font-size: 16px;
    }

    .sbButton {
        opacity: 0.6;
        font-size: 14px;
    }

    #backToTop {
        position: fixed;
        bottom: 10px;
        right: 10px;
        z-index: 99;
        font-size: 18px;
        border: none;
        outline: none;
        background-color: #c6cee3;
        color: #1c355e;
        cursor: pointer;
        height: 50px;
        width: 50px;
        padding: 5px;
        border-radius: 50%;
    }

    .wholeHeader {
        /*position: absolute !important;*/
        position: fixed;
        width: 100% !important;
    }

    .secondNav {
        /*background-color: #162348;*/
        background-color: var(--blue);
    }

    .navbar .megamenu {
        margin-top: 40px;
        border-radius: 0px !important;
    }

    .navMenuactive::before {
        content: " ";
        font-weight: bolder;
        font-size: 8px;
        margin-left: -7%;
        margin-right: 5%;
        padding: 1px 12px 0px 10px;
        background-color: var(--textGray);
    }

    .videoText p {
        font-size: 26px;
        line-height: 30px;
    }

    .videoText .videoHeadline {
        font-size: 35px !important;
        font-weight: 600;
    }

    .pageContentSpace {
        /*min-height: 80px;*/
        margin-top: 20vh;
    }

    .backgroundCarousel {
        display: block;
    }

    .mdCarousel {
        display: none;
    }

    .steamBannerContext {
        margin: 0 auto;
        font-size: 50px;
        bottom: 25%;
    }

    .steamBannerContext p,
    .steamBannerContext h5 {
        /* letter-spacing: 10px; */
    }

    .indexBanner.carousel-indicators button {
        height: 10px !important;
        width: 10px !important;
        margin: 0 10px !important;
        border-radius: 100%;
        /*background-color: white !important;*/
        background-color: var(--white) !important;
        opacity: 1 !important;
    }
}

main {
    min-height: 600px;
}

.border {
    color: red !important;
    border-color: red !important;
}

@media all and (min-width: 992px) {
    .navbar .has-megamenu {
        position: static !important;
    }

    .navbar .megamenu {
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 0;
    }

}

@media(max-width: 991px) {

    .navbar.fixed-top .navbar-collapse,
    .navbar.sticky-top .navbar-collapse {
        overflow-y: auto;
        max-height: 90vh;
        margin-top: 10px;
    }

}

.backgroundCarousel {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.mdCarousel {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.steamCardImages {
    width: 55px;
    height: 55px;
}

.whatisSteam {
    color: #194e70;
    background-color: #eef2f8;
    width: 100% !important;
    margin: 0px;
    padding-left: 20px;
}

.whatisSteam .wisHeadline {
    font-size: 16px;
}

.whatisSteam .wisHeadline2 {
    font-size: 32px;
    line-height: 1.1;
}

.whatisSteam .wisHeadline3 {
    font-size: 37px;
    line-height: 1;
}

.whatisSteam .wisHeadline2 p {
    margin-bottom: 0;
}

.whatisSteamContext {
    font-size: 16px;
    margin: 0 auto;
}

.indexCarousel a,
.indexCarousel p {
    color: #194e70;
    font-weight: bold;
}

.indexCarousel .icTitle {
    letter-spacing: 5px;
    font-size: 26px;
    line-height: 1;
}

.indexCarousel .icBody {
    background-color: #eef2f8;
}

/*.news-carousel .owl-stage {
    display: flex;
}

.news-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}

.news-carousel .newsCardBody {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}*/


.indexCarousel .icDate {
    font-size: 12px;
    color: #c3cdde !important;
}

.indexCarousel .icContentTitle {
    font-size: 12px;
}

.indexCarousel .icReadMore {
    color: #d62828 !important;
    font-size: 10px;
}

.indexCarousel .owl-carousel .owl-nav button.owl-next,
.indexCarousel .owl-carousel .owl-nav button.owl-prev {
    color: #335d7b;
}

.indexCarousel .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: -3%;
}

.indexCarousel .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: -3%;
}

.indexCarousel .owl-dots {
    color: var(--greenHover);
    width: 100%;
}


.indexCarousel .owl-dots {
    text-align: center;
    margin-top: 1rem;
}

.indexCarousel .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--headerBlue);
    margin: 0 3px;
}

.indexCarousel .owl-dots button.owl-dot.active {
    background-color: red;
}

.indexCarousel .owl-dots button.owl-dot:focus {
    outline: none;
}

.sortContent p,
.sortContent a,
.sortContent {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.videoSlider.carousel-indicators {
    z-index: 3;
}

.videoSlider.carousel-indicators button {
    background-color: white !important;
    opacity: 1 !important;
    height: 5px;
}

.videoSlider.carousel-indicators .active {
    background-color: red !important;
}

.vsContent {
    max-height: 500px;
    width: 100%;
}

.vsButton {
    background-color: transparent;
    color: white;
    border-color: transparent;
}

.vsPauseIcon {
    display: none;
    opacity: 0.2;
}

.fa-circle-play:hover,
.fa-circle-pause:hover {
    color: red !important;
}

.socialMediaIconsHover {
    padding-left: 0;
}

.socialMediaIconsHover a:hover {
    color: gray;
}

.socialMediaIcons {
    display: inline-block;
    border: solid;
    border-width: 1px;
    border-radius: 60px;
}

.videoText {
    color: var(--white);
}

.videoPlayIcon {
    background-image: url('../../assets/image/bis/playicon.png');
    background-size: cover;
}

.videoPlayIcon:hover {
    background-image: url('../../assets/image/bis/playiconRed.png');
    background-size: cover;
}

.accreditations {
    background-color: #eef2f8;
}

.pageContext a {
    color: var(--greenHover);
}

.pageContext {
    color: #434845;
    font-size: 18px;
}

/*DisplayTemplates*/
/*PageTabs*/
.pageTab .tabMenuText.h1,
.pageTab .tabMenuText.h2,
.pageTab .tabMenuText.h3,
.pageTab .tabMenuText.h4,
.pageTab .tabMenuText.h5 {
    color: var(--textGray);
}

.pageTab .nav-item {
    display: flex !important;
}

.pageTab .nav-tabs .nav-item .nav-link {
    background-color: var(--lightCream);
    color: var(--textGray);
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #e9e1d1;
    border-left: 1px solid #e9e1d1;
    border-right: 1px solid #e9e1d1;
}

.pageTab .nav-tabs .nav-item .nav-link.active {
    color: var(--textGray);
    background-color: #e9e1d1;
}

.pageTab .tab-content p {
    color: var(--textGray);
    font-size: 16px;
}

.tabMenuText {
    background-color: var(--lightCream);
}

.tabMenuText {
    color: var(--textGray);
    font-size: 16px;
}

.pageTab {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

/*Page Accordions*/
.pageAccordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23929593'><path fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/></svg>") !important;
}

.pageAccordion .accordion-button:after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23929593'><path fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/></svg>") !important;
}

.pageAccordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-135deg) !important;
    color: var(--textGray);
}

.pageAccordion .accordion-button:after {
    order: -1;
    margin-left: 0;
    margin-right: 0.5em;
}


.pageAccordion .accordion-button:not(.collapsed) {
    color: var(--textGray);
    background-color: #e9e1d1;
}

.pageAccordion .accordion-button {
    color: var(--textGray);
    background-color: var(--lightCream);
    font-size: 18px;
    font-weight: 600;
}

.pageAccordion .accordion-body {
    background-color: var(--lightCream);
}

.pageAccordion .accordion-body p {
    color: var(--textGray);
    font-size: 16px;
}

/*pageDocuments*/
.pageDocuments .coverImgList>.coverImg {
    margin-right: 25px;
}

.pageDocuments .coverImgList>.coverImg:last-child {
    margin-right: 0 !important;
}

.pageDocuments .coverImg {
    background-color: var(--lightCream);
    transition: all .4s;
}

.pageDocuments .coverImg:hover {
    background-color: #e9e1d1;
    transition: all .4s;
}

.pageDocuments .coverImg:hover img,
.pageDocuments .coverImg:hover p {
    filter: brightness(0) invert(1);
    color: #fff;
    transition: all .4s;
}


.pageDocuments img.centerImg {
    display: block;
    margin: 0 auto;
}

.pageDocuments img.avatarImg {
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    width: 150px;
    height: 150px;
}

.pageDocuments .card-text {
    color: var(--textGray);
    font-size: 18px;
    font-weight: bold;
}

/*pageGallery*/
.pageGallery {
    background-color: var(--lightCream);
}

.pageGallery .carousel-control-prev,
.pageGallery .carousel-control-next {
    top: 91% !important;
    width: 10%;
}

.pageGallery .carousel-control-next {
    right: 45% !important;
    color: red;
    width: 5% !important;
}

.pageGallery .carousel-control-prev {
    left: 45% !important;
    color: red !important;
    width: 5% !important;
}

.galleryCarousel.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000000' width='1' height='1' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
    width: 16px;
}

.galleryCarousel.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000000' width='1' height='1' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
    width: 16px;
}

/*forms*/
.centered {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, 150%);
    color: white;
    text-align: center;
}

.formButtons {
    background-color: var(--greenHover);
    border-radius: 0;
    color: var(--cream) !important;
    transition: all 1s;
    border: none;
    font-weight: bold;
    letter-spacing: 1px;
}

.formButtons:hover,
.formButtons:active,
.formButtons:focus {
    background-color: var(--cream);
    color: var(--greenHover) !important;
    transition: all 1s;
}

.formButtons:active {
    color: white;
    background-color: #ebe8e1;
}

.formColors {
    background-color: var(--lightCream);
}

.formDarkColors {
    background-color: #ebe8e1;
}

.contactForm {
    color: var(--textGray) !important;
}

.contactForm .form-control {
    color: #6c757d;
}



.calendarBtn:hover,
.calendarBtn:active,
.calendarBtn:focus {
    background-color: var(--cream);
    color: var(--greenHover) !important;
    transition: all 1s;
    text-shadow: none;
}


/*search bar*/
.searchbar {
    position: relative;
    min-width: 18px;
    width: 0%;
    height: 36px;
    float: right;
    overflow: hidden;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -ms-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
}

.searchbar-input {
    top: 0;
    right: 0;
    border: 0;
    outline: 0;
    background: var(--cream);
    width: 100%;
    height: 36px;
    margin: 0;
    padding: 0px 30px 0px 20px;
    font-size: 14px;
    color: var(--greenHover);
    /*pointer-events: none;*/
}

.searchbar-icon {
    z-index: 10;
    width: 15px;
    height: 35px;
    display: block;
    position: absolute;
    top: 0;
    font-size: 20px;
    right: 0;
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
    color: #10543a;
    background: var(--cream);
}

.searchbar-submit {
    z-index: -10;
    width: 18px;
    height: 40px;
    display: block;
    position: absolute;
    top: 0;
    font-size: 20px;
    right: 0;
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
    color: #10543a;
    background: var(--cream);
    /*border-left: 1px solid #bdb5a3;*/
}

.searchbar-icon .svg-inline--fa {
    width: 15px;
}

.searchbar-input::-webkit-input-placeholder {
    color: #10543a;
}

.searchbar-input:-moz-placeholder {
    color: #10543a;
}

.searchbar-input::-moz-placeholder {
    color: #10543a;
}

.searchbar-input:-ms-input-placeholder {
    color: #10543a;
}


.searchbar-open {
    width: 25%;
}


/*Our Team*/
.governorsCard {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    margin: 20px 10px;
}

.governorsCard a {
    color: black !important;
}

.governorsCard:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.governorsCardImg {
    width: 100%;
}


.searchPage a,
.searchResult p,
.searchResult h1,
.searchResult h2,
.searchResult h3,
.searchResult h4,
.searchResult h5 {
    color: var(--green) !important;
}

/*google maps*/
.mapouter {
    position: relative;
    text-align: right;
    height: 500px;
    width: 100%;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 500px;
    width: 100%;
}

#gmap_canvas {
    width: 100%;
    height: 500px;
    filter: grayscale(100%);
    /*filter: brightness(0) saturate(100%) invert(19%) sepia(35%) saturate(341%) hue-rotate(99deg) brightness(93%) contrast(93%) opacity(50%);*/
}

.cpTitle {
    letter-spacing: 5px;
    font-size: 26px;
    line-height: 1;
    color: var(--greenHover);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.wholeHeader {
    box-shadow: 0 5px 10px 4px rgb(0 0 0 / 20%);
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 2;
    display: block;
}

.videoModal .modal-content {
    background-color: transparent;
    border: none;
}

.videoModal .modal-header {
    border: none;
}

.videoModal .modal-body {
    padding: 0px;
}

/*.headerLogo {
    height: 120px;
}

    .headerLogo img {
        position: absolute;
    }

#navLogo {
    display: block;
}*/

#navLogoSm {
    display: none;
}


#myNavsm .accordion-item {
    background-color: rgba(255, 255, 255, 0.00);
}

#myNavsm .accordion {
    --bs-accordion-bg: rgba(255, 255, 255, 0.00);
    --bs-accordion-active-color: rgba(255, 255, 255, 0.00);
    --bs-accordion-btn-focus-border-color: rgba(255, 255, 255, 0.00);
    --bs-accordion-border-color: var(--cream);
}

#myNavsm .accordion-button:not(.collapsed) {
    background-color: rgba(255, 255, 255, 0.00);
}

#myNavsm .accordion-item.accordion-header.accordion-button:focus {
    border-color: none !important;
}

#myNavsm .accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f3e7cc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#myNavsm .accordion-flush .accordion-collapse {
    border-width: 0;
    background-color: #1d372b;
}

.fade-in-animation {
    animation: fade-in 1s;
}

.fade-out-animation {
    animation: fade-out 1s;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

#pageBanner {
    display: grid;
    min-height: 600px;
}

.newsNames {
    padding-top: 7px;
    padding-bottom: 7px;
    border-bottom: 1px solid #dcdcdc;
}

.logoFooter {
    background-color: var(--cream);
    color: var(--blue);
    font-weight: bold;
    background-size: 5px 5px;
    background-image: repeating-linear-gradient(135deg, #273a311a 0, #273a3100 1px, #e5e5f700 0, #b6a081 50%);
    box-shadow: rgb(0 0 0 / 40%) 0px 36px 12px -25px inset;
}

/* Shine effect animation for images */
figure {
    overflow: hidden;
    margin-bottom: 0;
}

figure:hover+span {
    opacity: 1;
}

.imageShine figure {
    position: relative;
}

/*.imageShine figure::before {
        position: absolute;
        top: 0;
        left: -75%;
        z-index: 2;
        display: block;
        content: '';
        width: 50%;
        height: 100%;
        background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
        -webkit-transform: skewX(-25deg);
        transform: skewX(-25deg);
    }

    .imageShine figure:hover::before {
        -webkit-animation: shine .75s;
        animation: shine .75s;
    }

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}*/

#homeBanner .owl-nav,
#homeBannerSm .owl-nav {
    position: absolute;
    top: 50%;
    color: var(--cream);
    width: 100%;
}

#homeBanner .owl-nav .owl-next {
    right: 30px;
    position: absolute;
    cursor: pointer;
}

#homeBanner .owl-nav .owl-prev {
    left: 30px;
    position: absolute;
    cursor: pointer;
}

#homeBannerSm .owl-nav .owl-next {
    right: 10px;
    position: absolute;
    cursor: pointer;
}

#homeBannerSm .owl-nav .owl-prev {
    left: 10px;
    position: absolute;
    cursor: pointer;
}

#homeBannerSm .owl-dots,
#homeBanner .owl-dots {
    text-align: center;
    margin-bottom: -25px;
    transform: translateY(-50px);
}

#homeBannerSm .owl-dots {
    transform: translateY(-35px);
}

#homeBannerSm .owl-dots button.owl-dot,
#homeBanner .owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: #fff;
    margin: 0 3px;
}

#homeBannerSm .owl-dots button.owl-dot {
    width: 10px;
    height: 10px;
}

#homeBannerSm .owl-dots button.owl-dot.active,
#homeBanner .owl-dots button.owl-dot.active {
    background-color: red;
    border: 2px solid white;
}

#homeBannerSm .owl-dots button.owl-dot:focus,
#homeBanner .owl-dots button.owl-dot:focus {
    outline: none;
}


#videoBg1 {
    background-size: cover;
}


.bannerQuote {
    background-color: #122e40;
}

.bannerQuote h1 {
    color: var(--lightCream);
    margin-bottom: 0;
    font-size: 18px;
    letter-spacing: 4px;
}

.bannerQuote img {
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: sub;
}


.overlay {
    overflow-y: auto;
}

.overlay a {
    font-size: 14px !important;
    line-height: 6px;
    padding: 0px !important;
}

.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: rgb(45 80 63 / 1);
    overflow-y: hidden;
    transition: 0.5s;
    background-image: url('../../assets/image/bis/british-agac4.png');
    background-size: cover;
    background-position-y: center;
    background-position-x: center;
}

.overlay-content {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 5%;
}

.overlay a {
    padding: .3vw;
    text-decoration: none;
    font-size: 36px;
    color: var(--cream);
    display: block;
    transition: 0.3s;
    font-size: 12px;
    text-align: start;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
}

.overlayBgImg {
    background-size: cover;
    background-image: url('../../assets/image/bis/pattern.png');
    height: inherit;
    overflow-y: auto;
}

.overlay .closebtn {
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    font-size: 60px;
    z-index: inherit;
    right: 47%;
}

.overlay .closebtnX {
    position: absolute;
    font-size: 25px !important;
    z-index: inherit;
    top: 40px;
    right: 40px;
}

#myNavsm .accordion-item {
    background-color: rgba(255, 255, 255, 0.00);
}

#myNavsm .accordion {
    --bs-accordion-bg: rgba(255, 255, 255, 0.00);
    --bs-accordion-active-color: rgba(255, 255, 255, 0.00);
    --bs-accordion-btn-focus-border-color: rgba(255, 255, 255, 0.00);
    --bs-accordion-border-color: var(--cream);
}

#myNavsm .accordion-button:not(.collapsed) {
    background-color: rgba(255, 255, 255, 0.00);
}

#myNavsm .accordion-item.accordion-header.accordion-button:focus {
    border-color: none !important;
}

#myNavsm .accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f3e7cc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#myNavsm .accordion-flush .accordion-collapse {
    border-width: 0;
    background-color: #1d372b;
}


@media all and (min-width: 768px) {
    .news-carousel .carditems {
        opacity: 1;
        transition: .5s all;
        -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
        -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
    }

    .news-carousel:hover .carditems {
        opacity: 0.8;
    }

    .news-carousel .carditems:hover {
        opacity: 1;
        -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.75);
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.75);
    }

    .news-carousel .owl-item {
        padding: 20px;
    }

    .newsCarouselButtons {
        padding: 0 20px;
    }
}


.stickyEnquiryForm {
    background-color: rgb(45 80 63 / 1);
    background-size: 5px 5px;
    background-image: repeating-linear-gradient(135deg, #273a31 0, #273a31 1px, #e5e5f700 0, #e5e5f700 50%);
    text-align: center;
    display: none;
    transform: translateY(1px);
    padding: 10px 0;
    box-shadow: 0px -3px 7px 1px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px -3px 7px 1px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px -3px 7px 1px rgba(0, 0, 0, 0.5);
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    z-index: 1020;
}

.stickyEnquiryForm a {
    color: var(--cream);
    padding: 0;
    letter-spacing: 2px;
}

.navContactIcon {
    height: 25px;
}


.enquirySection {
    background-color: var(--lightCream);
    font-size: 20px;
    color: var(--blue);
}

.enquiryButton {
    background-color: var(--blue);
    color: var(--cream);
    padding: 22px 50px 20px 50px;
    -webkit-box-shadow: 10px -10px 0px 0px rgba(165, 161, 137, 0.75);
    -moz-box-shadow: 10px -10px 0px 0px rgba(165, 161, 137, 0.75);
    box-shadow: 10px -10px 0px 0px rgba(165, 161, 137, 0.75);
    transition: all 1s;
    font-weight: bold;
}

.enquiryButton:hover {
    color: var(--blue);
    transition: all 1s;
    cursor: pointer;
    -webkit-box-shadow: 10px -10px 0px 0px rgba(22, 35, 72, 0.75);
    -moz-box-shadow: 10px -10px 0px 0px rgba(22, 35, 72, 0.75);
    box-shadow: 10px -10px 0px 0px rgba(22, 35, 72, 0.75);
    background-color: rgba(165, 161, 137, 0.75);
}


.seniorCards {
    padding: 20px;
    background-color: var(--lightCream);
    border-radius: 6px;
    transition: 0.4s all;
    height: 100%
}

.seniorCardsImg {
    background-size: cover;
    background-position: center center;
    border-radius: 100%;
    margin: auto;
    height: 150px;
    width: 150px;
}

.seniorCardsDivider {
    height: 1px;
    width: 50%;
    background-color: #ddd4c6;
    margin: auto;
}

.seniorCards svg {
    vertical-align: sub;
    color: var(--greenHover);
}

.seniorCards.governors {
    max-width: 340px !important;
    margin: auto !important;
}

.seniorCards.governors .seniorCardsImg {
    background-size: cover;
    background-position: center center;
    margin: auto;
    height: 250px;
    width: 85%;
    max-width: 220px;
    border-radius: unset;
}

.seniorCards.governors .seniorCardsContent {
    word-break: break-word;
    margin: auto;
}

.seniorCards.governors a {
    color: var(--black);
    text-decoration: none;
}

.seniorCards.governors:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.4s all;
}

.pageContentDivider {
    height: 1px;
    background-color: #ddd4c6;
    margin: 40px 0;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}


#ourSchoolsModal .modal-header {
    background-color: var(--green);
    color: var(--white);
    margin-bottom: -1px;
}

#ourSchoolsModal .modal-body img {
    height: 270px;
}

#ourSchoolsModal .btn-close {
    opacity: 1;
}

#ourSchoolsModal .schoolLogos {
    border-right: 1px solid var(--green);
}


@media(max-width:1200px) {
    #ourSchoolsModal .modal-body img {
        height: 170px;
    }
}


@media(max-width:768px) {
    #ourSchoolsModal .schoolLogos {
        border-bottom: 1px solid var(--green);
        border-right: none;
        padding-bottom: 15px;
    }

    #ourSchoolsModal .modal-body img {
        height: 130px;
    }
}


.mainDivisionCard {
    color: var(--cream);
    height: 600px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-box-shadow: inset 0px -260px 75px -50px var(--blueHover);
    -moz-box-shadow: inset 0px -260px 75px -50px var(--blueHover);
    box-shadow: inset 0px -260px 75px -50px var(--blueHover);
    transition: all .6s;
    margin-bottom: 40px;
    display: flex;
}

@media (max-width:1024px) {
    .mainDivisionCard {
        height: 420px;
    }
}

.mainDivisionCard:hover {
    -webkit-box-shadow: inset 0px -290px 75px -50px rgb(0 74 59 / 0.95);
    -moz-box-shadow: inset 0px -290px 75px -50px rgb(0 74 59 / 0.95);
    box-shadow: inset 0px -290px 75px -50px rgb(0 74 59 / 0.95);
    transition: all .6s;
}

.mainDivisionCard .mainDivisionCardContent {
    margin: auto auto 40px auto;
    text-align: center;
}

.mainDivisionCard h3 {
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 20px;
}

.mainDivisionCardButton {
    border-color: var(--cream);
    color: var(--cream);
    border-radius: 20px;
    font-weight: 100;
    padding: 7px 15px;
    letter-spacing: 2px;
    font-size: 12px;
}

.mainDivisionCard:hover .mainDivisionCardButton {
    background-color: var(--cream);
    color: var(--blueHover);
    font-weight: bold;
}

.headersBetweenLines {
    font-size: 18px;
    text-align: center;
    border-bottom: 1px solid var(--blue);
    line-height: 0;
    margin: 10px 0 20px;
    letter-spacing: 4px;
    color: var(--blue);
    font-weight: bold;
    padding: 0 20px;
}

.headersBetweenLines span {
    background: white;
    padding: 0 20px;
}


#ourDivisions .owl-dots {
    color: var(--greenHover);
    width: 100%;
}


#ourDivisions .owl-dots {
    text-align: center;
    transform: translateY(-18px);
}

#ourDivisions .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--cream);
    margin: 0 3px;
}

#ourDivisions .owl-dots button.owl-dot.active {
    background-color: red;
}

#ourDivisions .owl-dots button.owl-dot:focus {
    outline: none;
}


@media(min-width: 991px) {
    .contactSection {
        border-left: 1px solid;
    }
}

.language-switcher img {
    width: 40px;
    margin-right: 10px;
    cursor: pointer;
}


@media (max-width:1399px) {
    .instagramFeed {
        height: 750px !important;
    }
}

@media (max-width:1199px) {
    .instagramFeed {
        height: 650px !important;
    }

    .fixedContactMenu a img {
        width: 60px !important;
    }
}

@media (max-width:992px) {
    .instagramFeed {
        height: 690px !important;
    }

}

@media (max-width:768px) {
    .instagramFeed {
        height: 570px !important;
    }
}

.instagramFeed {
    width: 100%;
    height: 1100px;
    margin-bottom: 100px;
}

.flag {
    position: fixed;
    right: 10px;
    /* top: 50%; */
    transform: translateY(-50%);
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 999;
    cursor: pointer;
}

.bannerPattern {
    position: fixed;
    left: 0;
    top: 0;
    height: 100dvh;
    width: 100%;
    background-size: 5px 5px;
    background-image: repeating-linear-gradient(135deg, #16234800 0, #16234869 1px, #e5e5f700 0, #e5e5f700 50%);
    background-color: #16234836;
    z-index: 0;
}

.steamBanner.item,
#homeBannerSm {
    height: 100dvh;
}

.carouselBgImage {
    min-height: 100dvh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}

@media(max-width: 991px) {


.bannerPattern,
.steamBanner.item,
#homeBannerSm {
    height: 86dvh;
}

.carouselBgImage {
    min-height: 86dvh;
}
}