* {
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

body {
    background: #f7f7f7;
    background: url("../../assets/backgrounds/background.png") repeat;
}


/*DEFINITIONS*/
body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

body::-webkit-scrollbar-button {
    width: 0;
    height: 0;
}

body::-webkit-scrollbar-thumb {
    background: #DC3545;
    border: 0 none #ffffff;
    border-radius: 0;
}

body::-webkit-scrollbar-track {
    background: #f2f2f2;
    border: 0 none #ffffff;
    border-radius: 0;
}

body::-webkit-scrollbar-corner {
    background: transparent;
}

/*Navigation*/
.header {
    -webkit-box-shadow: 0 0 28px -22px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0 0 28px -22px rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 28px -22px rgba(0, 0, 0, 0.75);
    position: absolute;
    width: 100%;
    z-index: 10000;
    animation: fadeInDown .8s ease;
}

.header-static {
    position: static;
}

.header-fixed {
    position: fixed;
    animation: slideInDown .5s ease-in;
}

.header-fixed .header-top {
    display: none;
}

.header .header-top {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: #fbfcfc;
}

.header .header-top .social-links .social-links-inner a {
    padding: .5rem 0;
    list-style: none;
    text-align: center;
    text-decoration: none;
    width: 45px;
    transition: all ease .6s;
    font-size: 17px;
    color: white;
}

.header .header-top .social-links .social-links-inner a:hover {
    opacity: 0.82;
}

.header .header-top .social-links .social-links-inner a.social-link-facebook {
    background: #6994f2;
}

.header .header-top .social-links .social-links-inner a.social-link-instagram {
    background: #929398;
}

.header .header-top .social-links .social-links-inner a.social-link-youtube {
    background: #EE5757;
}

.header .header-top .contacts .contact-link {
    position: relative;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    padding: .5rem 1rem;
}

.header .header-top .contacts .contact-link:not(:last-of-type) {
    border-right: 1px solid rgba(0, 0, 0, 0.04);
}

.header-main {
    background: white;
}

.header-main .navbar {
    padding: 0;
}

.header-main .navbar-brand {
    padding: .6rem 1.2rem;
    text-align: center;
    position: relative;
    border-radius: 0 0 50% 50%;
    filter: drop-shadow(0px 0px 1px);
}

.header-main .navbar-brand h1 {
    letter-spacing: 7px;
}

.header-main .navbar-brand .sub-title {
    display: block;
    font-size: .8rem;
    text-align: center;
    color: #191919;
    margin: 0;
    border-color: #FFB64D;
}

.header-main .navbar-brand img {
    width: 100%;
}

.header-main .navbar-nav {
    padding-right: 1rem;
}

.header-main .navbar-nav .nav-link {
    font-size: 18px;
    position: relative;
    padding-right: 1rem;
    padding-left: 1rem;
    font-weight: 500;
    transition: all ease .6s;
}

.header-main .navbar-nav .nav-link:last-child {
    padding-right: 0;
}

.header-main .navbar-nav .nav-link.active {
    color: #dc3545;
    font-weight: 900;
}

.header-main .navbar-nav .nav-link:hover {
    color: rgba(12, 16, 18, 0.9);
}

/* width */
.header-main .navbar-collapse::-webkit-scrollbar {
    width: 1px !important;
    height: 2px;
    margin: 0 0 -2px 0;
}

/* Track */
.header-main .navbar-collapse::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.header-main .navbar-collapse::-webkit-scrollbar-thumb {
    background: #dc3545;
    border-radius: 12px;
}

/* Handle on hover */
.header-main .navbar-collapse::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.header-main .navbar-toggler {
    border: none;
    filter: drop-shadow(0px 0px 1px);
    color: #191919;
}

.main-banner .main-banner-inner {
    position: relative;
}

.swiper-slider .swiper-slide {
    background-size: cover;
    background-repeat: no-repeat !important;
    background-position: left;
}

.swiper-slider .swiper-slide .swiper-slide-inner {
    background: rgba(18, 15, 20, 0.5);
}

.main-banner .main-banner-inner {
    position: relative;
}

.main-banner .main-banner-inner .main-banner-content {
    height: 100vh;
    width: 100%;
}

.main-banner .main-banner-inner .main-banner-content .main-banner-text {
    z-index: 99;
    animation: fadeInUp .8s ease-in-out;
    position: relative;
}

.main-banner .main-banner-inner .main-banner-content .main-banner-text .btn {
    padding: .6rem 1rem;
}

.main-banner .main-banner-inner .main-banner-content .main-banner-text .main-heading {
    font-size: 3em;
}

.swiper-main-banner .swiper-slide {
    background-size: cover !important;
    background-position: center !important;
}

.main-banner .swiper-main-banner .swiper-pagination {
    position: absolute;
    left: 110px;
    bottom: 40% !important;
    width: 100px;
    height: auto;
}


.main-banner .swiper-main-banner .swiper-pagination .swiper-pagination-bullet {
    display: block;
    margin: 12px auto;
    outline: none !important;
}

.swiper-main-banner .swiper-pagination .swiper-pagination-bullet {
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.82) !important;
    width: 16px;
    height: 16px;
    transition: all .4s ease;
    outline: none !important;
}

.swiper-main-banner .swiper-pagination .swiper-pagination-bullet:hover {
    border: 2px solid rgba(255, 255, 255, 0.95);
    opacity: .9;
}

.swiper-main-banner .swiper-pagination .swiper-pagination-bullet-active {
    border-width: 3px;
    width: 18px;
    height: 18px;
    position: relative;
}

.swiper-main-banner .swiper-pagination .swiper-pagination-bullet-active:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 8px;
    width: 8px;
    background: #eac56a;
    border-radius: 100%;
}

.main-banner .swiper-main-banner .swiper-button-next, .main-banner .swiper-main-banner .swiper-button-prev {
    color: #fbfcfc;
}

.swiper-main-banner .swiper-button-next, .swiper-main-banner .swiper-button-prev {
    transition: all ease-in-out .5s;
    font-size: 2.6em;
    position: absolute;
    bottom: 40% !important;
    width: auto !important;
    height: auto;
    outline: none !important;
}

.swiper-main-banner .swiper-button-next:after, .swiper-main-banner .swiper-button-prev:after {
    content: none;
}

.main-banner .go-to-content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    height: auto;
    width: auto;
    margin: 0 auto;
}

.main-banner .swiper-main-banner .swiper-button-next:hover, .main-banner .swiper-main-banner .swiper-button-prev:hover {
    color: rgba(255, 255, 255, 0.95);
}

.main-banner .go-to-content img {
    width: 150px;
    transition: all ease .6s;
}

.main-banner .go-to-content:hover img {
    opacity: 0.8;
}

.section {
    position: relative;
    margin: 5.55rem 0;
}


.section .section-backgrounds {
    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;
    overflow: hidden !important;
}

.section .section-background {
    position: absolute;
    filter: drop-shadow(0 0 1px rgba(19, 17, 15, 0.3));
}

.section .section-header {
    text-align: center;
    margin: 3.5em 0;
    display: block;
}

.section-main-title {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    padding: 0 26px;
}

.section-main-title:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 100%;
    background: rgba(255, 193, 7, 0.6);
    filter: drop-shadow(0 0 1px rgba(19, 17, 15, 0.3));
    transform: translateX(-50%);
    height: 16px;
    z-index: -1;

}

.section-main-title .section-main-title-text {
    text-align: center;
    font-weight: bold;
    font-size: 3.4em;
    filter: drop-shadow(0 0 3px rgba(19, 17, 15, 0.1));
}


.section .section-header .section-sub-title {
    text-align: center;

}

.section .section-header .section-sub-title .section-sub-title-text {
    text-align: center;
    font-weight: lighter;
    font-size: 1.3em;
    margin: 0 auto;
    color: rgba(0, 0, 0, 0.65);
}

.section .section-content-inner {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.95);
}

.section .section-footer .btn-section-footer {
    background: rgba(255, 193, 7, 0.6);
    filter: drop-shadow(0 0 1px rgba(19, 17, 15, 0.3));
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 18px;
    font-size: 1.1em;
    transition: all ease .4s;
}

.section .section-footer .btn-section-footer:hover {
    background: rgba(255, 193, 7, 0.7);
    padding: 13px 19px;
}

.section-banner .section-title {
    font-size: 2.8em;
    color: white;
    padding: 2.5rem 0;
}

.section-banner .section-title .section-sum-content {
    font-size: .7em !important;
    color: #dc3545;
}


.section .section-text {
}

/*Page Content*/

.education-units .section-backgrounds .position-1 {
    position: absolute;
    top: 0;
    left: -150px;
    width: 550px;
    transform: rotate(-5deg);
}

.education-units .section-backgrounds .position-2 {
    position: absolute;
    top: 0;
    right: -150px;
    width: 550px;
    transform: rotate(25deg);
}

.education-units .card {
    border-radius: 0 !important;
    border: none;
    overflow: hidden !important;
    margin-bottom: 1.25rem;
}


.education-units .card img {
    border-radius: 1.25rem !important;
    height: 300px;
    object-fit: cover;
}


.education-units .card .card-img-overlay {
    border: none !important;
    border-radius: 1.25rem !important;
    background: rgba(75, 46, 67, 0.44);
    color: rgba(255, 255, 255, 0.95);
    opacity: .95;
    transition: all ease-out .6s;
    padding: 1.55rem;
    overflow: hidden !important;
}

.education-units .card:hover .card-img-overlay {
    background: rgba(255, 42, 42, 0.84);
    color: rgba(255, 255, 255, 0.98);
    opacity: 1;
}

.education-units .card .card-img-overlay .card-title {
    font-weight: bolder;
    filter: drop-shadow(2px 2px 12px black);
    font-size: 2em;
}

.education-units .card .card-body-cover .card-text {
    font-weight: lighter;
}

.education-units .card .card-img-overlay .btn {
    text-decoration: none;
    padding: 10px 18px;
    margin: 4px 0;
}

.tests .card {
    border-radius: 0 !important;
    padding: 0 !important;
    border: none;
    margin-bottom: 2.25rem;
    -webkit-box-shadow: 0px 0px 30px -29px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 30px -29px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 30px -29px rgba(0, 0, 0, 0.75);
}

.tests .card-img-col {
    position: relative;
}


.tests .card-img-col .card-img-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(255, 42, 42, 0.34);
    border-radius: 0;
    transition: all ease .6s;
}


.tests .card:hover .card-img-overlay {
    background: rgba(255, 42, 42, 0.84);
    color: rgba(255, 255, 255, 0.98);
}

.tests .card-img-col .card-img-overlay i {
    font-size: 5em;
    color: rgba(255, 255, 255, 0.9);
}

.tests .card-img {
    width: 100%;
    min-height: 150px;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
    border: none;
}

.tests .card .card-body {
    padding: 1rem;
}

.tests .card .card-body .card-title {
    font-size: 1.2em;
    font-weight: bolder;
}

.tests .card .card-footer {
    border: none;
    background: none;
    padding: 0;
    bottom: 0;
    position: absolute;
    width: 100%;
}

.tests .card .card-footer .btn-card-footer {
    background: #DC3545;
    color: white;
    padding: 10px;
    display: block;
    border-radius: 0;
}


.references .section-backgrounds .position-1 {
    position: absolute;
    top: 0;
    left: -150px;
    width: 550px;
    transform: rotate(-5deg);
}

.references .section-backgrounds .position-2 {
    position: absolute;
    top: 0;
    right: -150px;
    width: 550px;
    transform: rotate(25deg);
}


.references .card {
    border-radius: 1.25rem !important;
    padding: 25px 50px !important;
    border: none;
    position: relative;
    background: none;
}

.references .card .card-top {
    position: absolute;
    top: 0;
    background: #f2f2f2;
    color: white;
    border-radius: 25px;
}

.references .card .card-top .card-top-icon {
    font-size: 2.6rem;
    border-radius: 100%;
    height: 50px;
    width: 50px;
}

.references .card .card-top .card-top-inner {
    padding: 0 12px;
    color: #222222;
}

.references .card .card-body {
    background: white;
    border-radius: 1.25rem !important;
    padding: 3.2rem 2.2rem 2.2rem 2.2rem;
}


.swiper-container .swiper-pagination {

    bottom: -6px;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
    display: inline-block;
    background: none;
    border: 2px solid #DC3545;
    width: 16px;
    height: 16px;
    transition: all .4s ease;
    outline: none !important;

}

.swiper-container .swiper-pagination .swiper-pagination-bullet:hover {
    opacity: .9;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    border-width: 3px;
    width: 18px;
    height: 18px;
    position: relative;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 8px;
    width: 8px;
    background: #eac56a;
    border-radius: 100%;
}

.swiper-container .swiper-button-next, .swiper-container .swiper-button-prev {
    color: #DC3545;
    transition: all ease-in-out .5s;
    font-size: 2.6em;
    position: absolute;
    width: auto !important;
    height: auto;
    outline: none !important;
}

.swiper-container .swiper-button-next:after, .swiper-container .swiper-button-prev:after {
    content: none;
}

.swiper-container .swiper-button-next:hover, .swiper-container .swiper-button-prev:hover {
    color: rgba(16, 18, 12, 0.95);
}

.team .card {
    border: none;
    border-radius: 0 !important;
    filter: drop-shadow(0 0 1px rgba(19, 17, 15, 0.3));
}


.team .card .card-img-top {
    height: 350px;
    object-fit: cover;
    object-position: top;
    border-radius: 0 !important;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
}

.team .card .card-body {
    text-align: center;
    color: #222222;
    margin: 10px 0;
}

.team .card .card-body .card-title {
    font-weight: bolder;
    color: #DC3545;
    font-size: 1.5em;
}

.team .card .card-body .card-text {
    color: rgba(15, 22, 15, .8);
    font-size: 1.2em;
}

.team .card .card-footer {
    padding: 0;
    border: 0;
    border-radius: 0;
}

.team .card .card-footer .btn-card-footer {
    background: #DC3545;
    color: white;
    padding: 10px;
    display: block;
    border-radius: 0;
}

.why-choose-us {
    padding: 2.25rem 0;
}


.why-choose-us .card {
    border: none;
    border-radius: 1.25rem;
    filter: drop-shadow(0 0 1px rgba(19, 17, 15, 0.3));
    cursor: pointer;
    transition: all ease .6s;
    margin-bottom: 1.26rem;
}

.why-choose-us .card .card-img-top {
    height: 160px;
    width: 160px;
    margin-top: 20px;
    object-fit: cover;
    object-position: center;
    background: none;
    border: 3px dashed #eac56a;
    padding: 8px;
}

.why-choose-us .card .card-body {
    text-align: center;
}

.why-choose-us .card .card-body .card-title {
    font-size: 1.8em;
    text-align: center;
    font-weight: bolder;
    color: #23272b;
    filter: drop-shadow(0 0 1px rgba(19, 17, 15, 0.3));
}

.why-choose-us .card:hover {
    background: #DC3545;
    color: white;
}

.why-choose-us .card:hover .card-title {
    color: white;
}

.certificates .card .card-footer {
    padding: 0;
    background: 0;
}

.certificates .card .card-footer .btn-card-footer {
    background: #DC3545;
    color: white;
    padding: 10px;
    display: block;
    border-radius: 0;
}

.certificates .card .card-title {
    font-size: 1.5em;
    border-bottom: 1px dashed #FFB64D;
    padding: .6rem 0;
    filter: drop-shadow(0 0 1px rgba(19, 17, 15, 0.3));
}

.col-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.side-bar-cards .card {
    border-radius: 0;
    border: 1px solid #dc3a49dd;
    background: rgba(255, 255, 255, 0.85);
    -webkit-box-shadow: 0px 0px 30px -29px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 30px -29px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 30px -29px rgba(0, 0, 0, 0.75);
}

.side-bar-cards .card:not(:first-child) {
    margin: 15px 0;
}

.side-bar-cards .card .card-header {
    background: white;
    font-size: 1.1em;
    color: #dc3545;
    border-color: #dc3a49dd;
}

.side-bar-cards .card .list-group-flush > .list-group-item {
    border-style: dashed;
    border-color: #eac56a;
    cursor: pointer;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.78);
}

.side-bar-cards .card .list-group-flush > .list-group-item:hover {
    color: #19232e;
    background: rgba(224, 215, 216, 0.2);
}

.team .card:first-child {
    margin-top: 0 !important;
}


.employee-main-banner-img {
    max-height: 450px;
    object-fit: cover;
    object-position: center;
}

.gallery img {
    cursor: pointer;
}

.contact-inner a {
    display: block;
    font-size: 1.6em;
    text-decoration: none;
    opacity: 0.8;
    color: #dc3545;
}

.contact-inner a:hover {
    opacity: .9;
}

#contact-modal .modal-content {
    background: none;
    border: 0;
    border-radius: 0;
}

#contact-modal .close {
    color: white;
    outline: none;
    font-size: 1.2em;
    opacity: 1;
}

#contact-modal .modal-body {
    padding: 2.5rem;
    background: white;
}


footer .nav-link {
    color: rgba(0, 0, 0, 0.6);
}

footer .social-links a {
    color: #23272b;
    margin-right: 20px;
    transition: all ease .6s;
    font-size: 1.1em;
}

footer .social-links a:hover {
    color: #DC3545;
}

/*Dynamic Form*/
.dynamic-form-content {
    margin-bottom: 1.2em;
}

.form-check-container {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1.1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form-check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.form-check-container .checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 22px;
    width: 22px;
    background-color: #eee;
}

.form-check-container .checkmark.radiocheck {
    border-radius: 50%;
}

.form-check-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.form-check-container input:checked ~ .checkmark {
    background-color: #2196F3;
}

.form-check-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.form-check-container input:checked ~ .checkmark:after {
    display: block;
}

.form-check-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*Select2*/
.select2-container .select2-selection--single {
    height: calc(1.5em + .75rem + 2px) !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    margin: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 4px;
}

.select2-search__field {
    padding: 4px !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    outline: none !important;
    border-radius: .25rem !important;
}

form label {
    font-weight: bold;
}

.form-control:focus {
    box-shadow: none;
}

.dynamic-form-result {
    margin: 1.2rem 0;
    display: none;
}

.dynamic-form-result-inner {
    border: 1px solid #D2E4E8;
    padding: .8rem 1rem;
    font-size: 1.2em;
    text-align: center;
}

.header-main .navbar-nav .nav-sub-dropdown .nav-item-dropdown > .nav-link.active:nth-child(odd), footer .list-unstyled .nav-sub-dropdown .nav-item-dropdown > .nav-link.active:nth-child(odd) {
    color: #FFB64D !important;
}

.header-main .nav-sub-dropdown, footer .nav-sub-dropdown {
    display: none;
    background: #ffffff;
    z-index: 100000000;
    width: 300px;
}

.header-main .nav-sub-dropdown {
    position: absolute;
}

.header-main .nav-sub-dropdown .sub-active, footer .nav-sub-dropdown .sub-active {
    display: block;
}

.header-main .nav-sub-dropdown .nav-item {
    width: 100%;
}

footer .nav-link.active {
    color: rgba(12, 18, 22, 0.8);
    font-weight: 500;
}

.contact-info {

}

