/*
 *---------------------------------------------------------------
 * DEVELOPMENT UTILITIES - REMOVE BEFORE GOING LIVE
 *---------------------------------------------------------------
 * Move this into its own stylesheet...
 */
 
html:after {
    background: red;
    padding: 5px;
    content: "< 30em";
    font-size: 0.7em;
    position: fixed;
    display: none;
    color: #ffffff;
    z-index: 999;
    left: 0;
    top: 0;
}

@media screen and (min-width: 30.375em) {
    html:after {
        content: "> 30em";
    }
}

@media screen and (min-width: 40.375em) {
    html:after {
        content: "> 40em";
    }
}

@media screen and (min-width: 56.875em) {
    html:after {
        content: "> 56em";
    }
}

@media screen and (min-width: 61.5625em) {
    html:after {
        content: "> 61em";
    }
}

@media screen and (min-width: 65.625em) {
    html:after {
        content: "> 65em";
    }
}

@media screen and (min-width: 74.375em) {
    html:after {
        content: "> 74em";
    }
}

/*
 *---------------------------------------------------------------
 * LAYOUT & UTILITIES
 *---------------------------------------------------------------
 *
 */


:root {
    --red: #fc0000;
    --blue: #1a2666;
    --darkblue: #0d1233;
    --redd: #fc0000;
    --softgreen: rgb(205, 229, 198, 0.9);
    --lightblue: #eaeaf2;
    --transblue: rgb(26, 38, 102, 0.8);
    --newblue: #777c9e;
    --gold: #FFD23D;

    --white: #ffffff;
    --black: #111111;

    --body-font-size: 0.8888888888888888em;
    --body-font-weight: 500;

    --body-font: "Mulish", sans-serif;
    --title-font: "Handlee", cursive;
}

html {
    box-sizing: border-box;
    height: 100%;
    font-size: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    /* font-size: 0.75em;  - 12px */
    /* font-size: 0.875em; - 14px */
    /* font-size: 1em;     - 16px */
    font-size: var(--body-font-size); /* - 18px */
    font-family: var(--body-font);
    font-weight: var(--body-font-weight);
    color: #777777;
    -webkit-font-smoothing: antialiased;
    /*     line-height: 1.65em; */
    padding: 0;
    margin: 0;
}

.home:after {
    content: "mobile";
    background: red;
    color: #fff;
    display: none;
    z-index: 99999;
    position: fixed;
    padding: 3px;
    font-size: 8px;
    opacity: 0.5;
    top: 0;
}

::selection {
    background-color: #333;
    color: #fff;
}

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

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

.clear:before,
.clear:after {
    content: "";
    display: table;
}

.clear:after {
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.hidden {
    display: none;
}

.w90 {
    width: 90%;
}

.w80 {
    width: 80%;
}

.w75 {
    width: 75%;
}

.w70 {
    width: 70%;
}

.w60 {
    width: 60%;
}

.w50,
.half {
    width: 50%;
}

.w40 {
    width: 40%;
}

.w33-3,
.third {
    width: 33.3333333%;
}

.w30 {
    width: 30%;
}

.w25,
.quarter {
    width: 25%;
}

.w20,
.fifth {
    width: 20%;
}

.w16-6,
.sixth {
    width: 16.6666666%;
}

.w12-5,
.eighth {
    width: 12.5%;
}

.w10,
.tenth {
    width: 10%;
}

.w5 {
    width: 5%;
}

/*
 *---------------------------------------------------------------
 * A TAG RESET
 *---------------------------------------------------------------
 *
 */

a:link {
    text-decoration: none;
    color: var(--red);
}

a:visited {
    text-decoration: none;
    color: var(--red);
}

a:hover {
    text-decoration: underline;
    color: var(--newblue);
}

a:active {
    text-decoration: underline;
    color: red;
}

/* Stop iPhone changing numbered links to telephone numbers */

a[href^="tel"] {
    text-decoration: inherit;
    color: inherit;
}

/*
 *---------------------------------------------------------------
 * DEFAULT TEXT COLOURS
 *---------------------------------------------------------------
 *
 */
h1 {
    color: var(--red);
}

h2 {
    color: var(--red);
    text-decoration: underline;
}

h3 {
    color: #13c975;
}

h4 {
    color: #8913c9;
}

.txtBlack {
    color: #000;
}

.txtWhite {
    color: #fff;
}

.txtGrey {
    color: #666;
}

.txtBlue {
    color: #2c82c9;
}

.txtPurple {
    color: #bb1cc9;
}

.txtGreen {
    color: #13c975;
}

.txtRed {
    color: #c92a12;
}

.txtCenter {
    text-align: center;
}

.txtRight {
    text-align: right;
}

p {
	line-height: 1.5;
}

.content ul, .content ol {
	padding-left: 20px;
}


.content ol li, .content ul li {
	line-height: 1.5;
}

.img_center {
	margin:  0 auto;
	max-width: 700px;
	border-radius: 10px;
}

.content img {
	width: 100%;
	height: auto;
}

hr {
	border: 0;
	border-top: 1px solid #dddadf;
}

/*
 *---------------------------------------------------------------
 * DEFAULT BACKGROUND COLOURS
 *---------------------------------------------------------------
 *
 */
.bgBlack {
    background-color: #000;
}

.bgWhite {
    background-color: #fff;
}

.bgGrey {
    background-color: #666;
}

.bgBlue {
    background-color: #2c82c9;
}

.bgPurple {
    background-color: #bb1cc9;
}

.bgGreen {
    background-color: #13c975;
}

.bgRed {
    background-color: #c92a12;
}

/*
 *---------------------------------------------------------------
 * DEFAULT FORMS
 *---------------------------------------------------------------
 *
 */
fieldset {
    border: none;
    padding: 0;
}

label {
    padding: 0.5em 0;
    display: inline-block;
    color: #666;
}

input,
select,
textarea {
    border: 1px solid #d1d1d1;
    width: 100%;
    padding: 1em;
    outline: none;
    transition: box-shadow 0.3s ease-in-out;
    /*transition: border 0.30s ease-in-out;*/
}

textarea {
    resize: none;
}

select {
    background: transparent url("../assets/downArrow.svg") no-repeat right;
    background-size: contain;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 2px rgba(81, 203, 238, 1);
    /*border:1px solid rgba(81, 203, 238, 1);*/
}

input[type="submit"] {
    width: 20%;
    margin: 1em 0;
    background-color: #2c82c9;
    color: #fff;
    transition: background-color 0.8s ease;
}

input[type="submit"]:hover {
    background-color: #bb1cc9;
}

/* CHECKBOX AND RADIO */
/* Customize the label (the container) */
.chkRdLabel {
    display: block;
    position: relative;
    padding-left: 2em;
    padding-top: 0.1em;
    margin-bottom: 0.5em;
    cursor: pointer;
    /*font-size: 22px;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.chkRdLabel input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.customCheckbox,
.customRadio {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.5em;
    width: 1.5em;
    background-color: #eee;
}

.customRadio {
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.chkRdLabel:hover input ~ .customCheckbox,
.chkRdLabel:hover input ~ .customRadio {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.chkRdLabel input:checked ~ .customCheckbox,
.chkRdLabel input:checked ~ .customRadio {
    background-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.customCheckbox:after,
.customRadio:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.chkRdLabel input:checked ~ .customCheckbox:after,
.chkRdLabel input:checked ~ .customRadio:after {
    display: block;
}

/* Style the checkmark/indicator */
.chkRdLabel .customCheckbox:after {
    left: 0.6em;
    top: 0.35em;
    width: 0.3em;
    height: 0.6em;
    border: solid white;
    border-width: 0 0.2em 0.2em 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Style the indicator (dot/circle) */
.chkRdLabel .customRadio:after {
    top: 0.42em;
    left: 0.45em;
    width: 0.6em;
    height: 0.6em;
    border-radius: 50%;
    background: white;
}

/* END CHECKBOX AND RADIO */

::-webkit-input-placeholder {
    color: var(--black);
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    color: var(--black);
}

::-moz-placeholder {
    color: var(--black);
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
    color: var(--black);
}

:-ms-input-placeholder {
    color: var(--black);
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
    color: transparent;
}

.error input,
.error textarea {
    border: 1px solid var(--red);
    background: var(--lightblue);
}

.field_error {
    color: #9d9d9d;
    font-size: 0.6em;
    margin: 0.5em 0;
}

/*
 *---------------------------------------------------------------
 * TABLES
 *---------------------------------------------------------------
 *
 */
table {
    padding: 0.4em;
}

tr:nth-child(odd) {
    background: #f9f9f9;
}

th,
td {
    border: 1px solid #d1d1d1;
    padding: 0.6em;
    vertical-align: top;
}

/*
 *---------------------------------------------------------------
 * RESPONSIVE SLIDER JS PLUGIN
 *---------------------------------------------------------------
 *
 */

.jsSlides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}

.jsSlides li {
    -webkit-backface-visibility: hidden;
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 0;
}

.jsSlides li:first-child {
    position: relative;
    display: block;
    float: left;
}

.jsSlides img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    border: 0;
}

/*
 *---------------------------------------------------------------
 * LIVE SEARCH
 *---------------------------------------------------------------
 *
 */

.searchBox {
    width: 100%;
    text-align: center;
    display: none;
    height: 54px;
/*     opacity: 0.8; */
    pposition: fixed;
    z-index: 999;
}

.searchBox .main {
    background-color: var(--darkblue);
}

.searchBox input {
    width: 60%;
    margin: 10px auto;
    padding: 6px;
}

.closeSearch {
    float: right;
    padding: 10px 20px;
    margin: 2px;
    cursor: pointer;
}

.liveSearch {
/*     background-color: #666; */
    left: -9999px;
    min-height: auto;
    position: relative;
    top: 54px;
    z-index: 999;
}

.liveSearch.active {
    background-color: var(--darkblue);
    overflow: scroll;
    min-height: 100%;
    left: auto;
    opacity: 0.8;
}

/*
 *---------------------------------------------------------------
 * SITE SPECIFIC CONTENT
 *---------------------------------------------------------------
 *
 */
.mainHeader {
    border-bottom: 1px solid var(--red);
}

.mainHeader .wrap {
    display: flex;
    justify-content: space-between;
}

.mainMenu {
    /*     padding: 1em 0; */
    /*     margin: 0; */
}

.mainMenu li {
    /*     display: inline-block; */
    /*     list-style: none; */
    /*     margin-right: 0.5em; */
}

.content {
    padding: 1em 0;
}

/*
.footer {
    border-top: 1px solid black;
    text-align: right;
    padding: 1em 0;
}
*/

/*
 *---------------------------------------------------------------
 * HEADER
 *---------------------------------------------------------------
 *
 */

.home_phone {
    background: url("../assets/ka-apple.svg") center center no-repeat;
    background-size: 25px;
	width: 55px;
	height: 100%;
	display: block;
	position: absolute;
	font-size: 0;
	color: transparent;
	left: 0;
	top: 0;
/* 	outline: red solid 1px; */
	border-right: 1px solid var(--darkblue);
}

.top_links {
    background: var(--darkblue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.top_links > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top_links div {
	cursor: pointer;
}

.top_links div div > a {
    padding: 25px 0 25px 0;
    display: block;
    color: var(--white);
    position: relative;
    text-decoration: none;
    padding-right: 0;
    font-size: 0em;
    width: 50px;
}

.top_links div div:hover > a {
    color: var(--redd);
}

.top_links div div > a:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    display: block;
    background: red;
    content: "";
}

.top_links .rec a:after {
    background: url("../assets/recruitment.svg") center center no-repeat;
    background-size: 20px;
}

.top_links .qck a:after {
    background: url("../assets/quicklinks.svg") center center no-repeat;
    background-size: 30px;
}

.top_links .tra > a:after {
    background: url("../assets/translate.svg") center center no-repeat;
    background-size: 22px;
}

.top_links .sch a:after {
    background: url("../assets/search.svg") center center no-repeat;
    background-size: 20px;
}

.top_links div div > a:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: -50px;
    height: 50px;
    width: 50px;
    height: 100%;
    display: block;
    content: "";
    z-index: 0;
    background: gray;
    opacity: 0;
}

.top_links .rec a:before {
    background: var(--red) url("../assets/recruitment-y.svg") center center no-repeat;
    background-size: 20px;
}

.top_links .qck a:before {
    background: var(--red) url("../assets/quicklinks-y.svg") center center no-repeat;
    background-size: 30px;
}

.top_links .tra > a:before {
    background: url("../assets/translate-y.svg") center center no-repeat;
    background-size: 22px;
}

.top_links .sch a:before {
    background: url("../assets/search-y.svg") center center no-repeat;
    background-size: 20px;
}

.top_links div div:hover > a:before {
    opacity: 1;
    z-index: 1;
}

/*
 *---------------------------------------------------------------
 * RESPONSIVE NAVIGATION (BURGER)
 *---------------------------------------------------------------
 *
 */

.menuIcon {
    position: absolute;
    float: right;
    width: 2.1em;
    height: 1.25em;
    margin-top: 17px;
    margin-right: 0;
    border-top: 0.1em solid var(--white);
    border-bottom: 0.1em solid var(--white);
    cursor: pointer;
    top: 0;
    right: 10px;
}

.menuIcon:before {
    content: "";
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 100%;
    border-top: 0.1em solid var(--white);
}

/*
 *---------------------------------------------------------------
 * MAIN NAV
 *---------------------------------------------------------------
 *
 */

.nav {
    background: var(--transblue);
}

nav {
    width: 100%;
}

.mainMenu {
    width: 100%;
    display: none;
    padding: 0;
    margin: 0;
}

.mainMenu li {
    display: inline-block;
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
}

.mainMenu li a {
    border-top: 1px solid var(--darkblue);
}

.mainMenu li a:hover {
    color: var(--redd);
}

.mainMenu a.rsp_button {
    background: var(--darkblue);
    text-align: center;
    position: absolute;
    border-top: 0;
    width: 57px;
    height: 58px;
    right: 0;
    top: 0;
}

.mainMenu li a.menuLink220:first-child {
    border-top: 0;
}

.mainMenu li a {
    text-decoration: none;
    color: var(--white);
    padding: 20px;
    display: block;
}

.subNav {
    display: none;
    background: var(--newblue);
}

.subNav.open {
    display: block;
}

.mainMenu.on_off {
    display: block !important;
}

.subNav .mainMenu {
    display: block;
    margin: 0;
}

/*
 *---------------------------------------------------------------
 * STRUCTURE
 *---------------------------------------------------------------
 *
 */

.container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    overflow: hidden;
}

.content .wrap {
	padding: 20px;
}

.home .content .wrap h1 {
	font-weight: 400;
	font-size: 1.5em;
}

.home .content .wrap h1 b {
	font-family: var(--title-font);
	font-size: 1.6em;
	display: inline-block;
	width: 100%;
}

.content .wrap b, .content .wrap strong {
	color: var(--black);
	font-weight: 700;
}



/*
 *---------------------------------------------------------------
 * FOOTER
 *---------------------------------------------------------------
 *
 */

.footer {
    background: var(--blue);
    color: #ffffff;
    padding: 20px;
}

.footer a {
    color: #ffffff;
}

.footer .container > div {
    padding-left: 70px;
    position: relative;
}

.footer .container > div:after {
    background: url("../assets/ka-logo.svg") center center no-repeat;
    display: block;
    width: 50px;
    content: "";
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.footer .container > div > div {
    padding-left: 40px;
    position: relative;
    margin-bottom: 10px;
}

.footer .address:after {
    background: url("../assets/marker.svg") center center no-repeat;
    position: absolute;
    display: block;
    content: "";
    height: 20px;
    width: 20px;
    left: 0;
    top: 0;
}

.footer .email:after {
    background: url("../assets/email.svg") center center no-repeat;
    position: absolute;
    display: block;
    content: "";
    height: 20px;
    width: 20px;
    left: 0;
    top: 0;
}

.footer .phone:after {
    background: url("../assets/phone.svg") center center no-repeat;
    position: absolute;
    display: block;
    content: "";
    height: 20px;
    width: 20px;
    left: 0;
    top: 0;
}

/*
 *---------------------------------------------------------------
 * FOOTER (SOCIAL MEDIA)
 *---------------------------------------------------------------
 *
 */

.from_our {
    background: var(--newblue);
}

.from_our h2 {
    font-family: var(--title-font);
    text-align: center;
    font-weight: 400;
    color: var(--white);
    font-size: 2em;
}

.social_app.pad {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.social_app .title {
}

.social_app > div {
    position: relative;
}

.social_app > div a {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}

.social_app > div .title {
    padding: 18px 15px 18px 60px;
    font-size: 1.4em;
    background: var(--lightblue);
    position: relative;
    color: var(--blue);
    width: 100%;
    left: 0;
    bottom: 0;
}

.from_our > div {
    padding: 20px 0;
}

.social_app > div .title.one:after {
    background: url("../assets/twitter-icon.svg") center center no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    height: 100%;
    width: 40px;
    left: 10px;
    top: 0;
}

.social_app > div .title.two:after {
    background: url("../assets/instagram-icon.svg") center center no-repeat;
    background-size: contain;
    position: absolute;
    display: block;
    content: "";
    height: 100%;
    width: 40px;
    left: 10px;
    top: 0;
}

.social_app > div .title.three:after {
    background: url("../assets/facebook-icon.svg") center center no-repeat;
    background-size: contain;
    position: absolute;
    display: block;
    content: "";
    height: 100%;
    width: 40px;
    left: 10px;
    top: 0;
}

.social_wrap > .one {
    padding: 0 20px;
}

.social_wrap > .two {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    margin-top: -59px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    display: none;
}

/*
 *---------------------------------------------------------------
 * KB SLIDER EFFECTS
 *---------------------------------------------------------------
 *
 */

@media screen and (min-width: 0\0) {
    .kb_slider {
        height: 600px;
    }
}

@-webkit-keyframes right {
    from {
        -webkit-transform: translateX(calc((-4vw + -4vh + -4%) / 3)) rotate(0.01deg);
        transform: translateX(calc((-4vw + -4vh + -4%) / 3)) rotate(0.01deg);
        -ms-transform: translateX(-4%);
    }
    to {
        -webkit-transform: translateX(calc((4vw + 4vh + 4%) / 3)) rotate(0.01deg);
        transform: translateX(calc((4vw + 4vh + 4%) / 3)) rotate(0.01deg);
        -ms-transform: translateX(4%);
    }
}

@keyframes right {
    from {
        -webkit-transform: translateX(calc((-4vw + -4vh + -4%) / 3)) rotate(0.01deg);
        transform: translateX(calc((-4vw + -4vh + -4%) / 3)) rotate(0.01deg);
        -ms-transform: translateX(-4%);
    }
    to {
        -webkit-transform: translateX(calc((4vw + 4vh + 4%) / 3)) rotate(0.01deg);
        transform: translateX(calc((4vw + 4vh + 4%) / 3)) rotate(0.01deg);
        -ms-transform: translateX(4%);
    }
}

@-webkit-keyframes left {
    from {
        -webkit-transform: translateX(calc((4vw + 4vh + 4%) / 3)) rotate(0.01deg);
        transform: translateX(calc((4vw + 4vh + 4%) / 3)) rotate(0.01deg);
        -ms-transform: translateX(4%);
    }
    to {
        -webkit-transform: translateX(calc((-4vw + -4vh + -4%) / 3)) rotate(0.01deg);
        transform: translateX(calc((-4vw + -4vh + -4%) / 3)) rotate(0.01deg);
        -ms-transform: translateX(-4%);
    }
}

@keyframes left {
    from {
        -webkit-transform: translateX(calc((4vw + 4vh + 4%) / 3)) rotate(0.01deg);
        transform: translateX(calc((4vw + 4vh + 4%) / 3)) rotate(0.01deg);
        -ms-transform: translateX(4%);
    }
    to {
        -webkit-transform: translateX(calc((-4vw + -4vh + -4%) / 3)) rotate(0.01deg);
        transform: translateX(calc((-4vw + -4vh + -4%) / 3)) rotate(0.01deg);
        -ms-transform: translateX(-4%);
    }
}

@-webkit-keyframes down {
    from {
        -webkit-transform: translateY(calc((-4vw + -4vh + -4%) / 3)) rotate(0.01deg);
        transform: translateY(calc((-4vw + -4vh + -4%) / 3)) rotate(0.01deg);
        -ms-transform: translateY(-4%);
    }
    to {
        -webkit-transform: translateY(calc((4vw + 4vh + 4%) / 3)) rotate(0.01deg);
        transform: translateY(calc((4vw + 4vh + 4%) / 3)) rotate(0.01deg);
        -ms-transform: translateY(4%);
    }
}

@keyframes down {
    from {
        -webkit-transform: translateY(calc((-4vw + -4vh + -4%) / 3)) rotate(0.01deg);
        transform: translateY(calc((-4vw + -4vh + -4%) / 3)) rotate(0.01deg);
        -ms-transform: translateY(-4%);
    }
    to {
        -webkit-transform: translateY(calc((4vw + 4vh + 4%) / 3)) rotate(0.01deg);
        transform: translateY(calc((4vw + 4vh + 4%) / 3)) rotate(0.01deg);
        -ms-transform: translateY(4%);
    }
}

@-webkit-keyframes up {
    from {
        -webkit-transform: translateY(calc((4vw + 4vh + 4%) / 3)) rotate(0.01deg);
        transform: translateY(calc((4vw + 4vh + 4%) / 3)) rotate(0.01deg);
        -ms-transform: translateY(4%);
    }
    to {
        -webkit-transform: translateY(calc((-4vw + -4vh + -4%) / 3)) rotate(0.01deg);
        transform: translateY(calc((-4vw + -4vh + -4%) / 3)) rotate(0.01deg);
        -ms-transform: translateY(-4%);
    }
}

@keyframes up {
    from {
        -webkit-transform: translateY(calc((4vw + 4vh + 4%) / 3)) rotate(0.01deg);
        transform: translateY(calc((4vw + 4vh + 4%) / 3)) rotate(0.01deg);
        -ms-transform: translateY(4%);
    }
    to {
        -webkit-transform: translateY(calc((-4vw + -4vh + -4%) / 3)) rotate(0.01deg);
        transform: translateY(calc((-4vw + -4vh + -4%) / 3)) rotate(0.01deg);
        -ms-transform: translateY(-4%);
    }
}

@-webkit-keyframes out {
    from {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes out {
    from {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes in {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }
}

@keyframes in {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }
}

/*
 *---------------------------------------------------------------
 * HERO & SLIDER
 *---------------------------------------------------------------
 *
 */
 
.hero:after {
    background: url("../assets/ka-logo.svg") center center no-repeat;
    background-size: contain;
	position: absolute;
	content: '';
	display: none;
	width: 100%;
	height: 70px;
/* 	outline: red solid 1px; */
	z-index: 99;
	top:  20px;
	left: 0;
}

#slides {
    position: fixed;
    width: 1px;
    height: 1px;
    left: -9999px;
}

#slideshow {
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#slideshow .slide,
#slideshow span,
#slideshow .static-content {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#slideshow .slide span {
    background-size: cover;
    background-position: center;
}

#slideshow .slide span.animate.right,
#slideshow .slide span.animate.left {
    left: calc((-4vw + -4vh + -4%) / 3);
    right: calc((-4vw + -4vh + -4%) / 3);
}

#slideshow .slide span.animate.up,
#slideshow .slide span.animate.down {
    top: calc((-4vw + -4vh + -4%) / 3);
    bottom: calc((-4vw + -4vh + -4%) / 3);
}

#slideshow span.animate {
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

#slideshow span.animate.right {
    -webkit-animation-name: right;
    animation-name: right;
}

#slideshow span.animate.left {
    -webkit-animation-name: left;
    animation-name: left;
}

#slideshow span.animate.up {
    -webkit-animation-name: up;
    animation-name: up;
}

#slideshow span.animate.down {
    -webkit-animation-name: down;
    animation-name: down;
}

#slideshow span.animate.in {
    -webkit-animation-name: in;
    animation-name: in;
}

#slideshow span.animate.out {
    -webkit-animation-name: out;
    animation-name: out;
}

#slideshow span.animate.paused {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.hero {
    position: relative;
    display: block;
    /* 	display: flex; */
    flex-direction: column;
    justify-content: space-between;
    /* 	height: 100vh; */
    box-sizing: border-box;
    color: white;
}

@media screen and (min-width: 0\0) {
    .hero {
        height: auto;
    }
}

#slideshow .static-content {
    top: auto !important;
    bottom: 0 !important;
    padding: 20px;
    z-index: 2;
}

#slideshow .static-content h1 {
    font-weight: 400;
    margin: 0;
    font-size: 1.5em;
    color: var(--white);
}

#slideshow .static-content h2 {
    font-family: var(--title-font);
    margin: 0;
    font-size: 3.2em;
    color: var(--redd);
}

#slideshow .slide:after {
    content: "";
    display: block;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.28753508239233194) 0%, rgba(255, 255, 255, 0) 100%);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#slideshow {
    position: absolute !important;
}

.kb_slider {
    position: relative;
    z-index: -1;
    /* 	height: 100%; */
    height: 400px;
    width: 100%;
}

.discover {
    position: absolute;
    display: block;
    font-size: 0.7em;
    padding: 0.7em 1em;
    border-radius: 5px;
    bottom: 35px;
    right: 20px;
    color: var(--white);
    background: var(--redd);
    z-index: 1 ;
    font-weight: 700;
}

.discover button {
	position: absolute;
	color: transparent;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: none;
	border: 0;
	z-index: 2;
	cursor: pointer;
}

.discover:hover {
	background: var(--transblue);
}

/*
 *---------------------------------------------------------------
 * SOCIAL MEDIA (TOP RIGHT)
 *---------------------------------------------------------------
 *
 */

.social_ico {
    display: none;
}

/*
.social_links {
	display: none;
	position: absolute;
	top: 80px;
	right: 0;
}

.home .social_links {
	top: 200px;
}

.social_links > div {
	margin:0 10px 10px 0;
	width: 50px;
	height: 50px;
}

.social_links > div a {
	color: transparent;
	display: block;
	float: left;
	font-size: 0;
	width: 100%;
	height: 100%;
}

.social_links > div.zero {
	background: url('../assets/search-w.svg') center center no-repeat;
}

.social_links > div.one {
	background: url('../assets/facebook-w.svg') center center no-repeat;
}

.social_links > div.two {
	background: url('../assets/instagram-w.svg') center center no-repeat;
}

.social_links > div.three {
	background: url('../assets/twitter-w.svg') center center no-repeat;
}

.social_links > div.four {
	background: url('../assets/youtube-w.svg') center center no-repeat;
}

.social_links > div:hover {
	opacity: 0.8;
}
*/

/*
 *---------------------------------------------------------------
 * TABLES
 *---------------------------------------------------------------
 *
 */
 
.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-family: sans-serif;
    font-weight: 400;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.styled-table thead tr {
    background-color: var(--red);
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: var(--lightblue);
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid var(--newblue);
}

.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}


/*
 *---------------------------------------------------------------
 * WEBKIT KEYFRAMES
 *---------------------------------------------------------------
 *
 */

/*
 *---------------------------------------------------------------
 * PAGING
 *---------------------------------------------------------------
 *
 */

/*
 *---------------------------------------------------------------
 * RESPONSIVE 30.375em AND WIDER
 *---------------------------------------------------------------
 *
 */

/*
 *---------------------------------------------------------------
 * HOMEPAGE THREE BOXES
 *---------------------------------------------------------------
 *
 */

.the_three {
    padding-top: 10px;
}

.the_three > div {
    height: 150px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.the_three > div:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.the_three > .video:after {
    background: rgba(26, 38, 102, 0.8);
}

.the_three > .why:after {
    background: rgba(252, 0, 0, 0.6);
}

.the_three > .prospectus:after {
    background: rgba(26, 38, 102, 0.8);
}

.the_three > div span {
    text-align: center;
    position: absolute;
    left: 0;
    z-index: 1;
    bottom: 0;
    width: 100%;
    padding: 60px 0 20px 0;
}

.the_three > div span:after {
    position: absolute;
    content: "";
    display: block;
    height: 60px;
    width: 100%;
    background: white;
    top: 0;
}

.the_three > div span {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.2em;
    color: var(--white);
}

.the_three div > div {
	transition: all .3s ease;
	display: block;
	height: 100%;
	width: 100%;
}

.the_three div:hover > div {
  transform: scale(1.2);
}

.the_three .video > div {
    background: url("../assets/the_three_1.jpg") center center no-repeat;
    background-size: cover;
}

.the_three .why > div {
    background: url("../assets/the_three_2.jpg") center center no-repeat;
    background-size: cover;
}

.the_three .prospectus > div {
    background: url("../assets/the_three_3.jpg") center center no-repeat;
    background-size: cover;
}

.the_three .video span:after {
    background: url("../assets/the_three_1.png") center center no-repeat;
    background-size: contain;
}

.the_three .why span:after {
    background: url("../assets/the_three_2.png") center center no-repeat;
    background-size: contain;
}

.the_three .prospectus span:after {
    background: url("../assets/the_three_3.png") center center no-repeat;
    background-size: contain;
}

.the_three > div a {
	position: absolute;
	display: block;
	z-index: 2;
	width: 1000%;
	height: 100%;
	left: 0;
	top: 0;
}

/*
 *---------------------------------------------------------------
 * CAROUSEL
 *---------------------------------------------------------------
 *
 */

.carousel {
	background-color: var(--lightblue);
	position: relative;
	padding: 40px;
}

.carousel .tns-ovh {
	overflow-y: visible !important;
}

section .carousel > h2.title {
    font-family: var(--title-font);
	text-align: center;
    font-weight: 400;
    color: var(--red);
    font-size: 2em;
}

.carousel .tns-controls {
	position: absolute;
/* 	background: yellow; */
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 400px;
}

.carousel .tns-controls button {
    background: url("../assets/left.png") center center no-repeat;
    background-size: contain;
	border: 0;
	font-size: 0;
	color: transparent;
	width: 40px;
	height: 100%;
}

.carousel .tns-controls button:last-of-type {
    background: url("../assets/right.png") center center no-repeat;
    background-size: contain;
	position: absolute;
	right: 0;
}

.carousel .tns-item {
	min-height: 400px;
 	/*padding: 40px;*/
	position: relative;
}

.carousel .tns-item h2 {
	text-transform: uppercase;
	color: var(--white);
	margin: 0;
	font-size: 1.4em;
	font-weight: 700;
}

.carousel .tns-item .clear {
	display: block;
	width: 100%;
	margin-bottom: 1em;
}

.carousel .tns-item .clear img {
	max-height: 55px;
}

.carousel .tns-item > span {
	width: 100%;
	height: 100%;
	background: #e22c4b;
}

.carousel .tns-item .two span {
	display: inline-block;
	color: var(--white);
	font-size: 0.9em;
	margin-top: 14px;
	width: 100%;
}

.carousel .tns-item span > div { /* GAP BETWEEN ITEMS */
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0 3px;
}


.carousel .tns-item .host {
	position: relative;
	border-radius: 5px;
	background: black;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.carousel .tns-item .host.one1 {
    background: url("../assets/th_1.jpg") center center no-repeat;
    background-size: cover;
}

.carousel .tns-item .host.two2 {
    background: url("../assets/th_2.jpg") center center no-repeat;
    background-size: cover;
}

.carousel .tns-item .host.three3 {
    background: url("../assets/th_3.jpg") center center no-repeat;
    background-size: cover;
}

.carousel .tns-item .host.four4 {
    background: url("../assets/th_4.jpg") center center no-repeat;
    background-size: cover;
}

.carousel .tns-item .host.five5 {
    background: url("../assets/th_5.jpg") center center no-repeat;
    background-size: cover;
}

.carousel .tns-item .host:after {
	background: linear-gradient(180deg, rgba(31,100,49,0.8057423653054971) 0%, rgba(222,202,3,1) 100%); 
	content: '';
	
	opacity: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	
	z-index: 1;
	border-radius: 200px;
	
	-webkit-transition: .5s;
	transition: .5s;
	
	-webkit-transform: scale(0);
	transform: scale(0);
}

.carousel .tns-item .host.two2:after {
	background: linear-gradient(0deg, rgba(31,100,49,1) 0%, rgba(4,62,19,0.8785714969581583) 100%); 
}

.carousel .tns-item .host.three3:after {
	background: linear-gradient(180deg, rgba(31,100,49,0.8057423653054971) 0%, rgba(121,0,0,1) 100%); 
}

.carousel .tns-item .host.four4:after {
	background: linear-gradient(180deg, rgba(31,100,49,0.8057423653054971) 0%, rgba(13,0,76,1) 100%); 
}

.carousel .tns-item .host.five5:after {
	background: linear-gradient(180deg, rgba(31,100,49,0.8057423653054971) 0%, rgba(146,39,143,1) 100%); 
}

.carousel .tns-item:hover .host:after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	border-radius: 5px;

}

.carousel .tns-item .one {
/* 	position: absolute; */
/* 	bottom: calc(203px - 1.4rem); */
	width: 100%;
	-webkit-transition: .5s;
	transition: .5s;
	opacity: 1;
	
	position: absolute;
	
	min-height: 150px;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 0 40px 20px 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9;

}

.carousel .tns-item:hover .one {
	opacity: 0;
}

.carousel .tns-item .two {
/* 	background: black; */
	opacity: 0;
	-webkit-transition: .5s;
	transition: .5s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
		z-index: 9;
	
	
	min-height: 200px;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 0 40px 20px 40px;
	
	
	overflow: auto;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: flex-start;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-transform: scale(0);
	transform: scale(0);
}

.carousel .tns-item:hover .two {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.carousel .tns-item .one {
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel .tns-outer > button {
/* 	display: none;	 */
}

.carousel .tns-outer > button {
	position: absolute;
	background-position: center center;
	background-size: contain;
	border: 0;
	font-size: 0;
	height: 40px;
	width: 40px;
	left: 40px;
	top: 60px;
	
}

.carousel .tns-outer > button[data-action="stop"] {
	background: url('../assets/pause.svg');
	opacity: 0.5;
}

.carousel .tns-outer > button[data-action="start"] {
	background: url('../assets/play.svg');
	opacity: 0.5;
}


/*
 *---------------------------------------------------------------
 * randomizer
 *---------------------------------------------------------------
 *
 */

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

.repeating-img div {
	height: 100%;
	width: 
}

.repeating-img .hidden {
	display: block;
}

article header h1 {
	font-family: var(--title-font);
	font-size: 2.5em;
	margin-top: 0;
}

article header {
	border-bottom: #cecece solid 1px;
	margin-bottom: 3em;
	display: block;
}

.home article header {
	border: 0;
	margin-bottom: inherit;
}

/*
 *---------------------------------------------------------------
 * CURRICULUM
 *---------------------------------------------------------------
 *
 */

.curr_subject header {
	border: 0;
	margin-bottom: 0;
}

.curr_subject header h1 {
	margin: 0;
}

.curr_subject {
	position: relative;
}

.curr_subject .teacher_icon {
/* 	position: absolute; */
	float: left;
	margin: 10px 10px 10px 0;
	
	background: var(--lightblue);
	border-radius: 60px;
	width: 80px;
	height: 80px;
	right: 0;
	top: 0;
	
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
}

.curr_subject .teacher_icon img {
	width: 60%;
}

.curr_subject .teacher_icon img.photo {
	border-radius: 60px;
	width: 100%;
}

.curr_links {
	list-style: none;
	margin: 0 !important;
	padding: 0 !important;
/*
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
*/
}

.curr_links li {
	display: flex;
	margin: 20px 0 0  0;
	padding: 0;
}

.curr_links li a {
	position: relative;
	background: var(--red);
	color: var(--white);
	padding: 20px 20px 20px 60px;
	border-radius: 5px;
	text-decoration: none;
	overflow: hidden;
	display: block;
	width: 100%;
}

.curr_links li a:after {
	background: url('/kidgate/themes/default/assets/download_b.svg') center no-repeat;
	background-size: 30px;
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	content: '';
	height: 100%;
	width: 60px;
}

.curr_links li a:before {
	background: url('/kidgate/themes/default/assets/download_b.svg') center no-repeat;
	background-size: 30px;
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	content: '';
	height: 100%;
	width: 60px;
}

.curr_links li.book a:after {
	background: url('/kidgate/themes/default/assets/org.svg') center no-repeat;
	background-size: 30px;
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	content: '';
	height: 100%;
	width: 60px;
}

.curr_links li.book a:before {
	background: url('/kidgate/themes/default/assets/org_b.svg') center no-repeat;
	background-size: 30px;
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	content: '';
	height: 100%;
	width: 60px;
}

.curr_links li.ext a:after {
	background: url('/kidgate/themes/default/assets/esternal_link_w.svg') center no-repeat;
	background-size: 25px;
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	content: '';
	height: 100%;
	width: 60px;
}

.curr_links li.ext a:before {
	background: url('/kidgate/themes/default/assets/esternal_link_w.svg') center no-repeat;
	background-size: 25px;
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	content: '';
	height: 100%;
	width: 60px;
}

.curr_links li a:hover {
	background: var(--blue);
	color: var(--white);
}

.curr_links li a:hover:before {
	z-index: 1;
}


.center_title header {
	border: 0;
}

.center_title header h1 {
	text-align: center;
}

.subject_curriculum div {
	margin: 0.7em 0;
	height: 160px;
}

.subject_curriculum div:nth-child(8) a {
	background: var(--red);
	color: var(--white);
}

.subject_curriculum div a {
	position: relative;
	text-align: center;
	border: 2px solid var(--red);
	background: #f5f7f5;
	font-weight: 600;
	border-radius: 5px;
	color: var(--red);
	text-align: center;
	display: block;
	width: 100%;
	height: 100%;
	padding: 5.3em 0.3em 0 0.3em;
	  display: flex;
	  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.subject_curriculum div a:hover {
	border: 2px solid var(--redd);
	background: var(--redd);
	color: var(--red);
}

.subject_curriculum div a:after {
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 2em;
	left: 0;
	content: '';
	display: block;
	width: 100%;
	height: 60px;
	display: block;
}

.subject_curriculum div.art a:after {
	background-image: url('../assets/icon_art.svg');
}

.subject_curriculum div.his a:after {
    background-image: url('../assets/icon_history.svg');
}

.subject_curriculum div.rea a:after {
    background-image: url('../assets/icon_reading.svg');
}

.subject_curriculum div.com a:after {
    background-image: url('../assets/icon_computing.svg');
}

.subject_curriculum div.mat a:after {
    background-image: url('../assets/icon_mathematicssvg.svg');
}

.subject_curriculum div.re a:after {
    background-image: url('../assets/icon_re.svg');
}

.subject_curriculum div.dt a:after {
    background-image: url('../assets/icon_dt.svg');
}

.subject_curriculum div.rsh a:after {
    background-image: url('../assets/icon_rshe.svg');
}

.subject_curriculum div.ear a:after {
    background-image: url('../assets/icon_early.svg');
}

.subject_curriculum div.mus a:after {
    background-image: url('../assets/icon_music.svg');
}

.subject_curriculum div.sci a:after {
    background-image: url('../assets/icon_science.svg');
}

.subject_curriculum div.fre a:after {
    background-image: url('../assets/icon_french.svg');
}

.subject_curriculum div.pe a:after {
    background-image: url('../assets/icon_pe.svg');
}

.subject_curriculum div.smsc a:after {
    background-image: url('../assets/icon_smsc.svg');
}

.subject_curriculum div.geo a:after {
    background-image: url('../assets/icon_geog.svg');
}

.subject_curriculum div.psh a:after {
    background-image: url('../assets/icon_pshe.svg');
}

.subject_curriculum div.wri a:after {
    background-image: url('../assets/icon_writing.svg');
}

.subject_curriculum div.blank a {
	padding: 0 2em;
	font-size: 1.2em;
}

/*
 *---------------------------------------------------------------
 * OUR CLASSES PAGE (NOT THE SUB PAGES)
 *---------------------------------------------------------------
 *
 */

.our_classess img {
	border-radius: 5px;
}

.our_classess > div {
	position: relative;
}

.our_classess > div a {
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.our_classess span {
	margin-top: 10px;
	border-radius: 5px;
	text-align: center;
	background: var(--red);
	font-weight: 600;
	padding: 0.8em;
	color: var(--white);
	font-size: 1.2em;
	display: block;	
}

.our_classess > div:hover span {
	background: var(--redd);
	color: var(--red);
}

/*
 *---------------------------------------------------------------
 * OUR CLASSES SUB PAGES
 *---------------------------------------------------------------
 *
 */

.our_groups {
/* 	margin-top: 10px; */
	max-width: 900px;
	margin: 0 auto;
}

.our_groups img {
	border-radius: 5px;
}

.our_groups > div {
	position: relative;
	margin-top: 10px;
}

.our_groups > div a {
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.our_groups span {
	margin-top: 10px;
	border-radius: 5px;
	text-align: center;
	background: var(--red);
	font-weight: 600;
	padding: 0.8em;
	color: var(--white);
	font-size: 1.2em;
	display: block;	
}

.our_groups > div:hover span {
	background: var(--redd);
	color: var(--red);
}

.img_group {
/* 	margin-top: 10px; */
/* 	max-width: 900px; */
	margin: 0 auto;
}

.img_group img {
	border-radius: 5px;
}

.img_group > div {
	position: relative;
	margin-top: 10px;
}

.img_group > div a {
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.img_group span {
	margin-top: 10px;
	border-radius: 5px;
	text-align: center;
	background: var(--red);
	font-weight: 600;
	padding: 0.8em;
	color: var(--white);
	font-size: 1.2em;
	display: block;	
}

.img_group > div:hover span {
	background: var(--redd);
	color: var(--red);
}

/*
 *---------------------------------------------------------------
 * LINK DOWNLOAD ICON
 *---------------------------------------------------------------
 *
 */

a.dl {
	position: relative;
	background: var(--white);
	color: var(--darkblue);
	padding: 18px 15px 18px 60px;
	border-radius: 5px;
	border: 2px solid  var(--darkblue);
	text-decoration: none;
	overflow: hidden;
	display: table;
}

a.dl:after {
	background: url('/kidgate/themes/default/assets/download.svg') center no-repeat;
	background-size: 30px;
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	content: '';
	height: 100%;
	width: 60px;
}

a.dl:hover {
	border: 2px solid  var(--redd);
	background: var(--redd);
	color: var(--white);
}

a.dl:hover:before {
	z-index: 1;
}

a.el {
	
}

a.el {
	position: relative;
	background: var(--white);
	color: var(--darkblue);
	padding: 18px 20px 18px 60px;
	border-radius: 5px;
	border: 2px solid  var(--darkblue);
	text-decoration: none;
	overflow: hidden;
	display: table;
}

a.el:after {
	background: url('/kidgate/themes/default/assets/esternal_link.svg') center no-repeat;
	background-size: 30px;
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	content: '';
	height: 100%;
	width: 60px;
}

a.el:hover {
	border: 2px solid  var(--redd);
	background: var(--redd);
	color: var(--white);
}

a.el:hover:before {
	z-index: 1;
}

.left .call,
.left .emailAddress {
	position: inherit;
}

.left address {
	font-style: normal;
/* 	padding: 20px; */
}

.map-responsive {
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}

.map-responsive iframe {
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

/*
 *---------------------------------------------------------------
 * LIVE SEARCH
 *---------------------------------------------------------------
 *
 */

.searchBox {
    background-color: var(--transblue);
    width:100%;
    text-align: center;
    display: none;
    position: relative;
    height: 90px;
    z-index: 4;
    top: 0;
}

.searchBox input {
    border-radius: 5px;
	outline: 0;
	border: 0;
    width:100%;
    margin: 0 auto;
    padding: 8px;
	height: 40px;
}

.searchBox .search .closeSearch {
	position: absolute;
	right: 0;
	top: 0;
    float:right;
    height: 40px;
    width: 40px;
    cursor: pointer;
    line-height: 40px;
    background: url('../assets/close.svg') center center no-repeat;
    background-size: 20px;
    color: transparent;
    font-size: 0;
}

.liveSearch {
/*     background-color: var(--newblue); */
    left: -9999px;
    min-height: auto;
    position: relative;
    top:54px;
    z-index: 999;
}

.liveSearch.active {
/*     background-color: var(--newblue); */
    overflow: scroll;
    min-height: 100%;
    left: auto;
    opacity: 0.9;
    top: 90px;
    padding-bottom: 20px;
}


.searchBox .search {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 65%;
	max-width: 915px;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.searchResults h4 {
	color: var(--redd);
	font-size: 1em;
}

.searchResults ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.searchResults ul li a {
	color: #FFF;
	padding: 10px 0;
	display: block;
}

.searchResults ul li a:hover {
	color: var(--redd);
}

.contact_submit {
	background: var(--red);
	display: inline;
}

.contact_submit input {
	outline: 0;
	border: 0;
	margin: 0;
	background: none;
	padding: 20px 0;
}

.contact_submit input:hover {
	outline: 0;
	border: 0;
	margin: 0;
	background: none;
}

/*
 *---------------------------------------------------------------
 * MEAT THE TEAM
 *---------------------------------------------------------------
 *
 */
 
.meat_team {
	display: flex;
	align-items: center;
	justify-content: center;
}

.meat_team > div {
	text-align: center;
	margin: 0 20px;
}

.meat_team img {
	max-height: 150px;
}

.why_choose {
	margin-top: 20px;
}

.why_choose h2 {
	text-align: center;
	font-size: 1.5em;
	padding: 1em 0.5em;
}

.why_choose img {
	border-radius: 10px;
}

/*
 *---------------------------------------------------------------
 * BLOG (Latest News)
 *---------------------------------------------------------------
 *
 */


.blog .news_list {
	display: inline-block;
	margin: 2em 0;
	width: 100%;
}

.blog .news_list p {
	display: inline-block;
	width: 100%;
}

.blog .news_list div a.ti {
	margin-right: 10px;
	display: block;
	width: 100%;
	font-size: 1.6em;
	float: left;
}

.blog .news_list div a.ti:hover strong {
	color: var(--redd);
}

.blog .news_list span {
	display: inline-block;
	margin-top: 2em;
	margin-right: 5px;
	margin-bottom: 20px;
	font-size: 1em;
}

.blog .news_list .read_more {
	position: relative;
	display: block;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--red);
	margin-top: 20px;
	padding-right: 20px;
	margin-bottom: 40px;
	line-height: 14px;
	font-size: 16px;
	width: 120px;
}

.blog .news_list .read_more:hover {
	color: var(--newblue);
}

.blog .news_list p {
	display: block
}

.blog .news_list .read_more:after {
	position: absolute;
	right: 0;
	bottom: 0;
	height: 100%;
	content: '';
	width: 7px;
	
	width: 0; 
	height: 0; 
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	
	border-left: 7px solid var(--red);
}

.blog .news_list .read_more:hover:after {
	border-left: 7px solid var(--redd);
}

/*
 *---------------------------------------------------------------
 * PAGING
 *---------------------------------------------------------------
 *
 */

.paging {
	text-align: center;
	list-style: none;
	padding: 0px;
	margin: 0px auto 20px auto;
}

.content .paging li, .paging li {
	text-align: center;
	margin-right: 10px;
	display: inline-block;
    font-size: 12px;
    color: #FFF;
    border: 1px solid #dddadf;
    background-color: transparent;
    min-width: 51px;
    font-size: 1.2em;
    line-height: 51px;
    margin-top: 20px;
    cursor: pointer;
}

.paging li a {
	display: block;
    padding: 0 20px;
    color: var(--red);
    cursor: pointer;
}

.paging li a:hover {
	color: #FFF;
}

.paging li:hover {
   	border: 1px solid var(--red);
	background: var(--red);
	color: #FFF:
}

.paging li.selected {
    border: 1px solid var(--red);
	background: var(--red);
	color: #FFF;
}

.paging li.selected a {
	color: var(--redd);
}



/*
 *---------------------------------------------------------------
 * CONTACT US PAGE
 *---------------------------------------------------------------
 *
 */
 
.con_holder {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}



.con_holder	fieldset {
	border: 0;
	padding: 0;
	margin: 0;
}

.con_holder	fieldset textarea {
	min-height: 200px;
}

.con_holder	fieldset input, .con_holder	fieldset textarea {
	outline: none;
	border: 1px solid #dddadf;
/* 		background: var(--red); */
	font-weight: 400;
	border-radius: 4px;
	padding: 0.7em;
	/*     line-height: 31px; */
	width: 100%;
/* 		color: var(--white); */
	font-size:  14px;
}

.con_holder	fieldset input.submit_field {
	border: 1px solid var(--red);
	background: var(--red);
	color: var(--white);
}

.con_holder	fieldset input.submit_field:hover {
	border: 1px solid var(--darkblue);
	background: var(--darkblue);
}

.con_holder	fieldset input::-webkit-input-placeholder, 
.con_holder	fieldset textarea::-webkit-input-placeholder { /* Edge */
	color: #777777;
}

.con_holder	fieldset input:-ms-input-placeholder,
.con_holder	fieldset textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #777777;
}

.con_holder	fieldset input::placeholder,
.con_holder	fieldset textarea::placeholder {
	color: #777777;
}

.con_holder	.fields {
	margin-bottom: 20px;
}

.ellipsis {
	white-space: nowrap; 
	overflow: hidden;
	text-overflow: ellipsis; 
}

/* Set the size of the div element that contains the map */
#map {
  height: 600px; /* The height is 400 pixels */
  width: 100%; /* The width is the width of the web page */
}

.google-maps {
	position: relative;
	padding-bottom: 75%; 
	height: 100%;
	overflow: hidden;
}

.google-maps iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.three_images {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.three_images.odd_img {
	justify-content: center;
}

.three_images.odd_img img {
	margin: 0 20px;
}

.three_images .img_center {
	flex: 0 0 33.333333%;
	max-width: 30%;
	margin: 0;
}

.four_images {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.four_images.odd_img {
	justify-content: center;
}

.four_images.odd_img img {
	margin: 0 20px;
}

.four_images .img_center {
	flex: 0 0 25%;
	max-width: 24%;
	margin: 0;
}

.proud_to_be {
	background: rgba(0,0,0,0.3);
	position: absolute;
	padding-left: 40px;
	display: none;
	align-items: center;
	justify-content: center;
	height: 54px;
	width: 30px;
	color: #FFF;
	z-index: 10;
	left: 0;
	top: 0;
	
	font-size: 0;
}

.logo .proud {
	display: none;
}

.proud_to_be:after {
	background: url('../assets/lgat-logo.svg') center center no-repeat;
	background-size: 30px;
	position: absolute;
	content: '';
	display: block;
	height: 50px;
	width: 30px;
	left: 5px;
	display: none;
}

.proud_to_be a {
	color: var(--white);
}

.proud.mob {
	position: relative;
	margin: 10px auto 0 auto;
	z-index: inherit;
	display: block;
    -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.39);
    -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.39);
    box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.39);
}

.proud {
	background: var(--white);
	border: var(--white) 5px solid;
	border-radius: 4px;
	padding: 10px 5px 10px 45px;
	position: relative;
	height: 60px;
	width: 320px;
	margin-bottom: 20px;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9;
	position: absolute;
}

.proud a {
	position: absolute;
	display: block;
	font-size: 0.9em;
}

.proud b {
	color: var(--black);
}

.proud:after {
	background: url('../assets/lgat-logo.svg') center no-repeat;
	background-size: 30px;
	position: absolute;
	display: block;
	content: '';
	height: 100%;
	width: 45px;
	top: 0;
	left: 0;
}

.principle {
	position: relative;
	padding-left:110px;
	display: block;
	height: 100px;
	display: flex;
}

.principle img {
	position: absolute;
	width: 100px !important;
	border-radius: 100px;
	display: block;
	left: 0;
	top: 0;
}

.f-carousel {
	max-width: 800px;
	margin: 0 auto;
}

.f-carousel__slide {
	display: flex;
	justify-content: center;
	align-items: center;
}

/*
 *---------------------------------------------------------------
 * EMBED RESPONSIVE VIDEO
 *---------------------------------------------------------------
 *
 */

.embed-container { 
	position: relative; 
	padding-bottom: 56.25%; 
	height: 0; 
	overflow: hidden; 
	max-width: 100%; 
} 
.embed-container iframe, .embed-container object, .embed-container embed { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
}

/*
 *---------------------------------------------------------------
 * RESPONSIVE
 *---------------------------------------------------------------
 *
 */
 
@-ms-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

@media screen and (min-width: 30.375em) /* 486px */ {
}

@media screen and (min-width: 40.375em) /* 646px */ {
	
	.why_choose {
		margin: 0 auto;
		display: flex;
		flex-flow: row wrap;
		align-items: center;
		justify-content:  space-between;
		margin-top: 4em;
		margin-bottom: 4em;
	}
	
	.why_choose > div {
		max-width: 45%;
		width: 100%;
	}
	
	.why_choose h2 {
		font-size: 2.5em;
	}
	
	html::after {
		background-color: pink;
	}
	
	.home_phone {
		display: none;
	}
	
	.top_links div div a {
	    padding: 17px 15px 17px 45px;
	    width: auto;
	}

	.top_links div div a::after,
	.top_links div div a::before {
		width: 40px;
	}
	
    nav {
        max-width: 840px;
        margin: 0 auto;
    }

    .menuIcon {
        display: none;
    }

    .mainMenu a.rsp_button {
        display: none;
    }
    
    .subNav a.rsp_button, .subNav a.rsp_button:hover {
        display: block;
        height: 100%;
        width: 30px;
        position: absolute;
        padding: 0 !important;
        color: transparent;
        font-size: 0;
		background: none !important;
    }
    
	.subNav a.rsp_button, .subNav a.rsp_button:hover {
			background-image: url('../assets/w-arrow.svg') !important;
			background-size: 15px !important;
			background-repeat: no-repeat !important;
			background-position: center center !important;
	}

    nav > .mainMenu, nav > .mainMenu.on_off {
        display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
    }

    .mainMenu li {
        display: block;
        width: auto;
    }

    .mainMenu li a {
        font-size: 0.9em;
        border: 0;
    }

    .mainMenu > li > a {
        padding: 10px 7px;
    }

    nav .mainMenu > li a:hover {
        border-radius: 4px;
        background: var(--blue);
        color: var(--white);
    }

    .mainHeader {
        position: fixed;
        width: 100%;
        z-index: 4;
    }

    .mainHeader.darkHeader {
        /*
		position: fixed;
		width: 100%;
		z-index: 4;
		*/
        top: 0;

        padding: 0;

        transition: transform 0.5s;
        transform: rotateX(0deg) translateY(0px);

        -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.39);
        -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.39);
        box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.39);
    }
    
    .mainMenu li > .subNav {
	    display: none;
    }

    .mainMenu li:hover > .subNav {
        visibility: visible;
        transition-delay: 0s; /* react immediately on hover */
        opacity: 1;
        z-index: 999;
        display: block;

        width: 200px;
        position: absolute;
        background: var(--red);
        box-sizing: border-box;
        transition: 0.2s 0.2s; /* delay of 1 seconds on hover off */
        left: 0;
        
    	-webkit-box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.39);
		-moz-box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.39);
		box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.39);

        border-radius: 4px;
    }

    .mainMenu .subNav .subNav {
        background: #c11111 !important;
        position: absolute !important;
        left: 200px !important;
        top: 0;
    }

    .mainMenu .subNav li a {
        padding: 10px;
    }

    .mainMenu .subNav li:after {
        content: "";
        border-bottom: 1px solid #fe8383;
        width: 90%;
        display: block;
        margin: 0 auto;
    }

    .mainMenu .subNav li:last-child:after {
        border-bottom: 0;
    }
    
    .mainMenu, .mainMenu.on_off {
	    
    }

    .top_links div div a {
        padding-right: 15px;
        font-size: inherit !important;
    }

    .footer {
        padding: 30px 20px;
    }

    .footer .container > div {
        padding-left: 110px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer .container > div:after {
        width: 80px;
    }

    .social_app {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .social_wrap > .two {
        display: block;
    }

    .social_wrap > .one .social_app .title {
        display: none;
    }

    .social_app > div {
        width: 30%;
    }



    .social_links {
        display: block;
    }

    #slideshow .static-content h1 {
        font-weight: 300;
        font-size: 3.8vw;
    }

    #slideshow .static-content h2 {
        font-size: 8vw;
    }

    .the_three {
        display: flex;
    }

    .the_three > div {
        height: 200px;
    }
    
    .home .home_content {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 20px;
		padding: 40px 0;
	}

    .home .home_content img {
	    width: 80%;
	    margin: 0 auto;
    }
    
    .subject_curriculum {
		display: flex;
		flex-wrap: wrap;
    }
	
	.subject_curriculum > div {
		padding: 0 0.5em;
		flex-grow: 1;
		width: 33%;
	}
	
	.curr_links {
		max-width: 980px;
		margin: 0 auto !important;
		display: flex;
		flex-flow: row wrap;
		align-items: center;
		justify-content: center;
	}
	
	.curr_links.even {
		max-width: 800px;
	}
	
	.curr_links li {
		min-width: 300px;
		margin: 20px 10px 0 10px;
	}
	
	.curr_links li a {
		font-size: 0.8em;
	}
	
	.curr_links.know_org {
		margin:0; 
		justify-content:left;
		max-width: 100%;
	} 
	
	.curr_links.know_org li {
		margin-left: 0;
		margin-top: 0;
	}
	
	.our_classess > div {
		padding: 0 10px;
	}
	
	.our_groups {
		display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
	}
	
	.our_groups span {
		font-size: 0.8em;
	}
	
	.our_groups > div:nth-child(2) {
		padding: 0 10px;
	}
	
	.img_group {
		display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
	}
	
	.img_group > div {
		margin: 20px 0;
	}
	
	.img_group span {
		font-size: 0.8em;
	}
	
	.img_group > div:nth-child(2) {
		padding: 0 10px;
	}
	
	.curr_subject .teacher_icon {
		position: absolute;
		float: none;
		margin:0;
		border-radius: 100px;
		width: 100px;
		height: 100px;
	}
	
	.curr_subject .teacher_icon img.photo {
		border-radius: 100px;
	}

	.curr_subject p:first-of-type {
		padding-right: 200px;
	}
	
	.curr_subject p:nth-of-type(2) {
		padding-right: 140px;
	}
	
	
	.curr_subject .teacher_icon:nth-of-type(2) {
		right: 120px;
	}
	
	.searchBox  {
/* 		background: none; */
		position: fixed;
/* 		height: 70px; */
		z-index: 6;
	}
	
	.searchBox .main {
		position: relative;
		height: 170px;
		margin: 0 auto;
		padding: 1em 0;
	}
	.liveSearch.active {
		position: absolute;
		top: 170px;
		left: 0;
		width: 100%;
		height: 100%;
	}
	
	.blog .news_list {
		display: flex;
		justify-content: space-between;
	}
	
	.blog .news_list div {
		width: 48%;
	}
	
	.blog .news_cal {
		position: relative;
		padding: 20px 0 0 0;
		display: block;
	}
	
	.blog .news_cal:after {
		position: absolute;
		height: 5px;
		width: 20px;
		background: var(--redd);
		display: block;
		content: '';
		top: 0;
		left: 0;
	}

	
	.proud_to_be:after {
		display: block;
	}
	
	.proud_to_be {
		display: flex;
		width: 150px;
		font-size: 0.6em;
		padding-right: 8px;
	}

}

@media screen and (min-width: 56.875em) /* 910px */ {
	
	html::after {
		background-color: orange;
	}
	
    .mainMenu li a {
        font-size: 1.1em;
    }
    
    .subNav .mainMenu li a {
		font-size: 0.9em;
	}

    p,
    .content ol li, .content ul li, .searchResults ul li,
    .styled-table {
        font-size: 1.266em;
    }
    
    .proud.mob {
		display: none;
	}
    
    .proud {
	    display: flex;
		bottom:80px;
		right: 20px;
    }
    
}

@media screen and (min-width: 61.5625em) /* 985px */ {
	
	

	
	
	html::after {
		background-color: yellow;
	}
	
    nav {
        height: 100px;
        display: flex;
        align-items: center;
    }

    .logo {
        background: url("../assets/ka-logo.svg") center center no-repeat;
        background-size: 90%;
        position: absolute;
        display: block;
        width: 80px;
        height: 100%;
        padding: 20px 0;
        left: 0;
        top: 0;
    }
    
    .logo a {
	    display: block;
	    width: 100%;
/* 	    outline: red solid 1px; */
	    height: 100%;
    }

    .nav {
        position: relative;
    }

    .wrap {
        max-width: 1260px;
        margin: 0 auto;
    }

    .hero {
        display: flex;
        height: 100vh;
    }

    .darkHeader .logo {
/*         transition: 0.6s; */
		background: url("../assets/ka-apple.svg") center center no-repeat;

        background-size: auto 40px;
        width: 50px;
    }

    .darkHeader nav {
        transition: 0.6s;

        /* 		width: 50px; */
        height: 60px;
    }

    .kb_slider {
        height: 100% !important;
    }

    .discover {
        font-size: 1.4em;
        padding-left: 3em;
    }

    .discover:after {
        background: url("../assets/down.svg") center center no-repeat;
        position: absolute;
        display: block;
        content: "";
        width: 3em;
        height: 100%;
        left: 0;
        top: 0;
    }
    
    .gold_mark:before {
	    background: var(--white) url("../assets/smsc_qm_gold.jpg") center center no-repeat;
	    background-size: 80%;
        position: absolute;
        display: block;
        content: "";
        width: 120px;
        height: 120px;
        right: 20px;
        top: 200px;
        z-index: 999;
        border-radius: 100px;
        
    -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.39);
    -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.39);
    box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.39);
    }
    
    .the_three {
		padding-top: 20px;
    }
    
    .the_three > div {
	    height: 300px;
    }
    
    .the_three > div span {
	    padding: 100px 0 40px 0;
	    font-size: 1.6em;
    }
    
    .the_three > div span::after {
	    height: 90px;
    }
    
	.carousel .tns-controls {
		max-height: 500px;
	}
    
    .carousel .tns-item {
	    min-height: 400px;
    }
    
	.carousel .tns-item .two {
		padding: 0 35px 40px 35px;
	}
	

	
	.repeating-img {
		height: 500px;
	}
	
	article header h1 {
		font-size: 3.5em;
	}
	
	.content .wrap {
		padding: 60px 20px;
	}
    
    .our_groups span {
		font-size: 1.2em;
	}
	
	.why_choose h2 {
		font-size: 3.5em;
	}
	
	.con_holder {
		flex-direction: row;
	}
	
	.con_holder>* {
/* 		padding-right: 2em; */
		width: 49%;
	}
	
/*
	.con_holder>*:last-child {
		padding-left: 2em;
		padding-right: 0;
		width: 39%;
	}
*/
	
	.con_holder	.one {
		display: flex;
		justify-content: space-between;
		width: 59%;
	}
	
	.con_holder	.two {
		width: 39%;
	}
	
	.con_holder	.one>* {
		width: 50%;
	}

}

@media screen and (min-width: 65.625em) /* 1050px */ {
	
	html::after {
		background-color: green;
	}
	
    .social_ico {
        position: absolute;
        list-style: none;
        right: 10px;
        top: 0;
        bottom: 0;
        margin: 0;
        padding: 0;
        width: 100px;

        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .social_ico li {
        width: 30px;
        height: 30px;
    }
    
     .social_ico li a {
	     display: block;
	     width: 30px;
	     height: 100%;
	     margin: 0 auto;
	     border-radius: 50px;
	     background-color: var(--white);
     }
     
     .social_ico li a:hover {
	     background-color: var(--redd);
     }

    .fb a {
        background: url("../assets/facebook.svg") center center no-repeat;
        background-size: 88%;
    }

    .tw a {
        background: url("../assets/twitter.svg") center center no-repeat;
        background-size: 88%;
    }

    .in a {
        background: url("../assets/instagram.svg") center center no-repeat;
        background-size: 88%;
    }

    .logo {
	 background-size: 90%;
	    width: 100px;
	    height: 100%;
    }
    


    #slideshow .static-content {
        padding: 20px 40px;
    }
    
    section .carousel > h2.title,
    .from_our h2 {
	    font-size: 2.6em;
    }

    .from_our > div {
        padding: 80px 0 40px 0;
    }
    
	.carousel .tns-controls {
		max-height: 600px;
	}
    
    .carousel .tns-item {
	    min-height: 600px;
    }
    
    .curr_subject .teacher_icon {
		border-radius: 130px;
		width: 130px;
		height: 130px;
	}
	
	.curr_subject .teacher_icon img.photo {
		border-radius: 130px;
	}
	
	.curr_subject .teacher_icon:nth-of-type(2) {
		right: 150px;
	}
	
	.searchBox  {
		height: 100%;
		bottom: 0;
	}
	
	.searchResults h4 {
		font-size: 2em;
	}
	
	.liveSearch.active {
		top: 170px;
	}
	
	.content .wrap .right {
		width: 70%;
		float: right;
	}
	
	.content .wrap .left {
		width: 30%;
		float: left;
		padding: 25px 30px 0 0;
	}
	

    
  	.carousel .tns-item .two span {
		font-size: 1.3em;
	}

}

@media screen and (min-width: 74.375em) /* 1190px */ {
	
	html::after {
		background-color: blue;
	}
	
	nav {
        max-width: 940px;
    }
	
    nav {
        height: 115px;
/*         max-width: 890px; */
    }

    .social_ico {
        width: 140px;
    }
    
    .social_ico li {
        width: 40px;
        height: 40px;
    }
    
     .social_ico li a {
	     width: 40px;

     }

    .fb {
        background-size: 40px;
    }

    .tw {
        background-size: 40px;
    }

    .in {
        background-size: 40px;
    }
    
   .carousel .tns-item h2 {
		font-size: 2em;
	}
	

}

/**
 * 7.1 - >= 1550px
 */

@media screen and (min-width: 96.875em) {
	
/*
	.proud_to_be {
		display: none !important;
	}
*/
	
	.darkHeader .logo .proud {
        transition: 0.6s;
		left: 60px;
	}
	
	.logo .proud {
	    display: flex;
	    position: absolute;
	    right: auto;
	    height: 100%;
	    width: 180px;
	    z-index: 9;
	    left: 100px;
	    top: 0;
	    color: var(--white);
	    font-size: 0.7em;
	    align-items: center;
		justify-content: center;
    }
    
    .logo .proud:after {
	    background: var(--newblue);
	    position: absolute;
	    display: block;
	    content: '';
	    height: 40px;
	    left: -3px;
	    width: 3px;
    }
    
	.logo .proud a {
		background: url('../assets/lgat-logo.svg') left 15px center no-repeat;
		background-size: 28px;
	    color: var(--white);
	    padding-left: 60px;
	}
    
    .logo {
	    background-size: 90%;
/* 	    position: relative; */
	    width: 150px;
	    height: 100%;
    }
}
