body {
    font-family: 'Karla', sans-serif;
    color: #404040;
    font-size: 1.1rem;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #404040;
}

a {
    color: #404040;
    -webkit-transition: color 300ms ease-in-out;
    -o-transition: color 300ms ease-in-out;
    transition: color 300ms ease-in-out;
}

a:hover {
    color: #d28d10;
    text-decoration: none;
}


.grey {
    background: #ebebe6;
}

.square-list {
    padding-left: 20px;
    list-style: square;
}

.square-list  li {
    margin-bottom: 8px;
}

.btn-brown {
    border-radius: 0;
    background: #d28d10;
    font-family: 'Montserrat',sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 2px;
    min-width: 205px;
    text-align: center;
    padding: 15px;
    text-transform: uppercase;
    -webkit-transition: background 300ms ease-in-out;
    -o-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
}

.btn-brown:hover {
    background: #000000;
    color: #ffffff;
}

.site-page-title {
    position: relative;
    padding: 15px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 300px;
}

.site-page-title::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.site-page-title h1 {
    position: relative;
    z-index: 99;
    color: #ffffff;
    margin: 50px 0 0 0;
}

/*==========Header=============*/
.site-header {
    position: absolute;
    padding: 20px 0;
    width: 100%;
    background: transparent;
    z-index: 100;
}

.site-logo img {
    width: auto;
    max-height: 86px;
}

@media screen and (min-width:992px) {
    .site-menu-toggle,.site-menu-close {
        display: none;
    }
    
    .site-navbar {
        width: 100%;
    }
    
    .site-navbar .site-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .site-navbar .site-nav a {
        display: block;
        font-size: 1rem;
        position: relative;
        text-transform: uppercase;
        color: #ffffff;
        padding-top: 15px;
    }
    
    .site-navbar .site-nav a::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 3px;
        background: #d28d10;
        -webkit-transition: all 300ms ease-in-out;
        -o-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out;
    }
    
    .site-navbar .site-nav a:hover::before,
    .site-navbar .site-nav .active a::before {
        right: calc(100% - 20px);
        width: 20px;
    }
}

@media screen and (max-width:991px) {
    .site-menu-toggle {
        margin-left: auto;
        border: 1px solid #ffffff;
        border-radius: 4px;
        background: transparent;
        width: 40px;
        height: 40px;
        text-align: center;
        color: #ffffff;
        font-size: 25px;
        cursor: pointer;
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
    }

    .site-navbar {
        position: fixed;
        width: 100%;
        background: rgba(210, 141, 16, 0.9);
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9000;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-transform: translateY(-100%);
            -ms-transform: translateY(-100%);
                transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .site-navbar.open {
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
    }

    .site-nav {
        display: block;
        margin: 0;
        padding: 0;
        list-style: none;
        text-align: center;
    }

    .site-nav li a {
        display: inline-block;
        font-size: 2rem;
        color: #ffffff;
        margin-bottom: 15px;
    }

    .site-nav li a:hover {
        color: #404040;
    }

    .site-menu-close {
        position: absolute;
        top: 15px;
        right: 15px;
        cursor: pointer;
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
        border: none;
        background: transparent;
        width: 50px;
        height: 50px;
        text-align: center;
        font-size: 30px;
        color: rgba(255, 255, 255, 0.6);
        -webkit-transition: color 300ms ease-in-out;
        -o-transition: color 300ms ease-in-out;
        transition: color 300ms ease-in-out;
    }

    .site-menu-close:hover {
        color: rgba(255, 255, 255, 1);
    }
}

/*==========Footer=============*/
.site-footer {
    background: #2b2521;
    padding: 60px 0 40px 0;
    color: #cbcbcb;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.footer-nav a {
    display: block;
    font-family: 'Karla', sans-serif;
    color: #ffffff;
    text-transform: uppercase;
    margin-right: 60px;
    margin-bottom: 5px;
}

.footer-nav li:last-child a {
    margin-right: 0;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.site-footer address span {
    display: inline-block;
    font-size: 0.90rem;
    margin-right: 45px;
    margin-bottom: 5px;
}

.site-footer address i {
    font-size: 20px;
    margin-right: 6px;
}

.site-footer small {
    display: block;
    font-size: 0.90rem;
}

.footer-top {
    color: #ffffff;
    border-bottom: 1px solid #666;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.footer-top p {
    text-transform: uppercase;
    font-size: 1.3rem;
}

.footer-top ul {
    margin-bottom: 30px;
}

.footer-top ul li {
    font-family: 'Karla', sans-serif;
}

/*==========Home============*/
.main-slider-wrap {
    position: relative;
}

.site-main-slider .slick-slide img {
    width: 100%;
}

.site-main-slider .next-arrow,
.site-main-slider .prev-arrow {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 1000;
    font-size: 20px;
    color: #ffffff;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #ffffff;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: pointer;
    opacity: 1;
    outline: 0;
    -webkit-transition: opacity 300ms ease-in-out;
    -o-transition: opacity 300ms ease-in-out;
    transition: opacity 300ms ease-in-out;
} 

.site-main-slider .prev-arrow {
    left: 15px;
}

.site-main-slider .next-arrow {
    right: 15px;
}

.site-main-slider .next-arrow:hover,
.site-main-slider .prev-arrow:hover {
    opacity: 0.6;
}

.slider-cpt {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right : 0;
    bottom: 0;
    padding: 15px 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}

.slider-cpt h1 {
    opacity: 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.slider-cpt p {
    opacity: 0;
    font-size: 1.4rem;
    line-height: 1.2;
}

.content-block {
    position: relative;
    padding: 25px;
}

.fake-col-right {
    background: #ebebe6;
    width: 20%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
}

.image-block img {
    position: relative;
    z-index: 1;
}

.content-block h2 {
    margin-bottom: 20px;
}

.content-block h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.members-block {
    padding: 25px;
}

.member-organz {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 50px;
    padding: 0 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.member-organz img {
    width: auto;
    max-height: 130px;
}

.members-block .more-link {
    display: block;
    width: 100px;
    margin-left: auto;
    text-decoration: underline;
}

.members-block .more-link:hover {
    text-decoration: none;
}


/*===========Contact==============*/
.site-page-title.contact {
    background: url('../images/contact-us-header.jpg') no-repeat center center;
    background-size: cover;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.contact-form .form-control {
    height: 55px;
    margin-bottom: 15px;
    border-radius: 0;
    border: 1px solid #989595;
    font-size: 18px;
    color: #000000;
}

.contact-form .form-control::-webkit-input-placeholder {
    color: #404040;
}

.contact-form .form-control::-moz-placeholder {
    color: #404040;
}

.contact-form .form-control:-ms-input-placeholder {
    color: #404040;
}

.contact-form .form-control::-ms-input-placeholder {
    color: #404040;
}

.contact-form .form-control::placeholder {
    color: #404040;
}

.contact-form .form-control:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-color: #d28d10;
}

.contact-form textarea.form-control {
    height: 300px;
    resize: none;
}

.contact-form .btn-brown {
    display: block;
    margin-left: auto;
}

/*=============News=============*/
.site-page-title.news {
    background: url('../images/news-header.jpg') no-repeat center center;
    background-size: cover;
}

.news-list {
    counter-reset: mycounter;
}

.news-list .news-item h3::before {
    content: counter(mycounter)'.';
    counter-increment: mycounter;
    color: #1241c6;
    margin-right: 10px;
}

.news-list .news-item {
    margin-bottom: 30px;
}

.news-list .news-item h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.news-list .news-item h3 a {
    color: #1241c6;
}

.news-list .news-item h3 a:hover {
    color: #d28d10;
}

.news-list .news-item a {
    word-break: break-word;
}

/*========Partners===========*/
.site-page-title.partners {
    background: url('../images/partners-head.jpg') no-repeat center center;
    background-size: cover;
}

.partner-item {
    background: #ffffff;
    margin-bottom: 30px;
    padding: 30px;
    min-height: 285px;
    -webkit-transition: -webkit-box-shadow 300ms ease-in-out;
    transition: -webkit-box-shadow 300ms ease-in-out;
    -o-transition: box-shadow 300ms ease-in-out;
    transition: box-shadow 300ms ease-in-out;
    transition: box-shadow 300ms ease-in-out, -webkit-box-shadow 300ms ease-in-out;
}

.partner-item:hover {
    -webkit-box-shadow: 2px 2px 35px 0px rgba(0,0,0,0.12);
box-shadow: 2px 2px 35px 0px rgba(0,0,0,0.12);
}

.partner-item img {
    margin-bottom: 10px;
    width: auto;
    max-height: 130px;
}

.partner-item h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.partner-item a {
    word-break: break-word;
}

/*========Resources============*/
.site-page-title.resources {
    background: url('../images/resources-header.jpg') no-repeat center center;
    background-size: cover;
}

.resume-content p {
    margin-bottom: 30px;
}

.square-list {
    padding-left: 20px;
    list-style: square;
}

.square-list  li {
    margin-bottom: 8px;
}

.view-resume a {
    display: inline-block;
    font-weight: 700;
    text-decoration: underline;
    color: #1543c7;
    font-family: 'Montserrat', sans-serif;
}

.view-resume img {
    display: inline-block;
    margin-right: 10px;
    width: 50px;
    height: auto;
}

.view-resume a:hover {
    text-decoration: none;
}

/*===========Projects==========*/
.site-page-title.projects {
    background: url('../images/projects-header.jpg') no-repeat center center;
    background-size: cover;
}

.projects-carousel {
    margin: 40px 0;
}

.projects-carousel .next-arrow,
.projects-carousel .prev-arrow {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    line-height: 50px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 1000;
    font-size: 30px;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 50%;
    background: transparent;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: pointer;
    opacity: 1;
    outline: 0;
    -webkit-transition: opacity 300ms ease-in-out;
    -o-transition: opacity 300ms ease-in-out;
    transition: opacity 300ms ease-in-out;
} 

.projects-carousel .prev-arrow {
    left: 15px;
}

.projects-carousel .next-arrow {
    right: 15px; 
}

.projects-carousel .next-arrow:hover,
.projects-carousel .prev-arrow:hover {
    opacity: 0.5;
}

.projects-carousel .slick-slide img {
   width: 100%;
}

@media screen and (min-width:1200px) {
    .content-block {
        padding: 60px 90px;
    }
    .members-block {
        padding: 60px 50px 90px 60px;
    }
}

@media screen and (min-width:768px) {
    .slider-cpt h1 {
        font-size: 3rem;
    }

    .slider-cpt p {
        font-size: 1.7rem;
    }

    .site-main-slider .next-arrow, .site-main-slider .prev-arrow {
        width: 60px;
        height: 60px;
        font-size: 40px;
    }
}

@media screen and (min-width:576px) {
    .contact-info {
        margin-bottom: 40px;
    }

    .partner-item {
        margin-bottom: 70px;
    }
}

@media screen and (max-width:767px) {
    .site-logo img {
        max-height: 66px;
    }

    .site-main-slider .slick-slide img {
        width: auto;
        height: 100vh;
    }    
}

@media screen and (max-width:575px) {
    .slider-cpt p {
        display: none;
    }

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

    .member-organz {
        flex-direction: column;
    }

    .member-organz figure {
        width: 100%;
        text-align: center;
    }

    .member-organz img {
        max-height: 110px;
    }
}