@font-face {
    font-family: kvl;
    src: url(/font/kvl-400.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: block
}

@font-face {
    font-family: kvl;
    src: url(/font/kvl-700.woff2) format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: block
}

@font-face {
    font-family: tt;
    src: url(/font/tt-400.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: fallback
}

@font-face {
    font-family: tt;
    src: url(/font/tt-700.woff2) format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: fallback
}

:root {
    --bg: #e9f4ff;
    --blue: #1a477f;
    --teal: #00a0a9;
    --red: #ea0c42;
    --pink: #da558d;
    --s-color-1: #1a477f;
    --s-color-2: #00a0a9;
    --s-color-noti: #ea0c42;
    --s-text-1: #191e23;
    --s-text-2: #828897;
    --s-bg-1: #fff;
    --s-bg-2: #f5f5f7;
    --s-border-1: #d2d2d7;
    --s-border-2: #e2e2e7;
    --s-nav-bg: #ffffffbb;
    --s-foot-bg: #1a477f;
    --s-foot-text: #ffffffcc;
    --s-link-1: var(--s-color-1);
    --s-link-2: var(--s-color-2);
    --s-rounded-1: 3px;
    --s-rounded-2: 5px;
    --s-body: kvl, sans-serif;
    --s-heading: kvl, sans-serif;
    --s-heading-weight: 400;
    --s-shadow-1: 0 .5px 2px rgba(0, 0, 0, .16);
    --s-shadow-2: 0 4px 12px rgba(0, 0, 0, .08);
    --s-gap: 1rem;
    --s-space: 1rem;
    --s-content-width: 100%;
    --s-container-width: 100%;
}

html {
    font-family: var(--s-body);
    background-color: var(--s-bg-1);
    color: var(--s-text-1);
    overflow-x: hidden;
    width: 100%;
}

body {
    background: var(--bg);
    position: relative;
    display: flex;
    flex-direction: column;
    background-image: url(/img/bg.svg);
    background-size: 80% auto;
    background-position: top 60px right;
    background-repeat: no-repeat;
/*     background-attachment: fixed; */
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    min-height: 100vh;
}

* {
    margin: 0;
}

*, *:before, *:after {
    box-sizing: border-box;
}

header {
    background: #1a477f;
    color: white;
    padding: 15px 0;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
}

header .logo i {
    margin-right: 10px;
    font-size: 28px;
}

.nav-links {
    list-style: none;
    display: flex;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f1c40f;
}

@media (max-width: 520px) {
    nav {
        flex-direction: column;
        text-align: center;
    }
    
      .nav-links {
        height: 0;
        opacity: 0;
        overflow: hidden;
        transition: height 0.3s ease, opacity 0.3s ease;
      }
    
      .nav-links.active {
        height: 146.5px;
        opacity: 1;
        margin-top: 10px;
        flex-direction: column;
      }

    .nav-links li {
        margin: 10px 0;
    }
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl{
    width:100%;
    padding-right:15px;
    padding-left:15px;
    margin-right:auto;
    margin-left:auto
}

@media (min-width:576px){
    .container,
    .container-sm{
        max-width:540px
    }
}

@media (min-width:768px){
    .container,
    .container-md,
    .container-sm{
        max-width:720px
    }
}

@media (min-width:992px){
    .container,
    .container-lg,
    .container-md,
    .container-sm{
        max-width:960px
    }
}

@media (min-width:1200px){
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl{
        max-width:1140px
    }
}

.hero h1 {
    font-weight: 700;
    z-index: 2;
    position: relative;
    margin-bottom: 20px;
}

@media (min-width: 1024px) {
    h1, ._h1 {
        font-size: 2em;
    }
}
h1, ._h1 {
    font-size: 1.8em;
}

h1 span {
    display: block;
}

.th {
    font-size: .75em;
    padding-top: 10px;
}

@media (min-width: 1024px) {
    main .logo {
        width: 180px;
    }
}

.logo-hero {
    margin-bottom: 16px;
    font-size: 36px;
    font-weight: 600;
    color: #ffc636;
    user-select: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: .6em .9em;
    border-radius: 3px;
    margin-bottom: 1rem;
    background-color: #f1c40f;
    background-size: 300% 100%;
    color: #fff;
    border: none;
    font-weight: 700;
    transition: all .4s ease-in-out;
    font-family: var(--s-heading);
}

.btn-main:hover {
    color: #fff;
    background: #ffaf36;
    background-position: 100% 0;
    transform: scale(1.06);
}

a {
    text-decoration: none;
    transition: .3s ease;
    cursor: pointer;
    color: var(--s-link-1);
}

.hero{
    padding: 80px 20px 0;
}

@media (min-width: 768px) {
    .hero {
        padding-right: 360px;
    }
    
    .banner img {
        transform: translateY(100px);
    }
    
}

@media (min-width: 1200px) {
    .hero {
        padding: 140px 40px 80px;
    }
}

.hero h1{
    color: var(--blue);
}

@media (min-width: 1200px) {
     .banner {
        top: 140px;
        right: 20px;
        width: 500px;
    }
}
@media (min-width: 1024px) {
     .banner {
        top: 180px;
        right: 30px;
        width: 38%;
    }
}
@media (min-width: 900px) {
     .banner {
        width: 400px;
        max-width: unset;
    }
}
@media (min-width: 768px) {
     .banner {
        position: absolute;
        right: 10px;
        top: 90px;
        width: 360px;
        z-index: 1;
    }
}
 .banner {
    padding: 20px 10px 0;
    max-width: 400px;
}



@media (min-width: 1800px) {
    .search {
        background-position: center center;
    }
}
@media (min-width: 1400px) {
    .search {
        background-position: top center;
    }
}

@media (min-width: 900px) {
    .search {
        background-size: 100% auto;
        height: 310px;
    }
}


 .search {
    background-image: url(/img/search.svg);
    background-size: 100%;
    height: 240px;
    background-position: bottom center;
    background-repeat: no-repeat;
    padding: 20px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: -40px;
    bottom: 0;
    position: absolute;
    width: 100%;
}

 .search a {
    color: #fff;
    font-size: .875em;
    justify-content: center;
    background: #00000050;
    border-bottom-left-radius: 10px;
}

 .search #search {
    border: none;
    margin: 0 auto
}

 .input-search {
    margin: 0 auto
}

 .input-search .i-search {
    right: 11px;
    top: 11px
}

 .arrow {
    width: 18px;
    line-height: 1
}

._svg svg {
    width: 100%;
    height: auto;
}

.search-hide .i-university {
    width: 20px;
}

h5, ._h5 {
    font-size: 1em;
}

.t-intro .search a {
    color: #fff;
    font-size: .875em;
    justify-content: center;
}
.search-hide {
    transition: .4s ease-in-out;
    padding-top: 12px;
}
.s-flex {
    display: flex;
    align-items: center;
    gap: 6px;
}

.search h2._h5 {
    background: #00000050;
    border-top-right-radius: 10px;
    padding-top: 10px;
}
