@charset "UTF-8";
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-BoldItalic.woff2') format('woff2');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Book';
    src: url('../fonts/Gotham-Book.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Ultra';
    src: url('../fonts/Gotham-Ultra.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Gotham Book';
    font-weight: normal;
    color: #444444;
    padding: 0px !important;
}

a {
    color: #152b7e;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Open Sans", sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #aa1f22;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #e93615;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    transition: all 0.5s;
    padding: 7px 0;
}

.logo.me-auto img {
    transition: all 0.5s;
    width: 70%;
}

.me-auto {
    transition: all 0.5s;
}

.header-scrolled .logo.me-auto img {
    width: 60%;
    transition: all 0.5s;
}

.navbar a.callring {
    font-family: 'Gotham';
    font-weight: bold;
    font-size: 19px;
    color: #232323;
    padding: 0px 0 10px 30px;
}

#header.header-scrolled {
    padding: 5px 0 !important;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}


/*--------------------------------------------------------------
# Get Startet Button
--------------------------------------------------------------*/

.get-started-btn {
    margin-left: 30px;
    background: #152b7e;
    color: #fff;
    border-radius: 4px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.get-started-btn:hover {
    background: #111111;
    color: #fff;
}

@media (max-width: 992px) {
    .get-started-btn {
        margin: 0 15px 0 0;
        padding: 6px 18px;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 0px 0 5px 30px;
    color: #232323;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #aa1f22;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    right: 0px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #152b7e;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #111111;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

.navbar ul.moby {
    display: none;
}

ul.moby li {
    display: inline-block;
    float: right;
}

ul.moby li a {
    font-size: 20px;
    padding: 8px;
}

ul.moby li a i {
    font-size: 22px;
    color: #910b16;
    transition: all 0.5s ease;
}

ul.moby li a:focus{
    padding:8px;
}

ul.moby li a:hover i, ul.moby li a:focus i {
    color: #e12c0a;
    font-size: 22px;
    transition: all 0.5s ease;
}

@media (max-width: 1100px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul.dsky {
        display: none;
    }
    .navbar ul.moby {
        display: block;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #111111;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #152b7e;
}

.navbar-mobile .getstarted {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #152b7e;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

main.news-view {
    padding-top: 120px;
}

main.news-view h2 {
    font-family: 'Vanitas';
    color: #FFF;
    margin-bottom: 30px;
}

.height-300 {
    height: 300px;
}

@media (max-width:960px) {
    .height-300 {
        height: 100px;
    }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    position: relative;
}

#hero .container {
    z-index: 3;
}

.image-banner {
    position: relative;
}

.image-banner img {
    width: 100%;
}

.img-cnt {
    position: absolute;
    top: 30%;
    width: 100%;
    left: 42%;
}

#hero h1 {
    margin: 0;
    font-size: 54px;
    font-weight: 900;
    color: #232323;
    font-family: 'Gotham';
    text-transform: uppercase;
}

#hero h2 {
    color: #232323;
    margin: 0px 0 0 0;
    font-size: 40px;
    line-height: 1.4;
    font-family: 'Gotham Book';
}

#hero h3 {
    text-transform: uppercase;
    color: #aa1f22;
    font-family: 'Gotham';
    font-weight: bold;
    font-size: 40px;
}

#hero h3 span {
    color: #e93615;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    background: #152b7e;
    border: 2px solid #152b7e;
}

#hero .btn-get-started:hover {
    background: transparent;
    border-color: #fff;
}


.bannersections { padding-top: 100px; }


@media (max-width: 960px) {}

@media (max-width: 768px) {

    .bannersections {
        padding-top: 0;
      } 
      #header {background:rgba(255, 255, 255, 0.70);}

}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

.section-top-btm {
    padding: 65px 0px 65px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

section {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.section-title {
    font-family: 'Gotham';
    font-size: 30px;
    color: #910b16;
    font-weight: bold;
    padding-bottom: 15px;
}

.section-title h2 {
    display: block;
    color: #e12c0a;
    font-weight: bold;
    font-size: 30px;
    font-family: 'Gotham';
}

.common-paragraph p {
    font-family: 'Gotham Book';
    font-size: 16px;
    color: #595959;
    line-height: 27px;
}

.lef-cnt .common-paragraph p {
    margin-bottom: 28px;
}

#team .section-title h2:after {
    background: #FFF;
}

.section-title p {
    margin-bottom: 0;
}

.section-bg {
    padding: 120px 0;
    color: #fff;
}

.section-bg:before {
    content: "";
    background: #152b7e;
    position: absolute;
    bottom: 60px;
    top: 60px;
    left: 0;
    right: 0;
    transform: skewY(-3deg);
    z-index: -1;
}

#services p {
    line-height: 1.8;
}

.partners-logo {
    background: #FFF;
    padding: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    text-align: center;
}

.partners-logo img {
    filter: grayscale(1);
}

.partners-logo h4 {
    font-weight: 600;
    font-size: 26px;
    font-family: 'Vanitas';
    margin-top: 20px;
}

.rit-img img {
    width: 100%;
}

.abts-icons ul {
    padding: 0px;
    margin: 0px;
    margin-top: 50px;
}

.abts-icons li {
    display: inline-block;
    color: #232323;
    padding-left: 50px;
    position: relative;
    font-family: 'Gotham Book';
    font-size: 16px;
    width: 32%;
}

.abts-icons li:first-child {
    padding-left: 47px;
}

.abts-icons li span {
    font-family: 'Gotham';
    font-weight: bold;
}

.abts-icons li img {
    position: absolute;
    left: 0;
    top: 5px;
}

.why-choose-us {
    background-color: #910b16;
}

.why-choose-us .section-title,
.why-choose-us .section-title h2 {
    color: #fff;
}

.about-us {
    position: relative;
}

.about-us:before {
    position: absolute;
    content: "";
    background: transparent url("../img/bg-1.png") no-repeat scroll 0 0;
    left: 0;
    bottom: 180px;
    width: 168px;
    height: 272px;
    animation-name: brd-updown;
    -webkit-animation-name: brd-updown;
    animation-duration: 3.5s;
    -webkit-animation-duration: 3.5s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes brd-updown {
    0% {
        transform: translateY(0%);
        opacity: 1;
    }
    50% {
        transform: translateY(-10%);
        opacity: 1;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

.degree-sector {
    position: relative;
}

.degree-sector:before {
    position: absolute;
    content: "";
    background: transparent url("../img/bg-2.png") no-repeat scroll 0 0;
    left: -15px;
    top: 180px;
    width: 285px;
    height: 526px;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-name: brd-scale;
    z-index: -1;
}

@keyframes brd-scale {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    50% {
        transform: scale(1);
        opacity: 1
    }
    100% {
        transform: scale(0.9);
        opacity: 1;
    }
}

.why-box {
    background-color: #fff;
    text-align: left;
    border-radius: 8px;
    min-height: 90px;
    padding-left: 80px;
    margin: 17px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-family: 'Gotham';
    font-size: 16px;
    color: #232323;
    z-index: 1;
}

.why-box:before {
    position: absolute;
    content: "";
    right: 0;
    background-color: #fae6e7;
    width: 0;
    height: 100%;
    border-radius: 8px;
    z-index: -1;
    transition: all 0.5s;
}

.why-box:hover:before {
    width: 100%;
    transition: all 0.5s;
    left: 0;
}

.why-box img {
    position: absolute;
    left: 18px;
}

.degree-box {
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
    padding: 20px 15px 20px;
    min-height: 375px;
    margin: 0px 10px;
    background-color: #910b16;
}

.degree-box img {
    margin-bottom: 10px;
    background: #fff; padding: 10px; border-radius: 100%;
}

.degree-box h4 {
    font-family: 'Gotham';
    font-weight: bold;
    font-size: 16px;
    line-height: 25px;
    text-transform: uppercase;
    color: #ffc230;
    min-height: 50px;
}

.degree-box p {
    font-family: 'Gotham Book';
    font-size: 14px;
    line-height: 22px;
    color: #fff;
}

.degree-box a {
    font-family: 'Gotham Book';
    font-size: 14px;
    color: #910b16;
    text-decoration: underline;
    text-decoration-color: #910b16;
}

.total-edge {
    margin: 20px 0px;
}

.franchise-requirements {
    background-color: #fff9f2;
    position: relative;
}

.franchise-requirements:before {
    position: absolute;
    content: "";
    background: transparent url("../img/bg-4.png") no-repeat scroll 0 0;
    right: 0;
    bottom: 0;
    width: 571px;
    height: 530px;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-name: brdxangle;
}

@keyframes brdxangle {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }
    50% {
        transform: translateX(-10%);
        opacity: 1;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

.pre-scl h4 {
    color: #c58082;
    font-family: 'Gotham';
    font-weight: bold;
    text-transform: uppercase;
    font-size: 35px;
    margin-bottom: -24px;
}

.kg-scl h4 {
    color: #e88d7a;
    font-family: 'Gotham';
    font-weight: bold;
    text-transform: uppercase;
    font-size: 35px;
    margin-bottom: -24px;
}

.req-fles {
    display: flex;
}

.left-franchise {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
}

.midle-franchise {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-franchise {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
}
.left-franchise.bg-yellow {
    background-color: #ec9009;
    justify-content: end;
    position: relative;
}

.left-franchise.bg-yellow:before {
    position: absolute;
    content: "";
    right: 0;
    width: 92%;
    bottom: 0;
    height: 1px;
    background-color: #dc890f;
}

.left-franchise.bg-red {
    background-color: #910b16;
    justify-content: end;
    position: relative;
}

.left-franchise.bg-red:before {
    position: absolute;
    content: "";
    right: 0;
    width: 92%;
    bottom: 0;
    height: 1px;
    background-color: #a53940;
}

.midle-franchise.bg-white {
    background-color: #fff3e4 !important;
}

.right-franchise.bg-orange {
    background-color: #e12c0a;
    justify-content: start;
    position: relative;
}

.right-franchise.bg-orange:before {
    position: absolute;
    content: "";
    left: 0;
    width: 92%;
    bottom: 0;
    height: 1px;
    background-color: #e55337;
}

.requirements-fields {
    width: 75%;
    margin: 0 auto;
    margin-top: 23px;
    position: relative;
}

.requirements-fields:before {
    position: absolute;
    content: "";
    background: transparent url("../img/bg-3.png") no-repeat scroll 0 0;
    left: -202px;
    bottom: 0;
    width: 590px;
    height: 305px;
    animation-name: brd-updown;
    -webkit-animation-name: brd-updown;
    animation-duration: 3.5s;
    -webkit-animation-duration: 3.5s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

.empt-required p {
    font-family: 'Gotham';
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: #232323;
    margin: 0px;
}

.pre-required p {
    margin: 0px;
    font-family: 'Gotham Book';
    font-size: 15px;
    color: #fff;
    text-align: right;
}

.k12-required p {
    margin: 0px;
    font-family: 'Gotham Book';
    font-size: 15px;
    color: #fff;
    text-align: left;
}

.pre-required h4,
.k12-required h4 {
    font-family: 'Gotham';
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: #fff;
    display: none;
}

.franchise-procedure {
    background-color: #ffede9;
    position: relative;
    z-index: 1;
}

.franchise-procedure:before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #910b16;
    z-index: -1;
}

.franchse-procedure ul {
    padding: 0px;
    margin: 0px;
    position: relative;
}

.franchse-procedure ul:before {
    position: absolute;
    content: "";
    left: 38px;
    top: 6%;
    width: 2px;
    height: 90%;
    background-color: #f86f54;
}

.franchse-procedure ul li {
    display: flex;
    position: relative;
    width: 100%;
    padding-left: 100px;
    min-height: 77px;
    align-items: center;
    margin: 20px 0px;
    font-family: 'Gotham';
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    color: #232323;
}

.franchse-procedure ul li img {
    position: absolute;
    left: 0;
    top: 0;
}

.apply {
    padding: 5px;
    z-index: 99;
    position: relative;
}

.apply p {
    font-size: 13px
}

.testimonials-block { background: #dc890f;}
.testimonials-block .section-title, .testimonials-block .section-title h2 { color:#fff;}
.testimonials { width:75%; margin:30px auto 0; background: #fff; padding: 20px; border-radius: 10px; }
.testimonials-user h4 { font-size: 20px; color: #910b16; font-weight: bold;  }
.testimonials-user  {font-size: 15px; color: #e12c0a; padding-bottom: 15px; padding-top: 15px;}
.testimonials-content p { text-align: justify; }
.profile-photo { border-radius: 100%;;  }
.profile-photo img { border-radius: 100%;}
.usrblock { }
.testimonials-block .slick-dots { bottom: -85px; }
.testimonials-block .slick-dots li button { background: #fff; border-radius: 100%;}

.testimonials-block .slick-slide img {border-radius: 10px; }

.school-imgs { padding:15px}
.school-slider .awrd-sector { padding:0px 15px}

.video {width:80%; margin: 0 auto;}
.bannersections img { width: 100%; }

.school-slider .slick-dots { bottom: -55px; }



.cbook a {
    display: none;
    width: 100%;
    padding: 12px;
    background: #910b16;
    color: #fff;
    position: fixed;
    bottom: 0; font-family: 'Gotham';
    font-weight: bold;
    left: 0;
    z-index: 999; 
    font-size: 22px;
    text-align: center; 
}


/* Reach Us Start */
@media (max-width: 650px) { 
    .testimonials { width:100%;  }
    .testimonials-user  { padding-top: 30px; }

}



.form-data.cnt input {
    border: 1px solid #e4e4e4;
    border-radius: 5px;
    font-family: 'Gotham Book';
    font-size: 14px;
    height: 50px;
    padding: 6px 10px;
    width: 100%;
    margin-bottom: 18px;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #848484;
    opacity: 1;
    /* Firefox */
}

.form-data.cnt select {
    color: #848484;
    background-color: #fff;
    -moz-appearance: none;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border: 0px solid #e4e4e4;
    border-radius: 5px;
    font-family: 'Gotham Book';
    font-size: 14px;
    height: 50px;
    padding: 6px 10px;
    width: 100%;
    margin-bottom: 18px;
    cursor: pointer;
    background: rgba(255, 255, 255, 1) url("../img/arrow.png") no-repeat scroll 97% center;
}

.form-data.cnt input[type="submit"],
.form-data.cnt input[type="button"] {
    background: #e12c0a;
    border: medium none;
    color: #fff;
    font-family: 'Gotham';
    text-transform: uppercase;
    width: 40%;
    border-radius: 5px;
    font-weight: bold;
    font-size: 17px;
    margin-top: 10px;
    box-shadow: 10px 10px 21px 2px rgba(0, 0, 0, 0.12);
    transition: all 500ms ease-in-out;
}

.form-data.cnt select.jsrequired.error,
.form-data.cnt input.jsrequired.error {
    border: 2px solid #ff0000
}

label.error {
    display: none !important;
}

.form-data.cnt input[type="submit"]:hover {
    background: #ffede9;
    color: #e12c0a;
    transition: all 500ms ease-in-out;
}

.enquire-now h4 {
    font-family: 'Gotham';
    font-weight: bold;
    font-size: 26px;
    color: #fff;
    text-transform: uppercase;
}

.enquire-now p {
    font-family: 'Gotham Book';
    font-size: 16px;
    color: #fff;
    line-height: 40px;
}

.form-under {
    width: 70%;
    margin: 0 auto;
}

@media (max-width: 650px) {

.form-under {
  width: 100%;
  margin: 0 auto;
}

}


/* Reach Us End */

.awrd-sector h4 {
    font-family: 'Gotham';
    font-weight: 500;
    color: #000;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
}

.awrd-sector img {
    display: inline-block;
    margin-bottom: 18px; border-radius: 6px; 
}

.contact-info {
    background-color: #3b3b3b;
}

.contact-info .section-title {
    color: #fff;
}

.opn-mnds h4 {
    font-family: 'Gotham';
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    margin-bottom: 7px;
}

.opn-mnds p {
    font-family: 'Gotham Book';
    color: #fff;
    font-size: 17px;
    line-height: 26px;
    margin: 0px;
}

.frnc-ise h4 {
    font-family: 'Gotham';
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    margin-bottom: 7px;
}

.frnc-ise p {
    font-family: 'Gotham Book';
    color: #fff;
    font-size: 17px;
    line-height: 26px;
    margin: 0px;
    margin-bottom: 16px;
}

.frnc-ise h5 {
    font-family: 'Gotham';
    font-weight: bold;
    font-size: 24px;
    line-height: 22px;
    color: #fff;
    margin-bottom: 7px;
}

.frnc-ise span {
    font-family: 'Gotham Book';
    color: #fff;
    font-size: 17px;
    line-height: 22px;
    margin: 0px;
    background: url()  ;
}

.copy-rite {
    padding: 12px 0px;
}

.copy-rite p {
    margin: 0px;
    font-family: 'Gotham Book';
    color: #232323;
    font-size: 14px;
}

.tanks-time #navbar {
    display: none;
}

.tanks-time .contact-info {
    margin-top: -25px;
}

.modal-body button.close {
    background: #e01919;
    border: none;
    position: absolute;
    right: -10px;
    top: -10px;
    color: #FFF;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-body button.close span {
    color: #FFF;
    line-height: 30px;
    font-size: 20px;
}

.the-objttl {
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.26);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.26);
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.26);
    border-radius: 8px;
}

.br-lf {
    border-top-left-radius: 8px;
}

.br-rt {
    border-top-right-radius: 8px;
}

.br-btlf {
    border-bottom-left-radius: 8px;
}

.br-btrt {
    border-bottom-right-radius: 8px;
}

.rit-img {
    text-align: center;
}

.form-data.cnt.do-hve {
    color: #fff;
    text-align: left;
}

.form-data.cnt input[type="radio"] {
    width: auto;
    display: inline-block;
    height: auto;
    margin: 0px 0px 30px 15px;
    cursor: pointer;
}

.popupform h4.modal-title { font-size: 18px; text-transform: uppercase; font-family: 'Gotham'; font-weight: bold; }
.popupform .close { background: #910b16; color: #fff; font-size: 25px; width: 40px; height: 40px; border-radius: 100%; border: 0px; }
.popupform .hsc-form-group input, .popupform .hsc-form-group select, .popupform .hsc-form-group input[type="text"], .popupform .hsc-form-group input[type="tel"] {border: 1px solid #e4e4e4;
border-radius: 5px; background: #fff;
font-family: 'Gotham Book';
font-size: 14px;
height: 50px;
padding: 6px 10px;
width: 100%;
margin-bottom: 18px; }
.popupform .hsc-form-group input[type="submit"], .popupform .hsc-form-group input[type="button"] {
    background: #e12c0a;
    border: medium none;
    color: #fff;
    font-family: 'Gotham';
    text-transform: uppercase;
    width: 40%;
    border-radius: 5px;
    font-weight: bold;
    font-size: 17px;
    margin-top: 10px;
    box-shadow: 10px 10px 21px 2px rgba(0, 0, 0, 0.12);
    transition: all 500ms ease-in-out;
  }
  .popupform .hsc-form-group input.jsrequired.error, .popupform .hsc-form-group select.jsrequired.error {
    border: 2px solid #ff0000;
  }


  .side-title {
    position: fixed;
    right: -70px;
    transition: 0.5s;
    transform: rotate(-90deg);
    top: 40%;    
    background-color: #dc890f;
    z-index: 99;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 5px 25px;
    cursor: pointer;
    
  }

  .side-title h4 a { text-align: center; font-family: 'Gotham';color: #fff; font-size:20px; font-weight: bold;}

