.header{
    border-bottom: 1px solid var(--bluegray-50);
    padding:10px 0;
    margin:0 0 40px 0;
}
.header-mobile{
    display: none;
}
.header-container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.header-logo{
    width: 250px;
}
.menu-top{

}
.menu-top-level-1{
    display: flex;
    align-items: center;
}
.menu-top-level-1-item{
    margin:0 0 0 20px;
}
.menu-top-level-1-link{
    font-size: 16px;
    font-weight: 600;
}
@media (max-width: 1200px) {
    .header-logo{
        width: 100%;
    }
    .header-logo img{
        display: flex;
        width: 200px;
        margin:0 auto;
    }
    .menu-top{
        width: 100%;
        padding:30px 0 0 0;
    }
    .menu-top-level-1{
        justify-content: center;
    }
    .menu-top-level-1-item{
        margin:0 5px;
    }
    .menu-top-level-1-link{
        font-size: 14px;
        font-weight: 600;
    }
}


.banner-container{

}
.banner{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin:0 0 40px 0;
}
.banner:after{
    content: '';
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background: var(--black);
    transition: .3s;
    opacity: 0.5;
    z-index: 2;
}
.banner-name{
    position: relative;
    z-index: 3;
    font-size: 50px;
    font-weight: 300;
    color: var(--white);
}
@media (max-width: 1200px) {
    .banner{
        height: auto;
    }
    .banner-name{
        font-size: 30px;
        line-height: 150%;
        text-align: center;
        padding:60px 0;
    }
}


.home-wall-container{
    padding:0 0 100px 0;
}
.home-wall-rows{
    display: flex;
    flex-wrap: wrap;
    margin:0 0 0 -40px;
}
.home-wall-row{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width:calc(50% - 40px);
    margin:0 0 40px 40px;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
}
.home-wall-row:after{
    content: '';
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background: var(--deep-purple-900);
    transition: .3s;
    opacity: 0.3;
    z-index: 2;
}
.home-wall-row:hover:after{
    background: var(--deep-purple-900);
    opacity: 0.5;
}
.home-wall-row-name{
    position: relative;
    font-size: 32px;
    color: var(--white);
    font-weight: 200;
    padding:20px 40px;
    border:1px solid var(--white);
    border-radius: 40px;
    z-index: 3;
    transition: .3s;
}
.home-wall-row:hover .home-wall-row-name{
    transform: scale(1.1, 1.1);
    background: #fff;
    color: var(--deep-purple-500);
}
@media (max-width: 1200px) {
    .home-wall-container{
        padding:0 0 50px 0;
    }
    .home-wall-rows{
        margin:0 10px;
    }
    .home-wall-row{
        width: 100%;
        margin:0 0 20px 0;
    }
}



.home-about-container{
    text-align: center;
    padding:0 0 100px 0;
}
.home-about-title{
    font-size: 56px;
    font-weight: 400;
    margin:0 0 50px 0;
}
.home-about-content{
    max-width: 600px;
    margin:50px auto;
}
.home-about-content p{
    font-size: 16px;
    line-height: 140%;
}
.home-about-video{
    width: 700px;
    height: 450px;
    margin:0 auto 30px auto;
    background: #000000;
    border-radius: 10px;
    padding:20px;
}
.home-about-video video{
    width: 100% !important;
    height: 100% !important;
}
.home-about-controls{
    display: flex;
    justify-content: center;
}
.home-about-controls .button{

}
.home-about-control:hover{

}
@media (max-width: 1200px) {
    .home-about-container{
        padding:0 10px 40px 10px;
    }
    .home-about-title{
        font-size: 36px;
        line-height: 150%;
        margin:0 0 30px 0;
    }
}
@media (max-width: 750px) {
    .home-about-video{
        width: calc(100% - 20px);
        height: 300px;
        margin:0 10px 30px 10px;
    }
}


.home-team-container{
    padding:0 0 50px 0;
}
.home-team-title{
    font-size: 56px;
    font-weight: 400;
    text-align: center;
    margin:0 0 50px 0;
}
.home-team-rows{
    display: flex;
    justify-content: center;
}
.home-team-row{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.home-team-row-image{
    width: 400px;
    border-radius:200px;
    overflow: hidden;
    transition: .3s;
    cursor: pointer;
}
.home-team-row-name{
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    padding:20px 0 10px 0;
}
.home-team-row-position{
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: var(--bluegray-600);
}
.home-team-row:hover .home-team-row-image{
    transform: scale(0.95, 0.95);
}
.modal-home-team{
    width: 500px;
}
.modal-home-team-content{
    max-height: 600px;
    overflow-y: auto;
}
@media (max-width: 1200px) {
    .home-team-title{
        font-size: 32px;
        line-height: 150%;
        margin:0 0 30px 0;
    }
    .home-team-rows{
        flex-wrap: wrap;
    }
    .home-team-row-image{
        width: 200px;
        border-radius:100px;
    }
    .modal-home-team{
        width: calc(100% - 20px);
        left:10px;
        right:10px;
        top:10px;
        transform: translateX(0);
    }
}

.page{

}
.page-head{
    margin:0 0 50px 0;
    text-align: center;
}
.page-title{
    font-size: 56px;
    font-weight: 400;
    margin:0 0 50px 0;
}
.page-classes{

}
.page-classes table{
    border: 0;
    background: #f8f8f8;
}
.page-classes table tbody tr:first-child td{
    font-weight: 600;
    font-size: 12px;
    color: var(--bluegray-300);
}
.page-classes table tbody tr td{
    border: 2px solid #fff;
}

.page-classes-day{
    margin:0 0 40px 0;
}
.page-classes-day-title{
    font-size: 22px;
    font-weight: 500;
    margin:0 0 15px 0;
}
@media (max-width: 1200px) {
    .page-title{
        font-size: 32px;
    }
}




.page-gallery-images{
    display: flex;
    flex-wrap: wrap;
    margin:0 0 50px -20px
}
.page-gallery-image{
    width: calc(25% - 20px);
    margin:0 0 20px 20px;
}
.page-gallery-image img{
    cursor: pointer;
    border-radius: 10px;
    transition: .3s;
}
.page-gallery-image img:hover{
    opacity: 0.4;
}
@media (max-width: 1200px) {
    .page-gallery-image{
        width: calc(33.3333333% - 20px);
        margin:0 0 20px 20px;
    }
}



.category{

}
.category-head{
    text-align: center;
    margin:0 0 50px 0;
}
.category-title{
    font-size: 56px;
    font-weight: 400;
}
.category-childs{
    display: flex;
    flex-wrap: wrap;
    margin:0 0 0 -40px;
}
.category-child{
    width: calc(50% - 40px);
    margin:0 0 40px 40px;
}
.category-child-image{
    border-radius: 20px;
    overflow: hidden;
    transition: .3s;
}
.category-child-name{
    text-align: center;
    font-weight: 500;
    font-size: 22px;
    padding:20px 0;
}
.category-child:hover .category-child-image{
    transform: scale(0.95, 0.95);
}
@media (max-width: 1200px) {
    .category-title{
        font-size: 32px;
    }
    .category-childs{
        margin:0 0 0 -10px;
    }
    .category-child{
        width: calc(50% - 10px);
        margin:0 0 10px 10px;
    }
    .category-child-name{
        font-size: 16px;
        padding:20px 0;
    }
}



.category-content{
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
    padding:0 0 50px 0;
}
.category-content-a{
    width: 50%;
    padding:0 20px 0 0;
}
.category-images{
    display: flex;
    flex-wrap: wrap;
    margin:0 0 0 -10px;
}
.category-image{
    width: calc(50% - 10px);
    margin:0 0 10px 10px;
    border-radius: 10px;
    overflow: hidden;
    transition: .3s;
    cursor: pointer;
}
.category-image:hover{
    opacity: 0.6;
}
.category-content-b{
    width: 50%;
    padding:0 0 0 20px;
}
.category-content-title{
    font-size: 32px;
    font-weight: 400;
    margin:0 0 50px 0;
}
@media (max-width: 980px) {
    .category-content-a{
        width: 100px;
    }
    .category-content-b{
        width: calc(100% - 100px);
        padding:0;
    }
    .category-image{
        width: calc(100% - 10px);
    }
}



.breadcrumbs{
    margin:0 0 20px 0;
}
.breadcrumbs ol{
    display: flex;
    align-items: center;
    list-style: none;
    padding:0;
}
.breadcrumbs ol li{
}
.breadcrumbs ol li:after{
    content:'/';
    padding:0 5px;
    color:var(--bluegray-100);
    font-size: 12px;
}
.breadcrumbs ol li:last-child:after{
    display: none;
}




.footer{
    background: #f8f8f8;
}
.footer-a-container{
    text-align: center;
    padding:60px 0 30px 0;
}
.footer-logo{
    font-size: 42px;
    font-weight: 400;
    margin:0 0 40px 0;
}
.footer-phones{
    margin:0 0 40px 0;
}
.footer-phones-title{
    font-size: 14px;
    font-weight: 600;
    margin:0 0 10px 0;
}
.footer-phone span{

}
.footer-phone a{

}
.footer-addresses{
    margin:0 0 40px 0;
}
.footer-addresses-title{
     font-size: 14px;
     font-weight: 600;
     margin:0 0 10px 0;
}
.footer-social-title{
    font-size: 14px;
    font-weight: 600;
    margin:0 0 10px 0;
}
@media (max-width: 1200px) {
    .footer-logo{
        font-size: 22px;
        line-height: 150%;
    }

}
/**/
.footer-b{
    border-top: 1px solid var(--bluegray-50);
    padding:20px 0;
}
.footer-b-container{

}
.footer-copyright{
    text-align: center;
    font-size: 14px;
    color: var(--bluegray-500);
}