/* ******* :: INDEX OF CSS :: *******
:: 1.0 WEB FONTS
:: 2.0 IMPORT ALL CSS
:: 3.0 GLOBAL CSS
:: 4.0 COMMON CSS
:: 5.0 HEADER AREA 
:: 6.0 WELCOME AREA 
:: 7.0 BRANDING AREA
:: 8.0 ABOUT AREA

****************************** */


/* ******************************
:: 1.0 WEB FONTS
****************************** */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Malayalam:wght@200;300;400;500;600;700;800&family=Poppins:wght@200;300;400;500;600;700;800&display=swap');

/* font-family: 'Noto Sans Malayalam', sans-serif;
font-family: 'Poppins', sans-serif; */


/* ******************************
:: 2.0 IMPORT ALL CSS
****************************** */

@import url(bootstrap.min.css);
@import url(all.min.css);
@import url(animate.min.css);
@import url(aos.css);
@import url(owl.carousel.min.css);
@import url(jquery.fancybox.min.css);

/* ******************************
:: 3.0 GLOBAL CSS
****************************** */

* {
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    color: #2d2d2d;
    font-family: 'Poppins', sans-serif;
}

.main {
    overflow: hidden;
}

section,
.section {
    position: relative;
}

.container {
    width: 100%;
    margin: 0 auto;
}

.container-fluid {
    padding: 0 5%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
    color: #242424;
    margin-bottom: 0;
}

h1 {
    font-size: 4em;
    font-weight: 300;
    line-height: 1.2;
}

h2 {
    font-size: 40px;
    line-height: 1.2;
}

h3 {
    font-size: 20px;
    line-height: 1.2;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 16px;
}

p {
    font-size: 17px;
    line-height: 34px;
    color: #343434;
    margin-bottom: 0;
    font-weight: 300;
}

a {
    color: #000;
    transition: all .3s ease;
}

a:hover {
    color: #0056b3;
    transition: ease all 0.3s;
    opacity: 100%;
}

a,
a:hover,
a:focus,
.btn:focus,
button {
    border-color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

ol,
ul {
    margin: 0;
    padding: 0;
}

ol li,
ul li {
    list-style: none;
}

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

.mr-50 {
    margin-right: 50px;
}

.ml-50 {
    margin-left: 50px;
}


/* ******************************
:: 4.0 COMMON CSS
****************************** */

section {
    position: relative;
}

.fw-3 {
    font-weight: 300;
}

.fw-4 {
    font-weight: 400;
}

.fw-5 {
    font-weight: 500;
}

.fw-6 {
    font-weight: 600;
}

.fw-7 {
    font-weight: 700;
}

.op-5 {
    opacity: 0.5;
}

.avatar-sm {
    height: 3rem;
    width: 3rem;
}

.avatar-md {
    height: 4rem;
    width: 4rem;
}

.avatar-lg {
    height: 5rem;
    width: 5rem;
}

.h-100vh {
    height: 100vh;
}

.h-90vh {
    height: 90vh;
}

.pos-abs-top-right {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
}

.radius-100 {
    border-radius: 100px !important;
}

.bg-img {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.dsp-tc {
    display: table-cell;
    vertical-align: middle;
}

.owl-carousel .owl-item img {
    width: 100%;
    height: 100%;
}

.owl-prev:focus,
.owl-next:focus {
    outline: none;
}
.english-font{
    font-family: 'Poppins', sans-serif !important;
}

/*SECTION PADDING*/

.pt_0 {
    padding-top: 0;
}

.ptb_50 {
    padding: 50px 0;
}

.ptb_100 {
    padding: 100px 0;
}

.ptb_150 {
    padding: 150px 0;
}

.ptb_180 {
    padding: 180px 0;
}


/*BUTTONS*/

.btn {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    text-align: center;
    padding: 14px 30px;
    border: 0 none;
    border-radius: 100px;
    outline: 0 none;
    position: relative;
    z-index: 1;
}

.btn:hover,
.btn:focus,
.btn:active {
    color: #fff;
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn.btn-bordered {
    background: transparent none repeat scroll 0 0;
    color: #444;
}

.btn.btn-bordered:hover,
.btn.btn-bordered:focus {
    color: #fff;
}

.btn.btn-bordered:before,
.btn.btn-bordered-white:after {
    position: absolute;
    content: "";
    height: calc(100% + 4px);
    width: calc(100% + 4px);
    top: -2px;
    left: -2px;
    border-radius: 100px;
}

.btn.btn-bordered:before {
    z-index: -2;
}

.btn.btn-bordered:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 100px;
    background: #fff none repeat scroll 0 0;
    z-index: -1;
}

.btn.btn-bordered:hover:after,
.btn.btn-bordered:focus:after {
    opacity: 0;
}

.btn.btn-bordered-white {
    background: transparent none repeat scroll 0 0;
    border: 2px solid #fff;
}

.btn.btn-bordered-white:hover,
.btn.btn-bordered-white:focus {
    border-color: transparent;
    outline: 0 none;
}

.btn.btn-bordered-white:after {
    opacity: 0;
    z-index: -1;
}

.btn.btn-bordered-white:hover:after,
.btn.btn-bordered-white:focus:after {
    opacity: 1;
}

.nav-common .owl-carousel .owl-nav button span {
    font-size: 100px !important;
    font-weight: 400;
}

.nav-common .owl-carousel .owl-nav button span {
    color: #9a9a9a;
}

.nav-common .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 0;
}

.nav-common .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 0;
}


/* ******************************
:: 7.0 HEADER AREA CSS
****************************** */

.hero-wrapper .svg-clipped {
    -webkit-clip-path: url(#svgPath);
    clip-path: url(#svgPath);
    height: 100%;
    z-index: -1;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 999;
    -webkit-transition: .3s;
    transition: .3s;
    background: transparent;
    padding: 1rem;
    /* background-color: #e30614; */
}

.navbar .navbar-nav .nav-link {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    -webkit-transition: .3s;
    transition: .3s;
}

.navbar.navbar-light .navbar-nav .nav-link {
    color: #7e8085;
}

.navbar.navbar-light .navbar-nav .nav-link:hover,
.navbar.navbar-light .navbar-nav .nav-link:focus,
.navbar.navbar-light .navbar-nav .nav-link.active,
.navbar.navbar-light .navbar-nav .nav-link.current-menu-item {
    color: #2c2e30;
}

.navbar .navbar-brand-sticky {
    display: none;
}

.navbar-sticky {
    -webkit-transition: none;
    transition: none;
}

.navbar-sticky-transitioned {
    -webkit-transition: .3s;
    transition: .3s;
}

.navbar-sticky-moved-up {
    position: fixed;
    top: 0;
    background: #530d0f;
    margin-top: -250px;
}

[data-theme=dark] .navbar-sticky-moved-up {
    background: #01081f;
    -webkit-box-shadow: 0 4px 25px rgba(30, 39, 69, 0.3), 0 1px 0px rgba(30, 39, 69, 0.4);
    box-shadow: 0 4px 25px rgba(30, 39, 69, 0.3), 0 1px 0px rgba(30, 39, 69, 0.4);
}

.navbar-sticky-on {
    margin-top: 0;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
    padding-bottom: 8px;
    padding-top: 8px;
}

.navbar-sticky-on .navbar-brand-regular {
    display: none;
}

.navbar-sticky-on .navbar-brand-sticky {
    display: inline;
    max-width: 130px !important;
    max-width: 80px !important;
}


/*NAVBAR DARK*/

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}

.navbar-dark .btn-outline {
    color: #fff;
}

.navbar-dark.navbar-sticky-on .navbar-nav .nav-link {
    color: #7e8085;
}

[data-theme=dark] .navbar-dark.navbar-sticky-on .navbar-nav .nav-link {
    color: #e7eaee;
}

.navbar-dark.navbar-sticky-on .navbar-nav .nav-link:hover,
.navbar-dark.navbar-sticky-on .navbar-nav .nav-link:focus,
.navbar-dark.navbar-sticky-on .navbar-nav .nav-link.active,
.navbar-dark.navbar-sticky-on .navbar-nav .nav-link.current-menu-item {
    color: #2c2e30;
}

[data-theme=dark] .navbar-dark.navbar-sticky-on .navbar-nav .nav-link:hover,
[data-theme=dark] .navbar-dark.navbar-sticky-on .navbar-nav .nav-link:focus,
[data-theme=dark] .navbar-dark.navbar-sticky-on .navbar-nav .nav-link.active,
[data-theme=dark] .navbar-dark.navbar-sticky-on .navbar-nav .nav-link.current-menu-item {
    color: #D2D5DA;
}

.navbar,
.navbar-brand {
    padding-top: 8px;
    padding-bottom: 8px;
}


/* .navbar-dark .navbar-brand {
    padding-top: 15px;
} */


/* .navbar-dark .navbar-brand img {
    max-width: none;
    max-width: 100px;
} */

.navbar-sticky-on .navbar-brand img {
    max-width: 280px !important;
}

.adobe-crative-logo {
    display: flex;
    justify-content: end;
    align-items: center;
    padding-top: 50px;
}

.navbar-sticky-on .adobe-crative-logo {
    padding-top: 25px;
}

.navbar-sticky-on .adobe-crative-logo img {
    width: 200px;
}

.navbar-brand-sticky {
    width: 180px;
}

.navbar-brand:hover {
    opacity: 100%;
}

.navbar-sticky-on .navbar-brand {
    padding-top: 10px;
}

.navbar-brand img {
    width: 300px;
    height: auto;
}


/* ******************************
:: 8.0 WELCOME AREA CSS
****************************** */

.welcome-area {
    height: auto;
    background-image: url(../img/banner/speak-banner.jpg);
    height: 740px;
    width: 100%;
    background-size: cover;
    background-position: center;
    /* margin-top: 88px; */
}

.welcome-form {
    background-color: #530d0f;
    position: relative;
    padding: 30px 0;
    width: 400px;
    border-radius: 15px;
}

.banner-img {
    position: relative;
}

.form-title h2 {
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 22px;
    font-size: 32px;
}

.form-title p {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 30px;
}

.welcome-form form .form-group {
    margin-bottom: 20px;
}

.welcome-form form .form-group-btn {
    margin: 35px 0 0;
    margin: 25px 0 0;
}

.welcome-form .form-group input,
.welcome-form .form-group select {
    background: #530d0f;
    color: #fff;
    font-weight: 500;
    padding: 0 15px;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    height: 60px;
    margin-bottom: 10px;
    -webkit-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    font-size: 18px;
    border: 1px solid #fffc;
    border-radius: 6px;
    height: 55px;
    font-size: 16px;
}

.welcome-form .select-selected:after {
    position: absolute;
    content: "";
    top: 18px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

.welcome-form .form-group input::-webkit-input-placeholder,
.welcome-form .form-group textarea::-webkit-input-placeholder {
    color: rgb(221, 201, 201);
    color: #fff;
}

.welcome-form .form-group input:-ms-input-placeholder,
.welcome-form .form-group textarea:-ms-input-placeholder {
    color: rgb(221, 201, 201);
    color: #fff;
}

.welcome-form .form-group input::placeholder,
.welcome-form .form-group textarea::placeholder {
    color: rgb(221, 201, 201);
    color: #fff;
}

.welcome-form input:focus,
.welcome-form textarea:focus,
.welcome-form select:focus {
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #000;
    color: #fff;
    background: transparent;
}

.welcome-form .form-group input[type="submit"] {
    height: 60px;
    padding: 12px 15px;
    background: #fff;
    color: #530d0f;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 8px;
    border: none;
    height: 55px;
    font-size: 16px;
}

.welcome-form .form-group input[type="submit"]:focus {
    background-color: #000;
    color: #fff;
    text-decoration: underline;
}

.welcome-form .form-group label {
    color: #d1d1d1;
    font-size: 18px;
}


/* .welcome-form .form-group select {
    color: #d1d1d1;
} */

.welcome-form .form-group select option {
    color: #000;
}

.welcome-form .welcome-thumb {
    margin-bottom: 60px;
}

.navbar-expand-lg>.nav-container {
    justify-content: start;
}

.mobile-view-img {
    display: none;
}

.top-call a,
.top-mail a {
    color: #000;
    font-weight: 700;
    font-size: 16px;
    padding: 8px 25px;
    border: 1px solid #ffcf54;
    transition: all .3s ease;
    background: #ffcf54;
    border-radius: 700px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-call a svg,
.top-mail a svg {
    color: #530d0f;
    font-weight: 400;
}

.top-call a:hover,
.top-mail a:hover {
    color: #fff;
    border: 1px solid #530d0f;
    background-color: #530d0f;
}

.top-call a:hover svg {
    color: #fff;
}

.banner-head h1 {
    font-size: 35px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 20px;
}

.banner-head h1 span.red-color {
    color: #530d0f;
    font-weight: 700;
    font-size: 60px;
}

.banner-text{
    display: flex;
    align-items: center;
    margin-top: 170px;
}

.banner-text h2{
    color: #e4111f;
    font-size: 110px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.banner-text p{
    color: #31346b;
    font-size: 40px;
    font-weight: 600;
    font-family: 'Noto Sans Malayalam', sans-serif;
    margin-bottom: 10px;
    line-height: 50px;
}

.banner-text p span{
    color: #e4111f;
}

.banner-text2{
    margin-bottom: 80px;
}

.banner-text2 h3{
    color: #000;
    background-color: #b8e3db;
    padding: 8px 50px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    font-size: 28px;
}

.banner-content{
    position: relative;
    padding: 50px;
}
.banner-content .cta-area h3{
    border: none;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 0;
    color: #ffff;
}
.cta-area{
    max-width: 500px;
}

.cta-area h3{
    color: #000;
    padding: 12px 20px;
    font-size: 25px;
    font-weight: 600;
    border: 2px solid #c9c9c9;
    font-family: 'Noto Sans Malayalam', sans-serif;
    max-width: 350px;
    margin: 0 auto;
    margin-bottom: 15px;
    border-radius: 50px;
}

.whatsapp-btn{
    background: #1fb141;
    padding: 10px 30px;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    border-radius: 50px;
    transition: all .3s ease;
    border: 1px solid #1fb141;
    width: 240px;
    display: inline-block;
}

.whatsapp-btn:hover{
    color: #ffff;
    background-color: #530d0f;
    border: 1px solid #530d0f;
}

.call-btn{
    background: #530d0f;
    padding: 10px 30px;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    border-radius: 50px;
    transition: all .3s ease;
    border: 1px solid #530d0f;
    width: 240px;
    display: inline-block;
}

.call-btn:hover{
    background: #31346b;
    color: #fff;
    border: 1px solid #31346b;
}

.whatsapp-btn img,
.call-btn img{
    max-width: 30px;
}

/* ******************************
::  POPUP AREA 
****************************** */

.modal-dialog {
    margin-top: 100px;
    max-width: 694px !important;
    z-index: 99999;
}

.order-model .modal-dialog {
    max-width: 894px !important;
}

.modal.fade .modal-dialog {
    top: 40%;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.modal-content {
    border-radius: 0px;
    overflow: hidden;
    padding-bottom: 25px;
}

.modal-header {
    border-bottom: none;
}

.download-close {
    float: right;
    background: #530d0f;
    border-radius: 45px;
    border: 1px solid transparent;
    width: 46px;
    height: 46px;
    z-index: 99999;
    position: absolute;
    right: -6px;
    top: -8px;
    padding: 2px 0;
    transition: all .3s ease;
    background: transparent;
}

.download-close:hover {
    background: #443640;
    background: transparent;
}

.download-close span {
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    line-height: 45px;
    padding: 5px 16px;
    color: #000;
}

#letter5 {
    text-align: center;
}

.letter_inner .heading {
    margin-bottom: 0px;
}

.modal-content #letter5 input[type="submit"] {
    font-size: 18px;
    font-weight: 600;
    background-color: #322d2d;
    color: #fff !important;
    border: none;
    height: 55px;
    transition: all .3s ease;
}

.modal-content #letter5 input[type="submit"]:focus {
    background-color: #530d0f !important;
}

.heading h2 {
    font-size: 25px;
    line-height: 24px;
    color: #443640;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 20px;
    margin-bottom: 38px;
    position: relative;
    letter-spacing: 1.5px;
    margin-bottom: 0;
    font-size: 20px;
    letter-spacing: 0;
    margin-top: 36px;
    padding: 10px 15px;
    border: 1px solid #000;
    display: inline-block;
    border-radius: 50px;
    font-family: 'Noto Sans Malayalam', sans-serif;
}

.heading h2:after {
    position: absolute;
    content: '';
    height: 2px;
    width: 240px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: linear-gradient(to right, #042f4c 0%, transparent 100%);
    z-index: 99;
    display: none;
}

.pp-left {
    background: url("../img/popup.jpg");
    background-repeat: no-repeat;
    height: 425px;
    background-position-x: 5%;
    background-size: contain;
    background-position: revert;
    position: relative;
}

.pp-left::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    /* background: #e30614; */
}

#letter6 .tab-content,
#letter5 .tab-content {
    padding: 0 30px;
}

.order-model form {
    display: block;
}

.order-model label {
    font-size: 14px;
    color: #999;
    line-height: 24px;
    position: absolute;
    left: 34px;
    top: -12px;
    background: #fff;
    padding: 0 8px;
    z-index: 99;
}

#letter5 select,
#letter5 input {
    margin-bottom: 15px;
    position: relative;
    color: #443640;
    resize: none;
    font-weight: 300;
    border: 0.5px solid #ccc;
    font-size: 14px;
    height: 55px;
    width: 100%;
    font-size: 16px;
    padding: 0 20px;
    border-radius: 3px;
    z-index: 9;
    box-shadow: none;
    cursor: pointer;
}

#letter5 input[type="submit"] {
    font-size: 18px;
    font-weight: 600;
}

#letter5 input:focus {
    outline: none !important;
    border: 0.5px solid #000;
    color: #443640;
}

.wrap {
    overflow: hidden;
    position: relative;
}

.order-model .datepicker {
    position: relative;
}

.popup-btn a {
    background: #ec1c24;
    color: #fff;
    padding: 18px 72px;
    border-radius: 100px;
    transition: all .3s;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-btn a:hover {
    background-color: #ec1c24;
    color: #fff;
}

.popup-btn {
    margin-top: 40px;
}

.modal.fade .modal-dialog {
    display: flex;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
}

.popup-img-main {
    background-color: #2f9331;
}

.popup-img img {
    width: 280px;
}

.model-project-details .form-group input::-webkit-input-placeholder,
.model-project-details .form-group textarea::-webkit-input-placeholder {
    color: #383838;
}

.model-project-details .form-group input:-ms-input-placeholder,
.model-project-details .form-group textarea:-ms-input-placeholder {
    color: #383838;
}

.model-project-details .form-group input::placeholder,
.model-project-details .form-group textarea::placeholder {
    color: #383838;
}

.model-project-details input:focus,
.model-project-details textarea:focus,
.model-project-details select:focus {
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ec1c24;
    color: #fff;
    background: transparent;
}

.popupleft-content {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 50px;
}

.popupleft-content p {
    /* text-shadow: 1px 2px 1px #042f4c; */
    color: #fff;
    font-weight: 700;
    font-size: 30px;
    line-height: 55px;
    margin-top: 90px;
}

.popupleft-content h3 {
    /* text-shadow: 1px 4px 1px #042f4c; */
    font-weight: 500;
    color: #fff;
    font-size: 22px;
    margin: 10px 0;
    text-transform: uppercase;
}

.popupleft-content h3 span {
    font-weight: 800;
    font-size: 30px;
}

#letter5 select,
#letter5 input {
    color: #000;
}

.modal-content input {
    color: #443640 !important;
}

.cont_link_box {
    z-index: 100;
    position: fixed;
    right: -10px;
    top: 100%;
    transform: translateY(-50%);
    width: 50px;
    display: inline-block;
}

.vertical_btn {
    position: fixed;
    bottom: 50%;
    right: -48px;
    padding: 10px 25px 7px;
    border-radius: 4px;
    background: #530d0f;
    font-size: 19px;
    font-weight: 500;
    color: #fff;
    z-index: 10;
    text-transform: uppercase;
    transform: rotate(-90deg);
    letter-spacing: 3px;
}

.vertical_btn:hover {
    color: #f16e03;
}


/* ******************************
:: 00.0  COURSES AREA CSS
****************************** */

.courses-section {
    padding: 70px 0;
    background-image: url(../img/banner/courses.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000;
}
.courses-section .head h1 span{
    color: #000;
    /* background: linear-gradient(to right, rgb(177, 56, 168), rgb(250, 116, 5)); */
    border-radius: 50px;
    padding: 5px 20px;
    background-color:  #ffcf54;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 28px;
}
.courses-section .head h1::before {
background-color: transparent;
}
/* .courses-section .head h1::before {    
    background-color: #31346b;
} */
.head h1 {
    color: #fff;
    font-size: 40px;
    position: relative;
    font-weight: 600;
    margin-bottom: 45px;
}

.head h1::before {
    position: absolute;
    content: "";
    background-color: #fff;
    height: 3px;
    width: 60px;
    left: 50%;
    transform: translate(-50%,-50%);
    bottom: -10px;
}

.course-box {
    position: relative;
    margin-bottom: 15px;
    background-color: #530d0f;
    padding: 50px;
    border-radius: 8px;
    min-height: 165px;
}

.course-box p{
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 28px;
}

.course-box h2{
    color: #fff;
    font-weight: 600;
    font-size: 28px;
    text-transform: uppercase;
}

.row-course{
    max-width: 800px;
    margin: 0 auto;
}

.cta-area6{
    margin: 0 auto;
    margin-top: 50px;
}

.cta-area6 h3{
    border: 1px solid #fff;
    color: #fff;
}

/* .cta-area6 .call-btn{
    background-color: #fff;
    color: #31346b;
} */

/* ******************************
:: 00.0 Counter AREA CSS
****************************** */

.counter-section {
    background-image: url(../img/banner/counter-bg.jpg);
    height: 450px;
    width: 100%;
    padding-top: 120px;
    background-position: center;
    background-size: cover;
}

.counter-bx {
    border-right: 3px solid #fff;
    padding: 0 20px;
}

.counter-bx.lst {
    border-right: none;
}

.counter-bx h2 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 5px;
    font-weight: 800;
}

.counter-bx p {
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 2px;
}


/* ******************************
:: 00.0 About AREA CSS
****************************** */

.about-area {
    padding: 70px 0;
}

.about-img {
    margin-top: -260px;
}

.about-inner span {
    color: #272727;
    font-size: 25px;
}

.about-inner h2 {
    color: #530d0f;
    font-weight: 600;
    margin-bottom: 30px;
}

.about-inner p {
    color: #272727;
    line-height: 30px;
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
}

.about-btn {
    margin-top: 65px;
}

.about-btn a {
    border: 2px solid #530d0f;
    padding: 15px 40px;
    font-size: 20px;
    color: #530d0f;
}


/* ******************************
:: 00.0  MEdia AREA CSS
****************************** */

.media-section {
    background-color: #efefef;
    padding: 80px 0;
}

.media-head h2 {
    color: #530d0f;
    font-weight: 600;
    font-size: 42px;
    margin-bottom: 40px;
    position: relative;
}

.media-head h2::before{
    position: absolute;
    content: "";
    height: 2px;
    background-color: #530d0f;
    width: 60px;
    bottom: -8px;
    left: 0;
}

.media-box {
    flex: 0 0 32%;
    position: relative;
    margin-bottom: 30px;
}

.inner-media {
    background-color: #fff;
    padding: 20px 20px;
    align-items: center;
    min-height: 165px;
}

.inner-media .logo {
    flex: 0 0 40%;
    border-right: 2px solid #ddd;
}

.inner-media .logo img {
    max-width: 115px;
    height: auto;
}

.inner-media .text {
    flex: 0 0 60%;
    padding-left: 18px;
}

.inner-media .text p {
    line-height: 25px;
    color: #272727;
    font-size: 15px;
}

.media-box .img {
    position: relative;
}

.media-box .icons {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

.media-box .icons img {
    max-width: 15px;
    height: 20px;
    line-height: 60px;
}

.media-btn {
    margin-top: 30px;
}

.media-btn a {
    background-color: #530d0f;
    color: #fff;
    transition: all .3s ease;
    padding: 18px 60px;
    border: 1px solid #530d0f;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.media-btn a:hover {
    color: #530d0f;
    background-color: #fff;
}

.media-slider .owl-nav{
    position: absolute;
    right: 0;
    top: -76px;
}

.media-slider .owl-nav button{
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border: 1px solid #530d0f !important;
    border-radius: 50%;
    transition:  all .3s ease;
}

.media-slider .owl-nav button span{
    font-size: 40px;
    color: #530d0f;
    font-weight: 400;
    line-height: 30px;
}


/* ******************************
:: 00.0 Testimonials AREA CSS
****************************** */

.testi-area {
    padding: 80px 0;
}

.short-item iframe {
    width: auto;
    height: 530px;
    border-radius: 15px;
    overflow: hidden;
}

.short-section {
    position: relative;
}

.short-section::before {
    position: absolute;
    content: "";
    background-color: #530d0f;
    height: 528px;
    width: 315px;
    right: 5px;
    top: 75px;
    border-radius: 15px;
}

.short-slider .owl-dots {
    position: relative;
    left: 60px;
}

.short-slider .owl-dots button {
    background-color: #f28f96;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    border-radius: 50%;
    outline: none;
    border: none;
}

.short-slider .owl-dots button.active,
.short-slider .owl-dots button:hover {
    background-color: #fff;
}

.head-testi h1 {
    color: #272727;
    font-size: 42px;
    line-height: 1.4;
    margin-bottom: 45px;
    font-weight: 500;
}

.item-right .img.quotes img {
    max-width: 35px;
    margin-bottom: 15px;
}

.item-right .inner p {
    color: #272727;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 35px;
}

.details-testi .img {
    margin-right: 22px;
}

.details-testi .img img {
    max-width: 150px;
}

.details-testi .name h3 {
    color: #6c6f76;
    font-size: 22px;
}

.details-testi .name p {
    color: #530d0f;
    font-size: 16px;
    margin-bottom: 0;
}

.full-section {
    padding-left: 100px;
}

.rt-slide .owl-nav {
    position: absolute;
    right: 15px;
    bottom: 45px;
}

.rt-slide .owl-nav button {
    border: 1px solid #ed1b26 !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 35px !important;
    margin-right: 10px;
    transition: all .3s ease;
}

.rt-slide .owl-nav button:hover {
    background-color: #530d0f;
}

.rt-slide .owl-nav button span {
    color: #ed1b26;
    font-size: 40px;
}

.rt-slide .owl-nav button:hover span {
    color: #fff;
}

.right-side-btn {
    margin-top: 50px;
}

.right-side-btn a {
    background-color: #530d0f;
    color: #fff;
    transition: all .3s ease;
    padding: 18px 60px;
    border: 1px solid #530d0f;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.right-side-btn a:hover {
    color: #530d0f;
    background-color: #fff;
}

/* new  */
 
.test-areas{
    padding: 70px 0;
}

.text-head span{
    color: #530d0f;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
}

.text-head h2{
    color: #000;
    font-size: 32px;
font-weight: 600px;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 50px;
}

.text-head h2::before{
    position: absolute;
    content: "";
    height: 2px ;
    background-color: #530d0f;
    width: 50px;
    left: 50%;
    transform: translate(-50%,-50%);
    bottom: -20px;
}

.test-item .img{
    margin-bottom: 20px;
}

.test-item .icons {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

.test-item .icons img {
    max-width: 15px;
    height: 20px;
    line-height: 60px;
}

.test-slider .owl-nav{}

.test-slider .owl-nav button{
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border: 1px solid #530d0f !important;
    border-radius: 50%;
    transition: all .3s ease;
}

.test-slider .owl-nav button span{
    font-size: 40px;
    color: #530d0f;
    font-weight: 400;
    line-height: 30px;
}

/* ******************************
:: 00.0  Branches AREA CSS
****************************** */

.branches-area {
    background-color: #efefef;
    padding: 70px 0;
}

.bra-head h2 {
    color: #272727;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 45px;
}

.bra-box {
    background-color: #fff;
    padding: 25px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 30px;
    min-height: 206px;
}

.bra-box h3 {
    color: #530d0f;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.bra-box p {
    color: #272727;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
}

.lt-bra-box {
    padding: 0;
    background: transparent;
}

.lt-bra-box a {
    background-color: #530d0f;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    min-height: 206px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    transition: all .3s ease;
}

.lt-bra-box a:hover {
    text-decoration: underline;
}

.bra-box-btx {
    margin: 70px 0 30px;
}

.bra-box-btx a {
    background-color: #530d0f;
    color: #fff;
    transition: all .3s ease;
    padding: 18px 60px;
    border: 1px solid #530d0f;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.bra-box-btx a:hover {
    color: #530d0f;
    background-color: #fff;
}


/* ******************************
:: 00.0  Footer AREA CSS
****************************** */

.footer-area {
    background-color: #2b2727;
    padding: 20px 0 0;
}

.contact-ft .address {
    color: #c7c7c7;
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    max-width: 325px;
    margin-bottom: 20px;
}

.contact-ft .call a,
.contact-ft .mail a {
    color: #c7c7c7;
    font-size: 18px;
    font-weight: 600;
}

.contact-ft .call a {
    font-size: 22px;
}

.contact-ft .call span,
.contact-ft .mail span {
    color: #530d0f;
    font-size: 20px;
}

.contact-ft .call span {
    font-size: 25px;
}

.form-ft {
    border-radius: 0;
    margin-top: -130px;
    width: 450px;
    padding: 50px 0;
}

.bottom-footer {
    /* margin-bottom: 30px; */
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.copy-right {
    padding-bottom: 10px;
}

.copy-right p,
.copy-right a {
    color: #fffc;
    font-size: 16px;
}

.copy-right a img {
    max-width: 100px;
}


/* ******************************
:: 00.0  Suuccess AREA CSS
****************************** */

.success-area {
    padding: 70px 0;
}

.head span {
    color: #530d0f;
    font-weight: 600;
}

.success-slider .owl-nav button {
    border: 1px solid #ed1b26 !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 35px !important;
    margin-right: 10px;
}

.success-slider .owl-nav button:hover {
    background-color: #530d0f;
}

.success-slider .owl-nav button span {
    color: #ed1b26;
    font-size: 40px;
}

.success-slider .owl-nav button:hover span {
    color: #fff;
}

.success-slider .owl-nav {
    position: absolute;
    right: 0;
    top: -90px;
}

#more {
    display: none;
}

.readmore-btn {
    color: #530d0f;
}

.readmore-btn:focus {
    outline: none;
}


/********** Whatsapp new change **********/

.multy_whatsappicon {
    width: 50px;
    height: 50px;
    background: #0bb868;
    bottom: 80px;
    cursor: pointer;
    position: fixed;
    z-index: 1110;
    right: 14px;
    outline: none;
    text-decoration: none;
    border-radius: 50%;
    color: #fff;
    line-height: 50px;
    text-align: center;
    transition: all 0.2s ease-out 0s;
    -webkit-transition: all 0.2s ease-out 0s;
}

.multy_whatsappicon i {
    font-size: 25px;
    position: relative;
    top: 2px;
}

.multy_whatsappicon:hover {
    background: #530d0f;
}

.multy_whatsappicon:before {
    content: "\f232";
    font-family: 'Font Awesome 5 Brands';
    position: relative;
    top: -1px;
    left: 1px;
    font-size: 30px;
    display: none;
}

.mwclosse {
    width: 30px;
    height: 30px;
    background: none;
    cursor: pointer;
    position: relative;
    z-index: 110;
    clear: both;
    border-radius: 50%;
    position: absolute;
    right: 5px;
    top: 8px;
    display: flex;
    align-content: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.mwclosse i {
    line-height: 30px
}

.popupbody {
    width: 320px;
    max-width: 100%;
    min-height: 150px;
    position: fixed;
    right: 25px;
    bottom: 30px;
    z-index: 1120;
    background: #fff;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .2);
    box-shadow: 0 0 15px rgba(0, 0, 0, .2);
    transition: all 0.2s ease-out 0s;
    -webkit-transition: all 0.2s ease-out 0s;
}

.popupbody.open {
    opacity: 1;
    visibility: visible;
}

.mwp_title {
    width: 100%;
    background: #0bb868;
    padding: 20px;
    display: flex
}

.mwp_title2 {
    background: #318fb5;
}

.mwp_icon svg {
    color: #fff;
    padding-right: 15px;
    font-size: 40px
}

.mwp_title_con h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
    text-transform: uppercase;
}

.mwp_title_con p {
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    margin: 0
}

.mwp_chat_body {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 0;
    overflow-y: auto;
    max-height: 310px
}

.mwp_chat_body ul li {
    position: relative;
    margin-bottom: 20px
}

.mwp_chat_body ul li a {
    position: relative;
    display: block;
    text-decoration: none;
    min-height: 52px;
    align-items: center;
    display: flex;
    flex-wrap: wrap
}

.mwp_chat_body ul li a div {
    padding: 15px;
    width: calc(100% - 60px);
    -webkit-box-shadow: 0 0 10px rgba(140, 140, 140, .3);
    box-shadow: 0 0 10px rgba(140, 140, 140, .3);
}

.mwp_chat_body ul li a div h6 {
    font-size: 14px;
    line-height: 1.3;
    color: #000;
    margin: 0 0 5px;
    font-weight: 600;
    transition: all 0.2s ease-out 0s;
    -webkit-transition: all 0.2s ease-out 0s;
}

.mwp_chat_body ul li a div p {
    font-size: 12px;
    color: #000;
    line-height: 1.5;
    margin: 0;
    transition: all 0.2s ease-out 0s;
    -webkit-transition: all 0.2s ease-out 0s;
}

.mwp_chat_body ul li a img {
    width: 40px;
    margin-right: 15px;
    border-radius: 0%;
    border: 0px solid #0bb868;
}

.mwp_chat_body ul li:hover a div h6,
.mwp_chat_body ul li:hover a div p {
    color: #0bb868
}

.mwp_chat_body::-webkit-scrollbar {
    width: 6px;
    height: 60px;
}

.mwp_chat_body::-webkit-scrollbar-track {
    width: 10px;
    border-radius: 15px;
    background-color: #fff;
}

.mwp_chat_body::-webkit-scrollbar-thumb {
    border-radius: 15px;
    background: -webkit-radial-gradient(top, #ccc, #ccc);
    background: radial-gradient(to bottom, #ccc, #ccc);
}

@media (max-width:380px) {
    .mwp_title_con h4 {
        font-size: 16px
    }
    .mwp_chat_body ul li a div p {
        font-size: 12px
    }
    .mwp_chat_body ul li a div h6 {
        font-size: 14px
    }
    .popupbody {
        width: 300px;
        right: 15px;
        bottom: 15px
    }
}

.mwp_chat_body ul {
    list-style: none;
}


/* popup center css */

.center-ctc-popup {
    background-color: rgb(0 0 0 / 54%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100%;
    height: 100%;
    transition: opacity .15s linear;
    opacity: 0;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
}

.center-ctc-popup2 {
    background-color: rgb(0 0 0 / 54%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1051;
    width: 100%;
    height: 100%;
    transition: opacity .15s linear;
    opacity: 0;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
}

.center-ctc-popup.open {
    opacity: 1;
    visibility: visible;
    display: block;
    z-index: 999999;
}

.center-ctc-popup2.open {
    opacity: 1;
    visibility: visible;
    display: block;
}

.popupbody-center {
    max-width: 400px;
    width: auto;
    position: relative;
    top: 40%;
    margin-top: 100px;
    transform: translate(-50%, -50%);
    right: inherit;
    bottom: inherit;
    opacity: 1;
    visibility: visible;
    left: 50%;
}

.whats-call {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.whats-call a {
    flex: 0 0 60%;
    color: #fff;
    border: 1px solid #530d0f;
    font-weight: 500;
    font-size: 16px;
    background: #530d0f;
    padding: 7px;
    border-radius: 5px;
    transition: all .3s ease;
    text-align: center;
}

.whats-call a:hover {
    color: #530d0f;
    background-color: #fff;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    min-height: 286px;
    justify-content: center;
}

.modal-call {
    margin-bottom: 20px;
}

.modal-call a {
    background: #1fb141;
    color: #fff;
    padding: 12px 15px;
    font-size: 20px;
    width: 55%;
    display: inline-block;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all .3s ease;
    border: 1px solid #1fb141;
    cursor: pointer;
}

.modal-mail {
    margin-top: 20px;
}

.modal-mail a {
    background: #042f4c;
    color: #fff;
    padding: 12px 40px;
    font-size: 20px;
    width: 55%;
    display: inline-block;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all .3s ease;
    border: 1px solid #042f4c;
    cursor: pointer;
}

.modal-call a:hover,
.modal-mail a:hover {
    color: #530d0f;
    background-color: #fff;
}

.vertical_btn {
    display: none;
}

.banner-btns {
    display: flex;
    min-height: 460px;
    align-items: end;
    padding-left: 40px;
    justify-content: center;
}

.banner-call,
.banner-mail {}

.banner-call a,
.banner-mail a {
    padding: 10px 30px;
    font-size: 20px;
    color: #fff;
    border-radius: 5px;
    transition: all .3s ease;
}

.banner-call a {
    background-color: #34ba48;
    border: 1px solid #34ba48;
}

.banner-mail a {
    background-color: #318fb5;
    border: 1px solid #318fb5;
}

.banner-call a:hover {
    color: #34ba48;
    background-color: #fff;
}

.banner-mail a:hover {
    color: #318fb5;
    background-color: #fff;
}

.course-box .inner {
    min-height: auto;
}

.course-box .inner h2 {
    text-align: center;
    margin-bottom: 0;
    font-size: 22px;
}

.about-img {
    margin-top: -90px;
}

.about-area {
    padding: 100px 0 70px;
}

.count-points {
    display: flex;
    flex-wrap: wrap;
}

.count-points li {
    margin-bottom: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    flex: 0 0 50%;
}

.count-points li:last-child {
    border-right: none;
}

.count-points li .icon {
    background: #530d0f;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.count-points li .icon img {
    max-width: 30px;
}

.count-points li .text {
    flex: 0 0 80%;
    padding-left: 10px;
}

.count-points li .text h3 {
    color: #530d0f;
    font-weight: 600;
    font-size: 28px;
}

.count-points li .text p {
    color: #6a4646;
    font-weight: 500;
    max-width: initial;
    margin-bottom: 0;
    line-height: inherit;
    font-size: 16px;
    text-transform: capitalize;
}

.counter-text {
    text-align: center;
}

.counter-text h1 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.counter-text a {
    background: #fff;
    padding: 16px 60px;
    color: #272727;
    transition: all .3s ease;
    font-size: 20px;
    font-weight: 500;
    color: #530d0f;
    border: 1px solid #fff;
}

.counter-text a:hover {
    background-color: transparent;
    color: #fff;
}

.counter-section {
    background-image: url(../img/banner/counter-bg.jpg);
    height: 340px;
    width: 100%;
    padding: 100px 0;
    background-position: center;
    background-size: cover;
}

/* celebrate */
.celebrating-area{
    padding: 80px 0;
    background-image: url(../img/banner/celebrating.jpg);
    height: 550px;
    width: 100%;
    background-position: center;
    background-size: cover;
}

.cl-inner h2{
    color: #fff;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 43px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cl-inner h2 span{
    background: #530d0f;
    padding: 0 10px;
    font-weight: 700;
}

.cl-inner img{
    max-width: 250px;
}

.cta-area2{
    margin: 0 auto;
    margin-top: 50px;
}

.cta-area2 h3{
    color: #fff;
    text-transform: uppercase;
}

.cl-inner .cta-area2 img{
    max-width: 25px;
}
.cta-area2 .whatsapp-btn,
.cta-area2 .call-btn{
    max-width: 200px;
}

/* success area  */
.suc-area{
    padding: 70px 0 110px;
}

.suc-inner{
    position: relative;
    margin-bottom: 70px;
}

.suc-inner .bg-mat{
    position: absolute;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.suc-inner .bg-mat img{
    max-width: 446px;
    margin-left: 0px;
}


.suc-inner .head{
    background: #530d0f;
    height: 300px;
    width: 300px;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.suc-inner .head h2{
    font-size: 36px;
    color: #fff;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    padding: 100px;
    text-transform: uppercase;
}

.suc-inner .head h2 span{
    color: #fff;
    font-weight: 400;
}

.suc-bx{
    background: #fff;
    text-align: center;
    max-width: 400px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.suc-bx h3{
    color: #530d0f;
    font-weight: 700;
    font-size: 40px;
}

.suc-bx p{
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
}

.suc-boxes{
    padding-left: 60px;
}

.cta-area3 h3{
    color: #000;
    background-color: #ffcf54;
    border: none;
}

.cta-area3 .call-btn,
.cta-area3 .whatsapp-btn{
    width: 210px;
}

.cta-area3{
    max-width: 500px;
    margin: 0 auto;
}

/* Batch area  */
.batch-area{
    background-image: url(../img/banner/batch-banner.jpg);
    background-position: center;
    background-size: cover;
    height: 400px;
    background-repeat: no-repeat;
    position: relative;
}

.bt-head{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 65%;
}

.bt-head h1{
    background: #530d0f;
    color: #fff;
    /* background-color: #e30614;
    color: #fff; */
    font-size: 30px;
    text-transform: uppercase;
    padding: 10px 40px;
    border-radius: 15px;
    font-weight: 600;
}

.bt-head h1 span{
    font-weight: 300;
}

.cta-area4 .call-btn{
    background-color: #530d0f;
    border: 1px solid #530d0f;
}

.cta-area4 .call-btn:hover{
    background-color: #31346b;
    border: 1px solid #31346b;
}


.cta-area4{
    position: absolute;
    margin: 0 auto;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    top: 400px;
    z-index: 11;
}

/* why area  */
.why-area{
    padding: 80px 0 100px;
}

.why-head h2{
    position: relative;
    color:#000;
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 40px;
    font-weight: 500;
}

.why-head h2::before{
    position: absolute;
    content: "";
    background-color: #530d0f;
    width: 80px;
    left: 50%;
    transform: translate(-50%,-50%);
    top: 42px;
    height: 2px;
}

.why-img .icons {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

.why-img .icons img {
    max-width: 15px;
    height: 20px;
    line-height: 60px;
}

.why-box{
    border-radius: 50px;
    padding: 10px 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    padding: 10px 50px;
}

.why-box .text p{
    color: #31346b;
    font-family: 'Noto Sans Malayalam', sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    text-align: left;
    font-size: 22px;
    color: #fff;
}

.why-box .text p span{
    font-family: 'Poppins', sans-serif;   
}

.why-box .icon{
    margin-right: 10px;
    background-color: #e4111f;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    padding: 5px;
    background: transparent;
    border: 1px solid #fff;
}

.why-img{
    margin-bottom: 40px;
}


.why-bg1{
    background-color: #fae7ce;
    background: #4285F4;
}

.why-bg2{
    background-color: #ffeab9;
    background: #DB4437;;
}

.why-bg3{
    background-color: #d8f3b6;
    background: #F4B400;
}

.why-bg4{
    background-color: #f2e8d0;
    background: #0F9D58;;
}

.why-bg5{
    background-color: #d7d7d7;
    background: #04a5aa;
}

.why-bg6{
    background-color: #d5e0b3;
    /* background: #f2b995; */
    background-color: #457b9d;
}

.why-bg7{
    background-color: #c5eed7;
    background: #136371;
}

.why-bg8{
    background: #09588e;
}

.cta-area5{
    margin: 0 auto;
    margin-top: 55px;
}

.bottom-bg{
    position: absolute;
    bottom: 0;
    right: 0;
}

.bottom-bg img{
    max-width: 300px;
}

.why-cont-box {
    position: relative;
    background: #fff;
    min-height: 150px;
    display: flex;
    padding: 0 20px;
    margin-bottom:20px;
  }
  .why-cont-box .icon{
    border-right: 1px solid rgba(0, 0, 0, .1);
    padding-right: 20px;
    font-size: 50px;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    
  }
  .why-cont-box .icon,.why-cont-box  .text {
    display: flex;
    align-items: center;
    padding: 10px 10px 0 0;
  }
  .why-cont-box .icon img{
    max-width: 50px;
}
  .why-cont-box  .text p{
    font-family: 'Noto Sans Malayalam', sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    font-size: 22px;
    color: #fff;
    text-align: left;
    padding-left: 20px;
}

.why-cont-box .text p span{
    font-family: 'Poppins', sans-serif;   
}
  .why-cont-box h3 {
    text-align: center;
    position: relative;
    top: 80px;
  }
  .why-cont-box {
  position: relative;
  padding-right: 100px;
}
.why-cont-box::before {
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width: 300px;
  background: #555;
  -webkit-box-shadow: 0 15px 10px #555;
  -moz-box-shadow: 0 15px 10px #555;
  box-shadow: 0 15px 10px #555;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}

.gradient-1 {     
    background: linear-gradient(90deg, #901937 0%, #ED1E79 100%);
  }
.gradient-2 {
    background: linear-gradient(90deg, #8b077f 0%, #4c1947 100%);
  }
.gradient-3 {
    background: linear-gradient(90deg, #683514 0%, #e09100 100%);
  }
.gradient-4 {    
    background: linear-gradient(90deg, #4a1827 0%, #e81759 100%);
  }
  .gradient-5 {
    background: linear-gradient(90deg, #1484aa 0%, #21596c 100%);
  }
  .gradient-6 {   
    
    background: linear-gradient(90deg, #198466 0%, #1b5545 100%);
  }
  .gradient-7 {    
    background: linear-gradient(90deg, #902b5f 0%, #4a1531 100%);
  }
  .gradient-8 {    
    
    background: linear-gradient(90deg, #93154e 0%, #f37c85 100%);
  }
  .gradient-9 {
    background: linear-gradient(90deg, #e44e2b 0%, #9c3a23 100%);
  }
  .gradient-10 {
    background: linear-gradient(90deg, #73281f 0%, #cd5346 100%);
  }

  .why-bg-icon::after{
    content: '';
    position: absolute;
    width: 130px;
    height: 150px;
    background-image: url(../img/icons/y-1.png);
    background-repeat: no-repeat;
    right: 0;
    background-position: center;
    opacity: 0.5;
  }
  .why-bg-icon-1::after{
    background-image: url(../img/icons/y-1.png);
  }
  .why-bg-icon-2::after{
    background-image: url(../img/icons/y-2.png);
  }
  .why-bg-icon-3::after{
    background-image: url(../img/icons/y-3.png);
  }
  .why-bg-icon-4::after{
    background-image: url(../img/icons/y-4.png);
  }
  .why-bg-icon-5::after{
    background-image: url(../img/icons/y-5.png);
  }
  .why-bg-icon-6::after{
    background-image: url(../img/icons/y-6.png);
  }
  .why-bg-icon-7::after{
    background-image: url(../img/icons/y-7.png);
  }
  .why-bg-icon-8::after{
    background-image: url(../img/icons/y-8.png);
  }
  .why-bg-icon-9::after{
    background-image: url(../img/icons/y-9.png);
  }
  .why-bg-icon-10::after{
    background-image: url(../img/icons/y-10.png);
  }

/* Instant Offer  */
.instant-offer{
    background-color: #eaeaea;
    padding-top: 70px;
    padding-bottom: 50px;
}

.ins-ofr .h3{
    color: #fff;
    background-color: #530d0f;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 10px;
    display: inline-block;
    text-transform: uppercase;
}

.ins-ofr h1{
    font-size: 40px;
    font-weight: 500;
    color: #530d0f;
    margin-bottom: 36px;
    text-transform: uppercase;
}

.ins-ofr p{
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 0;
    color: #000;
    font-size: 18px;
    font-weight: 400;
}

.cta-area7{
    margin: 0 auto;
    margin-bottom: 10px;
}

/* Batch Slider  */
.batch-item .img{
    position: relative;
}

.batch-item .img .box{
    position: absolute;
    bottom: 20px;
    left: 50%;
}

.batch-item .img .box p{
    background-color: #530d0f;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    padding: 12px 20px;
}

.batch-slider-area{
    padding: 50px 0;
}

.batch-slider-area .container-fluid{
    padding: 0 !important;
}

.batch-slider-area .batch-sli-head h2{
    color: #000;
    background-color: #ffcf54;
    /* color: #fff;
    background-color: #77c1b4; */
    font-size: 30px;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: -20px;
    position: relative;
    z-index: 10;
    font-weight: 700;
}

.batch-slider-area .batch-sli-head h2 span{
    padding-left: 10px;
    font-weight: 600;
    font-size: 24px;
}

.batch-slider .owl-nav{
    margin-top: 30px;
}

.batch-slider .owl-nav button{ 
    border: 1px solid #530d0f !important;
    transition: all .3s ease;
    width: 45px;
    height: 45px;
    background-color: #530d0f !important;
}

.batch-slider .owl-nav button.owl-next{
    position: absolute;
    right: 20px;
    top: 50%;
}

.batch-slider .owl-nav button.owl-prev{
    position: absolute;
    left: 20px;
    top: 50%;
}

.batch-slider .owl-nav button span{ 
    color: #d7d7d7;
    font-size: 55px;
    font-weight: 200;
    line-height: 35px;
}

.cta-area8{
    margin: 0 auto;
    margin-top: 40px;
}

/* Google  */
.google-area{
    padding: 20px 0 70px;
}

.google-box{
    border: 1px solid #d7d7d7;
    padding: 50px;
    border: none;
    padding: 0;
}

.google-item{
    padding: 30px;
    border: 1px solid #d7d7d7;
    min-height: 500px;
}

.google-area .head h2{
    position: relative;
    color: #000;
    font-size: 25px;
    margin-bottom: 60px;
    text-transform: uppercase;
    font-weight: 500;
}

.google-area .head h2::before{
    position: absolute;
    content: "";
    background-color: #530d0f;
    height: 2px;
    width: 40px;
    left: 50%;
    transform: translate(-50%,-50%);
    bottom: -18px;
}

.google-item .img img{
    margin: 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    position: relative;
}

.google-item .star img{
    max-width: 135px;
    margin: 0 auto;
    margin-bottom: 15px;
}

.google-item .img{
    position: relative;
}

.google-item .img::before{
    position: absolute;
    content: "";
    background-color: #d7d7d7;
    right: 14%;
    height: 2px;
    width: 24%;
    top: 50%;
}

.google-item .img::after{
    position: absolute;
    content: "";
    background-color: #d7d7d7;
    left: 14%;
    height: 2px;
    width: 24%;
    top: 50%;
}

.google-item .text p{
    color: #000;
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.google-item .text h3{
    color: #000;
    font-size: 26px;
    font-weight: 400;
}

.google-item .text span{
    color: #530d0f;
    font-size: 16px;
    font-weight: 300;
}

.google-slider .owl-dots{
    margin-top: 25px;
}

.google-slider .owl-dots button{
    height: 12px;
    width: 12px;
    background: #dddddd;
    border-radius: 50%;
    margin-right: 10px;
    outline: none;
}

.google-slider .owl-dots button:focus{
    outline: none;
}

.google-slider .owl-dots button.active{
    background-color: #530d0f;
    outline: none;
}

.address{
    background-color: #530d0f;
    padding: 50px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-top: -100px;
    margin-bottom: 40px;
}

.first-adr{
    color: #fff;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
}

.first-adr::before{
    position: absolute;
    content: "";
    background-color: #fff;
    height: 2px;
    width: 40px;
    bottom: -13px;
    left: 0;
}

.first-adr span{
    font-weight: 500;
}

.second-adr{
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    max-width: 300px;
}

.address .adr,
.address .adr-btn{
    flex: 0 0 50%;
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; */
}

.adr-btn h3{
    color: #fff;
}

.adr-btn .whatsapp-btn,
.adr-btn .call-btn{
    width: 220px;
    display: inline-block;
    text-align: center;
    margin-bottom: 10px;
    font-size: 18px;
}

.adr-btn .call-btn{
    background-color: #042f4c;
}

.cta-area7 h3{
    margin-bottom: 15px;
}


.popup .popuptext {
    visibility: hidden;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
    }
    .popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
    }
    @-webkit-keyframes fadeIn {
    from {opacity: 0;} 
    to {opacity: 1;}
    }
    @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
    }