/*-------------------------------------------------------------------------------
  1. Global
-------------------------------------------------------------------------------*/

:root {
    --thm-color1: #f6d70a;
    --thm-color2: #000;
    --thm-color3: #fff27d;
}


/* 1.1 General */

@font-face {
    font-family: lg;
    src: url(../fonts/NexaDemo-Light.ttf);
}

@font-face {
    font-family: Nexalight;
    src: url(../fonts/NexaDemo-Light.ttf);
}

@font-face {
    font-family: Nexabold;
    src: url(../fonts/NexaDemo-Bold.ttf);
}

@font-face {
    font-family: FontAwesome;
    src: url(../fonts/fontawesome-webfont.woff);
}

@font-face {
    font-family: Font-Awesome;
    src: url(../fonts/fontawesome-webfont.woff2);
}

html {
    -webkit-font-smoothing: antialiased;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #444444;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

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

h1,
.h1 {
    font-size: 2rem;
    line-height: 1;
    margin: 0 0 20px 0;
}

h2,
.h2 {
    position: relative;
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 400;
    padding: 0;
    margin: 0 0 20px 0;
}

h3,
.h3 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.25;
    margin-top: 20px;
    margin-bottom: 10px;
}

h4,
.h4 {
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 700;
    margin: 0;
}

h5,
.h5 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
}

strong {
    font-weight: 900;
}

ul,
ol {
    margin-top: 0px;
    margin-bottom: 10px;
}

ul {
    list-style: none;
    padding-left: 0;
}

ol li,
ul li {
    margin-top: 10px;
}

p {
    margin: 10px 0 0;
}

blockquote {
    margin: 20px 0 20px 0;
    font-size: inherit;
    border-left: 3px solid #d4b068;
}

a {
    color: ver(--thm-color2);
    -webkit-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #999;
    outline: none;
}

a:focus {
    text-decoration: none;
}

.section-title {
    font-size: 2.5em;
    font-weight: 800;
    color: #000;
}

.bg-color1 {
    background-color: var(--thm-color3);
}

.bg-red {
    background-color: var(--thm-color2);
}

.bg-lred {
    background-color: rgb(254 214 214);
}

.img-bg {
    position: relative;
}

.img-bg img {
    border-radius: 400px;
    min-height: 650px;
    width: 90%;
    height: 100%;
    max-height: 450px;
    object-fit: cover;
}

.thm-btn1 {
    position: relative;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    padding: 6px 20px;
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 5px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 0;
}

.thm-btn1::before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    display: block;
    position: absolute;
    background: var(--thm-color1);
    z-index: -1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.thm-btn1:hover:before {
    width: 0;
}

.thm-btn2 {
    position: relative;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    padding: 12px 30px;
    background-color: var(--thm-color3);
    border: 2px solid var(--thm-color1);
    color: #83531c;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 10px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 0;
}

.thm-btn2::before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    display: block;
    position: absolute;
    background: #fff;
    z-index: -1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.thm-btn2:hover:before {
    width: 0;
}


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

header {
    background: rgba(255, 255, 255, 0);
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 99;
    padding: 30px 60px;
}

header .logo {
    max-width: 100px;
}




/*Nav*/

.navbar {
    height: 100%;
    background: transparent;
    border-radius: 8px;
}

.navbar-nav li a {
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    font-size: 13px;
    font-family: "Montserrat", sans-serif;
    display: inline-flex;
    padding: 0 8px 10px 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.navbar-nav li {
    margin-left: 10px;
}

.navbar-nav li a:hover {
    text-decoration: none;
    color: red;
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
}

.logo {
    color: #f6d70a;
    padding-left: 10px;
    display: flex;
    align-items: center;
    text-decoration: underline;
    text-wrap: nowrap;
}

.logo:hover {
    color: #f6d70a;
    text-decoration: none;
}

.navbar .logo img {
    max-width: 60px;
    float: left;
}

.navbar-nav li a:hover {
    text-decoration: none;
}

.navbar-nav li {
    margin: 0px;
}

.navbar-toggler {
    background: #fff;
    border-radius: 0px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.logo img {
    max-width: 100px;
}

header {
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    animation: 0.5s slideout;
    animation-timing-function: ease-in-out;
}

@keyframes slideout {
    0% {
        top: 0px;
    }

    100% {
        top: 0px;
    }
}

header.fixed-top {
    background: rgba(0, 0, 0, 0.9);
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    animation-name: slidein;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    z-index: 99999;
    padding: 20px 60px;
}

@keyframes slidein {
    0% {
        top: 0px;
    }

    100% {
        top: 0%;
    }
}

.fixed-top img.logo {
    max-width: 150px;
    transform: translateY(0px);
}

/* header.fixed-top .navbar li a {
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
} */

.cta a {
    color: #fff;
    background: #17ae25;
    padding: 10px 30px;
    border-radius: 0px;
    font-weight: 600;
    margin-right: 20px;
}

#slider .overlay {
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#ffffff", GradientType=1);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}


.services-box h3 {
    background: rgb(255 255 255);
    font-weight: 800;
    color: #f00;
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 20px;
}

.classes-list {
    margin: 0;
    /* display: block;
    column-count: 3;
    column-gap: 0px; */
}

.classes-list li {
    list-style: none;
    padding: 20px 10px;
    margin: 0;
    text-align: center;
    background-color: var(--thm-color2);
    border: 1px dashed var(--thm-color1);
    transition: all 0.3s ease-in-out 0s;
}

.classes-list li:hover {
    background-color: #f6d70a;
    transition: all 0.3s ease-in-out 0s;
}

.classes-list li h1 {
    margin-top: 20px;
}

.classes-list li a {
    font-size: 20px;
    font-weight: 500;
    color: var(--thm-color1);
    display: block;
    line-height: 1;
    transition: all 0.3s ease-in-out 0s;
}

.classes-list li:hover a {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out 0s;
    color: var(--thm-color2);
}

.list-disc li {
    background: #dddddd;
    margin-bottom: 25px;
    padding: 0.8375rem 2rem;
    width: 100%;
    color: #000a38;
    margin-top: 1.25rem;
    border-radius: 50px;
}


/* .list-disc li:before {
  content: "\f111";
  color: #333;
  font-size: 0.9rem;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  transform: translateX(-15px);
} */


/*-------------------------------------------------------------------------------
  3. About
-------------------------------------------------------------------------------*/

#about {
    background: url("https://res.cloudinary.com/ked-technology/image/upload/v1549890314/KDE%20Designs/img/about-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
    z-index: 1;
}

#about::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: -1;
}

#about .about-col {
    background: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

#about .about-col .img {
    position: relative;
}

#about .about-col .img img {
    border-radius: 4px 4px 0 0;
    width: 100%;
}

#about .about-col .icon {
    width: 64px;
    height: 64px;
    padding-top: 8px;
    text-align: center;
    position: absolute;
    background-color: #f6d70a;
    border-radius: 50%;
    text-align: center;
    border: 4px solid #fff;
    left: calc(50% - 32px);
    bottom: -30px;
    transition: 0.3s;
}

#about .about-col i {
    font-size: 36px;
    line-height: 1;
    color: #fff;
    transition: 0.3s;
}

#about .about-col:hover .icon {
    background-color: #fff;
}

#about .about-col:hover i {
    color: #f6d70a;
}

#about .about-col h2 {
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    padding: 0;
    margin: 40px 0 12px 0;
}

#about .about-col h2 a {
    color: #000;
}

#about .about-col h2 a:hover {
    color: #f6d70a;
}

#about .about-col p {
    font-size: 14px;
    line-height: 24px;
    color: #333;
    margin-bottom: 0;
    padding: 0 20px 20px 20px;
}


/*-------------------------------------------------------------------------------
  CAT
-------------------------------------------------------------------------------*/

#cta-sec {
    background-image: url(../img/tt-para.jpeg);
    background-position: center;
    background-size: cover;
    padding-top: 200px;
    padding-bottom: 200px;
    background-attachment: fixed;
}


/*-------------------------------------------------------------------------------
  Services
-------------------------------------------------------------------------------*/

#services {
    background: #fff;
}

#services .box {
    padding: 20px;
}

#services .box .icon {
    float: left;
    height: 100%;
}

#services .box .icon i {
    color: #ef1d4a;
    padding: 10px 20px;
    font-size: 1.5em;
    border-radius: 50px;
    line-height: 1;
    display: inline-block;
    margin-bottom: 20px;
}


#services .btn-primary {
    background-color: #f6d70a;
    border: none;
    color: #000;
}

#services .btn-primary:hover {
    background-color: #000;
    border: none;
    color: #f6d70a;
}



/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
    display: block;
    width: 100%;
    height: 100vh;
    background: #000;
}

#intro .carousel-item {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#intro .carousel-item::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#intro .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#intro .carousel-caption {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}

#intro .carousel-content {
    text-align: center;
}

#intro h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 35px;
    font-weight: 700;
}

@media (max-width: 768px) {
    #intro h2 {
        font-size: 28px;
    }
}

#intro p {
    width: 80%;
    margin: 0 auto 30px auto;
    color: #fff;
}

@media (min-width: 1024px) {
    #intro p {
        width: 60%;
    }
}

#intro .carousel-fade .carousel-inner .carousel-item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
    opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev,
#intro .carousel-control-next {
    width: 10%;
}

@media (min-width: 1024px) {

    #intro .carousel-control-prev,
    #intro .carousel-control-next {
        width: 5%;
    }
}

#intro .carousel-control-prev,
#intro .carousel-control-next {
    background: none;
    font-size: 60px;
    line-height: 1;
}

#intro .carousel-indicators li {
    cursor: pointer;
}

.btn-get-started {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #000;
    background: #f6d70a;
}

.btn-get-started:hover {
    background: #3d3d3d;
    color: #ef1d4a;
    font-weight: 600;
}



/*-------------------------------------------------------------------------------
  Testimonials
-------------------------------------------------------------------------------*/



#testimonials .testimonial-img {
    width: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    /*  margin-bottom: 12rem;*/
}

#testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}

#testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 15px 0;
}

#testimonials .testimonial-item .quote-sign-left {
    margin-top: -15px;
    padding-right: 10px;
    display: inline-block;
    width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
    margin-bottom: -15px;
    padding-left: 10px;
    display: inline-block;
    max-width: 100%;
    width: 37px;
}

#testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

#testimonials button i {
    color: #000;
    font-size: 1.5em;
}



@media (min-width: 992px) {
    #testimonials .testimonial-item p {
        width: 80%;
    }
}


/*-------------------------------------------------------------------------------
  Awards
-------------------------------------------------------------------------------*/

#awards .splide__list {
    align-items: center;
    text-align: center;
}

#awards .splide__slide img {
    max-width: 230px;
    max-height: 200px;
}


/*-------------------------------------------------------------------------------
  Contact
-------------------------------------------------------------------------------*/

.contact {
    background: #343434;
    color: #fff;
}

.contact-details p i {
    padding-right: 10px;
}

.contact-details p a {
    color: #fff;
}

.contact-details .social a {
    color: #fff;
    padding-right: 10px;
}

.ftr-text {
    font-size: 1.2rem;
}

form#contactForm {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

form#contactForm .form-control {
    border-radius: 0px;
    border: 1px solid rgb(56 189 248);
    padding: 0.5rem 0.75rem;
}

.btn.btn-form {
    background-color: red !important;
    color: white !important;
    border: 2px solid black;
    border-radius: 50px;
    padding: 6px 30px;
    transition: background-color 0.3s, color 0.3s;
}

.service_box {
    border-bottom: 1px solid var(--thm-color2);
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease-in-out 0s;
}

.service_box:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out 0s;
}

.service_box .service_title {
    margin-bottom: 10px;
}

.service_box .service_title h4 a {
    color: var(--thm-color2);
}

.service_box .service_text {
    font-size: 16px;
}


/*-------------------------------------------------------------------------------
  Media Query
-------------------------------------------------------------------------------*/

@media only screen and (max-width: 1130px) {
    .navbar-nav li a {
        padding-left: 7px;
        padding-right: 7px;
    }

    .cta a {
        padding: 10px;
    }
}

@media only screen and (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 150px;
        left: 0;
        width: 100%;
        text-align: center;
        background: #17ae25;
    }
}

@media only screen and (max-width: 600px) {
    .demo-gallery>ul>li a>img {
        max-height: 200px;
    }

    .carousel-control-prev {
        left: -50px;
    }

    .carousel-control-next {
        right: -50px;
    }

    .plr-100 {
        padding-left: 40px;
        padding-right: 40px;
    }

    .plr-50 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-img .about-name {
        font-size: 20px;
    }

    .about-img .about-name {
        position: inherit;
    }

    #about .plr-50 {
        padding-left: 20px;
        padding-right: 20px;
    }

    #contact .p-60 {
        padding: 20px;
        text-align: center;
    }

    #contact h3 {
        text-align: center;
    }

    .contact-details div {
        text-align: center !important;
    }

    .classes-list {
        column-count: 2;
    }
}

@media only screen and (max-width: 430px) {
    .navbar .navbar-brand img {
        max-width: 60px;
    }

    .classes-list {
        column-count: 1;
    }
}

@media only screen and (max-width: 320px) {
    #contact .justify-content-center:first-child {
        padding: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .h-captcha {
        transform: scale(0.78);
        margin-left: -9vw;
    }

    h1 {
        font-size: 2.5rem !important;
    }
}

.bio_3 {
    margin-top: -60px;
}

.text-justify {
    text-align: justify;
}

.cta-bg {
    background: linear-gradient(rgb(22 165 35), rgb(23 174 37));
    background-size: cover;
}

@media only screen and (max-width: 990px) {
    .our-team {
        margin-bottom: 30px;
    }
}

.img-center {
    display: flex;
    object-fit: cover;
    text-align: center;
    align-items: center;
}

.colored-toast {
    margin-top: 80px;
}

.about-cols {
    display: flex;
}

.about-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.about-col>h2.title,
.about-col>p {
    flex-grow: 1;
}

.about-col .img {
    width: 100%;
    padding: 0;
}

.about-col .img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

#header {
    padding: 30px 0;
    height: 100px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
}

#header #logo {
    float: left;
}


@media (min-width: 1200px) {
    h2 {
        font-size: 2rem;
    }
}

#header #logo h2 a,
#header #logo h2 a:hover {
    color: #f6d70a;
    padding-left: 10px;
    text-decoration: underline;
}

#header #logo img {
    padding: 0;
    margin: 0;
}

.header-logo {
    max-width: 60px !important;
}



@media (min-width: 1024px) {
    #nav-menu-container {
        padding-right: 60px;
    }

    #header #logo {
        padding-left: 60px;
    }
}

#nav-menu-container {
    float: right;
    margin: 0;
    margin-bottom: 20px;
}

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}



.nav-menu>li {
    margin-left: 10px;
}

.nav-menu>li {
    float: left;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}



.nav-menu a {
    padding: 0 8px 10px 8px;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    outline: none;
}

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}


#header.header-scrolled {
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 0;
    height: 100px;
    transition: all 0.5s;
}