/*======== Fonts ========*/
@font-face {
    font-family: Roboto;
    src: url("../fonts/roboto-Regular.ttf");
    font-weight: 400;
}
@font-face {
    font-family: Roboto;
    src: url("../fonts/Roboto-Bold.ttf");
    font-weight: 700;
}
@font-face {
    font-family: Roboto;
    src: url("../fonts/Roboto-Black.ttf");
    font-weight: 900;
}
@font-face {
    font-family: Roboto;
    src: url("../fonts/Roboto-Light.ttf");
    font-weight: 100;
}
@font-face {
    font-family: Akrobat;
    src: url("../fonts/Akrobat-Regular.otf");
}
@font-face {
    font-family: Akrobat;
    src: url("../fonts/Akrobat-Bold.otf");
    font-weight: 700;
}
/*======== Animations Section ========*/
@-webkit-keyframes scale {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}
@keyframes scale {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}
@-webkit-keyframes bounce {
    from,
    92%,
    95.3%,
    98%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    94%,
    94.3% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    97% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    99% {
        -webkit-transform: translate3d(0, -2px, 0);
        transform: translate3d(0, -2px, 0);
    }
}

@keyframes bounce {
    from,
    92%,
    95.3%,
    98%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    94%,
    94.3% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    97% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    99% {
        -webkit-transform: translate3d(0, -2px, 0);
        transform: translate3d(0, -2px, 0);
    }
}
@-webkit-keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -500px, 0);
        transform: translate3d(0, -500px, 0);
    }
}
@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -500px, 0);
        transform: translate3d(0, -500px, 0);
    }
}
@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}
@-webkit-keyframes zoomOut {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    to {
        opacity: 0;
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    to {
        opacity: 0;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
/*======== General Style Section ========*/
body {
    font-family: Roboto, sans-serif;
}
header {
    position: fixed;
    width: 100%;
    z-index: 10;
}
h2, h3 {
    color: #1686dd;
    font-family: Akrobat, sans-serif;
    font-size: 40px;
    font-weight: 900;
}
h5 {
    font-size: 18px;
    color: #1686dd;
    font-weight: 900;
    text-transform: uppercase;
}
h5 span {
    font-weight: 400;
    color: #484848;
    text-transform: none;
}
h6 {
    font-size: 18px;
    color: #1686dd;
    font-weight: 400;
}
main {
    overflow: hidden;
}
ul, ol {
    padding-left: 17px;
}
ul li {
    margin-bottom: 1em;
}
.btn.focus, .btn:focus {
    box-shadow: none;
}
.zi-1 {
    z-index: 1;
}
.btn {
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.main-hero-hdr {
    font-family: Akrobat, sans-serif;
    color: #007bfe;
    font-size: 90px;
    font-weight: 700;
    line-height: 0.5;
    margin-bottom: 60px;
}
.main-hero-hdr span {
    font-family: Roboto, sans-serif;
    font-size: 30px;
    font-weight: 300;
}
.hero-hdr, h3.hdr-txt {
    font-family: Roboto, sans-serif;
    color: #007bfe;
    font-size: 55px;
    font-weight: 300;
}
h3.hdr-txt {
    text-align: center;
}
.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}
.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}
.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}
.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animated.delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
/*======== Top Navigation Section ========*/
ul.list-group li.list-group-item {
    padding: 0;
    border-radius: 0;
}
.list-group-item a {
    padding: .75rem 1.25rem;
    display: block;
    height: 100%;
}
.v-menu {
    background: url("../img/menu.svg") no-repeat center center;
    background-size: 100% 100%;
    transition: .3s;
}
.scrolled .v-menu {
    background: url("../img/menu-d.svg") no-repeat center center;
    background-size: 100% 100%;
}
.scrolled .v-menu.close {
    background: url("../img/nav-close.svg") no-repeat center center;
    background-size: 90% 90%;
    transform: rotate(-90deg);
}
.navbar-tgl:hover, .navbar-tgl:active, .navbar-tgl:focus {
    outline: none;
}
.top-navbar {
    position: relative;
    transition: .3s;
    padding: 0;
}
.top-navbar-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 150px;
    overflow: hidden;
    transition: .3s;
}
.top-navbar:before {
    position: absolute;
    content: '';
    background:  #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .3s;
    z-index: -1;
    box-shadow: 0 -4px 31px 0 rgba(0,0,0,1);
}
.top-navbar-wrap.scrolled {
    padding: 20px 150px;
}
.top-navbar.scrolled:before {
    opacity: 1;
}
.top-nav {
    width: 930px;
}
.nav-btn {
    position: relative;
    color: #7b7b7b;
    font-size: 18px;
    font-weight: 700;
}
.nav-btn:hover {
    color: #007bfe;
}
.nav-btn:after {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    bottom: -5px;
    left: calc(50% - 3px);
    background: transparent;
    border-radius: 50%;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.nav-btn:hover:after {
    background: #007bfe;
}
.order-btn, .nav-item.nav-link.order-btn,
.nf-field-element input.order-btn,
form.select-univ .order-btn {
    padding: 10px 45px 10px;
    max-width: 300px;
    color: #ffffff;
    font-family: Akrobat, sans-serif;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 4px 3px 10px 1px rgba(0, 1, 2, 0.4);
    border-radius: 22px;
    border: 2px solid #ffffff;
    background: #e50428;
    transition: .3s;
}
.order-btn:hover, .nav-item.nav-link.order-btn:hover,
.nf-field-element input.order-btn:hover,
form.select-univ .order-btn:hover {
    box-shadow: 9px 8px 23px 4px rgba(0, 1, 2, 0.4);
    background: #e43f5a;
    transform: translate(-1px, -1px);
    color: #ffffff;
}
.order-btn:active, .nav-item.nav-link.order-btn:active,
.nf-field-element input.order-btn:active,
form.select-univ .order-btn:active {
    box-shadow: 4px 3px 10px 1px rgba(0, 1, 2, 0.4);
    background: #e50428;
    color: #2d2d2d;
}
.dark-btn {
    background: #213867;
    margin-left: 40px;
}
.dark-btn:hover, .dark-btn:active {
    background: #213867;
}
/*======== Hero Section ========*/
.hero {
    background: url("../img/first-page-bg.svg") no-repeat left center;
    background-size: contain;
    height: 941px;
}
.col-hero {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
}
.hero-txt {
    color: #484848;
    font-size: 18px;
    font-weight: 400;
}
/*======== Services Section ========*/
.services {
    background: linear-gradient(to bottom, #eaf5ff 0%, #ffffff 35%, #ffffff 100%);
    position: relative;
}
.services:after {
    position: absolute;
    content: '';
    background: url("../img/counter-bg.svg") no-repeat center center;
    left: 0;
    top: 51%;
    width: 1920px;
    height: 631px;
    z-index: 0;
}
.nav-tabs {
    border: none;
}
.nav-tabs .srvs-itm {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    max-width: 156px;
}
.nav-tabs .srvs-itm.active {

    background: transparent;
}
.itm-pic {
    border-radius: 50%;
    background: #cee2f9;
    width: 70px;
    height: 70px;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}
.srvs-itm.active .itm-pic,
.srvs-itm:hover .itm-pic {
    background: #213867;
}
.itm-img {
    display: block;
    width: 32px;
    max-height: 40px;
}
.itm-txt{
    display: block;
    margin: 10px 0 15px;
    text-align: center;
    font-family: Akrobat, sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
    color: #1591ed;
    line-height: 1.1;
}
.srvs-itm.active .itm-txt,
.srvs-itm:hover .itm-txt {
    color: #213867;
}
.srvs-tab {
    box-shadow: 7px 7px 10px 1px rgba(0, 0, 0, 0.35);
    background: #f4f4f4;
    padding-right: 55px;
    overflow: hidden;
    transition: opacity .4s linear;
    z-index: 1;
}
.tab-img {
    float: left;
    margin-right: 30px;
    height: 282px;
}
.tab-hdr {
    margin-top: 30px;
    color: #007bfe;
    font-family: Akrobat, sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}
.tab-txt {
    color: #626262;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
}
.counter-col {
    position: relative;
    z-index: 0;
}
.counter-item {
    width: 252px;
    z-index: 1;
}
.cntr-num, .cntr-txt {
    display: block;
    text-align: center;
}
.cntr-num {
    color: #cee2f9;
    font-size: 90px;
    font-weight: 900;
}
.cntr-txt {
    color: #ffffff;
    font-family: Akrobat, sans-serif;
    font-size: 30px;
    font-weight: 700;
}
/*======== Team Section ========*/
.owl-carousel .owl-stage {
    padding-bottom: 15px;
}
.owl-carousel .owl-item .team-img {
    width: 100%;
    height: auto;
}
.owl-item {
    position: relative;
    transition: .3s;
}
.owl-item.center {
    box-shadow: 7px 7px 10px 1px rgba(0, 0, 0, 0.35);
}
.team-carousel .owl-item:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #c4c4c4;
    opacity: 0.6;
    transition: .4s ease;
}
.team-carousel .owl-item.center:before {
    opacity: 0;
    transition: .4s ease;
}
.owl-dots {
    margin-top: 45px;
    text-align: center;
}
.owl-carousel button.owl-dot {
    width: 15px;
    height: 15px;
    margin: 0 15px;
    background: #cee2f9;
    border-radius: 50%;
    transition: .4s ease;
}
.owl-carousel button.owl-dot.active {
    background: #1591ed;
}
.owl-carousel button.owl-dot:focus,
.owl-carousel button.owl-dot:active {
    outline: none;
}
/*======== Five Steps Section ========*/
.steps {
    background: linear-gradient(to bottom, #eaf5ff 0%, #ffffff 75%, #ffffff 100%);
}
.steps-cnt {
    display: flex;
    justify-content: space-around;
    background: url("../img/steps-bg.svg") center 0 no-repeat;
    background-size: 100%;
}
.step-item {
    max-width: 156px;
    text-align: center;
}
.step {
    position: relative;
    width: 70px;
    height: 70px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 50%;
    color: #ffffff;
    font-size: 30px;
    font-weight: 300;
    z-index: 2;
}
.step span {
    position: relative;
    z-index: 2;
}
.step:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.step-item:nth-child(1) .step:before {
    background: url("../img/step-bg-b.svg") center center no-repeat;
}
.step-item:nth-child(2) .step:before {
    background: url("../img/step-bg-v.svg") center center no-repeat;
    transform: rotate(60deg);
}
.step-item:nth-child(3) .step:before {
    background: url("../img/step-bg-b.svg") center center no-repeat;
    transform: rotate(140deg);
}
.step-item:nth-child(4) .step:before {
    background: url("../img/step-bg-v.svg") center center no-repeat;
    transform: rotate(210deg);
}
.step-item:nth-child(5) .step:before {
    background: url("../img/step-bg-b.svg") center center no-repeat;
    transform: rotate(280deg);
}
.step-txt {
    margin: 30px 0;
    font-family: Akrobat, sans-serif;
    font-size: 30px;
    line-height: 1.2;
    color: #1591ed;
    font-weight: 700;
    text-align: center;
}
/*======== Blog Section ========*/
.blog-posts {
    background: url("../img/blog-posts-bg.svg") right bottom no-repeat;
    background-size: 870px 466px;
}
.post-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 7px 7px 10px 1px rgba(0, 0, 0, 0.35);
    background-color: #f4f4f4;
    height: 650px;
}
.post-category {
    display: block;
    position: relative;
    padding: 5px 22px 4px;
    color: #0092f0;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}
.post-category:after {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    top: 0;
    right: 0;
}
.cat-inst:after {
    background: #0092f0 url("../img/instagram.svg") center center no-repeat;
    background-size: 18px;
}
.post-img {
    width: 100%;
    height: auto;

}
.post-header {
    width: 70%;
    margin: 30px auto 10px;
    color: #213867;
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}
.post-excerpt {
    color: #626262;
    font-size: 16px;
    margin: 11px 14px;
}
.post-footer {
    display: flex;
    justify-content: space-between;
    padding: 21px 22px;
    border-top: 1px solid #cee2f9;
    height: 62px;
}
.post-date {
    color: #343434;
    font-size: 16px;
    font-weight: 300;
}
.post-read {
    position: relative;
    display: inline-block;
    color: #0092f0;
    font-size: 16px;
    padding-right: 30px;
    font-weight: 600;
}
.post-read:hover {
    text-decoration: none;
    color: #0092f0;
}
.post-read:after {
    position: absolute;
    content: '';
    width: 15px;
    height: 9px;
    top: 7px;
    right: 10px;
    background: url("../img/right-arrow.svg") center center no-repeat;
    transition: .4s;
}
.post-read:hover:after {
    transform: translateX(10px);
}
/*======== Partner Section ========*/
.partner-univercity {
    display: block;
    width: 180px;
    height: 180px;
    margin: 0 auto;
}
.partner-img {
    width: 100%;
    height: 100%;
}
/*======== Map Section ========*/
.map {
    background: url("../img/map-bg.svg") left center no-repeat;
    background-size: 1698px 667px;
    padding: 100px 0;
}
.map-img {
    width: 100%;
    height: 377px;
    border: none;
}
.schedule {
    background: url("../img/sched-bg.svg") center center no-repeat;
    background-size: cover;
    padding: 29px 39px;
    color: #ffffff;
    font-family: Akrobat, sans-serif;
}
.schedule p {
    line-height: 1.3;
}
.schedule-address,
.schedule-weekdays {
    margin-bottom: 10px;
}
.address-head {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
}
.address-txt {
    margin: 0;
    font-size: 18px;
    font-weight: 300;
}
.schedule-days {
    margin: 0;
    display: inline-block;
    font-size: 24px;
    vertical-align: middle;
}
.schedule-time {
    display: inline-block;
    font-size: 40px;
    font-weight: 900;
    vertical-align: middle;
    margin: 0 0 0 15px;
}
.schedule-time sup {
    font-size: 16px;
    font-weight: 700;
    vertical-align: super;
}
.schedule-holidays {
    margin-bottom: 1px;
}
.schedule-entry {
    display: inline-block;
    font-size: 21px;
    vertical-align: middle;
    margin: 0 0 0 15px;
    width: 73%;
}
/*======== Footer Section ========*/
.footer-light {
    background-color: #cee2f9;
    color: #213867;
    padding: 42px 0 25px;
}
.footer-logo {
    display: block;
    width: 230px;
    line-height: 1;
    margin-bottom: 10px;
    font-family: Akrobat, sans-serif;
    font-size: 50px;
    font-weight: 700;
    text-decoration: none;
    color: #213867;
}
.footer-logo:hover {
    text-decoration: none;
    color: #213867;
}
.footer-slogan {
    font-size: 13px;
    font-weight: 300;
}
.footer-where {
    color: #484848;
    font-size: 16px;
}
.footer-address {
    color: #484848;
    font-size: 14px;
}
.footer-menu {
    column-count: 2;
    list-style: none;
}
.footer-href {
    color: #484848;
    font-size: 14px;
}
.footer-contact {
    display: block;
    color: #484848;
    font-size: 16px;
    font-weight: 500;
}
.footer-phone,
.footer-mail {
    display: block;
    font-family: Akrobat, sans-serif;
    text-decoration: none;
    color: #213867;
}
.footer-phone:hover,
.footer-mail:hover {
    text-decoration: none;
}
.footer-phone {
    font-size: 30px;
    font-weight: 600;
}
.footer-mail {
    font-size: 24px;
    font-weight: 700;
}
.footer-social {
    display: inline-block;
    width: 23px;
    height: 23px;
    margin: 10px 10px 0 0;
    transition: .3s;
}
.footer-social:hover {
    transform: scale(1.1);
}
.social-facebook {
    background: url("../img/facebook-logo.svg") no-repeat center;
}
.social-facebook:hover {
    background: url("../img/facebook-logo-hover.svg") no-repeat center;
}
.social-instagram {
    background: url("../img/instagram-logo.svg") no-repeat center;
}
.social-instagram:hover {
    background: url("../img/instagram-logo-hover.svg") no-repeat center;
}
.footer-dark {
    background-color: #213867;
    padding: 10px;
}
.footer-therms {
    display: inline-block;
    color: #cee2f9;
    font-size: 14px;
}

/*===================================*/
/*======== Universities page ========*/
/*===================================*/

/*======== Choose Section ========*/
.heading {
    padding-top: 150px;
}
.choose {
    background: url("../img/choose-bg.svg") 600px top no-repeat;
    background-size: 1544px 442px;
}
.choose-calc {
    width: 103%
}
.choose-univ {
    box-shadow: 1px 6px 22px 2px rgba(0, 1, 2, 0.3);
}
.select-univ {
    padding: 40px 70px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #f4faff;
}
.select-univ .form-group {
    position: relative;
    width: 47%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}
.select-univ label {
    display: block;
    width: 100%;
    color: #3b3b3b;
    font-size: 16px;
    font-weight: 400;
    padding-left: 34px;
    margin-bottom: 14px;
}
.select-univ label span {
    color: #ff0000;
}
.select-univ select {
    width: 100%;
    padding: 17px 30px;
    border-radius: 30px;
    border: 2px solid #cee2f9;
    color: #626262;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
}
.select-univ select:active,
.select-univ select:focus {
    outline: none;
    box-shadow: none;
}
.select-univ .select-arrow {
    position: absolute;
    width: 44px;
    height: 44px;
    right: 8px;
    bottom: 8px;
    pointer-events:none;
    background: #cee2f9 url("../img/select-shev.svg") center no-repeat;
    background-size: 16px;
    border-radius: 50%;
    transition: .3s;
}
.select-univ .order-btn {
    margin-top: 38px;
    width: 100%;
}
.univ-result {
    height: 180px;
    padding: 15px 100px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    background: url("../img/univ-result-bg.svg") center no-repeat;
    background-size: cover;
}
.univ-result p {
    margin-bottom: 0;
}
.univ-result-carousel {
    position: relative;
}
.univ-result-carousel .owl-nav {
    position: absolute;
    width: 100%;
    top: 10px;
    left: 0;
    z-index: -1;
}
.univ-result-carousel .owl-nav button {
    transition: .3s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.univ-result-carousel .owl-nav button:hover {
    transform: scale(1.05);
}
.univ-result-carousel .owl-nav button:focus {
    outline: none;
}
.univ-result-carousel .owl-prev {
    margin-left: -20px;
}
.univ-result-carousel .owl-prev span,
.univ-result-carousel .owl-next span {
    font-size: 50px;
}
.univ-result-carousel .owl-next {
    float: right;
    margin-right: -20px;
    font-size: 50px;
}
.univ-result-carousel .owl-item.center {
    box-shadow: none;
}
.single-univ {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.single-univ-link {
    display: block;
    margin: 10px;
    cursor: pointer;
    transition: .3s;
}
.single-univ-link:hover {
    text-decoration: none;
    transform: scale(1.05);
}
.univ-result-carousel .owl-item img.single-univ-badge {
    width: 100px;
    margin: 0 auto;
}
.single-univ-name {
    font-size: 1.1rem;
    text-align: center;
    color: white;
}
/*======== Universities Section ========*/
.univ-cnt {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
    height: 1300px;
}
.univ-item {
    display: inline-block;
    position: relative;
    width: 260px;
    height: 413px;
    margin-bottom: 20px;
    box-shadow: 1px 10px 10px 1px rgba(0, 0, 0, 0.35);
    background-color: #f4f4f4;
    font-family: Akrobat, sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    transition: .4s;
}
.univ-item:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 260px;
    top: 0;
    left: 0;
    background-color: #213867;
    opacity: 0;
    transition: .4s;
}
.univ-item:hover {
    background-color: #1591ed;
    box-shadow: none;
}
.univ-item:hover:after {
    opacity: .7;
}
.univ-item:hover .univ-name {
    color: #cee2f9;
}
.univ-img {
    display: block;
    width: 260px;
    height: 260px;
}
.univ-name {
    color: #007bfe;
    display: inline-block;
    padding: 30px 7px 0;
    transition: .4s;
}
/*===================================*/
/*======== Services page ========*/
/*===================================*/

/*======== Our-Services Section ========*/
.our-services {
    background: url("../img/our-services-bg.svg") 820px top no-repeat;
    background-size: 1069px 522px;
    height: 520px;
}
/*======== Service Items Section ========*/
.service-item {
    display: flex;
    margin: 50px 0;
    box-shadow: 1px 10px 10px 1px rgba(0, 0, 0, 0.35);
    background-color: #f4f4f4;
}
.service-item img {
    width: 370px;
    height: 270px;
}
.service-desc {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 30px;
    position: relative;
}
.service-name {
    padding-left: 30px;
    color: #007bfe;
    font-family: Akrobat, sans-serif;
    font-size: 36px;
    font-weight: 700;
}
.service-txt {
    padding-left: 30px;
    color: #626262;
    font-size: 16px;
    font-weight: 300;
}
.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #cee2f9;
    padding: 30px;
}
.service-cost {
    display: inline-block;
    margin: 0;
    color: #3b3b3b;
    font-size: 18px;
    font-weight: 700;
}
.service-price {
    font-size: 24px;
    line-height: 1;
}
/*===================================*/
/*======== University page ========*/
/*===================================*/

/*======== University Section ========*/
.univercity {
    background: url("../img/choose-bg.svg") 600px top no-repeat;
    background-size: 1544px 442px;
}
.hero-pic {
    position: relative;
    margin-left: auto;
    width: 585px;
    height: 325px;
}
.hero-img {
    height: 100%;
    overflow: hidden;
}
.hero-img img {
    width: 100%;
    height: auto;
}
.hero-logo {
    position: absolute;
    background-size: contain;
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -60px;
    box-shadow: 5px 4px 22px 2px rgba(0, 1, 2, 0.3);
}
.univ-logo img {
    width: 100%;
    height: 100%;
}
.hero-pic img {
    width: 100%;
    height: auto;
}
/*======== Content Section ========*/
.content p {
    color: #484848;
    font-size: 18px;
    text-align: justify;
}
.univ-btn {
    display: block;
    position: relative;
    text-align: center;
    padding: 18px 10px 60px;
    color: #ffffff;
    font-family: Akrobat, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}
.univ-btn:hover {
    color: #ffffff;
    text-decoration: none;
}
.univ-btn:after {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    left: calc(50% - 15px);
    bottom: 20px;
    transition: .4s;
}
.univ-btn:hover:after {
    transform: translateY(10px);
}
.univ-btn span {
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 300;
}
.univ-btn-b {
    background: url("../img/univ-btn-b.svg") center no-repeat;
    background-size: cover;
}
.univ-btn-b:after {
    background: url("../img/univ-btn-b-after.png") center no-repeat;
}
.univ-btn-v {
    background: url("../img/univ-btn-v.svg") center no-repeat;
    background-size: cover;
}
.univ-btn-v:after {
    background: url("../img/univ-btn-v-after.png") center no-repeat;
}
.info-pic {
    display: inline-block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #cee2f9;
    margin-right: 30px;
}
.info-img {
    display: block;
    margin: 18px auto;
    height: 34px;
}
.info-text {
    display: inline-block;
    color: #213867;
    font-family: Akrobat, sans-serif;
    font-size: 22px;
    font-weight: 600;
    width: calc(100% - 110px);
    line-height: 1.1;
    margin: 10px 0;
    vertical-align: top;
}
.page-id-375 .content img,
.postid-503 .content img {
    float: left;
    width: 20%;
    margin: 0 60px 40px 0;
}
.page-id-375 .content h3,
.postid-503 .content h2,
.postid-503 .content p {
    clear: both;
}
/*======== Documents Section ========*/
.documents {
    background: linear-gradient(to bottom, #eaf5ff 0%, #eaf5ff 30%, #ffffff 65%, #ffffff 100%);
    position: relative;
}
.documents:before {
    position: absolute;
    content: '';
    width: 1630px;
    height: 470px;
    left: 395px;
    bottom: -125px;
    background: url("../img/entrance-bg.svg") center no-repeat;
    background-size: 1630px 470px;
}
.documents-list {
    margin: 0;
    color: #484848;
    font-size: 18px;
}
.documents-list li {
    margin-bottom: 10px;
}
/*======== Questions Section ========*/
.questions {
    background: url("../img/questions.svg") right center no-repeat;
    background-size: 870px 446px;
    height: 446px;
}
.questions-cta {
    text-align: right;
}
.questions-head {
    color: #ffffff;
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
}
.questions-txt {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}
.testim-carousel {
    display: block;
}
.testim-carousel .owl-item {
    transform: scale(.8);
    transition: .3s;
    position: relative;
}
.testim-carousel .owl-item:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #c4c4c4;
    opacity: 0.6;
    transition: .4s ease;
    z-index: 1;
}
.testim-carousel .owl-item.center:before {
    opacity: 0;
    transition: .4s ease;
}
.testim-carousel .owl-item.center {
    transform: scale(1);
}
.testim-item {
    position: relative;
    height: 430px;
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: url("../img/testimonials-bg.svg") center no-repeat;
    background-size: cover;
}
.testim-item h4 {
    text-align: center;
    color: #ffffff;
    font-family: Akrobat, sans-serif;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 40px;
}
.testim-item p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    text-align: justify;
    position: relative;
}
.testim-item p:before,
.testim-item p:after {
    position: absolute;
    content: '"';
    width: 66px;
    height: 68px;
    font-family: Akrobat, sans-serif;
    font-size: 300px;
    color: #7dc7ff;
}
.testim-item p:before {
    top: 15px;
    left: -30px;
    transform: rotate(180deg);
}
.testim-item p:after {
    bottom: 30px;
    right: -30px;
}
.testim-nav {
    position: absolute;
    top: calc(50% - 25px);
    left: -2%;
    width: 104%;
    display: flex;
    justify-content: space-between;
}
.testim-nav button {
    width: 50px;
    height: 50px;
    color: transparent;
    border: 1px solid #007bfe;
    opacity: 0;
    transition: .3s;
    z-index: 2;
}
.center .testim-nav button {
    opacity: 1;
    transition: .3s;
}
.testim-nav button:hover {
    cursor: pointer;
}
.testim-nav .owl-prev {
    background: #7dc7ff url("../img/arrow-prev.svg") center no-repeat;
    background-size: 11px;
}
.testim-nav .owl-next {
    background: #007bfe url("../img/arrow-next.svg") center no-repeat;
    background-size: 11px;
}
/*===================================*/
/*======== Service page ========*/
/*===================================*/

/*======== One Service Section ========*/
.one-service {
    background: url("../img/choose-bg.svg") 600px center no-repeat;
    background-size: 1544px 442px;
}
.bach-logo {
    background: url("../img/tour-date-bg.svg") center center no-repeat;
    text-align: center;
    padding: 40px 0;
}
.bach-cost {
    color: #ffffff;
    font-family: Akrobat, sans-serif;
    font-size: 37px;
    font-weight: 700;
    line-height: 1.1;
}
.cta {
    background: url("../img/order-bg.svg") center bottom no-repeat;
    background-size: 583px 182px;
}
/*===================================*/
/*======== Tours page ========*/
/*===================================*/

/*======== Our Tours Section ========*/
.our-tours {
    background: url("../img/our-tours-bg.svg") 820px top no-repeat;
    background-size: 1037px 501px;
    height: 520px;
}
.tour-name {
    position: relative;
    padding-right: 234px;
}
.seats-left {
    position: absolute;
    top: 10px;
    right: 40px;
    height: 120px;
}
.seats-txt {
    color: #007bfe;
    font-family: Akrobat, sans-serif;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 0;
}
.seats-left img.seats-num {
    height: 100%;
    width: auto;
}
/*===================================*/
/*======== Tour page ========*/
/*===================================*/

/*======== One Tour Section ========*/
.tour-logo {
    background: url("../img/tour-date-bg.svg") center center no-repeat;
    text-align: center;
    padding: 22px 0;
}
.tour-date {
    color: #ffffff;
    font-family: Akrobat, sans-serif;
    font-size: 37px;
    font-weight: 700;
    line-height: 1.1;
}
.tour-days {
    color: #ffffff;
    font-family: Akrobat, sans-serif;
    font-size: 30px;
    font-weight: 700;
}
.tour-info {
    display: flex;
    box-shadow: 5px 4px 22px 2px rgba(0, 1, 2, 0.3);
}
.tour-info li {
    margin-top: 10px;
}
.tour-includes, .tour-excludes {
    padding: 50px 70px;
    background: #f4faff;
    width: 50%;
}
.tour-excludes {
    background: url("../img/team-bg.svg") center no-repeat;
    background-size: cover;
}
.tour-excludes h3,
.tour-excludes li {
    color: #cee2f9;
}
.tour-empty {
    height: 200px;
}
.content p.tour-disclaimer {
    width: 60%;
    margin: 15px auto;
    font-size: 12px;
}
table.tour-prgrm {
    border-collapse: separate;
}
.tour-prgrm tr {
    border: 5px solid transparent;
}
.tour-prgrm tr td:first-child {
    background: #1591ed;
    padding: 30px 95px;
    color: #ffffff;
    font-family: Akrobat, sans-serif;
    font-weight: 900;
    font-size: 40px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap
}
.tour-prgrm tr td {
    padding: 30px;
    background-color: #f4faff;
}
.cta-tour {
    position: relative;
}
.cta-tour:before {
    position: absolute;
    content: '';
    top: -440px;
    right: 0;
    width: 1767px;
    height: 681px;
    background: url("../img/tour-bg.svg") center center no-repeat;
    background-size: 1767px 681px;
    z-index: -1;
}
/*===================================*/
/*======== Courses page ========*/
/*===================================*/

/*======== Our Courses Section ========*/
.our-courses {
    background: url("../img/courses-bg.svg") 820px top no-repeat;
    background-size: 1042px 501px;
    height: 520px;
}
/*======== Course items Section ========*/
.course-item img {
    width: 270px;
    height: 270px;
}
.free-course {
    overflow: hidden;
}
.free-course .service-footer,
.professors .service-footer {
    position: relative;
    background-color: #f4f4f4;
}
.free-course .service-footer:after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 135px 585px;
    border-color: transparent transparent #2d3f86 transparent;
    left: 255px;
    bottom: 0;
    z-index: 0;
}
.free-course .order-btn {
    z-index: 1;
}
/*===================================*/
/*======== Course page ========*/
/*===================================*/
.course-excludes p {
    color: #ffffff;
    font-size: 18px;
}
.course-info {
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 18px 10px;
    color: #ffffff;
    font-family: Akrobat, sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}
.course-info-b {
    background: url("../img/univ-btn-b.svg") center no-repeat;
    background-size: cover;
}
.course-info-v {
    background: url("../img/univ-btn-v.svg") center no-repeat;
    background-size: cover;
}
.course-info-head {
    color: #cee2f9;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0;
}
.course-info-txt {
    color: #ffffff;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}
.course-info-part {
    color: #ffffff;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 0;
}

/*===================================*/
/*======== We come page ========*/
/*===================================*/

/*======== We come Section ========*/
.my-jdemo-logo {
    background: url("../img/my-jdemo-logo.png") center no-repeat;
}
.owl-carousel .owl-item img.my-jdemo-pic {
    width: 371px;
    height: 209px;
    margin: 0 auto;
}
/*===================================*/
/*======== FAQ page ========*/
/*===================================*/

/*======== FAQ Hero Section ========*/
.faq-hero {
    background: url("../img/faq-hero-bg.svg") right top no-repeat;
    background-size: 1069px 522px;
    height: 520px;
}
.faq-accordion .card {
    border-radius: 0;
    margin-bottom: 40px;
    border: none;
    box-shadow: 5px 4px 22px 2px rgba(0, 1, 2, 0.3);
}
.faq-accordion .card-header {
    padding: 0;
}
.faq-accordion .accordion-btn {
    position: relative;
    display: block;
    text-align: left;
    padding: 35px 35px 35px 150px;
    color: #ffffff;
    font-family: Akrobat, sans-serif;
    font-size: 30px;
    font-weight: 700;
    background: #1591ed;
    border: none;
    border-radius: 0;
}
.faq-accordion .accordion-btn:hover,
.faq-accordion .accordion-btn:focus,
.faq-accordion .accordion-btn:active {
    outline: none;
    box-shadow: none;
}
.faq-accordion .accordion-btn:before {
    position: absolute;
    content:'';
    width: 115px;
    height: 115px;
    top: 0;
    left: 0;
    background: url("../img/FAQ-logo.png") center no-repeat;
}
.faq-accordion .card-body {
    background-color: #f2faff;
    padding: 50px 100px 100px;
}


/*===================================*/
/*======== Modal Style Section ========*/
/*===================================*/
/*======== General Style Section ========*/
.modal-content {
    border-radius: 0;
}
.modal-header {
    position: relative;
    padding: 30px 60px;
    background: url("../img/modal-header-bg.svg") center no-repeat;
    background-size: cover;
    border-radius: 0;
}
.modal-close {
    position: absolute;
    right: 26px;
    border: none;
    border-radius: 50%;
    outline: none;
    width: 57px;
    height: 57px;
    background: #9dd2e5 url("../img/close-bg.svg") center no-repeat;
    background-size: 47%;
    transition: .4s;
}
.modal-close:hover {
    transform: rotate(90deg);
    cursor: pointer;
}
.modal-close:focus {
    outline: none;
}
.modal-title {
    font-family: Akrobat, sans-serif;
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    text-transform: none;
    border: none;
}
.modal-body {
    padding: 40px 60px;
    border: none;
    border-radius: 0;
}

/*======== Form Style Section ========*/
.nf-field-element {
    margin: 10px 0;
    height: 37px;
    display: flex;
    align-items: flex-end;
}
/*#nf-form-5-cont h4 {
    display: block;
    margin-top: 10px;
}
#nf-form-5-cont p {
    display: block;
}*/
#nf-form-5-cont #nf-field-78-wrap .nf-field-element,
#nf-form-5-cont #nf-field-79-wrap .nf-field-element {
    align-items: flex-start;
    height: auto;
}
#nf-form-5-cont #nf-field-79-wrap .nf-field-element {
    flex-direction: column;
}
.list-radio-wrap .nf-field-element {
    height: auto;
}
.nf-field-element ul li label {
    color: #7b7b7b;
    font-size: 18px;
}
.nf-field-label label,
.nf-field-element h4 {
    font-weight: 700;
    font-family: Akrobat, sans-serif;
    font-size: 28px;
    color: #1591ed;
}
.nf-field-element h4,
.nf-field-container.html-container {
    margin-bottom: 0;
}
.nf-field-element input,
.nf-field-element select {
    border: none;
    border-bottom: 1px solid #7b7b7b;
    color: #7b7b7b;
    font-size: 18px;
    transition: .3s;
}
.nf-error input.ninja-forms-field {
    border: none;
    border-bottom: 1px solid #e80000;
}
.nf-field-element input:focus {
    outline: none;
    font-size: 22px;
}
.nf-field .list-radio-wrap .nf-field-element li input {
    display: none;
}
.list-radio-wrap .nf-field-element ul li label {
    position: relative;
    padding-left: 2.5em;
    line-height: 2.2;
    margin-left: 0;
}
.list-radio-wrap .nf-field-element li label:before {
    position: absolute;
    content: '';
    width: 24px;
    height: 24px;
    left: 0;
    top: 5px;
    border: 2px solid #1591ed;
    border-radius: 50%;
}
.list-radio-wrap .nf-field-element li label:after {
    position: absolute;
    content: '';
    width: 14px;
    height: 14px;
    left: 5px;
    top: 10px;
    background: #1591ed;
    border-radius: 50%;
    opacity: 0;
    transform: scale(.3);
    transition: .3s;
}
.list-radio-wrap .nf-field-element li label.nf-checked-label:after {
    opacity: 1;
    transform: scale(1);
}

/*======== Callback Button Style Section ========*/
.callback-btn {
    width: 70px;
    height: 70px;
    background: #6da600 url("../img/callback.svg") no-repeat center;
    background-size: 50%;
    border-radius: 50%;
    position: fixed;
    bottom: 60px;
    right: 60px;
    border: 2px solid #ffffff;
    box-shadow: 4px 3px 10px 1px rgba(0, 1, 2, 0.4);
    z-index: 99;
    transition: .6s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: bounce;
    animation-name: bounce;
}
.callback-btn:hover, .callback-btn:active, .callback-btn:focus {
    box-shadow: 9px 8px 23px 4px rgba(0, 1, 2, 0.4);
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-name: scale;
    animation-name: scale;
    -webkit-animation-duration: .6s;
    animation-duration: .6s;
    transform: scale(1.1);
    transition: .6s;
}

/*==============================================*/
/*======== Proforientation page Section ========*/
/*==============================================*/
.content p.prof-excerpt {
    margin: 40px 0;
}
.prof-item h4 {
    text-align: center;
}
.prof-img {
    display: block;
    margin: 40px 0;
    width: 100%;
    height: auto;
}

.prof-inf {
    max-width: 100%;
    margin: 0 auto;
}

/*===================================*/
/*======== Response Section ========*/
/*===================================*/

@media (max-width: 1367px) {
    .hero {
        background-position-x: -60%;
    }
    .heading {
        background-position-x: 200%;
    }
    .choose,
    .one-service,
    .univercity {
        background-position-x: -200%;
    }
}
@media (max-width: 1200px) {
    .top-nav {
        width: 800px;
    }
    .top-navbar {
        padding: 48px 70px;
    }
    .top-navbar.scrolled {
        padding: 0;
    }
    .nav-btn {
        font-size: 24px;
    }
    .order-btn, .nav-item.nav-link.order-btn,
    .nf-field-element input.order-btn {
        padding: 8px 20px 8px;
        font-size: 24px;
    }
    .navbar-nav .nav-link {
        padding: 0;
    }
    .hero {
        background-position-x: -110%;
    }
    .faq-hero {
        background-position-x: 350%;
    }
    .footer-href {
        font-size: 18px;
    }
    .heading {
        background-position-x: 300%;
    }
    .choose, .one-service, .univercity {
        background-position-x: -100%;
    }
}
@media (max-width: 992px) {
    .hero {
        background-position-x: -900%;
    }
    .heading {
        background: none;
    }
    .our-services,
    .our-courses,
    .our-tours,
    .faq-hero {
        height: 260px;
    }
    .top-navbar-wrap {
        padding: 48px 40px;
    }
    .top-navbar-wrap.scrolled {
        padding: 20px 40px;
    }
    .top-nav {
        width: auto;
    }
    .top-nav .nav-btn {
        display: none;
    }
    .hero-pic {
        margin: 0 auto;
    }
    .hero-logo {
        bottom: -120px;
        left: calc(50% - 100px);
    }
    .content {
        padding-top: 3rem;
    }
    .univ-btn {
        margin-bottom: 20px;
    }
    .course-info {
        margin-bottom: 20px;
    }
    .service-name {
        font-size: 32px;
    }
    .service-footer {
        padding: 10px;
    }
    .owl-carousel .owl-item .team-img {
        display: block;
        margin: 0 auto;
    }
    .nav-tabs .srvs-itm {
        max-width: 138px;
    }
    .itm-txt {
        font-size: 27px;
        text-transform: initial;
    }
    .srvs-tab {
        padding: 40px;
    }
    .tab-img {
        float: none;
        margin: 0 auto;
        height: 282px;
        display: block;
    }
    .tab-txt {
        text-align: justify;
    }
}
@media (max-width: 768px) {
    .top-nav {
        width: 291px;
    }
    .hero {
        background: none;
        height: 525px;
    }
    .col-hero {
        justify-content: flex-end;
        align-items: center;
        padding-bottom: 50px;
    }
    .main-hero-hdr {
        text-align: center;
    }
    .footer-menu {
        column-count: 1;
    }
    .univ-cnt {
        height: auto;
    }
    .service-item {
        flex-direction: column;
    }
    .service-item img {
        display: block;
        margin: 0 auto;
    }
    .service-name {
        padding: 0 20px;
    }
    .service-txt {
        padding: 0 20px;
        text-align: justify;
    }
    .service-footer {
        padding: 10px 20px;
    }
    .tour-name:before {
        display: none;
    }
    .tour-includes, .tour-excludes {
        width: 100%;
    }
    .tour-info {
        flex-wrap: wrap;
    }
    .faq-accordion .accordion-btn {
        padding: 38px 35px 38px 150px;
        font-size: 26px;
    }
    .select-univ .form-group {
        width: 100%;
        margin-bottom: 1rem;
    }
    .select-univ label {
        margin-bottom: 7px;
    }
}
@media (max-width: 576px) {
    .nav-item.nav-link.order-btn {
        display: none;
    }
    .hero {
        height: 550px;
    }
    .hero-hdr, h3.hdr-txt {
        font-size: 33px;
    }
    .main-hero-hdr {
        font-size: 63px;
        margin-bottom: 40px;
    }
    .hero-txt {
        margin-bottom: 0;
    }
    .srvs-tab {
        padding: 0;
    }
    .tab-img {
        width: 290px;
        height: auto;
    }
    .tab-hdr, .tab-txt {
        padding: 0 10px;
    }
    .order-btn {
        margin-right: 10px;
    }
    .owl-carousel .owl-item .team-img {
        width: 290px;
    }
    .steps-cnt {
        flex-wrap: wrap;
    }
    .owl-carousel button.owl-dot {
        margin: 0 8px;
    }
    .hero-pic {
        width: 100%;
    }
    .hero-img {
        width: 100%;
    }
    .documents-list {
        margin: 0;
    }
    .questions {
        background-position-y: 25px;
    }
    .heading {
        padding-top: 90px;
    }
    .our-services, .our-courses, .our-tours, .faq-hero {
        height: 150px;
    }
    .service-item img {
        width: 100%;
        height: auto;
    }
    .service-footer {
        flex-wrap: wrap;
        justify-content: center;
    }
    .service-cost {
        margin: 0 0 10px;
    }
    .tour-includes, .tour-excludes {
        padding: 20px;
    }
    .tour-prgrm tr td:first-child {
        padding: 10px;
        font-size: 24px;
    }
    .tour-prgrm tr td:last-child {
        padding: 10px;
    }
    .cta-tour .col {
        flex-wrap: wrap;
    }
    .dark-btn {
        margin-left: 0;
    }
    .faq-accordion .card-body {
        padding: 50px 10px 50px;
    }
    .faq-accordion .accordion-btn:before {
        display: none;
    }
    .faq-accordion .accordion-btn {
        padding: 10px;
        font-size: 20px;
    }
    .univ-cnt {
        justify-content: center;
    }
    .select-univ {
        padding: 40px 30px 20px;
    }
}

/*PODATY DOCUMENTY INFOGRAPHIC START*/
.infographic {
    margin-top: 55px;
}
.hoverable {
    cursor: pointer;
    transition: .6s;
}
.hoverable:hover {
    transform: translateY(-10px);
}
.info-helper {
    position: absolute;
    width: 299px;
    padding: 20px;
    background: #fff;
    box-shadow: 7px 7px 10px 1px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: .6s;
}
.info-helper.visible {
    visibility: visible;
    opacity: 1;
}
.info-helper p {
    text-align: justify;
}
.info-helper p.detalnishe {
    text-align: center;
}
.close-row {
    height: 20px;
    width: 100%;
    margin-bottom: 20px;
}
.info-helper-close {
    float: right;
    width: 20px;
    height: 20px;
    background: url("../img/close-bg.svg");
}
/*PODATY DOCUMENTY INFOGRAPHIC END*/

/*TABLE OF CONTENTS*/
.table-of-contents {
    background: linear-gradient(to right, #0091ef, #003568);
    padding: 20px;
    border-radius: 20px;
    overflow: hidden;
    max-height: 63px;
    cursor: pointer;
    transition: 1s;
    margin-bottom: 20px;
}
.table-of-contents:hover {
    box-shadow: 0 0 20px 2px rgba(0,53,104,0.8);
}
.table-of-contents.open {
    cursor: auto;
    box-shadow: 0 0 20px 2px rgba(0,53,104,0.8);
}
.toc-hdr {
    display: inline-block;
    position: relative;
    font-size: 21px;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 20px 90px;
    transition: .6s;
}
.toc-hdr:before {
    position: absolute;
    content: '';
    background: url("../img/table-plus.svg") no-repeat;
    width: 35px;
    height: 35px;
    left: -60px;
    top: -2px;
}
.table-of-contents.open .toc-hdr {
    transform: translateY(-63px);
}
ul.toc {
    position: relative;
    margin: 0;
    padding-left: 30px;
    transition: .6s;
}
ul.toc:before {
    position: absolute;
    content: '';
    background: url("../img/table-stars.svg") no-repeat;
    right: 40px;
    top: 60px;
    width: 665px;
    height: 155px;
}
.table-of-contents.open ul.toc {
    transform: translateY(-43px);
}
ul.toc li {
    position: relative;
    margin-bottom: 0;
    list-style: none;
    padding-left: 60px;
}
ul.toc li:before {
    position: absolute;
    content: '';
    background: url("../img/table-check.svg") no-repeat;
    width: 18px;
    height: 18px;
    left: 0;
    top: 5px;
}
ul.toc li a {
    font-size: 21px;
    color: #fff;
    line-height: 30px;
    text-decoration: none;
    transition: .4s;
}
ul.toc li a:hover {
    color: #b2e614;
}
/*TABLE OF CONTENTS END*/

/*BLOCKQUOTE*/
.content blockquote {
    display: block;
    position: relative;
    padding: 20px;
    font-family: Akrobat, sans-serif;
    font-weight: 700;
}
.content blockquote:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(to bottom, #0091ef, #003568);
}
.content blockquote a {
    color: #007bfe;
}
.content blockquote p {
    margin: 0;
    font-size: 30px;
}
/*BLOCKQUOTE END*/
/*DOWNLOAD PDF*/
a.download-pdf, .nf-field .nf-field-element input.download-pdf {
    background: #e50428 url("../img/pdf-file.svg") 30px no-repeat;
    background-size: 25px;
    padding-left: 60px;
}
a.download-pdf:hover, .nf-field .nf-field-element input.download-pdf:hover {
    background: #e43f5a url("../img/pdf-file.svg") 30px no-repeat;
    background-size: 25px;
}
/*DOWNLOAD PDF END*/

/*==============================================*/
/*========== University Page Styling ===========*/
/*==============================================*/
/* UNIVERSITY HEADER START */
.univ-hdr {
    margin-top: 85px;
    padding: 70px 0 42px;
    background: url("../img/choose-bg.svg") 680px -175px no-repeat;
    background-size: 1544px 442px;
}
.univ-hdr-txt {
    color: #007bfe;
    font-size: 55px;
}
/* UNIVERSITY HEADER END */

/* UNIVERSITY CONTENT START */
.univ-txt {
    position: relative;
}
.univ-main-imgs {
    float: left;
    width: 562px;
    position: relative;
    margin: 0 30px 45px 0;
}
.univ-main-imgs::before {
    position: absolute;
    content: '';
    width: 870px;
    height: 466px;
    top: -90px;
    right: 308px;
    background: url("../img/blog-posts-bg.svg") right bottom no-repeat;
    background-size: contain;
    transform: rotate(208deg);
    z-index: -1;
}
.univ-main-imgs .attachment-post-thumbnail {
    width: 100%;
    height: auto;
}
.univ-shld {
    position: absolute;
    width: 155px;
    height: 155px;
    left: 0;
    bottom: -30px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.35);
}
.univ-shld-second {
    left: 160px;
    background: #fff;
}
.univ-shld-second img {
    width: 85%;
    margin: 14px;
}
.univ-shld-img {
    width: 100%;
    height: auto;
}
.univ-txt p {
    font-size: 18px;
    color: #484848;
}
.univ-txt blockquote {
    border-left: 4px solid #0067b2;
    padding: 4px 20px;
}
.univ-txt blockquote p {
    margin: 0;
    font-size: 22px;
}
/* UNIVERSITY CONTENT END */
/* UNIVERSITY INFO START */
.univ-info {
    margin: 50px 0 60px;
}
.univ-info-pic {
    display: inline-block;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    background: #cee2f9;
    margin-right: 20px;
}
.univ-info-img {
    display: block;
    margin: 7px auto;
    height: 27px;
}
.univ-info-text {
    display: inline-block;
    color: #484848;
    font-size: 22px;
    width: calc(100% - 70px);
    line-height: 1.1;
    vertical-align: top;
}
.univ-info-hdr {
    font-weight: 600;
    display: block;
}
/* UNIVERSITY INFO END */
/* UNIVERSITY GALLERY START */
.univ-gallery {
    padding: 65px 0 75px;
    background-color: #e9f2fc;
    max-height: 808px;
    overflow: hidden;
}
h3.univ-gallery-hdr {
    font-size: 36px;
    font-weight: 400;
    font-family: Roboto, sans-serif;
    text-align: center;
    margin: 0 0 55px;
}
.univ-gallery-carousel {
    opacity: 0;
    transition: .6s;
}
.univ-gallery-carousel.shown {
    opacity: 1;
}
.univ-gallery-left,
.univ-gallery-right {
    position: relative;
}
.univ-carousel-nav-btn {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    left: calc(50% - 20px);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    z-index: 1;
    transition: .6s;
    opacity: 0;
}
.univ-gallery-left:hover .univ-carousel-nav-btn {
    transform: translateY(0);
    opacity: 1;
}
.univ-carousel-nav-prev {
    transform: translateY(5px);
    top: 0;
}
.univ-carousel-nav-next {
    transform: translateY(-5px);
    bottom: 22px;
}
.univ-photo-nav {
    margin-bottom: 20px;
    max-height: 170px;
    overflow: hidden;
    cursor: pointer;
}
.univ-photo-nav-img {
    width: 100%;
    height: auto;
}
.univ-carousel-main-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: calc(50% - 25px);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 2px 3px 7px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    z-index: 1;
    transition: .6s;
    opacity: 0;
}
.univ-gallery-right:hover .univ-carousel-main-btn {
    transform: translateX(0);
    opacity: 1;
}
.univ-carousel-main-prev {
    transform: translateX(5px);
    left: 15px;
}
.univ-carousel-main-next {
    transform: translateX(-5px);
    right: 15px;
}
.univ-photo-main-img {
    width: 100%;
    height: auto;
}
/* UNIVERSITY GALLERY END */
/* UNIVERSITY FACULTIES START */
.univ-facults-cnt {
    position: relative;
    max-width: 746px;
    padding: 54px;
    margin: 60px auto;
    background-color: #f8f8f8;
    box-shadow: 2px 3px 7px rgba(110, 110, 110, 0.35);
}
.univ-facults-cnt::before,
.univ-facults-cnt::after {
    position: absolute;
    content: '';
    width: 563px;
    height: 250px;
    background: url("../img/univ-faculties-bg.svg") center no-repeat;
    background-size: contain;
    z-index: -1;
}
.univ-facults-cnt::before {
    bottom: -50px;
    left: -135px;
}
.univ-facults-cnt::after {
    top: -50px;
    right: -135px;
    transform: rotate(180deg);
}
.univ-facults-hdr {
    text-align: center;
    font-size: 36px;
    color: #007bfe;
}
/* UNIVERSITY FACULTIES END */
/* UNIVERSITY DOCUMENTS START */
.univ-docs {
    padding: 60px 0;
}
.univ-docs-cnt {
    position: relative;
}
.univ-docs-cnt::after {
    position: absolute;
    content: '';
    width: 800px;
    height: 700px;
    bottom: 0;
    right: -773px;
    background: url("../img/univ-docs-bg.svg") bottom right no-repeat;
    background-size: contain;
}
h3.univ-docs-hdr {
    font-family: Roboto, sans-serif;
    font-size: 30px;
    font-weight: 400;
    text-align: center;
}
.univ-docs-list {
    list-style: none;
    counter-reset: univ-docs-counter;
}
.univ-docs-list li {
    counter-increment: univ-docs-counter;
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
    color: #484848;
}
.univ-docs-list li::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 27px;
    height: 27px;
    content: counter(univ-docs-counter);
    color: #0083db;
    font-size: 18px;
}
.univ-docs-disclaimer {
    display: inline-block;
    font-size: 14px;
    line-height: 16px;
    color: #737373;
    font-style: italic;
}
.univ-docs-btn {
    position: relative;
    margin: 35px 0 55px;
}
.btn-with-bg {
    position: relative;
    padding: 94px 0 62px;
    overflow: hidden;
}
.btn-with-bg::before {
    position: absolute;
    content: '';
    background: url("../img/btn-bg.svg") center no-repeat;
    background-size: contain;
    width: 360px;
    height: 200px;
    left: calc(50% - 180px);
    top: 5px;
    z-index: -1;
}
/* UNIVERSITY DOCUMENTS END */
/* UNIVERSITY TESTIMONIALS START */
.univ-testim {
    background: url("../img/univ-testim-sec-bg.svg") 810px 470px no-repeat;
    background-size: 1779px 696px;
    max-height: 623px;
}
.univ-testim.shown .univ-testim-pics .attachment-post-thumbnail,
.univ-testim.shown .univ-testim-cnts {
    opacity: 1;
}
h3.univ-testim-hdr {
    font-size: 36px;
    font-weight: 400;
    font-family: Roboto, sans-serif;
    text-align: center;
    margin: 0 0 35px;
}
.univ-testim-pics {
    position: relative;
    margin: 162px 0 0 127px;
    width: 100px;
    height: 100px;
}
.univ-testim-pics::before {
    position: absolute;
    content: '';
    width: 719px;
    height: 496px;
    top: -240px;
    right: -95px;
    background: url("../img/univ-testim-bg.svg") top left no-repeat;
    background-size: contain;
}
.univ-testim-pics .attachment-post-thumbnail {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    transition: .6s;
}
.univ-testim-pic:focus {
    outline: none;
}
.univ-testim-cnts {
    transition: .6s;
    opacity: 0;
}
.univ-testim-right .univ-testim-cnts .univ-testim-cnt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 360px;
    padding: 0 0 0 80px;
}
.univ-testim-right .univ-testim-cnts .univ-testim-cnt:focus {
    outline: none;
}
.univ-testim-rtng {
    width: 141px;
    height: 23px;
    background: url("../img/testim-stars.svg") center no-repeat;
    background-size: contain;
}
.univ-testim-txt {
    position: relative;
    color: #282828;
    font-weight: 500;
    max-height: 228px;
}
.univ-testim-txt::before,
.univ-testim-txt::after {
    position: absolute;
    content: '';
    width: 61px;
    height: 43px;
    background: url("../img/testim-quote.svg") center no-repeat;
    background-size: contain;
}
.univ-testim-txt::before {
    top: -50px;
    right: 0;
}
.univ-testim-txt::after {
    bottom: -50px;
    left: -65px;
    transform: rotate(180deg);
}
.univ-testim-author {
    margin: 10px 0 0;
    align-self: flex-end;
    font-size: 29px;
    color: #282828;
    font-weight: 700;
}
.univ-testim-cnts .slick-dots {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 40px 0 110px 0;
}
.univ-testim-cnts .slick-dots li {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.univ-testim-cnts .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 35px;
    height: 35px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    border-radius: 50%;
    outline: none;
    background: url("../img/slider-dot.svg") center no-repeat;
    background-size: contain;
    transition: .6s;
}
.univ-testim-cnts .slick-dots li.slick-active button {
    background: url("../img/slider-dot-active.svg") center no-repeat;
}
/* UNIVERSITY TESTIMONIALS END */
/* UNIVERSITY RESPONSIVE START */
@media (max-width: 992px) {
    .univ-hdr {
        background: url("../img/choose-bg.svg") -130px -300px no-repeat;
        background-size: 1544px 442px;
    }
    .univ-main-imgs {
        float: none;
        width: 100%;
    }
    .univ-main-imgs::before {
        display: none;
    }
    .univ-info-pic {
        margin-bottom: 20px;
    }
    .univ-carousel-nav-btn {
        transform: translateY(0);
        opacity: 1;
    }
    .univ-docs-cnt {
        padding-bottom: 610px;
    }
    .univ-docs-cnt::after {
        width: 100%;
        height: 650px;
        bottom: 0;
        right: -140px;
    }
    .univ-testim-pics::before {
        width: 550px;
        height: 380px;
        top: -170px;
        right: -61px;
    }
    .univ-testim-pics {
        margin: 155px auto 0 auto;
    }
}
@media (max-width: 576px) {
    .univ-hdr {
        margin-top: 80px;
        background: url("../img/choose-bg.svg") -380px -330px no-repeat;
    }
    .univ-hdr-txt {
        font-size: 24px;
    }
    .univ-txt p, .univ-extra-txt p {
        font-size: 14px;
    }
    .univ-txt blockquote p {
        font-size: 16px;
    }
    .univ-info {
        margin: 30px 0 30px;
    }
    .univ-info-text {
        font-size: 18px;
    }
    .univ-gallery {
        padding: 0;
        background-color: #fff;
    }
    h3.univ-gallery-hdr {
        font-size: 21px;
        margin: 0 0 30px;
    }
    .univ-facults-hdr {
        font-size: 21px;
        margin-bottom: 1rem;
    }
    .univ-docs-list li {
        font-size: 14px;
    }
    .univ-docs {
        padding: 0;
    }
    h3.univ-docs-hdr {
        font-size: 21px;
    }
    .univ-docs-disclaimer {
        font-size: 12px;
    }
    .univ-docs-cnt {
        padding-bottom: 500px;
    }
    .univ-docs-cnt::after {
        height: 520px;
        bottom: 10px;
    }
    .univ-testim {
        background: url("../img/univ-testim-sec-bg.svg") 810px 470px no-repeat;
        background-size: 1779px 696px;
        max-height: 800px;
    }
    h3.univ-testim-hdr {
        font-size: 21px;
        margin: 20px 0 35px;
    }
    .univ-testim-pics {
        width: 70px;
        height: 70px;
        margin: 70px 100px 0 auto;
    }
    .univ-testim-pics::before {
        width: 500px;
        height: 380px;
        top: -167px;
        right: -65px;
    }
    .univ-testim-left {
        margin-bottom: 40px;
    }
    .univ-testim-txt p {
        font-size: 14px;
    }
    .univ-testim-author {
        font-size: 18px;
    }
}
@media (max-width: 501px) {
    .univ-docs-cnt::after {
        height: 452px;
        right: -30px;
    }
    .univ-docs-cnt {
        padding-bottom: 415px;
    }
}
@media (max-width: 426px) {
    .univ-docs-cnt::after {
        height: 383px;
    }
    .univ-docs-cnt {
        padding-bottom: 345px;
    }
}
@media (max-width: 376px) {
    .univ-docs-cnt::after {
        height: 338px;
    }
    .univ-docs-cnt {
        padding-bottom: 300px;
    }
    .univ-testim-pics {
        width: 70px;
        height: 70px;
        margin: 70px 65px 0 auto;
    }
    .univ-testim-left {
        margin-bottom: 75px;
    }
    .univ-testim-right .univ-testim-cnts .univ-testim-cnt {
        padding: 0 0 0 15px;
    }
    .univ-testim-txt::after {
        left: 0;
    }
}
@media (max-width: 321px) {
    .univ-docs-cnt::after {
        height: 288px;
    }
    .univ-docs-cnt {
        padding-bottom: 250px;
    }
}
/* UNIVERSITY RESPONSIVE END */