@font-face {
    font-family: "helve55";
    src: url("../fonts/helvetica-neue-lt-geo-55-roman-17645fe55b2c8add5827f34e8293e43e.ttf");
}
@font-face {
    font-family: "helve65";
    src: url("../fonts/helvetica-neue-lt-geo-65-medium-caps-08ce688aafe5f1aeabf132618ebb00a5.ttf");
}
@font-face {
    font-family: "helveMedCaps";
    src: url("../fonts/helvetica-neue-lt-geo-65-medium-caps-08ce688aafe5f1aeabf132618ebb00a5.ttf");
}
@font-face {
    font-family: "helve75";
    src: url("../fonts/helvetica-neue-lt-geo-75-bold-e98239eba6a80d2b0707a48c4ce37ce7.ttf");
}
@font-face {
    font-family: "helveCaps";
    src: url("../fonts/helvetica-neue-lt-geo-75-bold-caps-8ac4bc22c200b3fe99bdfd18fea98f4f.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --light-blue: #2573b2;
    --dark-blue: #023460;
    --swiper-theme-color: #fff;
}

.header {
    padding: 0 50px;
    width: 100%;
    max-width: 100vw;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "helveMedCaps";
    position: sticky;
    top: 0;
    left: 0;
    z-index: 8;
    background-color: #fff;
    transition: 0.25s;
}
.logo {
    transition: 0.2s;
    transform: scale(0.95);
}
.tiny-header {
    height: 60px;
}
.tiny-header .logo {
    transform: scale(0.5) translateX(-80px);
}
.tiny-header .el-blog {
    height: 40px;
}

.header-search {
    display: flex;
    align-items: center;
}
.header-search input {
    width: 270px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid #575757;
    padding: 0 15px;
    font-family: "helve55";
    font-size: 1.1rem;
}
.header-search input::placeholder {
    font-family: "helve55";
    font-size: 1.1rem;
}
.header-search i {
    margin-left: 15px;
    cursor: pointer;
}
.header-search i:hover {
    color: var(--light-blue);
}
.header-search i.active-search {
    color: var(--light-blue);
}
.header-search input:focus {
    outline: none;
    border: 1px solid var(--light-blue);
}

.search-results {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    max-width: 1720px;
    background-color: #fff;
    display: none;
    z-index: 1000;
    box-shadow: 2px 2px 5px #aaa;
    border-radius: 15px;
    font-size: 0.9rem;
}
.search-results.tiny {
    top: 60px;
}
.search-results ul {
    list-style-type: none;
}
.search-results li {
    padding: 10px 25px;
    border-bottom: 1px solid #f5f5f5;
}
.search-results li a {
    text-decoration: none;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.search-results li a:hover {
    color: var(--light-blue);
}
.search-results li:last-child {
    border-bottom: none;
}
.search-results li img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    border-radius: 5px;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navigation-list {
    list-style-type: none;
    display: flex;
    overflow: hidden;
}
.navigation-list li {
    margin-left: 28px;
}
.navigation-sub-menu {
    list-style-type: none;
    position: absolute;
    background-color: #fff;
    padding: 0 28px 15px 0;
    transform: translateX(-28px);
    display: none;
    z-index: 2000;
}
.navigation-sub-menu li {
    margin-top: 15px;
}
.navigation-list li:hover .navigation-sub-menu {
    display: block;
}
.navigation-list li a:hover {
    color: var(--light-blue);
}
.navigation-list li a {
    text-decoration: none;
    color: #000;
}

.burger-container {
    width: 35px;
    height: 35px;
    padding: 7px 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 21px;
    z-index: 15;
    cursor: pointer;
}
/* .burger-container.active-menu {
    position: fixed;
    top: 10vw;
    right: 10vw;
} */
.lines {
    background-color: black;
    border-radius: 100%;
    transition: all 0.4s;
}
.line-1 {
    width: 100%;
    height: 3px;
}
.line-2 {
    width: 60%;
    height: 3px;
}
.line-3 {
    width: 75%;
    height: 3px;
}
.active-menu .line-1 {
    transform: rotate(45deg) translate(6.5px, 6.5px);
}
.active-menu .line-2 {
    opacity: 0;
}
.active-menu .line-3 {
    width: 100%;
    transform: rotate(-45deg) translate(6.5px, -6.5px);
}

.full-menu {
    background-color: #fff;
    padding: 100px;
    position: fixed;
    width: 100%;
    min-height: 100vh;
    top: 0;
    right: 0;
    z-index: 10;
    overflow: hidden;
}
.animate-menu-in {
    animation: full-menu-in 0.4s forwards ease-out;
}
.animate-menu-out {
    animation: full-menu-out 0.4s forwards ease-in;
}
.animate-burger-right {
    animation: burger-right 0.4s forwards;
}
.animate-burger-left {
    animation: burger-left 0.4s forwards;
}
.full-bg-cover {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-13deg) scale(0.9) translate(-380px, 100px);
    z-index: -1;
}
.full-menu-list-wrapper {
    width: 100%;
    height: 80%;
    font-family: "helve55";
    z-index: 100;
}
.full-menu-contact-wrapper {
    width: 100%;
    height: 20%;
    opacity: 0;
    animation: move-contact-in 1.3s forwards 0.2s;
}
.full-menu-list {
    list-style-type: none;
    columns: 4;
}
.full-menu-list li {
    margin-bottom: 15px;
}
.full-menu-list a {
    text-decoration: none;
    color: #000;
}
.full-menu-list a:hover {
    color: var(--light-blue);
}
.full-menu-sub-list {
    font-weight: bold;
    list-style-type: none;
    page-break-inside: avoid;
    break-inside: avoid-column;
}
.full-menu-sub-list li:not(:nth-child(1))::before {
    content: "- ";
    margin-left: 10px;
}
.full-menu-contact-title,
.full-menu-contact-container,
.full-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.full-contact i {
    color: var(--light-blue);
    margin-top: 10px;
}
.full-menu-social i {
    color: var(--light-blue);
    margin-right: 10px;
    margin-top: 10px;
}
.full-contact a {
    font-family: "helve55";
    text-decoration: none;
    color: #000;
}

.el-blog {
    margin-left: 28px;
    width: 138px;
    height: 50px;
    background-color: var(--light-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    border-radius: 30px;
    transition: 0.25s;
}

.search,
.language {
    margin-left: 15px;
    cursor: pointer;
}

.change-language {
    cursor: pointer;
    position: relative;
}

.language-list {
    display: none;
    padding: 2px 0 5px 0;
    border-radius: 6px;
    position: absolute;
    left: 5px;
    list-style-type: none;
    background-color: rgb(255, 255, 255, 0.7);
}
.language-list li {
    margin-top: 2px;
}
.language-list li a {
    padding: 2px 10px;
    text-decoration: none;
    color: #000000;
}
.language:hover {
    color: var(--light-blue);
}
.language-list li a:hover {
    color: var(--light-blue);
}
.change-language i {
    transition: all 0.4s;
}
.lang-active {
    display: block;
}
.rotate {
    transform: rotate(180deg);
    color: var(--light-blue);
}

.hidden-menu-list {
    display: none;
}

.blog-menu-wrapper {
    width: 100%;
    height: auto;
    margin: 100px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1720px;
}
.blog-menu-bg {
    position: absolute;
    width: 100%;
    transform: translate(-400px, 20px);
    z-index: -1;
}
.blog-menu-container {
    width: 90%;
    display: grid;
    grid-gap: 40px;
    grid-template-columns: repeat(3, 1fr);
}
.blog-menu-item {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
}
.blog-menu-item picture {
    width: 100%;
    height: 100%;
}

.blog-menu-item img {
    width: 100%;
    height: 100%;
    transition: all 1s;
    object-fit: cover;
}
.blog-menu-item:hover img {
    transform: scale(1.1);
    -webkit-filter: blur(5px); /* Safari 6.0 - 9.0 */
    filter: blur(3px);
}
.blog-menu-item h3 {
    transition: 1s;
}
.blog-menu-item:hover h3 {
    transform: translateY(-10px) scale(1.1);
}
.blog-menu-item h3 {
    color: #fff;
    font-family: "helveMedCaps";
    font-size: 1.2em;
    position: absolute;
    margin-bottom: 35px;
    max-width: 350px;
    word-wrap: break-word;
    text-align: center;
    text-shadow: 1px 1px 2px #000;
}

.news-wrapper {
    width: 100%;
    margin-top: 150px;
    background-image: url("../img/news-bg.png");
}
.news-wrapper-title {
    font-family: "helveCaps";
    margin-left: 100px;
    margin-bottom: 25px;
    padding-top: 25px;
}
.news-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 100px;
    grid-gap: 80px;
    padding-bottom: 25px;
    max-width: 1720px;
    margin-left: auto;
    margin-right: auto;
}
.news-box {
    width: 100%;
    background-color: #fff;
}
.news-box-cover {
    overflow: hidden;
    height: 210px;
}
.news-box-cover img {
    width: 100%;
    height: 100%;
    transition: all 1.5s;
    object-fit: cover;
}
.news-box-cover img:hover {
    transform: translateX(-30px) scale(1.1);
}
.news-box-description {
    padding: 25px 35px;
}
.news-box-description span {
    font-family: "helve55";
    font-size: 1.2rem;
    color: #bdbdbd;
}
.news-box-clock {
    float: right;
}
.news-box-description a {
    text-decoration: none;
    color: #000;
    font-family: "helveCaps";
}
.news-box-description a:hover {
    color: var(--light-blue);
}
.news-box-description h1 {
    margin-top: 25px;
    width: 80%;
    font-size: 1.7em;
}
.all-news {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-decoration: none;
    color: #000;
    margin-right: 50px;
    font-size: 1.1rem;
    font-family: "helve55";
    padding-bottom: 50px;
}
.all-news img {
    margin-left: 45px;
}

.buckswood-houses-wrapper {
    width: 100%;
    padding-top: 45px;
    padding-bottom: 125px;
}
.buckswood-houses-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.buckswood-houses-title h1 {
    font-family: "helveCaps";
    letter-spacing: 1px;
    font-size: 3rem;
    margin-top: 30px;
    margin-bottom: 50px;
}
.buckswood-houses {
    width: 100%;
    padding: 0 50px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-gap: 15px;
}
.buck-house {
    background-color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.buck-house img {
    width: 100%;
}
.house-name {
    font-family: "helveCaps";
    text-transform: uppercase;
    font-size: 1.3vw;
    position: absolute;
    transform: translateY(-110px);
    max-width: 150px;
    word-wrap: break-word;
    text-align: center;
}
.house-score {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 120px;
    height: 120px;
    padding: 1.3vw;
    border-radius: 50%;
    transform: translateY(100px);
}
.house-score h4 {
    font-size: 2vw;
    font-family: "helve65";
}
.house-score span {
    font-size: 1.3vw;
    font-family: "helve55";
    display: block;
    transform: translate(35px);
}

.swiper,
.video-cover {
    width: 100%;
    height: calc(100vh - 100px);
}

.video-cover {
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 100;
}
.main_video_wrapp {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.main_video_wrapp iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-page-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-300px);
    width: 600px;
    height: 200px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.slider-page-info h1 {
    font-family: "helveCaps";
    font-size: 2.5rem;
    color: #fff;
}
.slider-page-info p {
    font-family: "helve55";
    text-align: center;
    color: #fff;
}
.slider-page-info a {
    width: 150px;
    height: 50px;
    background-color: var(--light-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    border-radius: 30px;
    margin-top: 10px;
    font-family: "helveMedCaps";
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-pagination-bullet-active {
    background-color: #fff !important;
}

.hidden {
    display: none;
}
.flex {
    display: flex;
}

.middle-link-wrapper {
    width: 100%;
    height: 150px;
    /* background-image: linear-gradient(
        135deg,
        var(--dark-blue),
        var(--light-blue)
    );*/
    background-color: var(--dark-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    position: relative;
}
.mid-link-img {
    height: 150px;
    max-width: 300px;
    position: absolute;
    right: 0;
    /* object-fit: cover; */
}
.mid-link-img-cover {
    position: absolute;
    width: 300px;
    height: 100%;
    right: 0;
    top: 0;
    background-image: linear-gradient(
        90deg,
        rgba(2, 52, 96, 1),
        rgba(2, 52, 96, 0.2) /*rgba(2, 52, 96, 0.2)*/
    );
}
.middle-link-wrapper a {
    display: flex;
    align-items: center;
    font-family: "helve55";
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    text-shadow: 2px 2px 5px #000;
    z-index: 1;
}
.middle-link-wrapper a img {
    margin-left: 45px;
}
.middle-link-wrapper h1 {
    font-family: "helveCaps";
    color: #fff;
    z-index: 1;
}

.footer {
    width: 100%;
}
.main-footer {
    width: 100%;
    height: 400px;
    display: grid;
    grid-template-columns: 1fr 2fr;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 50px;
}
.footer-contact a {
    text-decoration: none;
    color: #000;
    font-family: "helve55";
}
.footer-contact i {
    color: var(--light-blue);
}
.social i {
    margin-right: 15px;
}
.footer-menu-list {
    padding: 100px 0 0 50px;
    display: flex;
}
.grid-list {
    /* columns: 2; */
    list-style-type: none;
    margin-right: 250px;
}
.grid-list h3 {
    color: var(--light-blue);
    font-family: "helveCaps";
}

.grid-list a {
    text-decoration: none;
}
.grid-list h3 a {
    text-decoration: none;
    color: var(--light-blue);
}
.grid-list h3 a:hover {
    opacity: 0.7;
}

.grid-list-item {
    font-family: "helve55";
    margin-top: 30px;
}
.grid-list-item a {
    text-decoration: none;
    color: #000;
}
.grid-list-item a:hover {
    color: var(--light-blue);
}

.copyright {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "helve55";
    color: #fff;
    background-color: var(--dark-blue);
}

.full-menu-list-li {
    opacity: 0;
    animation: list-item-in 1.3s forwards 0.2s;
}

.page-cover {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.page-cover img {
    min-width: 100%;
    height: 350px;
    object-fit: cover;
}
.page-cover-title-wrapper {
    position: absolute;
    top: 10%;
    left: 50px;
}
.page-cover-bg-title {
    color: #fff;
    font-family: "helve65";
    font-size: 12em;
    opacity: 0.25;
}
.page-cover-title {
    color: #fff;
    font-family: "helve65";
    font-size: 4em;
    position: absolute;
    top: 60%;
}

.triangle-cover-full {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 108px solid transparent;
    border-bottom: 0px solid transparent;
    border-right: 100vw solid #f5f5f5;
}
.triangle-cover {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 54px solid transparent;
    border-bottom: 54px solid transparent;
    border-right: 50vw solid #e9e8e8;
}

.calendar-wrapper {
    width: 100%;
    padding: 0 150px 100px 150px;
    background-color: #f5f5f5;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
}
.calendar-wrapper-bg-image {
    position: absolute;
    max-width: 100%;
}
.calendar-event-container {
    background-color: #fff;
    margin: 0 auto;
    width: 80%;
    height: 200px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    box-shadow: 2px 2px 10px #aaa;
}
.calendar-event-bg-img {
    border-radius: 15px;
    width: 180px;
    height: 250px;
    object-fit: cover;
}
.event-mini-info-wrapper,
.event-mini-description-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-mini-info {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.event-mini-info span {
    font-family: "helve55";
}
.event-day {
    color: #fff;
    font-size: 4rem;
}
.event-month {
    color: #fff;
    font-size: 1.5rem;
}
.event-time {
    background-color: #fdb813;
    width: 100%;
    font-size: 1.5rem;
    margin-top: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5px 15px;
}
.event-link {
    text-decoration: none;
    color: #000;
    z-index: 2;
}

.event-mini-description-wrapper p {
    font-family: "helve55";
    font-size: 1.05rem;
    padding: 0 15px;
}
.event-mini-description-wrapper img {
    position: absolute;
    top: 0;
    right: 5px;
    max-height: 200px;
    transform: translateY(-68px);
}

.right-side-events {
    margin-top: 200px;
}
.event-link:before {
    content: "";
    width: 25px;
    height: 25px;
    background-color: #1c1a5f;
    border-radius: 50%;
    border: 10px solid #9197f5;
    z-index: 5;
    position: absolute;
    left: calc(50vw - 21px);
    transform: translateY(178px);
}
.calendar-mid-line {
    position: absolute;
    top: -60px;
    left: 50vw;
    background-image: linear-gradient(#aaa 50%, rgba(112, 112, 112, 0) 0%);
    background-position: right;
    background-size: 2px 40px;
    background-repeat: repeat-y;
    width: 2px;
    height: calc(100% + 60px);
    z-index: 2;
}

.event-page-wrapper {
    width: 100%;
    background-color: #f5f5f5;
    padding: 30px 150px;
}
.event-page-container {
    width: 100%;
}
.back-to-calendar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.back-to-calendar a {
    color: #000;
    text-decoration: none;
    font-family: "helve65";
    font-size: 20px;
}
.back-to-calendar i {
    padding: 3px 12px;
    border-radius: 5px;
    margin-right: 5px;
    background-color: #fdb813;
}
.event-info {
    display: flex;
    align-items: center;
}
.event-title {
    padding: 0 25px;
}
.event-title h2 {
    font-family: "helve65";
    letter-spacing: 1px;
    font-size: 1.8em;
    margin-bottom: 25px;
}
.event-title span {
    font-family: "helve55";
    font-size: 20px;
}
.event-title a {
    text-decoration: none;
    color: #000;
}
.event-description {
    background-color: #fff;
    padding: 50px 100px;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 5px 5px 5px #aaa;
}
.event-description p {
    font-family: "helve55";
    font-size: 1.3em;
    letter-spacing: 1px;
    line-height: 0.8cm;
}
.share-event {
    margin-top: 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.share-event span {
    font-size: 18px;
    font-family: "helve65";
}
.share-event a {
    text-decoration: none;
    color: var(--light-blue);
}
.share-event i {
    margin-left: 10px;
}
.full-news-title {
    font-family: "helve65";
    font-size: 2.5rem;
    letter-spacing: 1px;
}
.full-news-date {
    font-family: "helve55";
    font-size: 20px;
    display: block;
    margin-bottom: 25px;
}
.full-news-img {
    width: 600px;
    float: left;
    margin-right: 50px;
    margin-bottom: 50px;
}
.full-news-text p,
.full-news-text span {
    font-family: "helve55" !important;
    line-height: 0.8cm !important;
}

.aplly-buckswood-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 100px 150px;
    cursor: pointer;
    background-color: #f5f5f5;
}
.apply-buckswood-container {
    width: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
.apply-cover-image {
    width: 100%;
    opacity: 0.9;
    border-radius: 15px;
    transition: all 1s;
    object-fit: cover;
}
.apply-container-link-wrapper {
    position: absolute;
    top: 20%;
    left: 40px;
}
.apply-container-link {
    font-family: "helve65";
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}
.apply-container-link span {
    background-color: #fff;
    color: #000;
    padding: 0 15px;
    margin-left: -15px;
}
.cover-orange-line {
    width: 150px;
    height: 5px;
    margin-top: -10px;
    background-color: #fdb813;
}
#apply-highclass-form-wrapper,
#apply-firstclass-form-wrapper {
    width: 100%;
    height: 100vh;
    padding: 25px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    justify-content: center;
    align-items: center;
    animation: modal-bg-in 0.5s forwards;
    overflow-y: auto;
}

#apply-form-container {
    position: relative;
    width: 40%;
    background-color: #fff;
    border-radius: 15px;
    padding: 50px 80px;
    display: flex;
    flex-direction: column;
    animation: modal-in 1s forwards 0.05s;
    opacity: 0;
}
.high-class-apply-form .styled-input {
    position: relative;
}
.contactForm label,
.high-class-apply-form label {
    display: none !important;
}
.close-button {
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
}
#apply-form-container {
    overflow-y: auto;
}
#apply-form-container h2 {
    font-family: "helve65";
    font-weight: lighter;
    color: var(--light-blue);
    font-size: 2rem;
    margin-bottom: 15px;
}
#apply-form-container p {
    font-family: "helve55";
    font-size: 16px;
    margin-bottom: 25px;
}
.apply-custom-full-input,
.apply-custom-select {
    width: 100%;
}
.apply-custom-half-input {
    width: 47%;
}
.apply-custom-full-input,
.apply-custom-half-input,
.apply-custom-select {
    height: 50px;
    margin-bottom: 25px;
    border-radius: 25px;
    border: 1px solid #575757;
    padding: 0 25px;
    font-family: "helve55";
    font-size: 18px;
}
.styled-input {
    display: flex;
    justify-content: space-between;
}
.apply-custom-full-input::placeholder,
.apply-custom-half-input::placeholder {
    font-family: "helve55";
    font-size: 15px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}
.apply-custom-select {
    font-size: 15px;
}
.apply-custom-button {
    width: 155px;
    height: 50px;
    background-color: var(--light-blue);
    color: #fff;
    cursor: pointer;
    font-family: "helve55";
    font-size: 1em;
    border-radius: 25px;
    border: none;
    outline: none;
}
.apply-button {
    margin-top: 25px;
    width: 160px;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 25px;
    font-family: "helve55";
    font-size: 1em;
    cursor: pointer;
}

.contactForm .error,
.high-class-apply-form .error {
    outline: none;
    border: 1px solid rgb(202, 28, 28);
}
.apply-buckswood-container:hover img {
    transform: scale(1.05);
    -webkit-filter: blur(3px); /* Safari 6.0 - 9.0 */
    filter: blur(3px);
}

.contact-page-wrapper {
    width: 100%;
    background-color: #f5f5f5;
    padding: 50px 100px;
}
.contact-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.contact-container a:hover {
    box-shadow: 5px 5px 15px #aaa;
}
.contact-container a {
    text-decoration: none;
    color: #000;
    border-radius: 15px;
}
.contact-box {
    background-color: #fff;
    width: 450px;
    height: 130px;
    padding: 5px 25px;
    border-radius: 15px;
    box-shadow: 2px 2px 5px #aaa;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.contact-text {
    margin-left: 25px;
}
.contact-text h3 {
    font-family: "helve55";
    font-size: 1em;
}
.contact-text span {
    font-family: "helve55";
    font-size: 1.2em;
    color: #7a7a7a;
}
.contact-form-container {
    width: 100%;
    padding: 25px 100px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.contact-form-container img {
    max-width: 540px;
}
.contact-form-container picture {
    z-index: 2;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    width: 60%;
}
.contact-form-container form h2 {
    font-family: "helve55";
    font-weight: lighter;
    font-size: 1.9em;
    margin-bottom: 25px;
}
.contact-form-container form input {
    width: 48%;
    height: 50px;
    background-color: #efefef;
    padding-left: 25px;
    border-radius: 25px;
    border: none;
    font-family: "helve55";
    font-size: 1.1rem;
    margin-bottom: 25px;
}
.contact-form-container form textarea {
    resize: none;
    padding: 15px 25px;
    font-family: "helve55";
    font-size: 1.1rem;
    background-color: #efefef;
    border: none;
    border-radius: 25px;
    margin-bottom: 25px;
}
.contact-form-container form button {
    width: 150px;
    height: 50px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-family: "helve55";
    font-size: 1.1rem;
    background-color: #32327e;
    color: #fff;
}
.map-container {
    padding-top: 100px;
    width: 100%;
    height: 300px;
}

.team-wrapper,
.team-member-details-wrapper,
.news-page-wrapper {
    width: 100%;
    padding: 25px 100px;
    background-color: #f5f5f5;
}
.team-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 200px;
}
.team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.team-member {
    width: 275px;
    height: 275px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 50px;
    margin-bottom: 50px;
}
.team-member picture {
    z-index: 1;
}

.team-memeber-image {
    width: 225px;
    height: 225px;
    border-radius: 50%;
    border: 5px solid #10449c;
    z-index: 1;
}
.team-member-name-container {
    position: absolute;
    width: 255px;
    height: 56px;
    top: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 35px;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    z-index: 2;
}
.team-member-name-container h3 {
    font-family: "helve65";
    font-weight: normal;
    color: #fff;
}
.team-member-name-container span {
    font-family: "helve55";
    color: #fff;
}
.team-title-container {
    position: absolute;
    top: 0;
    right: 0;
}
.team-title-container img {
    position: absolute;
    top: 0;
    right: 0;
}
.team-title-container h3 {
    position: absolute;
    font-family: "helve65";
    color: #707070;
    letter-spacing: 1px;
    font-size: 1.8rem;
    top: 10px;
    right: 45px;
}
.team-member:nth-child(4n-7)::after {
    content: "";
    width: 92px;
    height: 95px;
    background-color: #242ec4;
    opacity: 0.5;
    position: absolute;
    top: 0;
    margin-top: -5px;
    right: 10px;
    border-radius: 50%;
}
.team-member:nth-child(4n-6)::after {
    content: "";
    width: 69px;
    height: 72px;
    background-color: #242ec4;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 10px;
    border-radius: 50%;
}
.team-member:nth-child(4n-5)::after {
    content: "";
    width: 92px;
    height: 95px;
    background-color: #242ec4;
    opacity: 0.5;
    position: absolute;
    top: 0;
    margin-top: -15px;
    right: 10px;
    border-radius: 50%;
}
.team-member:nth-child(4n-4)::after {
    content: "";
    width: 69px;
    height: 72px;
    background-color: #242ec4;
    opacity: 0.5;
    position: absolute;
    top: 0;
    margin-top: -5px;
    left: 10px;
    border-radius: 50%;
}
.team-member-details-container,
.team-member-details-text {
    display: flex;
}
.team-member-details-img img {
    width: 500px;
    border-radius: 45px;
    box-shadow: 0px 15px 10px #aaa;
}

.team-member-details-text {
    flex-direction: column;
    padding-left: 50px;
}
.team-member-details-text h1 {
    font-family: "helve65";
    color: #064f88;
    font-size: 3rem;
}
.team-member-details-text span {
    font-family: "helve55";
    color: #747474;
    margin-bottom: 25px;
}
.team-member-details-text a {
    font-family: "helve55";
    text-decoration: none;
    color: #000;
}
.team-member-details-text a i {
    margin-right: 10px;
    color: #064f88;
    border: 2px solid #064f88;
    padding: 7px;
    border-radius: 50%;
    margin-bottom: 7px;
}
.team-member-details-text p {
    font-family: "helve55";
    margin-top: 25px;
    font-size: 1.1em;
}

.news-page-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
    max-width: 1720px;
    margin-left: auto;
    margin-right: auto;
}

.news-page-container .news-box-description h1 {
    font-family: "helveCaps";
    width: 100%;
    font-size: 1.3rem;
}

.news-pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 50px;
}
.news-pagination-container a {
    text-decoration: none;
    color: #000;
}
.prev-news,
.next-news {
    border: 1px solid #d2d2d2;
    border-radius: 15px;
    background-color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.news-pagination {
    margin: 0 25px;
    padding: 0 25px;
    border-radius: 15px;
    background-color: #fff;
    border: 1px solid #d2d2d2;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.news-pagination-page {
    padding: 5px 10px;
    cursor: pointer;
    font-family: "helve55";
}
.news-pagination .active-page {
    border: 1px solid #d2d2d2;
    border-radius: 10px;
    background-color: #2d7baf;
    color: #fff;
}

.first_picture,
.second_picture {
    position: relative;
}

.first_picture::before {
    content: url("../img/innertexticon.png");
    position: absolute;
    margin-left: -110px;
    margin-top: -70px;
}

.second_picture::after {
    content: url("../img/innertexticon.png");
    position: absolute;
    margin-left: -110px;
    margin-top: -70px;
}

.text-page-wrapper-1 {
    width: 100%;
    padding: 25px 100px;
    position: relative;
    background-color: #f5f5f5;
}
.overflow {
    overflow: hidden;
}

.text-page-bg-img-1,
.text-page-bg-img-2 {
    position: absolute;
    transform: scale(0.5);
}
.text-page-bg-img-1 {
    top: 0;
    left: 0;
    margin-left: -200px;
    margin-top: -100px;
    z-index: 1;
}
.text-page-bg-img-2 {
    top: 0;
    right: 0;
    margin-right: -250px;
    margin-top: -100px;
    z-index: 1;
}
.text-page-container-1 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
}
.text-page-container-1 picture img {
    width: 600px;
    border-radius: 25px;
    object-fit: cover;
}
.text-page-title {
    text-align: center;
    margin-bottom: 25px;
    font-family: "helve65";
    font-size: 2.5rem;
}
.text-page-container-1 p,
.text-page-container-1 span,
.text-page-container-1 ul {
    font-family: "helve55" !important;
}
.text-page-img-wrapper {
    position: relative;
}
/* .hat-image-1 {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -100px;
  margin-left: -100px;
} */
.text-page-container-2 {
    margin-top: -75px;
    background-color: #fff;
    padding: 25px 50px;
    border-radius: 25px;
}
.text-page-cover {
    width: 100%;
    height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #f5f5f5;
    border-bottom-left-radius: 15%;
    border-bottom-right-radius: 25%;
}
.text-page-cover img {
    width: 120%;
    transform: translateX(-140px) translateY(-100px);
    position: absolute;
    top: 0;
    left: 0;
}

.text-page-cover-title {
    text-align: center;
    z-index: 2;
}
.text-page-cover-title h1 {
    font-family: "helve65";
    font-size: 6em;
    color: #1d1a7b;
}
.text-page-cover-title span {
    font-family: "helve55";
    font-size: 1.4em;
    color: #1d1a7b;
}

.hover-menu {
    position: fixed;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    top: 40%;
    right: 0;
    width: 50px;
    z-index: 5;
}
.hover-menu-item {
    height: 60px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    background-color: #fff;
}
.hover-menu-item-img {
    width: 50px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hover-menu-item a {
    text-decoration: none;
    color: #000;
    font-family: "helve65";
    font-size: 1.2rem;
    display: none;
}
.hover-menu-item:hover {
    transition: all 0.7s;
    width: 280px;
    right: 0;
    transform: translateX(-230px);
    justify-content: space-between;
    padding-right: 25px;
}
.hover-menu-item:hover a {
    display: block;
}
.hover-about {
    background-color: #1c0980;
}
.hover-apply {
    background-color: #d8e2ff;
}
.hover-contact {
    background-color: #098011;
}

.body-noscroll {
    height: 100vh;
    overflow: hidden;
}

.success-wrapper {
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: rgba(19, 26, 47, 0.89);
    top: 0;
    left: 0;
    z-index: 40;
    display: none;
    justify-content: center;
    align-items: center;
}

.success-container {
    font-family: "helve55";
    background-color: #ffffff;
    padding: 100px;
    border-radius: 25px;
    position: relative;
}
.success-wrapper img {
    position: absolute;
    top: 10px;
    right: 10px;
    transform: scale(0.5);
    cursor: pointer;
}

.show-success {
    display: flex;
}

.footer-map {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d2d0b9;
}

.footer-map img {
    width: 70%;
}

.campuses-wrapper{
    width: 100%;
    height: auto;
    padding: 50px 50px;
    background-color: #f5f5f5;
}
.campuses-title{
    text-align: center;
    font-family: "helve65";
    font-size: 2.5rem;
    margin-bottom: 25px;
}
.campuses-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
}
.campus-item {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 50px; */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 2px 2px 5px #aaa;
}
.campus-item picture {
    width: 100%;
    height: 100%;
}
.campus-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;  
}
.campus-item:hover img {
    transform: scale(1.1);
    -webkit-filter: blur(5px); /* Safari 6.0 - 9.0 */
    filter: blur(3px);
}
.campus-item h3 {
    transition: 1s;
}
.campus-item:hover h3 {
    transform: translateY(-10px) scale(1.1);
}
.campus-item h3 {
    color: #fff;
    font-family: "helveMedCaps";
    font-size: 1.2em;
    position: absolute;
    margin-bottom: 35px;
    max-width: 350px;
    word-wrap: break-word;
    text-align: center;
    text-shadow: 1px 1px 2px #000;
}

.gallery-wrapper {
    width: 100%;
    padding: 50px 50px;
}
.gallery-title {
    text-align: center;
    font-family: "helve65";
    font-size: 2rem;
    margin-bottom: 25px;
}
.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
}
.gallery-item {
    position: relative;
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 2px 2px 5px #aaa;
}
.gallery-item picture {
    width: 100%;
    height: 100%;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}
.gallery-item:hover img {
    transform: scale(1.1);
    cursor: pointer;
}
.gallery-slider-wrapper {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(19, 26, 47, 0.89);
    z-index: 50;
    display: none;
    justify-content: center;
    align-items: center;
}
.gallery-slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gallery-slider-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.gallery-slider-wrapper img {
    position: absolute;
    top: 0px;
    right: 0px;
    transform: scale(0.8);
    cursor: pointer;
}

.close-gallery {
    position: absolute;
    cursor: pointer;
    top: 10px;
    right: 25px;
    font-size: 40px;
    font-family: "helve65";
    color: #ffffff;
    z-index: 100;
}
.map-image-wrapper {
    width: 100%;
    background-color: #f5f5f5;
    padding: 25px 0px;
}
.map-image-title{
    text-align: center;
    font-family: "helve65";
    font-size: 2rem;
    margin-bottom: 25px;
}
.map-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 25px;
}

/*
::-webkit-scrollbar {
  display: none;
} */

/* animation */
@keyframes full-menu-in {
    from {
        transform: translateY(-100vh);
    }
    to {
        opacity: 1;
    }
}

@keyframes full-menu-out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translateY(-100vh);
    }
}

@keyframes burger-right {
    from {
    }
    to {
        transform: translateX(250px);
    }
}

@keyframes burger-left {
    from {
        transform: translateX(230px);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes list-item-in {
    0% {
        opacity: 0;
        transform: translateX(-170px);
    }
    50% {
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
    }
}

@keyframes move-contact-in {
    0% {
        opacity: 0;
        transform: translateX(170px);
    }
    50% {
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
    }
}

@keyframes modal-in {
    from {
        transform: translateY(-15px);
    }
    to {
        transform: translateY();
        opacity: 1;
    }
}
@keyframes modal-bg-in {
    to {
        background-color: rgba(19, 26, 47, 0.89);
    }
}
