/* Designed By Ali Dinçer in/dincerali */
@font-face {
    font-family: 'Gotham Bold';
    src: URL('../fonts/GothamBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Gotham Book';
    src: URL('../fonts/GothamBook.ttf') format('truetype');
}

@font-face {
    font-family: 'Gotham Light';
    src: URL('../fonts/GothamLight.ttf') format('truetype');
}

@font-face {
    font-family: 'Gotham Medium';
    src: URL('../fonts/GothamMedium.ttf') format('truetype');
}

@font-face {
    font-family: 'Gotham Black';
    src: URL('../fonts/Gotham-Black.otf') format('opentype');
}

:root {
    --theme-color: #FF4438;
    --theme-color-muted: #707070;
    --theme-gradient-horizontal: linear-gradient(90deg, #3a0047 0%, #ff4438 100%);
    --theme-gradient-horizontal-reverse: linear-gradient(270deg, #3a0047 0%, #ff4438 100%);
    --theme-shadow: 0px 20px 48px rgba(0, 0, 0, 0.3);
    --theme-bosluk: 200px;
}

body {
    font-family: 'Gotham Light';
}

.theme-color {
    color: var(--theme-color);
}

.theme-color-muted {
    color: var(--theme-color-muted);
}

.theme-radius-42 {
    border-radius: 42px;
}

.theme-gradient {
    background-image: var(--theme-gradient-horizontal);
}

.f-bold {
    font-family: 'Gotham Bold' !important;
}

.f-book {
    font-family: 'Gotham Book' !important;
}

.f-medium {
    font-family: 'Gotham Medium' !important;
}

.f-black {
    font-family: 'Gotham Black' !important;
}

header .logo img {
    height: 60px;
}

.theme-header {
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.16);
    background-color: #fff;
}

.theme-button {
    padding: 10px 20px;
    background-image: var(--theme-gradient-horizontal);
    background-color: var(--theme-color);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    color: #fff !important;
    text-decoration: none;
    transition: .2s;
    outline: 0;
    border: 0;
}

.theme-button:active {
    transform: translateY(2px);
}

.btn-drop-shadow {
    filter: drop-shadow(0px 15px 40px rgba(0, 0, 0, 0.35));
}

.fs-8.f-book.mb-0 {
    color: #4a0546;
    font-size: 16px;
    font-weight: 800;
}

.theme-shadow {
    box-shadow: var(--theme-shadow) !important;
}

/* .theme-button:hover {} */

.shine-effect {
    position: relative;
    overflow: hidden;
    margin-left: 5px;
}

.shine-effect:hover:after {
    content: "";
    top: 0;
    left: 0;
    transform: translateX(-100%) skewX(13deg);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    animation: slide .8s;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.8)), color-stop(99%, rgba(128, 186, 232, 0)), color-stop(100%, rgba(125, 185, 232, 0)));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#007db9e8", GradientType=1);
}

.h-42 {
    height: 42px;
}

.h-32 {
    height: 32px;
}

.h-28 {
    height: 28px;
}

.h-24 {
    height: 24px;
}

.h-20 {
    height: 20px;
}

.h-16 {
    height: 16px;
}

.header-icon {
    height: 21px;
}

.toggle-button {
    padding: 5px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    cursor: pointer;
}

.toggle-button span {
    background-color: #000;
    width: 100%;
    border-radius: 50px;
    display: block;
    height: 5px;
    margin-bottom: 5px;
    transition: all .3s ease-in-out;
    pointer-events: none;
}

.toggle-button:hover span {
    background-color: red;
}

.toggle-button:hover span:nth-child(1) {
    background-color: red;
    width: 80%;
}

.toggle-button:hover span:nth-child(2) {
    background-color: red;
    width: 60%;
}



.theme-navbar {
    display: flex;
}

.theme-navbar a {
    margin-right: 85px;
    text-decoration: none;
    color: #16001A;
    position: relative;
}

.theme-navbar a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #16001A;
    transition: width .4s ease;
    -webkit-transition: width .4s ease;
}

.theme-navbar>div:hover a:after {
    width: 100%;
    left: 0;
    background: #16001A;
}


.main-slider .slider-img {
    border-radius: 350px;
    box-shadow: 0px 24px 50px rgba(0, 0, 0, 0.35);
    width: 655px;
    height: 360px;
    object-fit: cover;
}

.main-slider .slide-outer {
    max-width: 1225px;
    height: 600px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
    padding-bottom: 70px;
}

.main-slider .text-area {
    max-width: 390px;
}

.main-slider .img-area {
    position: relative;
    padding: 30px;
}

.main-slider .blob {
    width: 280px;
    height: 110px;
    border-radius: 80px;
    background: linear-gradient(90deg, #3a0047 0%, #ff4438 100%);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.35);
    position: absolute;
}

.main-slider .blob.yuvarlak {
    width: 100px;
    height: 100px;
}

.main-slider .swiper-slide-active .text-area>* {
    opacity: 1;
    transform: none;
}

.main-slider .swiper-slide-active .text-area>*:nth-child(1) {
    transition-delay: 0.6s;
}

.main-slider .swiper-slide-active .text-area>*:nth-child(2) {
    transition-delay: 0.7s;
}

.main-slider .swiper-slide-active .text-area>*:nth-child(3) {
    transition-delay: 0.8s;
}

.main-slider .swiper-slide-active .text-area>*:nth-child(4) {
    transition-delay: 0.9s;
}

.main-slider .swiper-slide-active .text-area>*:nth-child(5) {
    transition-delay: 1s;
}

.main-slider .swiper-slide-active .text-area>*:nth-child(6) {
    transition-delay: 1.1s;
}

.main-slider .swiper-slide-active .text-area>*:nth-child(7) {
    transition-delay: 1.2s;
}

.text-area>* {
    opacity: 0;
    transform: translateY(25px);
    transition: transform 0.5s, opacity 0.5s;
}


.slider__pagination {
    position: absolute;
    z-index: 21;
    left: 20px !important;
    height: 11px !important;
    text-align: center;
    bottom: 20px !important;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0px 2px;
}

.slider__pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    display: block;
    border-radius: 10px;
    background: rgba(58, 0, 71, 0.6);
    opacity: 1;
    transition: all 0.3s;
}

.slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #3A0047;
    width: 90px;
    box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}

.search-area {
    padding: 200px 0;
}

.main-search {
    background-color: #fff;
    box-shadow: var(--theme-shadow);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 10px 10px 10px 25px;
    max-width: 800px;
}

.main-search input, .main-search select {
    outline: 0;
    border: 1px solid #fff;
    height: 60px;
    color: var(--theme-color-muted);
}

.main-search select {
    border-left: 1px solid #707070;
    /* for Firefox */
    -moz-appearance: none;
    /* for Chrome */
    -webkit-appearance: none;
    min-width: 200px;
}

.main-search .select-down::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    background-image: url('../img/icons/sort_down.svg');
    width: 18px;
    height: 18px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}


.main-search .btn-search {
    background-color: var(--theme-color);
    background-image: var(--theme-gradient-horizontal);
    height: 60px;
    width: 60px;
    border-radius: 75px;
    outline: 0;
    border: 0;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.32));
}

.mw-870 {
    max-width: 870px;
}

.mw-1050 {
    max-width: 1050px;
}

.services-box .services-title-box {
    background-color: var(--theme-color);
    background-image: var(--theme-gradient-horizontal);
    width: 75%;
    height: 80px;
    position: relative;
    margin-top: -40px;
    border-radius: 70px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* SOL TARAFLI */

.services-blok {
    position: relative;
    height: 600px;
}

.services-blok .bg-with-gradient {
    position: relative;
    width: 70%;
    height: 100%;
}

.services-blok .bg-with-gradient img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.services-blok .bg-with-gradient .bg-overlay {
    background-image: linear-gradient(270deg, rgba(253, 67, 56, 0.85) 0%, #3d0147 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.services-blok-absolute {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.services-blok .services-blok-img {
    height: 450px;
    width: 450px;
}

.services-blok .services-text-area {
    max-width: 400px;
}

/* SOL TARAFLI */



/* SAĞ TARAFLI */
.services-blok.right .bg-with-gradient {
    margin-left: auto;
}

/* SAĞ TARAFLI */


.info-box {
    height: 350px;
    position: relative;
}

.info-box img {
    object-fit: cover;
}

.info-box .bg-overlay {
    background: linear-gradient(90deg, #3d0147 0%, rgba(246, 65, 57, 0.43) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.main-blogs {
    background-image: var(--theme-gradient-horizontal);
    position: relative;
}

.main-blogs .blog-img {
    width: 100%;
}

.main-blogs .blog-card {
    position: relative;
}

.main-blogs .read-all {
    position: absolute;
    bottom: -26px;
    width: 100%;
    left: 0;
}

.main-blogs .blog-card-top {
    position: relative;
}

.main-blogs .blog-date {
    box-shadow: var(--theme-shadow);
    background-image: var(--theme-gradient-horizontal);
    border-radius: 0px 59px 59px 0px;
    padding: 15px 15px 15px 10px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.mt-sabit {
    margin-top: var(--theme-bosluk);
}

.mb-sabit {
    margin-bottom: var(--theme-bosluk);
}

.sss-slide {
    padding: 65px 0px 65px 5%;
}

.sss-card {
    color: var(--theme-color-muted);
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 27px rgba(0, 0, 0, 0.16);
    padding: 65px 30px;
    text-align: center;
    transition: .5s;
    min-height: 228px;
}

.sss-card .baslik {
    font-size: .9rem;
}

.swiper-slide-active .sss-card {
    color: #fff;
    background: var(--theme-gradient-horizontal);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.35);
}

.swiper-slide-active .sss-card .baslik {
    font-size: 1rem;
}

.fs-7 {
    font-size: .8rem;
}

.fs-8 {
    font-size: .7rem;
}

.custom-button {
    width: 45px;
    height: 45px;
    background-image: var(--theme-gradient-horizontal);
    filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.35));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.custom-button:active {
    transform: translateY(2px);
}

footer section .container {
    padding-top: 40px;
}

footer section .f-bold2 {
    font-size: 1.6rem;
}

.footer-call-box {
    border-radius: 86px;
    padding: 55px 50px;
    background-image: var(--theme-gradient-horizontal);
    box-shadow: var(--theme-shadow);
}

.footer-call-box input {
    border: 0;
    border-bottom: 1px solid rgb(255 255 255 / 80%);
    background: transparent;
    color: #fff;
    outline: 0;
    padding: 5px 0;
    width: 100%;
}

.footer-call-box input::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #fff;
}

.footer-call-box input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #fff;
    opacity: 1;
}

.footer-call-box input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #fff;
    opacity: 1;
}

.footer-call-box input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

.footer-call-box input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #fff;
}

.footer-call-box input::placeholder {
    /* Most modern browsers support this now. */
    color: #fff;
}

.footer-nav {
    padding-top: 70px;
    padding-bottom: 30px;
}

.footer-nav ul li {
    margin-bottom: 5px;
}

.footer-nav a {
    color: var(--theme-color-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-nav p {
    color: var(--theme-color-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.login-state {
    height: 100vh;
    position: fixed;
    transform: translateY(-100vh);
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: transform .7s cubic-bezier(0.65, 0.05, 0.36, 1), visibility .7s, opacity .6s;
    will-change: transform;
    visibility: hidden;
    opacity: 0;
}

.login-state.active {
    transform: translateY(0vh);
    visibility: visible;
    opacity: 1;
}

.login-state .login-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-state .state-overlay {
    background: linear-gradient(90deg, #440347 0%, #e33a3a 100%);
    opacity: 0.84;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.logo_white {
    display: none;
}

.btn-login-close {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.header-top.active {
    position: relative;
    z-index: 101;
}

.header-top.active .logo {
    display: none;
}

.header-top.active2 .btn-login {
    display: none;
}

.header-top.active .logo_white {
    display: block;
}

.header-top.active2 .btn-login-close {
    display: flex;
}

.header-top.active a {
    color: #fff !important;
}

body.overlay {
    overflow: hidden;
}

.login-form {
    background-color: #fff;
    border-radius: 12px;
    min-width: 440px;
    overflow: hidden;
    box-shadow: var(--theme-shadow);
}

.login-form-head {
    background-image: var(--theme-gradient-horizontal);
}

.theme-select {
    position: relative;
}

.theme-select select {
    background: #fff;
    border: 1px solid #400246;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.35));
    border-radius: 15px;
    width: 100%;
    padding: 15px;
    padding-right: 45px;
    outline: 0;
    /* for Firefox */
    -moz-appearance: none;
    /* for Chrome */
    -webkit-appearance: none;
    transition: border .5s;
}

.theme-select::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    background-image: url('../img/icons/sort_down_orange.svg');
    width: 18px;
    height: 18px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.theme-input {
    background: #fff;
    border: 1px solid #400246;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.35));
    border-radius: 15px;
    width: 100%;
    padding: 15px;
    outline: 0;
    transition: border .5s;
}

.theme-input:focus, .theme-select select:focus {
    border: 1px solid var(--theme-color);
}












.menu-state {
    height: 100vh;
    position: fixed;
    transform: translateY(-100vh);
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: transform .7s cubic-bezier(0.65, 0.05, 0.36, 1), visibility .7s, opacity .6s;
    will-change: transform;
    visibility: hidden;
    opacity: 0;
}

.menu-state.active {
    transform: translateY(0vh);
    visibility: visible;
    opacity: 1;
}

.menu-state .state-overlay {
    background: linear-gradient(90deg, #440347 0%, #e33a3a 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.close-menu, .search-white {
    display: none;
}

.header-bottom.active {
    position: relative;
    z-index: 101;
}

.header-bottom.active .close-menu {
    display: block;
}

.header-bottom.active .search-white {
    display: block;
}

.header-bottom.active .open-menu {
    display: none;
}

.header-bottom.active .search-dark {
    display: none;
}

.menu-state a {
    color: #fff;
    font-family: 'Gotham Book';
    text-decoration: none;
    font-size: 18px;
    position: relative;
}


.menu-state a:not(.big-link):after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #fff;
    transition: width .4s ease;
    -webkit-transition: width .4s ease;
}

.menu-state a:not(.big-link):hover:after {
    width: 100%;
    left: 0;
    background: #fff;
}

.menu-state .big-link {
    display: block;
    position: relative;
    font-size: 27px;
    padding: 10px;
}

.menu-state .big-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
}

.menu-state ul li {
    margin: 15px 0;
}

.theme-hero {
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.theme-hero .hero-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: var(--theme-gradient-horizontal);
    opacity: .85;
}

.hero-text-area {
    position: relative;
    z-index: 2;
    color: #fff;
}



.services-blok-about {
    position: relative;
    height: 450px;
    max-width: 1140px;
}

.services-blok-about .bg-with-gradient {
    background-image: linear-gradient(270deg, rgba(253, 67, 56) 0%, #3d0147 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.about-services-text-area {
    padding: 65px;
    padding-right: 100px;
    position: relative;
    bottom: -100px;
    max-width: 1140px;
    margin-left: auto;
}

.right .about-services-text-area {
    padding-left: 100px;
}

.about-services-title {
    position: absolute;
    left: -170px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
}

.right .about-services-title {
    left: unset;
    right: -170px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
}



.sub-search {
    background-color: #fff;
    box-shadow: var(--theme-shadow);
    border-radius: 100px;
    display: flex;
    align-items: center;
    padding: 10px 80px 10px 25px;
    position: relative;
    /*     justify-content: space-between; */
    flex-wrap: wrap;
}

.sub-search input, .sub-search select {
    outline: 0;
    border: 1px solid #fff;
    height: 35px;
    color: var(--theme-color-muted);
}

.sub-search select {
    border-right: 1px solid #707070;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding-left: 20px;
    padding-right: 30px;
 /*    width: 195px; */
 width: 100%;
    font-size: 14px;
}

.sub-search .select-down::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    background-image: url('../img/icons/sort_down.svg');
    width: 18px;
    height: 18px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.sub-search .btn-search {
    background-color: var(--theme-color);
    background-image: var(--theme-gradient-horizontal);
    height: 70px;
    width: 70px;
    border-radius: 75px;
    outline: 0;
    border: 0;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.32));
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.sub-search .ms-options-wrap>button:focus, .sub-search .ms-options-wrap>button {
    color: var(--theme-color-muted);
    padding: 0;
    padding-left: 20px;
    padding-right: 30px;
    /* width: 195px; */
    width: 100%;
    height: 35px;
    border-right: 1px solid #707070;
    border-radius: 0;
    font-size: 16px;
}

.sub-search .ms-options-wrap.ms-has-selections>button {
    color: var(--theme-color-muted);
}


.liste .list-item {
    border-radius: 42px;
    background: #fff;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.16);
    padding: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.liste .list-item .list-img {
    background: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 28px;
    padding: 20px;
    margin-right: 15px;
}

.liste .list-item .list-img img {
    height: 100px;
    width: 100px;
}

.liste .list-item .list-img.teacher img {
    height: 150px;
    width: 140px;
}

.theme-pagination .pagination-button {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.35));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    background: #fff;
    color: var(--theme-color);
    text-decoration: none;
    font-size: 21px;
}

.theme-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 70px;
}

.theme-pagination .pagination-button.active {
    background: var(--theme-gradient-horizontal);
    color: #fff;
}

.shadow-none {
    box-shadow: none !important;
}

.theme-breadcrumb {
    padding: 25px 0;
    background-image: var(--theme-gradient-horizontal);
}

.theme-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.theme-color-dark-blue {
    color: #400347;
}

.theme-form input, .theme-form select, .theme-form textarea {
    background: transparent;
    display: block;
    width: 100%;
    border: 1px solid #fff;
    outline: 0;
    height: 55px;
    border-radius: 12px;
    font-family: 'Gotham Bold';
    color: #fff;
    padding: 15px;
    transition: box-shadow .4s;
}

.theme-form input:focus, .theme-form select:focus, .theme-form textarea:focus {
    box-shadow: 0px 0px 6px 1px rgb(255 255 255 / 60%);
}

.theme-form select {
    -moz-appearance: none;
    -webkit-appearance: none;
    padding-right: 20px;
}

.theme-form .select-down {
    position: relative;
}

.theme-form .select-down::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    background-image: url('../img/icons/sort_down_white.svg');
    width: 18px;
    height: 18px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}


.theme-form select option {
    /*background-color: #000;*/
    background-color: #fff;
    color: #e63c3b;
}

.theme-form label {
    font-family: 'Gotham Bold';
}

.theme-form textarea {
    min-height: 125px;
}

.theme-form input[type=checkbox] {
    width: 10px;
    height: 10px;
    padding: 10px;
}

.theme-form .form-check-label {
    font-family: 'Gotham Book';
    margin-top: 2px;
    margin-left: 10px;
}

.theme-form input[type=file] {
    position: relative;
}

.theme-form input[type=file]::-webkit-file-upload-button {
    background: #fff;
    color: var(--theme-color);
    height: 60px;
    padding: 15px;
    position: absolute;
    right: -15px;
    top: 2px;
    border-radius: 12px;
}

.theme-form input::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #fff;
}

.theme-form input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #fff;
    opacity: 1;
}

.theme-form input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #fff;
    opacity: 1;
}

.theme-form input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

.theme-form input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #fff;
}

.theme-form input::placeholder {
    /* Most modern browsers support this now. */
    color: #fff;
}

.theme-form textarea::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #fff;
}

.theme-form textarea:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #fff;
    opacity: 1;
}

.theme-form textarea::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #fff;
    opacity: 1;
}

.theme-form textarea:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

.theme-form textarea::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #fff;
}

.theme-form textarea::placeholder {
    /* Most modern browsers support this now. */
    color: #fff;
}

.admission-form {
    padding: 70px 50px;
}

.theme-blog .blog-img {
    width: 100%;
}

.theme-blog .blog-card {
    position: relative;
    padding: 10px;
}

.theme-blog .blog-card-top {
    position: relative;
}

.theme-blog .blog-date {
    box-shadow: var(--theme-shadow);
    background-image: var(--theme-gradient-horizontal);
    border-radius: 0px 59px 59px 0px;
    padding: 15px 15px 15px 10px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.border-effect {
    position: relative;

}

.border-effect:before {
    content: '';
    position: absolute;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    top: calc(3px/-1);
    left: calc(3px/-1);
    background: linear-gradient(to right, #3a0047 0%, #ff4438 100%), linear-gradient(to top, #ff4438 50%, transparent 50%), linear-gradient(to top, #ff4438 50%, transparent 50%), linear-gradient(to right, #3a0047 0%, #ff4438 100%), linear-gradient(to left, #3a0047 0%, #ff4438 100%);
    background-size: 100% 3px, 3px 200%, 3px 200%, 0% 3px, 0% 3px;
    background-position: 50% 100%, 0% 0%, 100% 0%, 100% 0%, 0% 0%;
    background-repeat: no-repeat, no-repeat;
    transition: transform 0.3s ease-in-out, background-position 0.3s ease-in-out, background-size 0.3s ease-in-out;
    transform: scaleX(0) rotate(180deg);
    transition-delay: 0.6s, 0.3s, 0s;
}

.border-effect:hover:before {
    background-size: 200% 3px, 3px 400%, 3px 400%, 55% 3px, 55% 3px;
    background-position: 50% 100%, 0% 100%, 100% 100%, 100% 0%, 0% 0%;
    transform: scaleX(1) rotate(180deg);
    transition-delay: 0s, 0.3s, 0.6s;
}


.profile-img {
    background: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 28px;
    padding: 20px;
    margin-right: 15px;
}

.profile-img img {
    height: 100px;
    width: 100px;
}

.theme-text-box {
    background: transparent;
    display: block;
    width: 100%;
    border: 1px solid var(--theme-color);
    min-height: 55px;
    border-radius: 12px;
    font-family: 'Gotham Bold';
    color: var(--theme-color-muted);
    padding: 15px;
}

.radius-12 {
    border-radius: 12px;
}

.photo-slide {
    padding-bottom: 150px;
}

.photo-slide .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear;
    transform: scale(0.8);
    opacity: .4;
}

.photo-slide .swiper-slide.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    z-index: 1;
}

.photo-slide .swiper-slide img {
    /*      height: 590px;  */
    border-radius: 12px;
    max-width: 100%;
}

.video-slide {
    padding-bottom: 150px;
}

.video-slide .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear;
    transform: scale(0.8);
    opacity: .4;
}

.video-slide .swiper-slide.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    z-index: 1;
}

.video-slide .swiper-slide video {
    /* height: 590px; */
    border-radius: 12px;
    max-width: 100%;
    width: 100%;
}


.video-overlay {
    cursor: pointer;
    position: relative;
    width: 100%;
}


.video-overlay .v-overlay {
    width: 100%;
    height: calc(100% - 7px);
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.video-overlay .v-overlay::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
}

.video-overlay .v-overlay img {
    height: 50px;
    z-index: 1;
}

.course-slide {
    padding: 5px 0px 100px 5%;
}

.course-slide-card {
    border-radius: 0 0 40px 40px;
    overflow: hidden;
}

.course-slide-button {
    margin-top: -26px;
}

.btn-bell {
    background: transparent;
    outline: 0;
    border: 0;
    position: relative;

    -webkit-animation: ring 4s 7s ease-in-out infinite;
    -webkit-transform-origin: 50% 4px;
    -moz-animation: ring 4s 7s ease-in-out infinite;
    -moz-transform-origin: 50% 4px;
    animation: ring 4s 7s ease-in-out infinite;
    transform-origin: 50% 4px;
}

.btn-bell img {
    height: 40px;
}

.btn-bell span {
    position: absolute;
    color: #fff;
    right: 12px;
    top: -1px;
}

.btn-bell::before {
    content: unset !important;
}

.bell-dropdown .dropdown-menu {
    box-shadow: var(--theme-shadow);
    border-radius: 15px;
}

.bell-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.teacher-profile-img {
    border-radius: 28px;
    margin-right: 15px;
}

.teacher-profile-img img {
    height: 150px;
    width: 140px;
    border-radius: 28px;
}

.profile-state {
    border-radius: 10px;
    overflow: hidden;
}

.sign-up-box {
    padding: 40px 30px;
}

.sign-up-form {
    padding: 70px 50px;
    background: linear-gradient(135deg, #400247 0%, #fc4338 100%);
}

.sign-up-select {
    max-width: 400px;
    margin: 0 auto;
}

.sign-up-select select {
    font-size: 1.2rem;
}

.photo-upload-area {
    background: #fff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 180px;
    max-width: 180px;
    text-align: center;
    line-height: 1;
    user-select: none;
    cursor: pointer;
}

.add-photo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
}

.add-course-file {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
}


.ms-options-wrap>button:focus, .ms-options-wrap>button {
    background: transparent;
    display: block;
    width: 100%;
    border: 1px solid #fff;
    outline: 0;
    height: 55px;
    border-radius: 12px;
    font-family: 'Gotham Bold';
    color: #fff;
    padding: 15px;
    transition: box-shadow .4s;
    font-size: 16px;
}

.ms-options-wrap.ms-has-selections>button {
    color: #fff;
}

.ms-options-wrap>button:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    background-image: url('../img/icons/sort_down_white.svg');
    width: 18px;
    height: 18px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border: 0;
    margin-top: 0;
}

.ms-options-wrap>.ms-options>ul label {
    color: var(--theme-color-muted);
}

.ms-options-wrap>.ms-options>ul input[type="checkbox"] {
    margin: 0 5px 0 0;
    position: absolute;
    left: 3px;
    top: 6px;
    width: 14px;
    height: 20px;
}

.theme-navbar .has-dropdown {
    position: relative;
}

.theme-navbar>div {
    display: flex;
}

.theme-navbar .has-dropdown .nav-acilir-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    min-width: 280px;
    background: #fff;
    left: 0;
    border-radius: 3px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    box-shadow: var(--theme-shadow);
    top: 72px;
    border-radius: 8px;
    z-index: 5;
}

.theme-navbar .has-dropdown:hover .nav-acilir-menu {
    visibility: visible;
    opacity: 1;
    animation-name: fadeInUp;
    animation-duration: .2s;
}

.theme-navbar .has-dropdown .nav-acilir-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

.theme-navbar .has-dropdown .nav-acilir-menu a {
    padding: 10px 15px;
    color: #000;
    font-weight: 500;
    margin: 0;
}

.theme-navbar .has-dropdown .nav-acilir-menu a::after {
    content: unset;
}

.theme-navbar .has-dropdown .nav-acilir-menu a:hover {
    color: #fff;
    background-image: var(--theme-gradient-horizontal);
}

.theme-navbar .has-dropdown .nav-acilir-menu a:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.theme-navbar .has-dropdown .nav-acilir-menu a:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.removable-area {
    position: relative;
}

.remove-it {
    background-color: #f4403a;
    border-radius: 50%;
    height: 22px;
    width: 22px;
    position: absolute;
    right: 4px;
    top: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ms-options-wrap>.ms-options {
    border-radius: 12px;
    padding: 10px;
    box-shadow: var(--theme-shadow);
    border: none;
}

.ms-options-wrap>.ms-options>ul label {
    padding: 4px 4px 4px 25px;
}

.ms-options-wrap>.ms-options>ul label {
    color: var(--theme-color) !important;
}


.custom-filter-select {
    position: relative;
}

.custom-filter-select select {
    display: none;
}

.select-selected {
    border-right: 1px solid #707070 !important;
    color: var(--theme-color-muted) !important;
}

/* .select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
} */

/* .select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
} */

.select-items div, .select-selected {
    cursor: pointer;
    /* width: 195px; */
    width: 100%;
    padding-left: 20px;
    padding-right: 30px;
    height: 35px;
    font-size: 16px;
    color: var(--theme-color);
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.select-items div {
    width: 100% !important;
    padding: 0 10px;
}

.select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: #fff;
    box-shadow: var(--theme-shadow);
    border-radius: 12px;
    padding: 10px;
    padding-right: 0px;
    line-height: 1;
    max-height: 300px;
    overflow-y: scroll;
}


.select-items::-webkit-scrollbar {
    width: 14px;
}

.select-items::-webkit-scrollbar-thumb {
    border: 3px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    border-radius: 40px;
    background-color: #AAAAAA;
}


.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.sub-search .select-down {
    flex: 1 0 20%;
}

.sub-search .select-down.kindergarten {
    flex: 1 0 25%;
}

.sub-search .select-down.langSection {
    flex: 1 0 25%;
}

.img-preview-area img{
    display: none;
}

.img-preview-area.active img{
    display: block;
    border-radius: 24px;
    height: 180px;
    max-width: 180px;
    user-select: none;
    width: 100%;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes ring {
    0% {
        -webkit-transform: rotateZ(0);
    }

    1% {
        -webkit-transform: rotateZ(30deg);
    }

    3% {
        -webkit-transform: rotateZ(-28deg);
    }

    5% {
        -webkit-transform: rotateZ(34deg);
    }

    7% {
        -webkit-transform: rotateZ(-32deg);
    }

    9% {
        -webkit-transform: rotateZ(30deg);
    }

    11% {
        -webkit-transform: rotateZ(-28deg);
    }

    13% {
        -webkit-transform: rotateZ(26deg);
    }

    15% {
        -webkit-transform: rotateZ(-24deg);
    }

    17% {
        -webkit-transform: rotateZ(22deg);
    }

    19% {
        -webkit-transform: rotateZ(-20deg);
    }

    21% {
        -webkit-transform: rotateZ(18deg);
    }

    23% {
        -webkit-transform: rotateZ(-16deg);
    }

    25% {
        -webkit-transform: rotateZ(14deg);
    }

    27% {
        -webkit-transform: rotateZ(-12deg);
    }

    29% {
        -webkit-transform: rotateZ(10deg);
    }

    31% {
        -webkit-transform: rotateZ(-8deg);
    }

    33% {
        -webkit-transform: rotateZ(6deg);
    }

    35% {
        -webkit-transform: rotateZ(-4deg);
    }

    37% {
        -webkit-transform: rotateZ(2deg);
    }

    39% {
        -webkit-transform: rotateZ(-1deg);
    }

    41% {
        -webkit-transform: rotateZ(1deg);
    }

    43% {
        -webkit-transform: rotateZ(0);
    }

    100% {
        -webkit-transform: rotateZ(0);
    }
}

@-moz-keyframes ring {
    0% {
        -moz-transform: rotate(0);
    }

    1% {
        -moz-transform: rotate(30deg);
    }

    3% {
        -moz-transform: rotate(-28deg);
    }

    5% {
        -moz-transform: rotate(34deg);
    }

    7% {
        -moz-transform: rotate(-32deg);
    }

    9% {
        -moz-transform: rotate(30deg);
    }

    11% {
        -moz-transform: rotate(-28deg);
    }

    13% {
        -moz-transform: rotate(26deg);
    }

    15% {
        -moz-transform: rotate(-24deg);
    }

    17% {
        -moz-transform: rotate(22deg);
    }

    19% {
        -moz-transform: rotate(-20deg);
    }

    21% {
        -moz-transform: rotate(18deg);
    }

    23% {
        -moz-transform: rotate(-16deg);
    }

    25% {
        -moz-transform: rotate(14deg);
    }

    27% {
        -moz-transform: rotate(-12deg);
    }

    29% {
        -moz-transform: rotate(10deg);
    }

    31% {
        -moz-transform: rotate(-8deg);
    }

    33% {
        -moz-transform: rotate(6deg);
    }

    35% {
        -moz-transform: rotate(-4deg);
    }

    37% {
        -moz-transform: rotate(2deg);
    }

    39% {
        -moz-transform: rotate(-1deg);
    }

    41% {
        -moz-transform: rotate(1deg);
    }

    43% {
        -moz-transform: rotate(0);
    }

    100% {
        -moz-transform: rotate(0);
    }
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }

    1% {
        transform: rotate(30deg);
    }

    3% {
        transform: rotate(-28deg);
    }

    5% {
        transform: rotate(34deg);
    }

    7% {
        transform: rotate(-32deg);
    }

    9% {
        transform: rotate(30deg);
    }

    11% {
        transform: rotate(-28deg);
    }

    13% {
        transform: rotate(26deg);
    }

    15% {
        transform: rotate(-24deg);
    }

    17% {
        transform: rotate(22deg);
    }

    19% {
        transform: rotate(-20deg);
    }

    21% {
        transform: rotate(18deg);
    }

    23% {
        transform: rotate(-16deg);
    }

    25% {
        transform: rotate(14deg);
    }

    27% {
        transform: rotate(-12deg);
    }

    29% {
        transform: rotate(10deg);
    }

    31% {
        transform: rotate(-8deg);
    }

    33% {
        transform: rotate(6deg);
    }

    35% {
        transform: rotate(-4deg);
    }

    37% {
        transform: rotate(2deg);
    }

    39% {
        transform: rotate(-1deg);
    }

    41% {
        transform: rotate(1deg);
    }

    43% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}

@-webkit-keyframes ButtonAnimation {
    0% {
        background-position: 10% 0%
    }

    50% {
        background-position: 91% 100%
    }

    100% {
        background-position: 10% 0%
    }
}

@-moz-keyframes ButtonAnimation {
    0% {
        background-position: 10% 0%
    }

    50% {
        background-position: 91% 100%
    }

    100% {
        background-position: 10% 0%
    }
}

@keyframes ButtonAnimation {
    0% {
        background-position: 10% 0%
    }

    50% {
        background-position: 91% 100%
    }

    100% {
        background-position: 10% 0%
    }
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.open-menu-mobile {
    display: none;
}


.mobile-lang {
    display: none;
}

@media screen and (max-width:1400px) {
 /*    .sub-search .ms-options-wrap>button:focus, .sub-search .ms-options-wrap>button {
        width: 160px;
    }

    .sub-search select {
        width: 160px;
    }

    .select-items div, .select-selected {
        width: 160px;
    } */
}

@media screen and (max-width:1250px) {
    .services-blok-about {
        max-width: 850px;
    }
}

@media screen and (max-width:992px) {
    .search-dark {
        display: none;
    }

    .theme-header {}

    .header-top {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-bottom {
        display: none;
    }

    .theme-header .lang {
        display: none;
    }

    .theme-button {
        padding: 10px 10px;
        font-size: 15px;
    }

    .theme-button .h-24 {
        height: 20px;
    }

    .theme-button span {
        font-size: 15px !important;
    }

    header .logo img {
        height: 50px;
    }

    .mobile-overlay-menu {
        height: 100%;
        margin-top: 130px;
    }

    .menu-state .big-link {
        font-size: 20px;
        padding: 10px 0;
    }

    .header-bottom.active {
        display: block;
    }

    .open-menu-mobile {
        display: block;
    }

    .header-top.active .open-menu-mobile .nav-toggle-btn {
        visibility: hidden;
    }

    .header-bottom.active .mobile-lang {
        display: block;
    }

    .header-bottom.active .lang {
        display: block;
    }

    .main-slider .slide-outer {
        height: auto;
        margin: 12px;
        margin-top: 20px;
    }

    .main-slider .img-area {

        padding: 0;
    }

    .main-slider .slider-img {
        width: 100%;
        height: 300px;
    }

    .main-slider .img-area {
        order: 1;
    }

    .main-slider .text-area {
        order: 2;
        margin-top: 50px;
    }

    .main-slider .blob {
        width: 120px;
        height: 55px;
    }

    .main-slider .blob.yuvarlak {
        width: 40px;
        height: 40px;
    }

    .services-blok .bg-with-gradient {
        width: 100%;
    }

    .services-blok-absolute {
        margin-top: 100px;
        text-align: center;
    }

    .services-blok .services-text-area {
        max-width: 100%;
    }

    .services-blok .services-blok-img {
        margin-top: 50px;
        width: 80%;
        height: auto;
    }

    .right .services-blok-img {
        order: 2;
    }


    .login-form {
        min-width: 320px;
    }

    .menu-state a {
        width: 100%;
    }

    .services-box img {
        width: 100%;
    }

    .services-box {
        margin-bottom: 40px;
    }

    .main-blogs {
        padding: 0 12px;
    }

    .info-box {
        height: 450px;
        margin-top: 250px !important;
    }

    .services-blok {
        margin-top: 250px !important;
    }

    .sss-slide {}

    .sss-card {
        padding: 35px 20px;
    }

    .main-sss {
        margin-bottom: 10px !important;
    }

    .footer-call-box {
        padding: 40px 30px;
        border-radius: 30px;
        text-align: center;
    }

    .footer-call-box input {
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .footer-nav {
        padding-bottom: 20px;
    }

    footer section .container {
        padding-top: 70px;
    }

    .main-search {
        padding: 10px 10px 10px 10px;
    }

    .main-search input, .main-search select {
        height: 40px;
        font-size: 12px;
    }

    .main-search input {
        width: 110px;
    }

    .main-search .btn-search {
        height: 40px;
        width: 40px;
    }

    .main-search .btn-search img {
        height: 18px;
    }

    .main-search select {
        min-width: 90px;
        max-width: 120px;
    }

    .theme-select select {
        padding: 10px;
    }

    .theme-input {
        padding: 10px;
    }

    .sub-search {
        padding: 15px 55px 15px 25px;
        border-radius: 20px;
    }

    .sub-search .btn-search {
        height: 50px;
        width: 50px;
    }

    .sub-search select {
        font-size: 12px;
        padding-left: 5px;
        font-family: 'Gotham Book';
        /* width: 120px; */
    }

    .select-items div, .select-selected {
        font-size: 12px;
        padding-left: 5px;
        padding-right: 5px;
        font-family: 'Gotham Book';
        /* width: 120px; */
    }

    .sub-search .ms-options-wrap>button:focus, .sub-search .ms-options-wrap>button {
        font-size: 12px;
        padding-left: 5px;
        font-family: 'Gotham Book';
        /* width: 120px; */
    }

    .sub-search .btn-search img {
        height: 24px;
    }

    .liste .list-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .liste .list-item .list-img {
        margin-bottom: 30px;
        margin-left: 27%;
    }

    .liste .list-item h4.theme-color {
        font-size: 18px;
    }

    .liste .list-item p {
        font-size: 14px;
    }

    .theme-hero {
        height: 300px;
    }

    .services-blok-about {
        max-width: 630px;
        height: 400px;
    }

    .about-services-title {
        left: -130px;
    }

    .about-services-text-area {
        padding: 20px;
        padding-right: 20px;
        bottom: unset;
        top: 50px;
    }

    .right .about-services-text-area {
        padding-left: 20px;
    }

    .right .about-services-title {
        right: -130px;
    }

    :root {
        --theme-bosluk: 100px;
    }

    .theme-breadcrumb {
        padding: 10px 0;
    }

    .theme-breadcrumb .breadcrumb-item {
        font-size: 14px;
    }

    .sc-profile-outer {
        position: relative;
    }

    .sc-profile-outer .theme-button {
        position: absolute;
        right: 0;
        top: 50px;
    }

    .sc-profile-outer .bell-dropdown {
        position: absolute;
        right: 0;
        top: 50px;
    }

    .sc-profile-outer h3 {
        margin-top: 30px;
    }

    .photo-slide {
        padding-left: 12px;
        padding-right: 12px;
    }

    .video-slide {
        padding-left: 12px;
        padding-right: 12px;
    }

    .admission-form {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .bell-dropdown .dropdown-item {
        white-space: normal;
    }

    .bell-dropdown .dropdown-menu {
        width: 280px;
    }

    .profile-state .profile-body p.f-bold {
        font-size: .9rem;
    }

    .teacher-profile-img {
        margin-right: 0px;
    }

    .sign-up-box {
        padding: 20px 20px;
        border-radius: 22px;
    }

    .sign-up-form {
        padding: 20px 20px;
        border-radius: 22px;
    }

    .course-slide {
        padding: 5px 5% 50px 5%;
    }

    .sub-search .select-down {
        flex: 1 0 50%;
    }
}

@media (max-width:768px) {
    .services-blok-about {
        max-width: 290px;
    }

    #div_img_verification_sign #img_verification_sign {
        width: 185px !important;
    }

    .about-services-title {
        left: -120px;
    }

    .right .about-services-title {
        right: -120px;
    }

}

@media (max-width:575px) {
    .main-slider .slider-img {
        height: 160px;
    }

    .about-services-title {
        left: -110px;
    }

    .right .about-services-title {
        right: -100px;
    }

.footer-call-box{
  padding: 0px 13px !important
}

.ms-4.ps-2.h-16{
  display: none;
}

.flex-fill {
    font-size: 11px;
    width: 100%;
    /* width: 20px; */
}

}
