/*=====================================================BASE SETUP=====================================================*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary:#5b156a;
    --secondary:#1c2023;
    --bg_color:#e7e1e7;
    --sectionPadding:6rem;
}
.callToActionButton{
    margin-top: 25px;
    margin-bottom: 25px;
}
.callToActionButton a {
    background: var(--primary);
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: serif;
    font-size: 26px;
}
::selection{
    background: var(--bg_color);
    color: var(--primary);
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background: var(--bg_color);
    box-shadow: 2px 2px 20px #2e394d;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 0px;
    box-shadow: 0px 1px 40px #f3f8fb;
}
@media only screen and (max-width: 991px) {
    :root{
        --sectionPadding:4rem;
    }
    .callToActionButton a {
        display: block;
        text-align: center;
    }
}
@media only screen and (max-width: 425px) {
    :root{
        --sectionPadding:2rem;
    }
}
@font-face {
    font-family: sitka_one;
    src: url("../fonts/sitka-small-599.ttf");
}
@font-face {
    font-family: sitka_two;
    src: url("../fonts/sitka-small-652.ttf");
}
@font-face {
    font-family: sitka_three;
    src: url("../fonts/sitka-small-815.ttf");
}
h1,h2,h3,h4,h5{
font-family: "sitka_two"!important;
}
/*========================================================NAVBAR======================================================*/
.navbar{
    background: var(--bg_color);
    padding-top: 1.5rem!important;
    padding-bottom: 1.5rem!important;
    transition: 500ms;
}
#adminPage .fixed-top {
    z-index: 998!important;
}
.scrolled {
    padding-top: 0.5rem!important;
    padding-bottom: 0.5rem!important;
}
.navbar-brand {
    font-weight: 600;
    font-size: 26px!important;
}
.navbar-brand img {
    width: 55px;
}
.navbar-brand span{
    color: var(--primary);
}
.nav-item {
    margin-left: 0px;
}
.nav-link {
    margin-left: 20px;
    color: var(--secondary)!important;
    text-transform: uppercase;
    font-family: Serif;
    letter-spacing: 0.8px;
    font-family: sitka_one;
}
.navbar-nav{
    margin-left: auto;
}
.nav-link:hover {
    color: var(--primary)!important;
}
.navbar .headerActive {
    color: var(--primary)!important;
    position: relative;
}
.headerActive:hover {
    color: white!important;
}
#socialLinks{
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 25px;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.socialNavLink {
    color: var(--secondary)!important;
}
.navCallToAction {
    font-size: 15px;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    border-radius: 5px;
}
.navCallToAction:hover{
    color: white;
    border: 1px solid white;
    text-decoration: none;
}
.nav-link i{
    color:var(--primary);
}
.navCallToAction {
    font-size: 15px!important;
    border: 1px solid var(--primary);
    color: var(--primary)!important;
    border-radius: 5px!important;
    padding: 7px 15px!important;
}
.navCallToAction:hover{
    background: var(--primary)!important;
    border: 1px solid var(--primary)!important;
    color: white!important;
}
.dropdown-menu {
    background: var(--bg_color)!important;
    color: var(--secondary)!important;
    border: none!important;
    padding: 15px!important;
}
.dropdown-item {
    color: var(--secondary)!important;
    font-weight: 600!important;
    font-family: Serif;
    text-transform: uppercase;
}
.dropdown-item:hover {
    color: var(--primary)!important;
    background: transparent!important;
}
@media only screen and (max-width: 1401px){
    .nav-link {
        margin-left: 5px;
        letter-spacing: 0.2px;
    }
}
@media only screen and (max-width: 1199px){
    #socialLinks {
        display: none;
    }
    .nav-link {
        margin-left: 0px;
        letter-spacing: 0;
    }
    .nav-link {
        font-size: 14px;
    }
    .navbar-brand {
        margin-right: 0rem;
    }
    .navbar-expand-lg .navbar-nav {
        margin: 0!important;
    }
}
@media only screen and (max-width: 991px) {
    .navbar .active {
        border-bottom: 1px solid transparent;
    }
    .navbar .nav-item {
        padding-top: 20px;
    }
    .nav-link {
        font-size: 18px;
    }

    .navCallToActionTelephone {
        display: none !important;
    }

    .navCallToAction {
        display: block !important;
    }

    .navbar-nav {
        display: table !important;
        text-align: center;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }
    .navbar-expand-lg .navbar-nav {
        margin: auto!important;
        display: block!important;
    }

    .navbar .nav-item {
        text-align: center;
    }

    #socialLinks {
        display: block;
    }
    .navbar-collapse {
        width: 100%;
        height: 100vh;
    }
    #socialLinks {
        display: block;
    }
    .dropdown-menu {
        text-align: center;
    }
    .dropdown-item {
        text-align: center;
    }
}

/*========================================================NAVBAR======================================================*/

/*========================================================MAIN========================================================*/
#section_one {
    padding: var(--sectionPadding);
    padding-bottom: 0;
}
#section_one img{
    width: 100%;
}
.sectionOneTitle h2{
    color: var(--primary);
    font-style: italic;
    font-family: Serif;
    font-weight: 600;
}
#section_one p{
    font-size: 22px;
}

#section_two{
    padding: var(--sectionPadding);
}
.sectionTwoTitle h2{
    color: var(--primary);
    font-family: Serif;
    padding-bottom: 25px;
}
#section_two .carousel img{
    padding: 15px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.carousel_content{
    color: var(--primary);
    font-family: Serif;
    font-weight: 600;
}

#section_two .carousel-control-prev, #section_two .carousel-control-next {
    bottom: 100px;
    text-decoration: none;
    opacity: 1;
}
.carousel-control-next i, .carousel-control-prev i {
    color: #ffffff;
    font-size: 32px;
    filter: drop-shadow(2px 4px 6px black);
}
@media (max-width: 767px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }
    .carousel-inner .carousel-item > div:first-child {
        display: block;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

#about_us {
    display: flex;
    position: relative;
    padding-bottom: var(--sectionPadding);
}
#about_us p{
    font-size: 14px;
}
#about_us h2{
    color: var(--primary);
    font-family: Serif;
    font-weight: 600;
    font-style: italic;
}
#about_us .left_box {
    position: absolute;
    width: 40%;
    left: 15%;
    background: #e0e1e0;
    padding: 25px;
    z-index: 50;
    margin-top: 25px;
}
#about_us .right_box{
    position: relative;
}
#about_us .right_box img {
    width: 60%;
    right: 0;
    float: right;
}
@media only screen and (max-width: 1440px) {
    #about_us .left_box {
        width: 50%;
    }
}
@media only screen and (max-width: 1199px){
    #about_us {
        display: block;
    }
    #about_us .left_box {
        position: relative;
        width: 100%;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
    }
    #about_us .right_box img {
        width: 100%;
        position: relative;
        right: 0;
        left: 0;
        margin-left: auto;
        margin-right: auto;
        float: unset;
    }
}
@media only screen and (max-width: 1024px){
    #about_us {
        background: #e0e1e0;
    }
}
#video_section{
    position: relative;
    padding: var(--sectionPadding);
}
#video_section .sectionTitle h2 {
    color: var(--primary);
    font-family: Serif;
    padding-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
}
#video_section iframe, #video_section h3{
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: block;
}
#video_section h3 {
    color: var(--secondary);
    font-family: Serif;
    padding-bottom: 25px;
    padding-top: 25px;
    font-size: 22px;
}
#video_section iframe{
    width: 100%;
    height: 315px;
}
@media only screen and (max-width: 1400px) {
    #video_section{
        padding-top: 200px;
    }
}
@media only screen and (max-width: 1199px) {
    #video_section{
        padding-top: var(--sectionPadding);
    }
}
@media only screen and (max-width: 1105px) {
    #video_section h3 {
        font-size: 18px;
    }
}
@media only screen and (max-width: 991px) {
    #video_section iframe{
        width: 100%;
        height: 315px;
    }
}
/*========================================================MAIN========================================================*/

/*=======================================================FOOTER=======================================================*/
footer{
    background: var(--bg_color);
    padding: var(--sectionPadding);
}
footer ul li{
    list-style: none;
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--primary);
}
footer ul li i{
    color: var(--primary);
}
footer h6{
    color: var(--primary);
}
footer a{
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
footer img {
    width: 200px;
}
/*=======================================================FOOTER=======================================================*/

/*=======================================================GALLERY======================================================*/
#gallery{
    padding-bottom: var(--sectionPadding);
}
#gallery .sectionTitle h2{
    padding-top: 150px;
    color: var(--primary);
    font-style: italic;
    font-family: Serif;
    font-weight: 600;
    text-align: center;
    font-size: 52px;
}
#gallery .sectionTitle p{
    font-size: 22px;
    padding-bottom: var(--sectionPadding);
}
#gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 25px;
}
#gallery .col-xl {
    margin-bottom: 15px;
    margin-top: 15px;
}
/*=======================================================GALLERY======================================================*/