@import url(./reset.css);
@import url(./fonts.css);
@import url(./header.css);
@import url(./footer.css);


* {
  --white: #fff;
  --blue: #005ab9;
  --black: #000;
}
body {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--white);
  background: var(--black);
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
#page{
    overflow: hidden;
}
.container{
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    box-sizing: border-box;
}
.btn_primary{
    padding: 18px 21px;
    background: var(--blue);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    transition: all .3s linear;
}
.btn_primary:hover{
    background: transparent;
    color: var(--white);
    outline: 1px solid var(--white);
    backdrop-filter: blur(1px);
}
.btn{
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
    padding: 19.5px 59px;
    color: var(--white);
    display: inline-block;
    text-align: center;
    transition: all .3s linear;
}
.btn_transparent{
    outline: 1px solid var(--white);
}
.btn_transparent:hover{
    background: var(--blue);
    color: var(--white);
    outline: none;
}
.title{ 
    font-size: 5.25rem;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.second_title{
    font-size: 2.38rem;
}
.sub_title{
    font-size: 1rem;
    color: var(--blue);
    margin: 0 0 15px;
}
.title_item{
    color: var(--white);
    font-size: 1.63rem;
    margin: 0 0 10px;
}
.swiper-btn-next, .swiper-btn-prev{
    width: 47px;
    height: 47px;
    background: var(--black);
    outline: 1px solid var(--blue);
    transition: all .3s linear;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.swiper-btn-next:hover, .swiper-btn-prev:hover{
    background: var(--blue);
}
.swiper-btn-next:hover path, .swiper-btn-prev:hover path{
    stroke: var(--white);
    fill: var(--white);
}
.swiper {
      width: 100%;
      height: 100%;
    }


@media screen and (min-width: 1520px) {
    .title{
        font-size: 6.2rem;
    }
    .second_title{
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 1199px) {
    .container{
        padding: 0 20px;
    }
    .title{
        font-size: 4rem;
    }
}
@media screen and (max-width: 767px){
    .title{
        font-size: 2.75rem;
        text-align: center;
    }
    .title span{
        font-size: 3.44rem;
        display: block;
    }
    .btn{
        font-size: .75rem;
        padding: 17.5px;
    }
    .second_title{
        font-size: 1.88rem;
    }
    .sub_title{
        font-size: .75rem;
    }
    .swiper-btn-next, .swiper-btn-prev{
        width: 40px;
        height: 40px;
    }
    .swiper-btn-next svg, .swiper-btn-prev svg{
        width: 17px;
        display: block;
    }
}

/* STUDENTS SINGLE PAGE */

.breadcrumbs {
  padding-top: 112px;
  margin: 0 0 20px;
}

.breadcrumb_link {
  color: var(--white);
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: all 0.3s linear;
}

.breadcrumb_link::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url('data:image/svg+xml,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20.707 11.9697L20.707 9.4444L5.55552 9.44441L12.5 2.49996L10.707 0.707031L0.707032 10.707L10.707 20.707L12.5 18.9141L5.55552 11.9697L20.707 11.9697Z" fill="%23fff" stroke="%23fff"/></svg>')
    no-repeat center;
  background-size: contain;
  transition: all 0.3s linear;
}
.breadcrumb_link:hover {
  color: var(--blue);
}
.breadcrumb_link:hover::before {
  background: url('data:image/svg+xml,<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20.707 11.9697L20.707 9.4444L5.55552 9.44441L12.5 2.49996L10.707 0.707031L0.707032 10.707L10.707 20.707L12.5 18.9141L5.55552 11.9697L20.707 11.9697Z" fill="%23005ab9" stroke="%23005ab9"/></svg>')
    no-repeat center;
    width: 12px;
    background-size: contain;
  height: 12px;
}
.result_registry {
    font-size: 1.63rem;
    margin:  0 0 60px;
}
.registry_name{
    font-size: 2.38rem;
    margin: 0 0 10px;
}
.registry_button{
    padding: 15px 38px 11px 38px;
    background: var(--blue);
    color: var(--white);
    font-size: 1rem;
    display: inline-flex;
    box-sizing: border-box;
    gap: 12px;
    align-items: center;
    transition: all .3s linear;
}
.registry_button::after{
    content: '';
    display: block;
    width: 27px;
    height: 27px;
    background: url(../img/reg.svg) no-repeat center;
    background-size: contain;
}
.registry_button:hover{
    opacity: .6;
}
.registry_screen p.name-title{
    margin: 0 0 50px;
}

.certificate_image{
    display: none;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(7px);
    background: #ffffff57;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    width: 90%;
    max-width: 580px;
    width: 100%
}

.popup-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px
}

.popup-content .close {
    position: absolute;
    top: -43px;
    right: -54px;
    cursor: pointer;
    font-size: 20px;
    color: #000
}

.popup-content svg.icon_close_img{
    max-width: 15px;
    position: absolute;
    right: -30px;
    top: -30px;
    background-color: var(--blue);
}

.popup-content svg path{
    fill: #ffffff;
}

.single-students #page{
      overflow: visible;
    }
  .open_doc {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    padding: 15px 38px 11px 38px;
    background: var(--blue);
    font-family: 'Unbounded', sans-serif;
    color: var(--white);
    font-size: 1rem;
    border-radius: 0;
    display: inline-flex;
    box-sizing: border-box;
    gap: 12px;
    align-items: center;
    transition: all .3s linear;
}



.open_doc:disabled {
    color: #EEE;
    background: #B0B0B0;
}

.open_doc:disabled path {
    fill: #EEE;
}

.course_group {
    position: relative;
    max-width: 450px;
    width: 100%;
    margin: 0 0 30px;
}

.course_group a {
    padding: 16px 24px;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.course_group .dropdown {
    cursor: pointer;
    position: relative;
}

.dropdown .select:focus-visible,.course_group:focus-visible {
    outline: none;
}

.dropdown .select span {
    padding: 10px 5px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    color: var(--blue);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #bdbdbdff;
}

.dropdown .select span::after {
    content: "";
    display: block;
    width: 14px;
    height: 7px;
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='8' viewBox='0 0 13 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.65654 7.071L-0.00046164 1.414L1.41354 -4.94551e-07L6.36354 4.95L11.3135 -6.18079e-08L12.7275 1.414L7.07054 7.071C6.88301 7.25847 6.6287 7.36379 6.36354 7.36379C6.09837 7.36379 5.84407 7.25847 5.65654 7.071Z' fill='%23005AB9'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: all .3s linear;
}

.dropdown-toggle.show::after {
    transform: rotate(180deg);
}

.course_group .dropdown-menu {
    display: none;
    list-style: none;
    position: absolute;
    margin: 8px 0 0;
    padding: 0;
    background-color: #000000;
    border: 1px solid #bdbdbdff;
    width: 100%;
    z-index: 10;
    padding: 18px 15px 0;
    box-sizing: border-box;
}

.course_group .dropdown-menu .dropdown-item {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    cursor: pointer;
    text-align: left;
    color: #ffffff;
}

.course_group .dropdown-menu .dropdown-item:hover{
  color: var(--blue);
  background-color: transparent
}

.dropdown-toggle.active {
    color: var(--green-light);
}

.course_group .dropdown-menu .dropdown-item:not(:last-child) {
    margin: 0 0 15px;
}

.course_group .dropdown-menu.show {
    display: block;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    background: #0000007d;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
    width: 90%;
    max-width: 580px;
    width: 100%;
    margin: 5% auto;
    border-radius: 0;
}

.popup-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.popup-content .close {
    position: absolute;
    top: -43px;
    right: -54px;
    cursor: pointer;
    font-size: 20px;
    color: #000;
}

.dropdown-item.selected {
    color: var(--green-light);
}

.search_result {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width: 992px) {
    .breadcrumbs{
        padding-top: 60px;
    }
    .breadcrumb_link{
        font-size: .87rem;
    }
    .result_registry{
        font-size: 1.5rem;
    }
    .registry_name{
        font-size: 2rem;
    }
}

@media screen and (max-width: 767px){
    .breadcrumbs{
        padding-top: 30px;
    }
    .breadcrumb_link{
        font-size: .63rem;
    }
    .result_registry{
        font-size: 1.13rem;
        margin:  0 0 40px;
    }
    .registry_name{
        font-size: 1.88rem;
    }
    .registry_screen{
        height: 100vh;
    }
    .registry_screen>div> p{
        font-size: .75rem;
    }
    .registry_screen>div> p{
        margin:  0 0 40px;
    }
    .registry_button{
        font-size: .75rem;
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media screen and (max-width: 420px){
    .registry_button{
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* MODAL WINDOW */


.modal_block{
    max-width: 760px;
    width: 90%;
     border: 1px solid var(--blue);
    position: relative;
    background: var(--black);
}
.close_modal{
    width: 64px;
    height: 64px;
    border: 1px solid var(--blue);
    position: absolute;
    top: -1px;
    right: -1px;
    transition: all .3s linear;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close_modal:hover{
    background: var(--blue);
}
.close_modal:hover path{
    stroke: var(--white);
    fill: var(--white);
}
.modal_title{
    font-size: 1.63rem;
    width: 80%;
    margin: 0 0 40px;
    padding: 30px 30px 0;
}
.modal_politic{
    font-size: .63rem;
    padding: 22px 20px 25px 3px;
    text-align: right;
    width: 223px;
    box-sizing: border-box;
    border: 1px solid var(--blue);
    margin-left: auto;
    position: absolute;
    right: 0;
    bottom: 65px;
}
.modal_politic a{
    color: var(--white);
    transition: all .3s linear;
}
.modal_politic a:hover{
    color: var(--blue);
}
.modal_block .btn_primary{
    padding: 24px ;
    width: 100%;
    display: block;
}
.modal_container{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -200;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    background: #0000007c;
    opacity: 0;
}
.modal_container.open{
    opacity: 1;
    z-index: 200;
}
.modal_form_block{
    margin:55px 0 0  ;
}
.modal_form_block input{
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
    font-family: "Unbounded", sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 20px;
    max-width: 100%;
    border-radius: 0;
    margin-top: 30px;
    width: 100%;
}
.modal_form_block input::placeholder{
    color: #ffffff;
}
.modal_form_block input.wpcf7-submit{
    background: var(--blue);
    padding: 14px 21px 14px 21px;
    height: 68px;
    color: #ffffff;
    font-family: "Unbounded", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    width: 100%;
    margin-top: 145px;
    border-bottom: none;
    transition: 0.3s linear all;
}
.modal_form_block input.wpcf7-submit:hover {
    background: transparent;
    color: var(--white);
    outline: 1px solid var(--white);
    backdrop-filter: blur(1px);
}
.modal_form_block input:focus-visible, .modal_form_block input:focus{
    outline: none;
    color: #ffffff;
}
.modal_form_block .wpcf7-form-control-wrap{
    padding: 0 0 0 30px;
    max-width: 530px;
    display: inline-block;
}
.wpcf7-spinner{
    position: absolute!important;
}
@media screen and (max-width: 767px) {
    .modal_title{
        font-size: 1.13rem;
        padding: 20px  70px 40px 30px ;
        margin: 0;
        box-sizing: border-box;
    }
    .close_modal svg{
        width: 16px;
        height: 16px;
    }
    .close_modal{
        width: 47px;
        height: 47px;
    }
    .modal_form_block{
        margin: 0;
    }
    .modal_block .btn_primary{
        padding: 17.5px;
    }
    .btn{
        width: 100%;
    }
}
@media screen and (max-width: 500px) {
.modal_politic{
    padding: 7px 30px 14px;
    max-width: 100%;
    font-size: .5rem;
    width: 100%;
    text-align: left;
    margin: 0;
}
.modal_politic span{
    width: 210px;
    display: block;
}
.modal_title{
    width: 100%;
    padding-right: 50px;
}
.modal_form_block .wpcf7-form-control-wrap{
    padding: 0 20px;
}
}
 /* Error page */

 .error_section{
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow-x: hidden;
    justify-content: center;
}
.error_contain{
    max-width: 600px;
    margin: auto;
    padding-top: 63px;
    border: 1px solid var(--blue);
    text-align: center;
}
.rotate_text{
    transform: rotate(-10deg);
    position: relative;
    top: -39px;
    left: 100px;
    text-align: left;
    font-size: 1.63rem;
}
.text_error{
    text-align: center;
    font-size: 2.38rem;
    margin: 0 0 80px;
}
.error_contain .btn_primary{
    width: 100%;
    display: block;
    box-sizing: border-box;
}
@media screen and (max-width: 767px){
    .error_contain img{
        display: block;
        max-width: 300px;
        margin: 0 auto ;
    }
    .text_error{
        font-size: 1.63rem;
    }
    .rotate_text{
        font-size:1.13rem ;
    }
    .rotate_text{
        left: 40px;
    }
    .error_section>div{
        padding-bottom: 10vh; 
    }
    .error_section{
        min-height: 90vh;
    }
}

/* SINGLE POST */

.single-post .post-content {
    max-width: 960px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.single-post h1 {
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.1;
    text-align: center;
    max-width: 960px;
    margin: 30px auto 50px;
}

.single-post .wp-block-heading {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 30px 0 20px;
    color: var(--green);
    text-align: left;
}

.single-post .wp-block-image {
    margin: 20px 0;
}

.single-post .wp-block-image img {
    width: 100%;

}

.single-post ul.wp-block-list {
    list-style: disc;
    padding-left: 30px;
    margin: 0 0 20px 0;
}

.single-post ol.wp-block-list {
    list-style: decimal;
    padding-left: 30px;
    margin: 0 0 20px 0;
}

.single-post .wp-block-list li {
    line-height: 32px;
}

.single-post .wp-block-embed {
    margin: 20px 0 0;
}



.single-post .wp-block-embed iframe {
    max-height: 500px;
    
}

.single-post .wp-block-embed__wrapper {
    text-align: center
}

.single-post p {
    line-height: 30px;
    margin-bottom: 20px;
}

.wp-block-table td,.wp-block-table th {
    line-height: 30px;
}

.single-post .wp-block-table {
    margin: 20px 0;
}

.single-post p strong {
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .single-post h1 {
        width:100%;
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 560px) {
    .single-post h1 {
        font-size:2.1rem;
    }

    .single-post p,.single-post .wp-block-list li,.wp-block-table td,.wp-block-table th {
        line-height: 26px;
        font-size: .9rem;
    }
}

.wpcf7 form .wpcf7-response-output{
    position: absolute;
    bottom: 50px;
    max-width: 427px;
    border-color: #ffffff;
    font-size: 12px;
    margin: 0!important;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: .8em;
    font-weight: normal;
    display: block;
    position: absolute;
}

/* PRIVACY POLICY */

.privacy-policy header.entry-header{
    position: static;
}

.privacy-policy main{
    padding-bottom: 80px;
}

.privacy-policy main ol {
    list-style: auto;
    margin-left: 16px;
    padding-left: 30px;
}

.privacy-policy main .list_num {
    list-style: number;
    margin-left: 16px;
}

.privacy-policy main .list_letter {
    list-style: lower-alpha;
    margin-left: 16px;
}

.privacy-policy h1 {
    text-align: left;
    font-size: 2.63rem;
    padding-top: 110px;
    width: 90%;
    margin: 0 auto 30px;
}

.privacy-policy main p,.privacy-policy main li {
    font-size: 1rem;
    line-height: 1.87;
    font-weight: 400;
    
}

.privacy-policy main p, .privacy-policy main ul, .privacy-policy main ol{
    width: 90%;
    margin: 0 auto;
}

.privacy-policy main ul ul{
    width: 100%;
}

.privacy-policy main a {
    text-decoration: underline;
}

.privacy-policy main ul {
    list-style: disc;
    padding-left: 30px;
};

.privacy-policy main.site-main{
    padding: 110px 0 100px;
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
}

.privacy-policy .title {
    padding-left: 16px;
    position: relative;
}

.privacy-policy .title::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: var(--black);
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 0;
}

.ml {
    margin-left: 16px;
}

/*.privacy-policy main strong {
    font-weight: 700;
}*/

@media screen and (min-width: 1500px) {
    .privacy-policy main p,.privacy-policy main li {
        font-size:1.1rem;
    }
}

@media screen and (max-width: 767px) {
    .privacy-policy .entry-content {
        width:100%;
        padding: 50px 0 100px;
    }

    .entry-content h2 {
        font-size: 1.5rem;
    }

    .privacy-policy main li a {
        font-size: .93rem;
    }
}

.page-id-320 header.entry-header{
    position: static;
}
.page-id-320 p,.page-id-320 li {
    font-size: 1rem;
    line-height: 1.87;
    font-weight: 400;
}

.page-id-320 strong {
    font-weight: 600;
}

.page-id-320 h1 {
    text-align: left;
    font-size: 2.63rem;
    margin: 40px 0 0px;
    font-weight: 400;
}

.page-id-320 main ol {
    list-style: auto;
    margin-left: 16px;
    padding-left: 30px;
}

.page-id-320 main .list_num {
    list-style: number;
    margin-left: 16px;
}

.page-id-320 main .list_letter {
    list-style: lower-alpha;
    margin-left: 16px;
}

.page-id-320 h1 {
    text-align: left;
    font-size: 2.63rem;
    margin: 0 0 30px;
}

.page-id-320 main p,.page-id-320 main li {
    font-size: 1rem;
    line-height: 1.87;
    font-weight: 400;
}

.page-id-320 main a {
    text-decoration: underline;
}

.page-id-320 main ul {
    list-style: disc;
    padding-left: 30px;
}

.page-id-320 main{
    padding:110px 0 100px;
    width: 90%;
    box-sizing: border-box;
    margin: 0 auto;
}

.page-id-320 .title {
    padding-left: 16px;
    position: relative;
}

.page-id-320 .title::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: var(--black);
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 0;
}

.ml {
    margin-left: 16px;
}



@media screen and (min-width: 1500px) {
    .page-id-320 main p,.page-id-320 main li {
        font-size:1.1rem;
    }
}

@media screen and (max-width: 767px) {
    .page-id-320 .entry-content {
        width:100%;
        padding: 50px 0 100px;
    }

    .entry-content h2 {
        font-size: 1.5rem;
    }

    .page-id-320 main li a {
        font-size: .93rem;
    }
}

input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus{
    color: #ffffff;
}