/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	The British School
VERSION:	1.0
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/

/*  typography */

@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Poppins:300,400,500,600,700|Work+Sans:400,500,600");
body {
    line-height: 1.2;
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    color: #5c5c77;
}

p, .paragraph {
    font-weight: 400;
    color: #5c5c77;
    font-size: 15px;
    line-height: 1.9;
    font-family: "Open Sans", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: #1e1e4b;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1, .h1 {
    font-size: 60px;
}

@media (max-width: 575px) {
    h1, .h1 {
        font-size: 45px;
    }
    .go-down {
        margin-top: 3em
    }
    
}

h2, .h2 {
    font-size: 40px;
}

@media (max-width: 575px) {
    h2, .h2 {
        font-size: 30px;
    }
}

h3, .h3 {
    font-size: 25px;
}

@media (max-width: 575px) {
    h3, .h3 {
        font-size: 20px;
    }
}

h4, .h4 {
    font-size: 20px;
}

@media (max-width: 575px) {
    h4, .h4 {
        font-size: 18px;
    }
}

h5, .h5 {
    font-size: 18px;
}

@media (max-width: 575px) {
    h5, .h5 {
        font-size: 16px;
    }
}

h6, .h6 {
    font-size: 16px;
}

@media (max-width: 575px) {
    h6, .h6 {
        font-size: 14px;
    }
}

/* Button style */

.btn {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;
    padding: 15px 40px;
    border-radius: 0;
    font-weight: 500;
    border: 0;
    position: relative;
    z-index: 1;
    transition: .2s ease;
    overflow: hidden;
}

.btn::before {
    position: absolute;
    content: "";
    height: 80%;
    width: 100%;
    left: 0;
    bottom: 10%;
    z-index: -1;
    transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}

.btn:focus {
    outline: 0;
    box-shadow: none !important;
}

.btn:active {
    box-shadow: none;
}

.btn:hover::before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}

.btn-sm {
    font-size: 14px;
    padding: 10px 35px;
}

.btn-xs {
    font-size: 12px;
    padding: 5px 15px;
}

.btn-primary {
    background: #EE7313;
    color: #fff;
}

.btn-third {
    background: #1a1a37;
    color: #fff;
}

.btn-primary::before {
    background: #fff;
}

.btn-primary:active {
    background: #EE7313 !important;
    color: #EE7313;
}

.btn-primary:active::before {
    height: 80%;
}

.btn-primary:hover {
    background: #ffab08;
    color: #EE7313;
}

.btn-third:hover {
    background: #fff;
    color: #EE7313;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #ffab08;
    border-color: #ffab08;
}

.btn-secondary {
    background: #fff;
    color: #EE7313;
    border: 1px solid #fff;
}

.btn-secondary::before {
    background: #EE7313;
}

.btn-secondary:active {
    background: #EE7313;
    color: #fff;
    border: 1px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #fff;
    border: 1px solid #fff;
}

.btn-primary-outline {
    border: 1px solid #EE7313;
    color: #EE7313;
    background: transparent;
}

.btn-primary-outline::before {
    background: #fff;
}

.btn-primary-outline:hover {
    background: #EE7313;
    color: #EE7313;
}

.btn-primary-outline:active {
    background: #EE7313;
    color: #fff;
}

body {
    background-color: #fff;
    overflow-x: hidden;
}

::-moz-selection {
    background: #ffcd6e;
    color: #fff;
}

::selection {
    background: #ffcd6e;
    color: #fff;
}

/* preloader */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #EE7313;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

ol, ul {
    list-style-type: none;
    margin: 0px;
}

li {
    color: #EE7313
}

li span {
    color: #000000;
}

img {
    vertical-align: middle;
    border: 0;
}

a, a:hover, a:focus {
    text-decoration: none;
}

a, button, select {
    cursor: pointer;
    transition: .2s ease;
}

a:focus, button:focus, select:focus {
    outline: 0;
}

a:hover {
    color: #EE7313;
}

a.text-primary:hover {
    color: #EE7313 !important;
}

a.text-light:hover {
    color: #EE7313 !important;
}

h4 {
    transition: .2s ease;
}

a h4:hover {
    color: #EE7313;
}

.slick-slide {
    outline: 0;
}

.section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.section-sm {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-title {
    margin-bottom: 30px;
}

.bg-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.border-primary {
    border-color: #ededf1 !important;
}

/* overlay */

.overlay {
    position: relative;
}

.overlay::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #1b1b37;
    opacity: .8;
}

.outline-0 {
    outline: 0 !important;
}

.d-unset {
    display: unset !important;
}

.bg-primary {
    background: #EE7313 !important;
}

.bg-secondary {
    background: #1a1a37 !important;
}

.bg-gray {
    background: #f8f8f8;
}

.text-primary {
    color: #EE7313 !important;
}

.text-color {
    color: #5c5c77;
}

.text-light {
    color: #8585a4 !important;
}

.text-lighten {
    color: #d6d6e0 !important;
}

.text-muted {
    color: #b5b5b7 !important;
}

.text-dark {
    color: #1e1e4b !important;
}

.font-secondary {
    font-family: "futura-bold";
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.pl-150 {
    padding-left: 150px;
}

.zindex-1 {
    z-index: 1;
}

@media (max-width: 991px) {
    .overflow-md-hidden {
        overflow: hidden;
    }
}

.vertical-align-middle {
    vertical-align: middle;
}

.icon-md {
    font-size: 36px;
}

/* page title */

.page-title-section {
    padding: 200px 0 80px;
}

.custom-breadcrumb li.nasted {
    position: relative;
    padding-left: 25px;
}

.custom-breadcrumb li.nasted::before {
    position: absolute;
    font-family: "themify";
    content: "\e649";
    font-size: 20px;
    top: 50%;
    left: -5px;
    color: #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* /page title */

.list-styled {
    padding-left: 25px;
}

.list-styled li {
    position: relative;
    margin-bottom: 15px;
    content: "\2022";
    /* Insertamos el marcador */
    padding-right: 8px;
    /* Establecemos el espacio entre las viñetas y el list item */
}

.list-styled li::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    color: #EE7313;
    left: -25px;
    top: 5px;
}

textarea.form-control {
    height: 200px;
    padding: 20px;
}

#map_canvas {
    height: 500px;
}

.top-header {
    font-size: 12px;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease;
    -webkit-transform-origin: top;
    transform-origin: top;
    font-weight: 600;
}

.top-header.hide {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    transform-origin: top;
}

.navigation {
    background: linear-gradient(to right, transparent 50%, #EE7313 50%);
    transition: .2s ease;
}

@media (max-width: 991px) {
    .navigation {
        background: #1a1a37;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #1a1a37;
    }
}

.navbar-nav {
    padding-left: 20px;
    background: #EE7313;
}

@media (max-width: 991px) {
    .navbar-nav {
        padding-left: 0;
        background: #1a1a37;
    }
}

.nav-bg {
    background-color: #1a1a37;
}

.nav-item {
    margin: 0 15px;
    position: relative;
}

.nav-item .nav-link {
    text-transform: uppercase;
    font-weight: 600;
}

.nav-item::before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 6px;
    width: 100%;
    content: "";
    background: #fff;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    transform-origin: top;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}

.nav-item:hover::before, .nav-item.active::before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}

link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-dark .navbar-nav .active>.nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show>.nav-link {
    color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 40px 0px;
}

@media (max-width: 991px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 20px;
    }
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    background: #fff;
    box-shadow: 0 2px 5px #0000000d;
}

.navbar .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.navbar .dropdown-menu {
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
    border-bottom: 5px solid #EE7313;
    padding: 15px;
    top: 96px;
    border-radius: 0;
    display: block;
    visibility: hidden;
    transition: .3s ease;
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    background: #fff;
    min-width: 15rem;
}

@media (max-width: 991px) {
    .navbar .dropdown-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-transform-origin: unset;
        transform-origin: unset;
    }
}

.navbar .dropdown-menu.show {
    visibility: hidden;
}

@media (max-width: 991px) {
    .navbar .dropdown-menu.show {
        visibility: visible;
        display: block;
    }
}

.navbar .dropdown-item {
    position: relative;
    color: #1e1e4b;
    transition: .2s ease;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
}

@media (max-width: 991px) {
    .navbar .dropdown-item {
        text-align: center;
    }
}

.navbar .dropdown-item:not(:last-child) {
    margin-bottom: 10px;
}

.navbar .dropdown-item:hover {
    color: #EE7313;
    background: transparent;
}

.hero-section {
    padding: 250px 0 320px;
}

.hero-slider .prevArrow, .hero-slider .nextArrow {
    position: absolute;
    bottom: -123px;
    z-index: 9;
    padding: 15px;
    color: rgba(255, 255, 255, 0.5);
    border: 0;
    font-size: 30px;
    transition: all linear .2s;
    background: transparent;
}

.hero-slider .prevArrow:focus, .hero-slider .nextArrow:focus {
    outline: 0;
}

.hero-slider .prevArrow:hover, .hero-slider .nextArrow:hover {
    color: #EE7313;
}

.hero-slider .prevArrow {
    right: 60px;
}

.hero-slider .nextArrow {
    right: 0;
}

.hero-slider .slick-dots {
    position: absolute;
    left: 0;
    bottom: -100px;
    padding-left: 0;
}

.hero-slider .slick-dots li {
    display: unset;
    margin: 0 6px;
}

.hero-slider .slick-dots li.slick-active button {
    background: #EE7313;
}

.hero-slider .slick-dots li button {
    color: transparent;
    padding: 0;
    overflow: hidden;
    height: 10px;
    width: 10px;
    background: rgba(255, 255, 255, 0.5);
    border: 0;
    outline: 0;
    display: unset;
}

/* banner feature */

.feature-icon {
    font-size: 50px;
    color: #EE7313;
    display: inline-block;
}

.feature-blocks {
    padding-left: 70px;
    padding-top: 80px;
    padding-right: 30%;
}

@media (max-width: 1400px) {
    .feature-blocks {
        padding-right: 10%;
    }
}

@media (max-width: 1200px) {
    .feature-blocks {
        padding-right: 50px;
        padding-left: 50px;
        padding-top: 30px;
    }
    .feature-blocks h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .feature-blocks {
        margin-top: 0;
        padding: 50px;
    }
    .feature-blocks h3 {
        font-size: 25px;
    }
}

/* /banner feature */

/* course */

.card-btn {
    font-size: 12px;
    padding: 5px 10px;
}

.flex-basis-33 {
    flex-basis: 33.3333%;
}

.hover-shadow {
    transition: .3s ease;
}

.hover-shadow:hover {
    box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* /course */

/* success story */

.success-video {
    min-height: 300px;
}

.success-video .play-btn {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .success-video .play-btn {
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

.play-btn {
    display: inline-block;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background: #EE7313;
    color: #fff;
    font-size: 20px;
    text-align: center;
}

.play-btn i {
    line-height: 80px;
}

.play-btn::before {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: -2;
    transition: .3s ease;
    transition-delay: .2s;
}

.play-btn::after {
    position: absolute;
    content: "";
    height: 80%;
    width: 80%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #EE7313;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: -1;
    transition: .3s ease;
}

.play-btn:hover::before {
    height: 80%;
    width: 80%;
    transition-delay: 0s;
}

.play-btn:hover::after {
    height: 0;
    width: 0;
    transition: 0s ease;
}

/* /success story */

/* events */

.card-date {
    position: absolute;
    background: #EE7313;
    font-family: "futura-bold";
    text-align: center;
    padding: 10px;
    color: #fff;
    top: 0;
    left: 0;
    text-transform: uppercase;
}

.card-date span {
    font-size: 40px;
}

/* /events */

/* teacher */

.teacher-info {
    width: 70%;
    bottom: 0;
    right: 0;
}

/* /teacher */

/* footer */

.newsletter {
    background-image: linear-gradient(to right, transparent 50%, #EE7313 50%);
    margin-bottom: -170px;
    position: relative;
    z-index: 1;
}

.newsletter-block {
    padding-left: 50px;
}

@media (max-width: 575px) {
    .newsletter-block {
        padding-left: 15px;
    }
}

.input-wrapper {
    position: relative;
}

.input-wrapper button {
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.form-control {
    height: 60px;
    background: #fff;
    border-radius: 0;
    padding-left: 25px;
}

.form-control:focus {
    border-color: #EE7313;
    box-shadow: none;
}

.newsletter-block .form-control {
    height: 90px;
}

.bg-footer {
    background-color: #182b45;
}

.logo-footer {
    margin-top: -20px;
    display: inline-block;
}

.footer {
    border-color: #494a43 !important;
    padding-top: 275px;
}

/* /footer */

.filter-controls li {
    cursor: pointer;
    transition: .1s ease;
}

.filter-controls li.active {
    font-weight: 600;
    color: #EE7313;
}

.filter-controls li:hover {
    color: #EE7313;
}

/*# sourceMappingURL=maps/style.css.map */

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*world rotating*/

.rotate {
    animation: rotation 5s infinite linear, levitating 2s infinite alternate;
    transform-origin: center;
    transform-box: fill-box;
}

.floating {
    animation: levitating 2s infinite alternate;
    transform-origin: center;
    transform-box: fill-box;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg) translateY(30%);
    }
}

@keyframes levitating {
    from {
        transform: translateY(0%);
    }
    to {
        transform: translateY(20%)
    }
}

/*FOOTER BIXTROX  */

/* 25.1 social link */

.social-icon-outline {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #fff;
    text-align: center;
    transition: .2s ease;
    display: inline-block;
}

.social-icon-outline i {
    line-height: 40px;
    color: #fff;
    font-size: 14px;
}

.social-icon-outline:hover {
    border-color: #EE7313;
}

.social-icon-bg {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: #1e1e4b;
    border: 1px solid #1e1e4b;
    text-align: center;
    transition: .2s ease;
    display: inline-block;
}

.social-icon-bg i {
    line-height: 40px;
    color: #fff;
    font-size: 14px;
}

.social-icon-bg:hover i{
    color: #fff;
}

.social-icon-bg:hover{
    background: #EE7313;
    border-color: #EE7313;
}

/* 25.2 footer link */

.footer-links {
    padding-left: 18px;
}

.footer-links li {
    margin-bottom: 20px;
    position: relative;
}

.footer-links li::before {
    position: absolute;
    font-family: "themify";
    content: "\e649";
    top: 0;
    left: -20px;
    height: 12px;
    width: auto;
    color: #fff;
}

.footer-links li a {
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    transition: .2s ease;
    display: block;
}

.footer-links li a:hover {
    text-decoration: underline;
    color: #EE7313;
}

/* 25.3 subcription */

.form-control.subscribe {
    width: 100%;
    border-radius: 35px;
    border: 0;
    padding: 0 20px !important;
    height: 50px;
}

/* subscribe button */

.btn-subscribe {
    position: absolute;
    right: 5px;
    top: 5px;
    border: 0;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: #fff;
    background: #EE7313;
    transition: all linear .2s;
}

.btn-subscribe:hover {
    padding-left: 15px;
}

.btn-subscribe:focus {
    outline: 0;
}

/* back to top button */

.back-to-top {
    position: absolute;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    color: #fff;
    background: #EE7313;
    top: -25px;
    right: 10px;
    border: 1px solid #454547;
    text-align: center;
    display: block;
    transition: .2s ease;
}

.back-to-top i {
    line-height: 50px;
}

.back-to-top:hover {
    border-color: #EE7313;
}

.back-to-top:focus {
    outline: 0;
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.font-secondary {
    font-family: "Open Sans", sans-serif;
}

.p-ideario {
    font-weight: 400;
    color: #5c5c77;
    font-size: 17px;
    line-height: 1.9;
    font-family: "Open Sans", sans-serif;
}

/* About Bixtrox*/

/* 13. about section */

.about {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    /* 13.4 about video */
    /* 13.6 about slider */
}

.about-video {
    min-height: 300px;
}

.about-slider {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-slider .prevArrow, .about-slider .nextArrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    border: 0;
    line-height: 55px;
    text-align: center;
    background: #fff;
    transition: .2s ease;
}

.about-slider .prevArrow:focus, .about-slider .nextArrow:focus {
    outline: 0;
}

.about-slider .prevArrow:hover, .about-slider .nextArrow:hover {
    background: #e84444;
    color: #fff;
}

.about-slider .prevArrow {
    left: 25px;
}

.about-slider .nextArrow {
    right: 25px;
}

/* 13.8 ceo section start */

.ceo-image {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 400px;
}

/* 1.2.1 page title */

.page-title {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0 100px;
}

/* 11. fun-facts section start */

.fun-facts {
    background-position: center center;
    background-size: cover;
}

.overlay-dark {
    position: relative;
}

.overlay-dark::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: .8;
}

/* round icon */

.round-icon {
    height: 70px;
    min-width: 70px;
    max-width: 70px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    background: #fff;
    text-align: center;
    line-height: 70px;
    font-size: 30px;
    color: #e84444;
    display: inline-block;
}

/* cards overlaping*/

.overlap-cards {
    top: 20px;
    left: -100px
}

@media (max-width: 575px) {
    .overlap-cards {
        top: 0;
        left: 0
    }
}

@media (max-width: 991px) {
    .overlap-cards {
        top: 0;
        left: 0
    }
}

@media (max-width: 767px) {
    .overlap-cards {
        top: 0;
        left: 0
    }
}

/* Services */

#list-services li {
    line-height: 1.8em;
    font-family: "Open Sans", sans-serif;
    transition: .2s ease;
}

.card-header:first-child {
    border-radius: 35px;
}

.py-10 {
    padding: 10px 0;
}

.text-secondary {
    color: white !important;
}

@media (min-width: 1200px) {
    .w-lg-75 {
        width: 75% !important;
    }
}

@media (max-width: 900px) {
    .w-lg-75 {
        width: 75% !important;
    }
}

@media (max-width: 767px) {
    .w-lg-75 {
        width: 75% !important;
    }
}

@media (max-width: 575px) {
    .w-lg-75 {
        width: 100% !important;
    }
    .w-sm-10 {
        width: 14em !important;
    }
    .w-sm-20 {
        width: 20em !important;
    }
    .text-sm-center {
        text-align: center !important;
    }
}

.work-filter {
    margin-bottom: 35px;
}

.work-filter ul li {
    display: inline-block;
}

.work-filter ul li a {
    color: #062033;
    display: block;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 17px;
    border-radius: 6px;
    text-transform: capitalize;
}

.work-filter ul li a:hover, .work-filter ul li a.active {
    background-color: #EE7313;
    border-radius: 6px;
    color: #fff;
    padding: 5px 17px;
}

.mix {
    display: none;
}

/*.work-item {
      float: left;
      width: 25%;
      position: relative;
  }
  
  .work-item > img {
    display: block;
    height: auto;
    width: 100%;
  }*/

.overlay-galery {
    background-color: rgba(238, 116, 21, .9);
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 450ms ease-out 0s;
    -moz-transition: all 450ms ease-out 0s;
    -o-transition: all 450ms ease-out 0s;
    transition: all 450ms ease-out 0s;
    -webkit-transform: rotateY(180deg) scale(0.5, 0.5);
    -moz-transform: rotateY(180deg) scale(0.5, 0.5);
    -ms-transform: rotateY(180deg) scale(0.5, 0.5);
    -o-transform: rotateY(180deg) scale(0.5, 0.5);
    transform: rotateY(180deg) scale(0.5, 0.5);
}

.work-item:hover .overlay-galery {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: rotateY(0deg) scale(1, 1);
    -moz-transform: rotateY(0deg) scale(1, 1);
    -ms-transform: rotateY(0deg) scale(1, 1);
    -o-transform: rotateY(0deg) scale(1, 1);
    transform: rotateY(0deg) scale(1, 1);
}

.work-item .overlay-galery a {
    border: 1px solid #fff;
    border-radius: 50%;
    display: inline-block;
    padding: 7px 10px;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
}

.work-item .overlay-galery a:hover {
    color: #fff;
}

.work-item .overlay-galery h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin: 25px 0 8px;
}

.work-item .overlay-galery a i {
    color: #fff;
}

.work-item .overlay-galery p {
    font-size: 14px;
    line-height: 24px;
}

/* TESTING IMAGES*/

.box {
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 50%;
    min-width: 200px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.col-lg-6.box {
    padding: 15px;
}

.image-grid-container {
    display: grid;
    /* For 3 columns */
    grid-template-columns: auto auto auto auto;
}

.grid-galery {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.col-lg-3 img {
    width: 100%;
    min-height: 100%;
}

/*Fancy Style*/

/* lightbox */

.fancybox-title h3 {
    font-size: 20px;
}

.fancybox-title p {
    font-size: 14px;
}

/* Project laughtbox setup */

.fancybox-item.fancybox-close {
    background: url("../images/galery/close.jpg") no-repeat scroll 0 0 transparent;
    height: 50px;
    right: 0;
    top: 0;
    width: 50px;
}

.fancybox-next span {
    background: url("../images/galery/right.png") no-repeat scroll center center #EE7313;
    height: 50px;
    width: 50px;
    right: 0;
}

.fancybox-prev span {
    background: url("../images/galery/left.png") no-repeat scroll center center #EE7313;
    height: 50px;
    width: 50px;
    left: 0;
}

.fancybox-skin {
    border-radius: 0;
}

.fancybox-title.fancybox-title-inside-wrap {
    padding: 15px;
}

.fancybox-title h3 {
    margin: 0 0 15px;
}

.fancybox-title p {
    color: #818181;
    font-size: 16px;
    line-height: 22px;
}

.fancybox-title-inside-wrap {
    padding-top: 0;
}

/* Service Menu - Admision*/

.service-menu li:hover a {
    color: #fff !important;
    background: #EE7313;
}

.d-block {
    display: block!important;
}

.service-menu li.active {
    position: relative;
}

.service-menu li.active a {
    background: #EE7313;
    color: #fff !important;
}

.service-menu li.active::before {
    position: absolute;
    content: '';
    height: 15px;
    width: 15px;
    background: #EE7313;
    top: 50%;
    right: -7px;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 991px) {
    .service-menu li.active::before {
        display: none;
    }
    .list-group-item.active::before {
        display: none;
    }
}

.service-menu li:hover a {
    color: #fff !important;
    background: #EE7313;
}

.service-menu a:hover {
    color: #fff !important;
    background: #EE7313;
}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #EE7313;
    border-color: #FFF;
}

.list-group-item.active::before {
    position: absolute;
    content: '';
    height: 15px;
    width: 15px;
    background: #EE7313;
    top: 50%;
    right: -7px;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}

.service-menu li.active a {
    background: #EE7313;
    color: #fff !important;
}

table {
    margin: 15px;
    padding: 15px;
}

/* == WELFARE == */

#list-welfare>li {
    margin: 0 0 20px 0;
}

#list-welfare {
    font-size: 18px;
    margin-top: 1.3em;
    list-style-type: disc;
}

.square_walfare {
    background-color: #EE7313;
    height: 8em;
    width: 5.5em;
}

.square_walfare_extended {
    background-color: #EE7313;
    height: 2em;
    width: 12em;
    text-align: end;
}

.square_walfare_extended>span {
    line-height: 2em;
    padding-right: 1em;
    font-size: medium;
}

#padding_left_unset {
    padding-left: unset;
}

#padding_left_set {
    padding-left: 15px;
}

.mt-walfare-3 {
    margin-top: 3em;
}

.overlay-shape {
    display: block;
    float: right;
    position: static;
}

.shape-floating {
    position: absolute;
    display: block;
    top: auto;
    text-align: left;
    right: 0;
}

@media(max-width: 575px) {
    .square_walfare {
        display: none;
    }
    .overlay-shape {
        display: none;
    }
}

/*ul li:before {
    content: "•";
    font-size: 190%;
    padding-right: 10px;
    vertical-align: sub;
 }*/

/* Admision */

.card-account {
    border: #EE7313 2px solid;
    height: 8em;
    display: inline-block;
    border-radius: 25px 25px
}

.card-account p {
    line-height: unset;
}

@media (min-width: 991px) {
    .width-account {
        width: 25em;
    }
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 69em;
        margin: 1.75rem auto;
    }
}

.float-wp-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #191919;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #191919;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* GALERY */

.carousel-control-next-icon {
    background-image: url("https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-arrow-forward-512.png");
    font-size: 30em;
}

.carousel-control-prev-icon {
    background-image: url("https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-ios7-arrow-back-512.png")
}

.carousel-control {
    position: absolute;
    top: 50%;
    /* pushes the icon in the middle of the height */
    z-index: 5;
    display: inline-block;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    /* Use to adjust size of icons */
    width: 6rem;
    height: 6rem;
}

.text-third{
    color: #1e1e4b !important;
}

.text-third:hover{
    color: #EE7313 !important;
}

@media(max-width: 575px){
    .go-left{
        text-align: left !important;
    }
    .m-b-sm-4{
        margin-bottom: 3em;
    }
    .go-left-flex{
        justify-content: flex-start!important;
    }
    .d-none-mb{
        display: none;
    }
}

.square-history{
    border: 15px solid #EE7313; 
    margin: -4%; 
    padding: 50px
}

@media(max-width: 575px){
    .square-history{
        border: 5px solid #EE7313; 
        margin: unset; 
        padding: 40px
    }
    .mt-0-sm{
        margin-top: 0 !important;
    }
    .mb-0-sm{
        margin-bottom: 0 !important;
    }
}

@media(max-width: 575px){
    .mt-3-sm{
        margin-top: 3em;
    }
}


