* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    background-color: #130F39 !important;
    scroll-behavior: smooth;
    color: #E4E4E4 !important;
    line-height: 1.45;
}


.loader {
    background-color: #130F39 !important;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 9;
}

.loader div {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader .loader-icon {
    width: 60px;
}

.primary-text-color {
    color: #A1807C;
}

.body-text-color {
    color: #E4E4E4;
}

.light-text-color {
    color: #fff;
}

.dark-text-color {
    color: #130F39;
}

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

.fs-lg {
    font-size: 48px;
}

@media only screen and (max-width: 600px) {
    .fs-lg {
        font-size: 32px;
    }
}

.fs-md {
    font-size: 32px;
}

@media only screen and (max-width: 600px) {
    .fs-md {
        font-size: 26px;
    }
}


.fs-sm {
    font-size: 24px;
}

@media only screen and (max-width: 600px) {
    .fs-sm {
        font-size: 18px;
    }
}


.primary-font {
    font-family: 'Roboto Slab', serif;
}

.secondary-font {
    font-family: 'Open Sans', sans-serif;
}

.primary-bg {
    background-color: #A1807C;
}

.grey-bg{
    background-color: #141414;
}

.dark-bg{
    background-color: #000;
}

.fw-100 {
    font-weight: 100;
}

.fw-300 {
    font-weight: 300;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}

.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* .container {
    max-width: 1060px;
    width: 100%;
    margin: auto;
    padding: 0 16px;
} */

.header {
    min-height: 60vh;
    display: flex;
    padding-top: 100px;
    padding-bottom: 100px;
}

.header .mobile-logo {
    display: none;
    margin: auto;
    margin-bottom: 40px;
}

@media only screen and (max-width: 600px) {
    .header .mobile-logo {
        display: block;
    }
}

.header .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

@media only screen and (max-width: 600px) {
    .header .title {
        flex-direction: column;
    }
}

.header h2 {
    font-size: 48px;
    margin-top: 0;
    margin-bottom: 16px;
    font-family: 'Roboto Slab', serif;
    font-weight: 100;
}

.header .title h1 {
    font-size: 58px;
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'Roboto Slab', serif;
    font-weight: 100;
    text-transform: uppercase;
}

@media only screen and (max-width: 600px) {
    .header .title h1 {
        font-size: 36px;
    }

    .header .fs-lg {
        font-size: 18px;
    }
}

.header .title img {
    margin: 0 16px;
}

.header p {
    font-size: 24px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
    max-width: 766px;
    width: 100%;
    color: #E4E4E4;
}

@media only screen and (max-width: 600px) {
    .header p {
        font-size: 18px;
    }
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    max-width: 780px;
    margin-top: 40px;
    margin-bottom: 100px;
}

@media only screen and (max-width: 600px) {
    .grid-container {
        grid-template-columns: auto;
    }

}

.grid-item {
    background-color: #fff;
    padding: 30px;
    min-height: 312px;
    margin-bottom: 24px;
}

.grid-item h3 {
    font-family: 'Roboto Slab', serif;
    color: #000;
    font-size: 24px;
    margin-bottom: 10px;
}

.grid-item p {
    font-family: 'Open Sans', sans-serif;
    color: #000;
    font-size: 20px;
    font-weight: 400;
}

.grid-item img {
    width: 60px;
        margin-bottom: 16px;
}

.quote {
    max-width: 760px;
    width: 100%;
    margin-bottom: 100px;
}

.mw-760 {
    max-width: 760px;
    width: 100%;
    margin: auto;
}


.nav {
    padding: 15px;
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 7;
    transition: 2s all ease;
}

.nav-container {
    max-width: 1060px;
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.nav-container .logo {
    display: flex;
}

.nav-container .logo a {
    text-decoration: none;
}

@media only screen and (max-width: 600px) {
    .nav-container .logo {
        display: none;
    }
}

.nav-container .nav-items ul {
    padding: 0;
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
}

@media only screen and (max-width: 600px) {
    .nav-container .nav-items {
        flex: 1;
    }

    .nav-container .nav-items ul {
        justify-content: space-around;
    }
}

.nav-container .nav-items ul li a {
    padding: 15px;
    text-decoration: none;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
}

.nav-container .nav-items ul li a.active {
    color: #A1807C;
}

.footer {
    background-color: #000;
    padding: 40px 0;
}

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

@media only screen and (max-width: 600px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
    }

    .footer .container .item {
        margin-bottom: 40px;
        text-align: center;
    }
}


.footer .container .item .highlight {
    font-size: 24px;
    font-family: 'Roboto Slab', serif;
    color: #fff;
    font-weight: 100;
    display: block;
    margin-bottom: 4px;
}

.footer .container .item label {
    font-size: 16px;
    font-family: 'Open Sans', serif;
    color: #A1807C;
}

.footer .container .item .social {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    margin-bottom: 4px;
}

.footer .container .item .social li {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    margin-bottom: 4px;
    margin-right: 16px;
}


.footer .container .item .social a img {
    width: 30px;
}

.no-scroll {
    overflow-y: hidden;
}


#testimonial {
    padding: 30px 0;
    text-align: center;
}

#testimonial .item {
    display: block;
    width: 100%;
    max-width: 760px;
    margin: auto;
    height: auto;
    padding: 0 16px;
}

#testimonial .item p {
    font-weight: 300;
    font-size: 24px;
    font-family: 'Roboto Slab', serif;
}

#testimonial .item small {
    font-weight: 300;
    margin: 40px 0;
    font-size: 18px;
    font-family: 'Open Sans', serif;
}

#testimonial .owl-nav span {
    font-size: 60px;
}

.owl-prev {
    position: absolute;
    left: 8%;
    top: 20%;
}

.owl-prev:hover {
    background: transparent !important;
}

.owl-prev span:hover {
    background: transparent !important;
}

.owl-next:hover {
    background: transparent !important;
}

.owl-next span:hover {
    background: transparent !important;
}

.owl-next {
    right: 8%;
    top: 20%;
    position: absolute;
}

.owl-dot span {
    background: #39385d !important
}

.owl-dot.active span {
    background: #A1807C !important;
}



.training-sessions {
    list-style-image: url(../images/trangle_icon.svg);
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    font-size: 30px;
    max-width: 300px;
    width: 100%;
}

.training-sessions li {
font-family: 'Roboto Slab', serif;
    font-size: 24px;
    font-weight: 400;
}



.about-section{
    background-color: #fff;
    color: #000;
}

.about-section .row{
    display: flex;
}


.about-section p {

}

.about-list-items {
    list-style-image: url(../images/trangle_icon.svg);
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}

.about-list-items li{
     font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 300;
}