@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800,900&display=swap');
.montserrat {
    font-family: 'Montserrat', sans-serif;
}


/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

* {
    outline: none !important;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    overflow-x: hidden;
    width: 100%;
    height: auto;
    font-family: 'Montserrat', sans-serif;
    line-height: 20px;
}
.pageloader{position: fixed; width: 100%; height: 100%; left: 0; top: 0; background-color: #fff; z-index: 1000;}
.pageloader .loader{ position: absolute; left: 50%; top: 50%; -ms-transform: translate(-50% -50%); -webkit-transform: translate(-50% , -50%); transform: translate(-50% -50%); }
/* Animation */
 @keyframes rotate {
     to {
         transform: rotate(360deg);
    }
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */

.cd-container {
    /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
    width: 90%;
    max-width: 768px;
    margin: 0 auto;
}

.cd-container:after {
    content: "";
    display: table;
    clear: both;
}

.has-top-margin {
    /* this class is given - using jQuery - to the .cd-main-content following the .cd-secondary-nav when it becomes fixed */
}

@media only screen and (min-width: 1170px) {
    .has-top-margin {
        -webkit-animation: animate-margin-top 0.3s;
        -moz-animation: animate-margin-top 0.3s;
        animation: animate-margin-top 0.3s;
        margin-top: 70px;
    }
}

@-webkit-keyframes animate-margin-top {
    0% {
        margin-top: 100px;
    }
    100% {
        margin-top: 70px;
    }
}

@-moz-keyframes animate-margin-top {
    0% {
        margin-top: 100px;
    }
    100% {
        margin-top: 70px;
    }
}

@keyframes animate-margin-top {
    0% {
        margin-top: 100px;
    }
    100% {
        margin-top: 70px;
    }
}


/* -------------------------------- 

Navigation

-------------------------------- */

.cd-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: transparent;
    z-index: 3;
}

@media only screen and (min-width: 768px) {
    .cd-header {
        height: 70px;
        background-color: transparent;
        box-shadow: none;
    }
}

@media only screen and (min-width: 1170px) {
    #cd-logo.is-hidden {
        /* assign a position fixed and move outside the viewport (on the left) */
        opacity: 0;
        position: fixed;
        left: -20%;
        margin-left: 0;
        -webkit-transition: left 0.3s, opacity 0.3s;
        -moz-transition: left 0.3s, opacity 0.3s;
        transition: left 0.3s, opacity 0.3s;
    }
}

.cd-primary-nav {
    /* mobile first - navigation hidden by default, triggered by tap/click on navigation icon */
    float: right;
    margin-right: 5%;
    width: 44px;
    height: 100%;
    background: url("../img/cd-icon-menu.svg") no-repeat center center;
    background-size: 44px 44px;
}

.cd-primary-nav ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}

.cd-primary-nav ul.is-visible {
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}

.cd-primary-nav a {
    display: block;
    height: 50px;
    line-height: 50px;
    padding-left: 5%;
    background: #000101;
    border-top: 1px solid #051426;
    color: #f0eee1;
}

@media only screen and (min-width: 768px) {
    .cd-primary-nav {
        /* reset navigation values */
        width: auto;
        height: auto;
        background: none;
    }
    .cd-primary-nav ul {
        position: static;
        width: auto;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        line-height: 70px;
    }
    .cd-primary-nav ul.is-visible {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    .cd-primary-nav li {
        display: inline-block;
        margin-left: 1em;
    }
    .cd-primary-nav a {
        display: inline-block;
        height: auto;
        line-height: normal;
        background: transparent;
        padding: .6em 1em;
        border-top: none;
        color: #030d18;
    }
}


/* -------------------------------- 

Intro

-------------------------------- */

#cd-intro {
    position: relative;
    height: fit-content;
    background-size: cover;
    z-index: 2;
}

#cd-intro #cd-intro-tagline {
    margin: 0 auto;
    text-align: center;
}

#cd-intro h1 {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 300;
    color: #030d18;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 768px) {
    #cd-intro {
        height: fit-content;
    }
    #cd-intro h1 {
        font-size: 32px;
        font-size: 2rem;
    }
}

@media only screen and (min-width: 1170px) {
    #cd-intro {
        height: 100vh;
    }
}

.cd-btn {
    display: inline-block;
    padding: 1em 1.8em;
    background-color: rgba(245, 72, 74, 0.9);
    margin-top: 1em;
    border-radius: 20em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: white;
}

.no-touch .cd-btn:hover {
    background-color: #f5484a;
}

@media only screen and (min-width: 1170px) {
    .cd-btn.is-hidden {
        /* assign a position fixed and move outside the viewport (on the right) */
        opacity: 0;
        position: fixed;
        right: -20%;
        top: 0;
        padding: .8em 1.2em;
        margin: 14px 0 0;
        -webkit-transition: right 0.3s, opacity 0.3s;
        -moz-transition: right 0.3s, opacity 0.3s;
        transition: right 0.3s, opacity 0.3s;
    }
    .cd-btn.is-hidden.slide-in {
        /* slide in when the secondary nav gets fixed */
        right: 5%;
        opacity: 1;
    }
}


/* -------------------------------- 

Secondary Fixed Navigation

-------------------------------- */

.cd-secondary-nav {
    position: relative;
    z-index: 3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cd-secondary-nav ul {
    /* mobile first - secondary navigation hidden by default, triggered by tap/click on .cd-secondary-nav-trigger*/
    position: fixed;
    width: 100%;
    max-width: 100%;
    border-radius: 0.25em;
    background: rgba(0, 174, 239, 0.9);
    visibility: hidden;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 100% 100%;
    -moz-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    -o-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
    -moz-transition: -moz-transform 0.3s, visibility 0s 0.3s;
    transition: transform 0.3s, visibility 0s 0.3s;
}

.cd-secondary-nav ul.is-visible {
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
    -moz-transition: -moz-transform 0.3s, visibility 0s 0s;
    transition: transform 0.3s, visibility 0s 0s;
}

.cd-secondary-nav li a {
    display: block;
    border-bottom: 1px solid #092645;
    color: #f0eee1;
}

.cd-secondary-nav li:last-child a {
    border-bottom: none;
}

@media only screen and (min-width: 1170px) {
    .cd-secondary-nav {
        z-index: 1;
        height: auto;
        background-color: transparent;
        -webkit-transition: height 0.3s;
        -moz-transition: height 0.3s;
        transition: height 0.3s;
    }
    .cd-secondary-nav nav,
    .cd-secondary-nav ul,
    .cd-secondary-nav li,
    .cd-secondary-nav a {
        height: 100%;
    }
    .cd-secondary-nav ul {
        /* reset navigation values */
        position: static;
        width: auto;
        max-width: 100%;
        visibility: visible;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        background-color: transparent;
    }
    .cd-secondary-nav li {
        display: inline-block;
        margin-left: -4px;
    }
    .cd-secondary-nav li a {
        position: relative;
        text-align: center;
        display: block;
        border-bottom: none;
        -webkit-transition: padding 0.2s;
        -moz-transition: padding 0.2s;
        transition: padding 0.2s;
    }
    .cd-secondary-nav li a b {
        text-transform: uppercase;
        font-size: 13px;
        font-size: 0.8125rem;
        font-weight: 700;
        color: #000;
    }
    .cd-secondary-nav li a span {
        position: absolute;
        display: inline-block;
        width: 40px;
        height: 40px;
        top: 18px;
        left: 50%;
        right: auto;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        background-repeat: no-repeat;
        -webkit-transition: opacity 0.2s;
        -moz-transition: opacity 0.2s;
        transition: opacity 0.2s;
    }
    .cd-secondary-nav.is-fixed {
        /* on Firefox CSS transition/animation fails when parent element changes position attribute*/
        /* so we defined to diffent classes: .is-fixed to change the position value and .is-animated to change childrens' attributes (padding and opacity)*/
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
    }
    .cd-secondary-nav.animate-children li a span {
        opacity: 0;
    }
}

.cd-secondary-nav-trigger {
    position: fixed;
    bottom: 20px;
    right: 5%;
    width: 44px;
    height: 44px;
    background: rgba(3, 13, 24, 0.96);
    border-radius: 0.25em;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    z-index: 2;
}

.cd-secondary-nav-trigger span {
    /* the span element is used to create the menu icon */
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #f0eee1;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    transition: background 0.3s;
}

.cd-secondary-nav-trigger span::before,
.cd-secondary-nav-trigger span::after {
    content: '';
    position: absolute;
    background: inherit;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.cd-secondary-nav-trigger span::before {
    right: -10px;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}

.cd-secondary-nav-trigger span::after {
    left: -10px;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}

.cd-secondary-nav-trigger.menu-is-open {
    background: transparent;
}

.cd-secondary-nav-trigger.menu-is-open span {
    background: rgba(240, 238, 225, 0);
    width: 20px;
    height: 2px;
}

.cd-secondary-nav-trigger.menu-is-open span::before,
.cd-secondary-nav-trigger.menu-is-open span::after {
    background: #f0eee1;
    width: 100%;
    height: 100%;
    border-radius: 0;
    top: 0;
    left: 0;
}

.cd-secondary-nav-trigger.menu-is-open span::before {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.cd-secondary-nav-trigger.menu-is-open span::after {
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
}

@media only screen and (min-width: 1170px) {
    .cd-secondary-nav-trigger {
        display: none;
    }
}


/* -------------------------------- 

Placeholder Sections

-------------------------------- */

.cd-section {
    margin: 0 auto;
    padding: 2em 0;
}

.cd-section h2 {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: .6em;
    font-weight: 700;
}

.cd-section p {
    line-height: 1.6;
}

@media only screen and (min-width: 1170px) {
    .cd-section {
        margin: 0 auto;
        padding: 4em 0;
    }
    .cd-section h2 {
        font-size: 30px;
        font-size: 1.875rem;
    }
    .cd-section p {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

p {
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;
}

.cd-header #cd-logo {
    text-align: center;
    padding-top: 12px;
}

.p-center {
    top: 50%;
    position: relative;
    z-index: 1;
    webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.home-slider .slide {
    position: relative;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}
.home-slider .slide:after{position: absolute; content: ''; width: 100%; height: 100vh; background-color: rgba(0,0,0,0.5); top: 0; left: 0;}

.home-slider .slide-1 {
    /* background-image: url(../images/home-slider/home-slide1.jpg); */
    background-color: #000;
}

.home-slider .slide-2 {
    background-image: url(../images/home-slider/home-slide1.jpg);
}

.home-slider .slider-texts img {
    margin: 0 auto;
}

.home-slider .slider-texts p {
    max-width: 686px;
    margin: 0 auto;
    padding-top: 10px;
}

.home-slider .slick-arrow {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    left: 35px;
    z-index: 250;
    background-color: transparent;
    color: #FFFFFF;
    font-size: 30px;
    text-align: center;
    padding: 0;
    outline: none;
    transition: all 300ms ease-in-out;
}
.bannerVid.mobile{display: none;}
.bannervid-wrap{
    aspect-ratio: 16 / 9;
    position: absolute;
    width: 105%;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
}
.home-slider .slick-next {
    right: 35px;
    left: auto;
}

.nav-bg {
    position: absolute;
    width: 100vw;
    object-fit: cover;
}

.cd-secondary-nav {
    margin-top: -40px;
    z-index: 4;
}

.nav-scroll {
    position: absolute;
    left: 50%;
    margin-left: -5px;
    top: 10px;
}

.cd-secondary-nav nav {
    padding: 50px 0 0;
}

.cd-secondary-nav nav ul {
    padding: 10px 30px;
}

.scroll-nav-logo {
    padding-right: 20px;
    position: absolute;
    left: 50%;
    margin-left: -55px;
    margin-top: -62px;
    width: 150px;
}
.social-icons
{
    width: 18px;
}

.cd-secondary-nav .social-icons a {
    padding: 15px 15px 0 0;
}

.new-right-menu ul li a {
    font-size: 14px;
    color: #007DC5;
    letter-spacing: 1px;
    padding-right: 25px;
}

.e-okul-link {
    background-color: #007DC5;
    color: #fff !important;
    border-radius: 20px;
    padding: 7px 30px;
    letter-spacing: 0 !important;
    font-weight: 700;
}

.new-right-menu ul {
    padding: 0px 0px !important;
}

.new-right-menu {
    margin-top: -5px;
}

.news {
    background-image: url(../images/news-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.tab {
    padding-top: 50px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    background: transparent;
    width: 70%;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 300;
    color: #888;
    -webkit-font-smoothing: antialiased;
}

.tabs {
    display: table;
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
    padding: 20px;
}

.tabs li {
    float: left;
    line-height: 38px;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 25%;
}

.tabs a {
    color: #888;
    font-weight: 500;
    display: block;
    letter-spacing: 0;
    outline: none;
    max-width: 215px;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    font-size: 13px;
    color: #4A4A4A;
    letter-spacing: 0;
    line-height: 18px;
    padding-left: 20px;
}

.current-bg {
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    border: 1px solid #9B9B9B;
    top: 5px;
}

.current .current-bg {
    background-color: #9B9B9B;
}

.tabs_item {
    display: none;
    padding: 30px 0;
}

.tabs_item h4 {
    font-weight: bold;
    color: blue;
    font-size: 20px;
}

.tabs_item:first-child {
    display: block;
}


/*
 .current a {
   color: #fff;
}
*/

.tab_content .tabs_item h1 {
    font-weight: 900;
    font-size: 31px;
    color: #007DC5;
    letter-spacing: 0;
    text-shadow: 10px 10px 20px rgba(0, 0, 0, 0.20);
    text-align: left;
    max-width: 345px;
    line-height: 38px;
}

.tab_content .tabs_item img {
    max-height: 500px;
    object-fit: cover;
}

.tab_content .tabs_item p {
    font-size: 14px;
    font-weight: 600;
    color: #007DC5;
    letter-spacing: 0;
    line-height: 20px;
    text-align: left;
    max-width: 330px;
    padding: 20px 0 0 40px;
}

.item-top-center {
    top: 50%;
    position: relative;
    will-change: transform;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%);
}

.news .news-title h3 {
    position: absolute;
    font-weight: 600;
    font-size: 13px;
    color: #4A4A4A;
    letter-spacing: 0;
}

.tab_content {
    border-top: 1px solid #00AEEF;
    border-bottom: 1px solid #00AEEF;
}

.news-bottom-link {
    padding: 100px 0 20px;
    margin: 0 auto;
}

.news-bottom-link-pink {
    background-image: url(../images/pink.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.news-bottom-link-yellow {
    background-image: url(../images/yellow.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.news-bottom-link-green {
    background-image: url(../images/green.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.news-bottom-link-blue {
    background-image: url(../images/blue.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.news-bottom-link h3 {
    font-size: 18px;
    color: #FFFFFF;
    letter-spacing: 1.29px;
    text-align: center;
    line-height: 32px;
    margin: 0;
    font-weight: 600;
    padding: 12px 0;
}


/*****************************************
 *  --------------------------------------*
 *  Slick                                 *
 *  --------------------------------------*
 *****************************************/

.general-title {
    padding: 100px 0 50px;
}

.general-title h1 {
    font-weight: 900;
    font-size: 32px;
    color: #4A4A4A;
    letter-spacing: 0;
    text-align: center;
}

.general-title p {
    font-size: 14px;
    color: #4A4A4A;
    letter-spacing: 0;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.schools .slider .slick-arrow {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 45%;
    margin-top: -15px;
    left: 14.5%;
    z-index: 1;
    background-color: transparent;
    color: #4A4A4A;
    font-size: 30px;
    text-align: center;
    padding: 0;
    outline: none;
    transition: all 300ms ease-in-out;
}

.schools .slider .slick-next {
    right: 14.5%;
    left: auto;
}

.cl {
    height: 500px;
    object-fit: cover;
    padding: 10px;
}

.cl-anaokulu {
    background-image: url(../images/anaokulu/anaokulu.jpg);
}

.cl-ilkokul {
    background-image: url(../images/ilkokul/ilkokul.jpg);
}

.cl-ortaokul {
    background-image: url(../images/ortaokul/ortaokul.jpg);
}

.cl-lise {
    background-image: url(../images/lise/lise.jpg);
}

.slick-active {
    padding: 20px 0;
}

.slick-active .cl {
    max-width: 80%;
    margin: 0 auto;
    background-size: cover;
    margin-bottom: 121px;
}

.slick-center {
    transform: scale(1.08);
}

.child {
    width: 100%;
}

.slide:not(.slick-active) {
    cursor: pointer;
}

.pagination {
    text-align: center;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
}

.schools .galeri-button {
    position: absolute;
    bottom: 23.3%;
    left: 10%;
}

.schools .galeri-button a {
    font-weight: 100;
    font-size: 13px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;
    background-color: #FF5156;
    padding: 15px 50px;
}

.school-img-slogan {
    position: absolute;
    right: 11%;
    top: 65.5%;
    text-align: right;
}

.school-img-slogan h1 {
    font-weight: 900;
    font-size: 100px;
    color: #FF5156;
    letter-spacing: 0;
    text-align: right;
}

.school-img-slogan h3 {
    font-size: 28px;
    color: #4A4A4A;
    letter-spacing: 0.24px;
    text-align: right;
    max-width: 463px;
    float: right;
    margin: 0;
}

.yellow-bg {
    background-color: #FFCD00 !important;
}

.green-bg {
    background-color: #42A952 !important;
}

.blue-bg {
    background-color: #007DC5 !important;
}

.yellow-c {
    color: #FFCD00 !important;
}

.green-c {
    color: #42A952 !important;
}

.blue-c {
    color: #007DC5 !important;
}

@media (max-width: 767px) {
    .tab {
        width: 100%;
    }
    .tabs a{font-size: 11px;}
    .tab_content .tabs_item img {
        max-height: 212px;
    }
    .tab_content .tabs_item h1 {
        font-size: 21px;
        line-height: 30px;
        padding: 10px 0;
    }
    .tab_content .tabs_item p {
        padding: 0 0 20px 45px;
    }
    .item-top-center {
        transform: none;
        padding-left: 20px;
    }
    .news .news-title h3 {
        padding: 50px 0 0 20px;
    }
    .tab_content {
        border: none;
        padding: 50px 0;
    }
    .tabs li {
        width: 50%;
        padding-bottom: 20px;
    }
    .news-bottom-link {
        padding: 0px 0 20px;
    }
    .general-title {
        padding: 20px 15px 50px;
    }
    h1 {
        font-size: 26px !important;
    }
    .cl {
        height: 300px;
    }
    .schools .galeri-button {
        left: 29px;
        bottom: 149px;
    }
    .schools .galeri-button a {
        padding: 10px 40px;
    }
    .school-img-slogan h3 {
        font-size: 17px;
    }
    .current-bg {
        left: 5px;
    }
    .schools .slider .slick-arrow {
        top: 39%;
        left: 8%;
    }
    .schools .slider .slick-next {
        right: 8.5%;
        left: auto;
    }
    .bannerVid.mobile{display: block;}
    .bannerVid.desktop{display: none;}
    .bannervid-wrap{
        aspect-ratio: 9 / 16;
        width: unset;
        height: 105%;
    }
}

@media (min-width: 1440px) {
    
    .school-img-slogan {
        right: 9%;
    }
    .schools .slider .slick-arrow {
        left: 18.5%;
        top: 44%;
    }
    .schools .slider .slick-next {
        right: 18.5%;
        left: auto;
    }
}

@media (min-width: 1680px) {
    
    .schools .slider .slick-arrow {
        left: 16%;
        top: 44%;
    }
    .schools .slider .slick-next {
        right: 16%;
        left: auto;
    }
}

@media (min-width: 1920px) {
    
    .schools .slider .slick-arrow {
        left: 14.5%;
        top: 44%;
    }
    .schools .slider .slick-next {
        right: 14.5%;
        left: auto;
    }
}

@media (min-width: 2560px) {
    .schools .galeri-button {
        left: 206px;
    }
    .schools .slider .slick-arrow {
        left: 11.5%;
    }
    .schools .slider .slick-next {
        right: 11.5%;
        left: auto;
    }
}

.information-gallery {
    width: 70%;
    margin: 0 auto;
}

.information-gallery .info {
    overflow: hidden;
}

.information-gallery .info-1 img {
    max-height: 624px;
    object-fit: cover;
    min-width: 660px;
}

.information-gallery .info-2 img {
    max-height: 300px;
    object-fit: cover;
}

.information-gallery .info-2 {
    display: contents;
}

.information-gallery .info-description {
    position: absolute;
    bottom: 25px;
    left: 45px;
}

.information-gallery .info-description h3 {
    font-weight: 900;
    max-width: 630px;
    font-size: 28px;
    color: #FFFFFF;
    letter-spacing: 0.67px;
    line-height: 36px;
}

.information-gallery .info-description p {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 17px;
    text-align: left;
}

.row2 .col-md-6 {
    padding-bottom: 25px;
}

.information-gallery .info-2-description h3 {
    font-size: 18px;
    color: #FFFFFF;
    letter-spacing: 0.34px;
    line-height: 22px;
    max-width: 250px;
}

.information .information-button {
    padding-right: 20px;
}

.information .information-button a {
    font-weight: 100;
    font-size: 13px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;
    background-color: #00AEEF;
    padding: 20px 40px;
    float: right;
}

.row2 .col-md-6 {
    overflow: hidden;
}

@media (max-width: 768px) {
    .information-gallery {
        width: 90%;
    }
    .information-gallery .info-1 img {
        max-height: 300px;
    }
    .information-gallery .info-1 {
        padding: 0 5px 20px 0;
    }
    .information-gallery .info-2 img {
        max-height: 307px;
    }
    .information-gallery .info-description h3 {
        font-size: 18px;
        color: #FFFFFF;
        letter-spacing: 0.34px;
        line-height: 22px;
        max-width: 260px;
    }
}

.index-links {
    max-width: 50%;
    margin: 0 auto;
    padding: 120px 0;
}

.index-links img {
    width: 100%;
}

.index-links p {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    left: 45px;
    font-size: 24px;
    letter-spacing: 0.45px;
    line-height: 30px;
}

.newsletter {
    padding: 50px 0 100px;
    /* max-width: 70%; */
    margin: 0 auto;
}

.newsletter .newsletter-texts h1 {
    font-weight: 900;
    font-size: 32px;
    color: #007DC5;
    letter-spacing: 0;
    text-align: center;
}

.newsletter .newsletter-texts p {
    font-size: 14px;
    color: #002856;
    letter-spacing: 0;
    text-align: center;
    max-width: 686px;
    margin: 0 auto;
    font-weight: 300;
    padding-top: 10px;
}

.newsletter-input {
    display: flex;
    padding-top: 65px;
}

.newsletter-input input {
    border: none;
    border-bottom: 1px solid #8DC6E8;
    width: 100%;
    font-style: italic;
    padding-bottom: 10px;
}

.newsletter-input img {
    padding: 0 50px 17px 20px;
    border-bottom: 1px solid #8DC6E8;
}

.send-icon {
    padding-right: 20px !important;
}

@media (max-width: 768px) {
    .index-links{padding: 50px 0;}
    .index-links .col-md-6 {
        margin-bottom: 20px;
    }
    .newsletter,
    .index-links {
        max-width: 90%;
    }
    .newsletter {
        padding: 0 0 100px;
    }
}

.footer {
    border-top: 14px solid #00AEEF;
    padding: 45px 0;
    background-color: #FAFAFA;
}

.footer .row,
.footer-bottom {
    max-width: 70%;
    margin: 0 auto;
}

.footer .footer-item .footer-link-title {
    font-weight: 700;
    font-size: 12px;
    color: #9B9B9B;
    letter-spacing: 1px;
    padding-bottom: 10px;
    text-align: left;
}

.footer .footer-item a {
    font-size: 12px;
    color: #9B9B9B;
    letter-spacing: 1px;
    line-height: 20px;
}

.footer .social-media .social-icons a {
    color: #007DC5;
    font-size: 25px;
    margin-right: 10px;
}

.footer-bottom {
    padding: 8px 0 0;
}
.footer-bottom .col-md-8{text-align: center;}
.footer-bottom .copyright p {
    font-size: 10px;
    color: #9B9B9B;
    letter-spacing: 1px;
    text-align: left
}

.footer-bottom .footer-bottom-links a {
    font-size: 10px;
    color: #9B9B9B;
    letter-spacing: 1px;
    font-weight: 600;
    margin-right: 10px;
    text-align: left;
}

.created a {
    text-decoration: underline;
    color: #9B9B9B;
    font-size: 10px;
    letter-spacing: 1px;
}

.created p {
    color: #9B9B9B;
    font-size: 10px;
    color: #9B9B9B;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .footer .row .col-md-2 {
        display: inline-grid;
    }
    .footer-item2 {
        display: block !important;
        text-align: center;
    }
    .footer .row,
    .footer-bottom {
        max-width: 90%;
    }
    .footer .row .col-md-2 ul {
        padding: 20px 0;
    }
    .footer-item img {
        padding-bottom: 20px;
    }
    .footer-item3 {
        padding-left: 50px;
    }
    .footer-item4 {
        padding-left: 50px;
    }
    }
    .footer-bottom .copyright p {
        text-align: center;
    }
    .footer-bottom .footer-bottom-links a {
        font-size: 9px;
    }
    .footer-bottom-links {
        padding-left: 25px;
    }
    .newsletter-input input {
        border-radius: 0 !important;
    }
}

.home-2 {
    height: 400px !important;
    margin-top: 100px;
}

.cd-secondary-nav2 {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

.nav-bg2 {
    display: none;
}

.cd-secondary-nav2 nav {
    background-color: #fff;
}

.search-menu2 header {
    padding: 20px 5px 37px 5px;
}

.home-2 .home-slider {
    margin-top: 100px;
}

.home-2 .home-slider .slide {
    height: 400px;
    padding: 0;
}

.home-2 .home-slider .slide-1 {
    background-image: url(../images/lise/lise.jpg);
}

.home-2 .home-slider .slide-2 {
    background-image: url(../images/lise/lise.jpg);
}
.home-2 .home-slider .slide-anaokulu{background-image: url(../images/anaokulu/anaokulu.jpg);}
.home-2 .home-slider .slide-ilkokul{background-image: url(../images/ilkokul/ilkokul.jpg);}
.home-2 .home-slider .slide-ortaokul{background-image: url(../images/ortaokul/ortaokul.jpg);}

.home-2 .slider-texts-description {
    max-width: 500px;
    left: 16%;
}

.home-2 .home-slider .slide .slider-texts {
    width: 50%;
    height: 100%;
    background-color: rgba(0, 125, 197, 1);
    mix-blend-mode: multiply;
    position: absolute;
    left: 0;
    top: 0;
}

.home-2 .home-slider .slide .slider-texts-ortaokul {
    background-color: #42A952;
}

.home-2 .home-slider .slide .slider-texts-ilkokul {
    background-color: #FFCD00;
}

.home-2 .home-slider .slide .slider-texts-anaokulu {
    background-color: #FF5156;
}

.home-2 .slider-texts-description h1 {
    font-weight: 900 !important;
    font-size: 31px !important;
    color: #FFFFFF !important;
    letter-spacing: 0 !important: ;
    text-shadow: 10px 10px 20px rgba(0, 0, 0, 0.20) !important;
    max-width: 345px;
    text-align: left;
}

.home-2 .slider-texts-description p {
    font-weight: 700 !important;
    font-size: 14px !important;
    color: #FFFFFF !important;
    letter-spacing: 0 !important;
    line-height: 20px !important;
    max-width: 322px;
    text-align: left;
    padding: 30px 0 0 35px;
}

.home-2 .home-slider .slick-arrow {
    background-color: #007DC5;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
}

.home-2 .home-slider .slick-prev {
    padding-right: 7px;
}

.home-2 .home-slider .slick-next {
    padding-left: 3px;
}

.home-2 .ortaokul .slick-arrow {
    background-color: #42A952;
}

.home-2 .ilkokul .slick-arrow {
    background-color: #FFCD00;
}

.home-2 .anaokulu .slick-arrow {
    background-color: #FF5156;
}

@media (max-width: 768px) {
    .home-2 .home-slider{margin-top: 52px;}
    .search-menu2 header {
        padding: 20px 5px 40px 5px;
    }
    .home-2 .home-slider .slide .slider-texts {
        width: 100%;
    }
    .home-2 .slider-texts-description {
        max-width: 500px;
        left: 14%;
    }
    .home-2 .slider-texts-description h1 {
        max-width: 345px;
        font-size: 20px !important;
    }
    .home-2 .slider-texts-description p {
        font-size: 12px;
        max-width: 260px !important;
        padding: 15px 0 0 0;
    }
}


.school-home-bottom {
    padding: 40px 0 0;
}
/*
.school-home-bottom-ortaokul {
    background-color: #42A952;
}

.school-home-bottom-ilkokul {
    background-color: #FFCD00;
}

.school-home-bottom-anaokulu {
    background-color: #FF5156;
}
*/
.school-home-bottom .row {
    max-width: 70%;
    margin: 0 auto;
}

.school-home-bottom .school-home-bottom-description img {
    display: block;
    width: 100%;
    box-shadow: 0 0 30px rgba(0, 40, 86, 0.2);
}

.school-home-bottom .school-home-bottom-description p {
    position: absolute;
    font-size: 16px;
    letter-spacing: 0.3px;
    top: 50%;
    margin-top: -10px;
    left: 40px;
}

.information2 {
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .school-home-bottom {
        padding: 40px 0 20px 0;
    }
    .school-home-bottom .row {
        max-width: 90%;
    }
    .school-home-bottom .row .col-md-4 {
        margin-bottom: 20px;
    }
}

.alt-bottom-title {
    background-image: url(../images/lise/alt-title-bg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 50px 0;
    margin-top: 102px;
}

.alt-bottom-title-anaokulu {
    background-image: url(../images/anaokulu/alt-title-anaokulu.svg);
}
.alt-bottom-title-ilkokul {
    background-image: url(../images/ilkokul/alt-title-ilkokul.svg);
}
.alt-bottom-title-ortaokul {
    background-image: url(../images/ortaokul/alt-title-ortaokul.svg);
}
.alt-bottom-title-lise {
    background-image: url(../images/lise/alt-title-bg.svg);
}
.alt-bottom-title .alt-bottom-title-description {
    max-width: 70%;
    margin: 0 auto;
}

.alt-bottom-title .alt-bottom-title-description h1 {
    font-weight: 900;
    font-size: 31px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-shadow: 10px 10px 20px rgba(0, 0, 0, 0.20);
    text-align: left;
}

.alt-bottom-title .alt-bottom-title-description p {
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 0;
    line-height: 20px;
    text-align: left;
    padding-left: 45px;
}

.alt-bottom-title .alt-bottom-title-description a {
    font-weight: 700;
    font-style: initial;
}

.center-content {
    padding: 50px 0 100px 0;
}

.center-content .accordion .link:after {
    display: none;
}

.center-content .row {
    max-width: 70%;
    margin: 0 auto;
}

.center-content .accordion {
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 10px 0 0 0;
}

.center-content .accordion-anaokulu .link {
    background-color: #FF5156 !important;
}
.center-content .accordion-ilkokul .link {
    background-color: #FFCD00 !important;
}
.center-content .accordion-ortaokul .link {
    background-color: #42A952 !important;
}
.center-content .accordion-lise .submenu {
    background-color: #007DC5;
}

.center-content .accordion .link {
    font-weight: 900%;
    font-size: 18px;
    background-color: #00AEEF;
    color: #FFFFFF;
    letter-spacing: 0;
    cursor: pointer;
    display: block;
    padding: 20px 15px 20px 42px;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    width: 100%;
}

.center-content .accordion .link-contact {
    font-weight: 300;
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 0;
    padding: 10px 15px 10px 42px;
}

.title-link {
    margin-bottom: 1px;
}

.center-content .accordion li:last-child .link {
    border-bottom: 0;
}

.center-content .accordion li i {
    position: absolute;
    top: 16px;
    left: 12px;
    font-size: 18px;
    color: #fff;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.center-content .accordion li i.fa-chevron-down {
    right: 32px;
    left: auto;
    font-size: 16px;
    top: 30px;
}

.center-content .accordion li.open i.fa-chevron-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}


/**
 * Submenu
 -----------------------------*/

.center-content .submenu {
    display: none;
    background: #007DC5;
    font-size: 14px;
}
.center-content-ilkokul .submenu{
    background: #f5c500;
}
.center-content-ortaokul .submenu{
    background: #47d05c;
}
.center-content-anaokulu .submenu{
    background: #ED1C24;
}


.center-content .submenu li {
    border-bottom: none;
}

.center-content .submenu a {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 12px;
    padding-left: 42px;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.center-content .accordion .submenu {
    padding: 0;
}

.center-content-active {
    font-weight: 600 !important;
}

.content-table table,
th,
td {
    border: solid 1px #EEEEEE;
    padding: 15px 0 15px 60px;
    font-size: 16px;
    color: #4A4A4A;
    letter-spacing: 0;
}

.content-table table {
    border-collapse: collapse;
    caption-side: bottom;
    width: 100%;
}

.content-table caption {
    font-size: 16px;
    font-weight: bold;
    padding-top: 5px;
}

.content-table-title h1 {
    font-weight: 900;
    font-size: 32px !important;
    color: #4A4A4A;
    letter-spacing: 0;
    text-align: center;
    margin: 0;
}

.content-table-title-2 h1, .content-table-title-2 p{
    text-align: left;
        max-width: 700px;
}

.content-table-title p {
    color: #4A4A4A;
    padding: 10px 0 30px;
    text-align: left;
}

.takvim-download-link p,
.takvim-download-link a {
    font-weight: 700;
    font-style: italic;
    font-size: 16px;
    color: #4A4A4A;
    letter-spacing: 0;
    padding-top: 35px;
}

.takvim-download-link a {
    color: #00AEEF;
}

@media (max-width: 768px) {
    .center-content .row {
        max-width: 90%;
    }
    .content-table-title h1 {
        font-size: 18px !important;
        padding-top: 50px;
    }
    .content-table-title p {
        padding: 10px 0 10px;
    }
    .content-table table,
    th,
    td {
        font-size: 14px;
        padding: 15px 5px 15px 20px;
    }
}

.content-table-title-contact h1,
.content-table-title-contact p {
    text-align: left;
}

.content-table-title-contact p {
    max-width: 620px;
}

.contact-form .group {
    position: relative;
    margin-bottom: 45px;
}



.contact-form .form-group{
  display: flex;
}
.contact-form .group2{
  margin-left: 30px;
}
.contact-form .group3{
    width: 85%;
    margin-top: 50px;
}
.contact-form .group3 input{
    width: 100%;
}
.contact-form .group3 .bar{
    width: 100%;
}
.contact-form .group3 input:focus ~ label, input:valid ~ label{
    top: -60px;
}

.contact-form input {
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 400px;
    border: none;
    border-bottom: 1px solid #757575;
    font-size: 14px;
    color: #4A4A4A;
    letter-spacing: 0;
}

.contact-form input:focus {
    outline: none;
}


/* LABEL ======================================= */

.contact-form label {
    color: #999;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    font-size: 14px;
    color: #4A4A4A;
    letter-spacing: 0;

}


/* active state */

.contact-form input:focus ~ label,
input:valid ~ label {
    top: -20px;
    font-size: 14px;
    color: #9B9B9B;
}


/* BOTTOM BARS ================================= */

.contact-form .bar {
    position: relative;
    display: block;
    width: 400px;
}

.contact-form .bar:before,
.bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 0;
    position: absolute;
    background: #00AEEF;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.contact-form .bar:before {
    left: 50%;
}

.contact-form .bar:after {
    right: 50%;
}


/* active state */

.contact-form input:focus ~ .bar:before,
input:focus ~ .bar:after {
    width: 50%;
}


/* HIGHLIGHTER ================================== */

.contact-form .highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}


/* active state */

.contact-form input:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}


/* ANIMATIONS ================ */

@-webkit-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }
    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }
    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #5264AE;
    }
    to {
        width: 0;
        background: transparent;
    }
}




/*Contact form select box*/
.lm-select {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  width: 400px;
  text-align: left;
}
.lm-select * {
  box-sizing: border-box;
}
.lm-select-ico{
  position: absolute;
  top: 50%;
  right: -15px;
  margin-top: -23px;
  border-width: 6px;
  border-style: solid;
  border-color: #00AEEF transparent transparent;
}
.lm-select-value {
  padding: 10px ;
  cursor: pointer;
  z-index: 4;
  border-bottom: 1px solid #4A4A4A;
  border-radius: 0;
  width: 400px;
  font-size: 14px;
  color: #4A4A4A;
  letter-spacing: 0;
  margin-left: 30px;
}
.lm-select-active .lm-select-value {
  z-index: 1;
}
.lm-select-options {
  position: absolute;
  top: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  left: 30px;
  width: 100% ;
  visibility: hidden;
  z-index: 3;
  opacity: 0;
  transform: scale(.9,.9);
  background: #fff;
  box-shadow: 0 0 16px 0 rgba(0,0,0,.14);
  border-radius: 8px;
  overflow:hidden;
}
.lm-select-animating .lm-select-options {
  visibility: visible;
}
.lm-select-active .lm-select-options { 
  transform: scale(1,1);
  opacity: 1;
}
 
.lm-select-list {
  position: relative;
  width: 100%;
  max-height: 266px;
  overflow: auto;
}

.lm-select-item {
  padding: 12px 11px;
  cursor: pointer;
}
.lm-select-item:hover{
   background: rgba(0, 174, 239, 0.1);
}
.lm-select-item:active{
  background: rgba(0, 174, 239, 0.1);
  transition: background 0.2s ease;
}
.lm-select-item.lm-select-selected{
  background: rgba(0, 174, 239, 0.5);
}

.lm-select-overflow {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: none;
}

.lm-select-active .lm-select-overflow{
  display: block;
}


/* Contact form checkbox */


.contact-form .main-wrapper {
    padding-top: 20px;
}
*{
  box-sizing: border-box;
}
.contact-form .cutsom-checkbox-row input[type="checkbox"] {
    margin: 0;
    opacity: 0;
}
.contact-form .cutsom-checkbox-row {
    position: relative;
    margin-bottom: 15px;
}
.contact-form .cutsom-checkbox-row input[type="checkbox"] + label {
    padding-left: 17px;
  display: inline-block;
}
.contact-form .cutsom-checkbox-row input[type="checkbox"] + label::before {
    border-color: #dddddd;
    border-radius: 4px;
    border-style: solid;
    border-width: 1px;
    content: "";
    cursor: pointer;
    display: inline-block;
    height: 25px;
    left: 0;
    position: absolute;
    transition: 0.3s linear all;
    width: 25px;
}
.contact-form .cutsom-checkbox-row input[type="checkbox"] + label::before {
    border-color: #9B9B9B;
    border-radius: 0;
    transform: scale(1);
}
.contact-form .cutsom-checkbox-row input[type="checkbox"]:checked + label::before {
    border-color: #3bb6b6;
    border-style: dotted;
    transition: 0.3s linear all;
}
.contact-form .checkbox-s .cutsom-checkbox-row input[type="checkbox"]:checked + label::before {
    background-color: transparent;
    border-style: solid;
    transform: scale(1.2);
    border-color: #00AEEF;
}
.contact-form .checkbox-s .cutsom-checkbox-row input[type="checkbox"]:checked + label::after {
    transform: scale(1);
    opacity: 1;
}
.contact-form .checkbox-s .cutsom-checkbox-row  input[type="checkbox"]:checked + label::after {
    color: #00AEEF;
    content: "\f00c";
    cursor: pointer;
    font-family: 'FontAwesome';
    left: 5px;
    position: absolute;
    top: 4px;
    transform: scale(1);
    transition: 0.3s linear all;
}
.contact-form .checkbox-s .cutsom-checkbox-row  input[type="checkbox"] + label::after {
    transform: scale(2);
    opacity: 0;
}
.contact-form .checkbox-s .cutsom-checkbox-row  input[type="checkbox"] + label::after {
    content: "";
    transform: scale(0);
    transition: 0.3s linear all;
}



.contact-form .checkbox-s .main-wrapper #checkbox1{
    width: 30px;
    height: 30px;
}

.contact-form .checkbox-s .main-wrapper label:before, .checkbox-s .main-wrapper label:after{
        margin-top: 20px;
}

.contact-form .checkbox-s{
    display: flex;
    position: relative;
}
.contact-form .checkbox-text{
        padding: 22px 0 0 20px;     
}
.contact-form .checkbox-text a{
font-weight: 600;
font-size: 13px;
color: #4A4A4A;
letter-spacing: 0;}
.checkbox-text span{
    font-weight: 300;
}


.contact-form .checkbox-s .send-button{position: absolute; right: 147px; top: 30px; }
.contact-form .checkbox-s .send-button a{
    font-weight: 100;
font-size: 13px;
color: #FFFFFF;
letter-spacing: 0;
text-align: center;
background-color: #00AEEF;
padding: 15px 55px;
}

.contact-form .contact-form-bottom-description p{
font-size: 11px;
color: #4A4A4A;
letter-spacing: 0;
max-width: 445px;
text-align: left;
line-height: 14px;
padding-top: 10px;
}


@media (max-width: 768px){
    .contact-form .contact-form .form-group{display: block;}
    .contact-form .contact-form .group2{margin-left: 0;}
    .contact-form .lm-select-value{margin-left: 0; width: 300px;}
    .contact-form .contact-form input, .contact-form .bar{width: 300px;}
    .contact-form .contact-form .group3 input{width: 300px;}
    .contact-form .checkbox-s .send-button{left: 0; top: 65px;}
    .contact-form .main-wrapper{padding-top: 0;}
    .contact-form .checkbox-text{padding: 3px 0 0 15px;}
    .contact-form .contact-form-bottom-description p{padding-top: 90px;}
    .contact-form .lm-select-options{left: 0; width: 100%;}
    .contact-form .lm-select{width: 300px;}
    .contact-form .lm-select-ico{right: 0px;
    margin-top: -5px;}
}





.location-map{
    max-width: 100% !important;
}
.location-map .location img, .location-map .location{
    max-width: 320px;
        padding: 0;
}
.location-map .location img{padding: 5px;}
.location-map .location .location-item {
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.location-map .location .location-item .location-description h6{
    font-weight: 700;
font-size: 14px;
color: #4A4A4A;
text-align: left;
}
.location-map .location .location-description{
    padding: 10px 0 40px 20px;
}
.location-map .location .location-description-button p{
font-size: 13px;
color: #4A4A4A;
text-align: left;
max-width: 130px;
line-height: 18px;
}
.location-map .location .location-description-button a{
font-size: 13px;
color: #4A4A4A;
line-height: 18px;
letter-spacing: 0;
}
.google-map-button{position: relative;}
.google-map-button a{
    font-weight: 300;
font-size: 13px;
color: #FFFFFF !important;
letter-spacing: 0;
text-align: center;
background-color: #00AEEF;
    padding: 15px 70px;
    width: 100%;
    position: absolute;
    height: 50px;
}
.location-map .location-2{
    margin-left: 30px;
}

@media (max-width: 768px){
  .location-map .location-2{
    margin: 50px 0 0;
  }  
  .scroll-nav-logo{    margin-top: -44px; width: 150px;}
  .contact-form .form-group{display: block;}
  .contact-form .group2{margin-left: 0;}
  .contact-form input{width: 300px; border-radius: 0;}
  .google-map-button a{padding: 20px 107.5px;}
}


.contact-carrier a{font-weight: 700;}




#lightgallery{padding-left: 0;}
.demo-gallery > ul > li {
  display: inline-block;
  list-style: outside none none;
  max-width: 300px;
  padding: 10px;
}

.demo-gallery > ul > li a {
  display: block;
  overflow: hidden;
  position: relative;
  float: left;
}

.demo-gallery > ul > li a > img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
      min-height: 300px;
    object-fit: cover;
}

.demo-gallery > ul > li a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.demo-gallery > ul > li a:hover .demo-gallery-poster > img {
  opacity: 1;
}

.demo-gallery > ul > li a .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;
}

.demo-gallery > ul > li a .demo-gallery-poster > img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  max-width: 20px;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.demo-gallery > ul > li a:hover .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.5);
}

.demo-gallery .justified-gallery > a > img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  -moz-transition: -moz-transform 0.15s ease 0s;
  -o-transition: -o-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
}

.demo-gallery .justified-gallery > a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.demo-gallery .justified-gallery > a:hover .demo-gallery-poster > img {
  opacity: 1;
}

.demo-gallery .justified-gallery > a .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  -o-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;
}

.demo-gallery .justified-gallery > a .demo-gallery-poster > img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.demo-gallery .justified-gallery > a:hover .demo-gallery-poster {
  background-color: rgba(0, 0, 0, 0.5);
}

.demo-gallery .video .demo-gallery-poster img {
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  opacity: 0.8;
  width: 48px;
}

.demo-gallery.dark > ul > li a {
  border: 3px solid #04070a;
}









.link-2{width: 100% !important; text-align: left;}
.iframe-tur .container{padding: 50px 0; width: 90%; margin: 0 auto}
.iframe-tur .container .col-md-6{padding-top: 30px;}
.new-team img{max-width: 100%;}
.new-team{padding-top: 30px;}
.new-team .row{max-width: 100%;}
.new-team .col-md-4{min-height: 100%; height: 500px;}
.new-team .new-team-item{height: 100%; position: relative;}
.new-team .new-team-item-description{padding: 20px 0 20px 10px;}
.new-team .new-team-item-description h6{margin: 0;}
.new-team .new-team-item-description h2{font-size: 18px; font-weight: 700; margin: 0; padding-top: 10px;}


.popup{
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50% , -50%);
	height: 85vh;
	z-index: 9999;
	opacity: 0;
	user-select: none;
	pointer-events: none;
	transition: opacity 500ms ease;
}
.closebtn{
	position: absolute;
	right: 0;
	top: 0;
}
.popup.active{
	opacity: 1;
	pointer-events: unset;
}

.popup img{
    max-width: 100%;
    max-height: 100%;
}
@media (max-width: 768px){
    .new-team .col-md-4{height: auto; padding-bottom: 15px;}
    .popup{
		width: 95%;
		height: fit-content;
        max-height: 100vh;
        max-width: 100vw;
	}
}




























