
/* @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap'); */

/* @import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap'); */
/********** Template CSS **********/
:root {
    --primary: #AB7442;
    --light: #F5F5F5;
    --dark: #353535;
}


body::-webkit-scrollbar {
    width: 11px;
  }
  /* body {
    scrollbar-width: thin;
    scrollbar-color: #000 #c2a764;
  } */
  body::-webkit-scrollbar-track {
    background: #c2a764;
  }
  body::-webkit-scrollbar-thumb {
    background-color: #000 ;
    border-radius: 6px;
    border: 3px solid #c2a764;
  }
  
  html, body {
    scrollbar-width: thin;
    scrollbar-color:  #c2a764 #000;
  }
  html::-webkit-scrollbar {
    width: 11px;
  }
  html::-webkit-scrollbar-track {
    background: #c2a764;
  }
  html::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 6px;
    border: 3px solid #c2a764;
  }

body{
    background-color: #071a45!important;
    /* font-family: "IBM Plex Mono", serif;
  font-weight: 400;
  font-style: normal; */
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #fff;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        background-color: #fff;
    }
}



.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: #b9a647;
    font-weight: 500;
}

.header-top{
    background-color: #162957!important;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
    /* height: 110px!important; */
}

.navbar{
    height: 110px!important;
    background-color: #071a45!important;
    border-bottom: 2px solid greenyellow;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background-color: #071a45!important;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: #b9a647;
    border-color: #b9a647;
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: transparent;
    border: 1px solid #FFFFFF;
}

.header-carousel .owl-dot.active {
    background: #b9a647;
    border-color: #b9a647;
}

.page-header {
    background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../img/other_images/about_.JPG) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title h1 {
    position: relative;
    display: inline-block;
    padding: 0 60px;
}

.section-title.text-start h1 {
    padding-left: 0;
}

.section-title h1::before,
.section-title h1::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 5px;
    bottom: 0;
    background: #fff;
}

.section-title h1::before {
    left: 0;
}

.section-title h1::after {
    right: 0;
}

.section-title.text-start h1::before {
    display: none;
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-item{
    border: transparent;
    border-radius: 10px;
    box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
}

.service-item .overflow-hidden{
    border: transparent;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}


.service-item img {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.1);
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: greenyellow;
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: #fff;
    border-color: #fff;
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    bottom: 0;
    left: 50%;
    background: rgba(53, 53, 53, .7);
    transition: .5s;
}

.portfolio-item:hover .portfolio-overlay {
    width: 100%;
    height: 100%;
    left: 0;
}

.portfolio-item .portfolio-overlay .btn {
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay .btn {
    opacity: 1;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 38px;
    top: 50%;
    left: -38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    border: 5px solid var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    background-color: #162957;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}


.captain_email{
    display: none;
}

.mobile_verify_error
{
    display: none;
    color: red;
}

.email_verify_error
{
    display: none;
    color: red;
}

.invalid_otp_error{
    display: none;
}

#email_verification{
    display: none;
}


form input.otp{
    display:inline-block;
    width:50px;
    height:50px;
    text-align:center;
  }

  
.roadmap-container {
    float: left;
    width: 100%;
    padding: 50px 0;
    font-family: "Stag Sans Round", sans-serif;
    font-size: 16px;
    border-top: 5px solid #159CDF;
    background-color: #fff;
}

.roadmap-auto {
    max-width: 950px;
    margin: 0 auto;
}

.roadmap-container .roadmap-h2 {
    background: url(../template/images/underline-background.png) center bottom no-repeat;
    background-size: 250px 3px;
    color: #159CDF;
    z-index: 1;
    font-family: "Stag Sans Round", sans-serif;
    font-size: 45px;
    line-height: 55px;
    font-weight: 500;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 6px;
    text-align: center;
}

.roadmap-container .roadmap-timeline {
    padding-top: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-container .timeline-dot {
    position: absolute;
    left: 50%;
    z-index: 3;
    width: 8px;
    height: 8px;
    margin-left: -6px;
    border: 2px solid #1BACB3;
    border-radius: 6px;
    background-color: #1BACB3;
}

.roadmap-container .timeline-list {
    float: left;
    width: 100%;
    position: relative;
}

.roadmap-container .timeline-list .timeline-list-col {
    float: left;
    width: 50%;
    padding-top: 50px;
    padding-right: 0;
    padding-left: 0;
    position: relative;
    z-index: 3;
}

.roadmap-container .timeline-list .timeline-item-block {
    width: 350px;
    margin-bottom: 50px;
    float: left;
    text-align: left;
}

.roadmap-container .timeline-list .timeline-item-block17q4 {
    margin-top: 50px;
}

.roadmap-container .timeline-list .timeline-item-block18q2 {
    margin-top: 50px;
}

.roadmap-container .timeline-list .timeline-item-block .timeline-item-time {
    /* position: relative;
    width: 320px; */
    min-height: 36px;
    border-bottom: 0 solid #1BACB3;
}

.roadmap-container .timeline-list .timeline-item-block .timeline-item-label {
    /* float: left; */
    font-size: 24px;
    line-height: 26px;
    font-weight: 500;
    /* text-align: left; */
    text-transform: uppercase;
    color: #222;
}

.roadmap-container .timeline-list .timeline-item-block .timeline-item-content {
    position: relative;
    left: 0;
    width: 280px;
    margin-top: 0;
    margin-right: 40px;
    float: left;
    width: 100%;
    font-size: 16px;
    line-height: 21px;
    color: #555;
    font-weight: 400;
    text-transform: none;
    border: 1px solid #ddd;
    border-top: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    padding-bottom: 0;
}

.roadmap-container .timeline-list .timeline-item-block .timeline-item-content p {
    background: url(../template/images/arrow-dot-gray2.png) 0 2px no-repeat;
    margin-bottom: 10px;
    background-size: 16px 16px;
    padding-left: 24px;
}

.roadmap-container .timeline-list .timeline-item-block .timeline-item-content p.no-bullet {
    background: none;
    padding-left: 0;
}

.roadmap-container .timeline-list .timeline-col-right {
    padding-top: 150px;
}

.roadmap-container .timeline-list .timeline-col-right .timeline-item-block {
    float: right;
}

.roadmap-container .timeline-list .timeline-col-right .timeline-item-label {
    float: right;
    text-align: right;
}

.roadmap-container .timeline-list .timeline-col-right .timeline-item-content {
    text-align: left;
    margin-left: 0px;
    margin-right: 0;
}

.roadmap-container .timeline-list .timeline-list-vr {
    width: 0;
    height: 100%;
    border-left: 1px solid #1BACB3;
    border-right: 1px solid #1BACB3;
    position: absolute;
    left: 50%;
    margin-left: -1px;
    z-index: 2l
}

.roadmap-container .timeline-list .timeline-item-label-hr {
    float: left;
    width: 475px;
    height: 3px;
    background-color: #555;
    position: relative;
}

.roadmap-container .timeline-list .timeline-item-block .item-dot {
    left: auto;
    right: 0;
    bottom: -5px;
    margin-right: -6px;
    margin-left: 0;
}

.roadmap-container .timeline-list .timeline-col-right .item-dot {
    left: 0;
    right: auto;
    margin-right: 0;
    margin-left: -7px;
}

.roadmap-container .timeline-list .timeline-col-right .timeline-item-label-hr {
    margin-left: -125px;
}

.roadmap-container .timeline-list .timeline-item-block .timeline-item-label2 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    text-align: left;
    text-transform: uppercase;
    color: #fff;
    padding: 7px 10px 6px 10px;
}

.roadmap-container .timeline-list .timeline-item-block-green .timeline-item-label2 {
    background-color: #78BE20;
}

.roadmap-container .timeline-list .timeline-item-block-green .timeline-item-label-hr {
    background-color: #78BE20;
}

.roadmap-container .timeline-list .timeline-item-block-green .item-dot {
    background-color: #78BE20;
    border-color: #fff;
}

.roadmap-container .timeline-list .timeline-item-block-green2 .timeline-item-label2 {
    background-color: #26A3AA;
}

.roadmap-container .timeline-list .timeline-item-block-green2 .timeline-item-label-hr {
    background-color: #26A3AA;
}

.roadmap-container .timeline-list .timeline-item-block-green2 .item-dot {
    background-color: #26A3AA;
    border-color: #fff;
}

.roadmap-container .timeline-list .timeline-item-block-blue .timeline-item-label2 {
    background-color: #159CDF;
}

.roadmap-container .timeline-list .timeline-item-block-blue .timeline-item-label-hr {
    background-color: #159CDF;
}

.roadmap-container .timeline-list .timeline-item-block-blue .item-dot {
    background-color: #159CDF;
    border-color: #fff;
}

.roadmap-container .timeline-list .timeline-item-block-blue2 .timeline-item-label2 {
    background-color: #00507F;
}

.roadmap-container .timeline-list .timeline-item-block-blue2 .timeline-item-label-hr {
    background-color: #00507F;
}

.roadmap-container .timeline-list .timeline-item-block-blue2 .item-dot {
    background-color: #00507F;
    border-color: #fff;
}

.roadmap-container .timeline-list .timeline-item-block-violet .timeline-item-label2 {
    background-color: #890C58;
}

.roadmap-container .timeline-list .timeline-item-block-violet .timeline-item-label-hr {
    background-color: #890C58;
}

.roadmap-container .timeline-list .timeline-item-block-violet .item-dot {
    background-color: #890C58;
    border-color: #fff;
}

.roadmap-container .timeline-list .timeline-item-block-mobile {
    display: none;
}




@media screen and (max-width:950px) {

    .roadmap-container {
        padding: 22px 0;
    }

    .spacer-block {
        margin-bottom: 0;
    }

    .roadmap-container .roadmap-h2 {
        font-size: 25px;
        line-height: 30px;
        background-size: 150px 3px;
    }

    .roadmap-container .timeline-list .timeline-list-vr {
        left: 20px;
    }

    .roadmap-container .timeline-dot {
        left: 20px;
    }

    .roadmap-container .roadmap-timeline {
        padding-top: 0;
    }

    .roadmap-container .timeline-list .timeline-list-col {
        float: none;
        width: auto;
        margin-left: 25px;
        padding-left: 25px;
        margin-right: 25px;
    }

    .roadmap-container .timeline-list .timeline-item-block-mobile {
        display: block;
    }

    .roadmap-container .timeline-list .timeline-item-block .timeline-item-time {
        width: auto;
    }

    .roadmap-container .timeline-list .timeline-item-label-hr {
        float: none;
        width: auto;
        margin-left: -30px;
    }

    .roadmap-container .timeline-list .timeline-item-block .timeline-item-label {
        float: none;
    }

    .roadmap-container .timeline-list .timeline-item-block .item-dot {
        left: 0;
        right: auto;
        margin-left: -6px;
        margin-right: 0;
    }

    .roadmap-container .timeline-list .timeline-item-block .timeline-item-label2 {
        width: auto;
    }

    .roadmap-container .timeline-list .timeline-item-block .timeline-item-content {
        float: none;
        width: auto;
        margin-right: 0;
    }

    .roadmap-container .timeline-list .timeline-col-right {
        display: none;
    }

    .roadmap-container .timeline-list .timeline-item-block {
        float: none;
        width: auto;
    }

}

.img-container{
    width: 145px!important;
    overflow: hidden;
}

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

@media (max-width: 425px) {
    .img-container  {
        width: 170px!important;
    }
}


:root {
    --white-20: rgba(255, 255, 255, 0.2);
    --white-60: rgba(255, 255, 255, 0.6);
    --white: rgba(255, 255, 255, 1);
    --main-color: #ffc107;
    --bg-color: #323232;
  }

  .timeline-carousel {
    margin: 0;
    background-color: #323232;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    padding: 86px 6.9444% 90px 6.9444%;
    position: relative;
    overflow: hidden;
 }
 .timeline-carousel:after,
 .timeline-carousel:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    height: 100%;
    width: 6.9444%;
    background-color: #323232;
    z-index: 3;
    width: 6.9444%;
 }
 .timeline-carousel:after {
    left: 0;
 }
 .timeline-carousel:before {
    right: 0;
    opacity: 0;
 }
 .timeline-carousel .slick-list {
    overflow: visible;
 }
 .timeline-carousel .slick-dots {
    bottom: -73px;
 }
 .timeline-carousel h1 {
    color: rgba(255, 255, 255, 1);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
 }
 .timeline-carousel p {
    color: rgba(255, 255, 255, 1);
    font-weight: 300;
 }
 .timeline-carousel__image {
    padding-right: 30px;
 }
 .timeline-carousel__item {
    cursor: pointer;
 }
 .timeline-carousel__item .media-wrapper {
    opacity: 0.4;
    padding-bottom: 71.4%;
    transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
 }
 .timeline-carousel__item:last-child .timeline-carousel__item-inner:after {
    width: calc(100% - 30px);
 }
 .timeline-carousel__item-inner {
    position: relative;
    padding-top: 45px;
 }
 .timeline-carousel__item-inner:after {
    position: absolute;
    width: 100%;
    top: 45px;
    left: 0;
    content: "";
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
 }
 .timeline-carousel__item-inner .year {
    font-family: 'Montserrat';
    font-size: 36px;
    line-height: 36px;
    color: greenyellow;
    display: table;
    letter-spacing: -1px;
    padding-right: 10px;
    background-color: #323232;
    z-index: 1;
    position: relative;
    margin: -15px 0 20px;
    font-weight: 900;
 }
 .timeline-carousel__item-inner .year:after {
    content: "";
    position: absolute;
    display: block;
    left: -10px;
    top: 0;
    height: 100%;
    width: 10px;
    background-color: #323232;
    z-index: 3;
 }
 .timeline-carousel__item-inner .month {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    color: #ffc107;
    display: block;
    margin-bottom: 10px;
    font-weight: 900;
 }
 .timeline-carousel__item-inner p {
    font-size: 16px;
    line-height: 18px;
    color: rgba(255, 255, 255, 1);
    width: 60%;
    font-weight: 400;
    margin-bottom: 15px;
 }
 .timeline-carousel__item-inner .read-more {
    font-size: 12px;
    color: #ffc107;
    display: table;
    margin-bottom: 10px;
    font-weight: 900;
    text-decoration: none;
    position: relative;
 }
 .timeline-carousel__item-inner .read-more:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    border-bottom: 2px solid #ffc107;
    transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
 }
 .timeline-carousel__item-inner .read-more:hover:after {
    width: 100%;
 }
 .timeline-carousel__item-inner .pointer {
    height: 29px;
    position: relative;
    z-index: 1;
    margin: -4px 0 16px;
 }
 .timeline-carousel__item-inner .pointer:after {
    width: 9px;
    height: 9px;
    border-radius: 100%;
    top: 0;
    left: 0;
    background-color: #ffc107;
 }
 .timeline-carousel__item-inner .pointer:before {
    width: 1px;
    height: 100%;
    top: 0;
    left: 4px;
    background-color: #ffc107;
 }
 .timeline-carousel .slick-active .media-wrapper {
    opacity: 1 !important;
 }

 .slick-dots {
    bottom: 160px;
    list-style: none;
    position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
    z-index: 2;
  }
  .slick-dots li {
    cursor: pointer;
    display: inline-block;
    margin: 0 6px;
    position: relative;
    width: 10px;
    height: 10px;
  }
  .slick-dots li:last-child {
    margin-right: 0;
  }
  .slick-dots li.slick-active button {
    background: #b9a647;
    border-color: #b9a647;
  }
  .slick-dots li button {
    display: block;
    font-size: 0;
    width: 10px;
    height: 10px;
    padding: 0;
    background-color: #b9a647;
    border-color: #b9a647;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
  .slick-dots li button:hover {
    background: #b9a647;
    border-color: #b9a647;
  }

  
  .link {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
    z-index: 9999;
  }
  .link a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
  }
  .link .fa {
    font-size: 28px;
    margin-right: 8px;
    color: #fff;
  }
  
  .slick-prev,
  .slick-next {
    position: absolute;
    top: -45px;
    z-index: 1;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
  }
  .slick-prev svg,
  .slick-next svg {
    height: auto;
    width: 18px;
    padding-bottom: 2px;
  }
  .slick-prev .btn,
  .slick-next .btn {
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
  }
  .slick-prev {
    left: 0;
  }
  .slick-next {
    right: 30px;
  }

  
  .whatsapp_icon{
    color: green;
    font-size: 18px;
  }

  .facebook_icon{
    color:blue
  }

  .instagram_icon{
    color: palevioletred;
  }

  video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index:-100;
  }

  hr {
    border-top: 2px solid #071a45;
  }

.entry_btn {
    padding: 10px 15px;
    border-radius: 15px;
	font-size: 16px;
	background-color: red;
    color: #fff;
	animation: beat .60s infinite alternate;
	transform-origin: center;
    border: 1px solid yellowgreen;
}

/* Heart beat animation */
@keyframes beat{
	to { 
        background-color: yellowgreen;
         color: #000;
        border: 1px solid red;
        }
}

#payment_term_check,
#eng_term_check,
#guj_term_check{
    color: #000;
}

.header-btn {
    padding: 30px 53px;
  }

  .header-area .main-header {
    padding: 0 150px;
    background-color: #000;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .header-area .main-header {
      padding: 0 60px;
    }
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-area .main-header {
      padding: 0 20px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-area .main-header {
      padding: 0 70px;
    }
  }
  
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .header-area .main-header {
      padding: 0 70px;
    }
  }
  
  @media (max-width: 575px) {
    .header-area .main-header {
      padding: 0 20px;
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-area .main-header {
      padding-top: 16px;
      padding-bottom: 21px;
    }
  }
  
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .header-area .main-header {
      padding-top: 16px;
      padding-bottom: 21px;
    }
  }
  
  @media (max-width: 575px) {
    .header-area .main-header {
      padding-top: 16px;
      padding-bottom: 21px;
    }
  }
  
  .header-area .menu-wrapper {
    display: flex;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
  }
  
  @media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .header-area .menu-wrapper .main-menu {
      margin-right: 30px;
    }
  }
  
  .header-area .menu-wrapper .main-menu ul li {
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  
  .header-area .menu-wrapper .main-menu ul li a {
    color: #c2a764;
    font-weight: 400;
    padding: 39px 19px;
    display: block;
    font-size: 20px;
    font-family: "Barlow Condensed", sans-serif;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-transform: uppercase;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-area .menu-wrapper .main-menu ul li a {
      padding: 39px 14px;
    }
  }
  
  .header-area .menu-wrapper .main-menu ul li:hover > a {
    color: #fff;
  }
  
  .header-area .menu-wrapper .main-menu ul li:hover > ul.submenu {
    visibility: visible;
    opacity: 1;
    top: 100%;
  }
  
  .header-area .menu-wrapper .main-menu ul ul.submenu {
    position: absolute;
    width: 170px;
    background: rgba(0, 12, 32, 0.8);
    left: 0;
    top: 90%;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
    padding: 17px 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  
  .header-area .menu-wrapper .main-menu ul ul.submenu > li {
    margin-left: 7px;
    display: block;
  }
  
  .header-area .menu-wrapper .main-menu ul ul.submenu > li > a {
    padding: 6px 10px !important;
    font-size: 16px;
    color: #fdfdfd;
  }
  
  .header-area .menu-wrapper .main-menu ul ul.submenu > li > a:hover {
    color: #ff1313;
    background: none;
    padding-left: 13px !important;
  }
  
  /* .header-sticky.sticky-bar {
    background: black;
  } */


  .header-sticky.sticky-bar.sticky .main-menu ul li a {
    padding: 20px 20px !important;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-sticky.sticky-bar.sticky {
      padding: 15px 0px;
    }
  }
  
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .header-sticky.sticky-bar.sticky {
      padding: 15px 0px;
    }
  }
  
  @media (max-width: 575px) {
    .header-sticky.sticky-bar.sticky {
      padding: 15px 0px;
    }
  }
  
  .mobile_menu {
    position: absolute;
    right: 0px;
    width: 100%;
    z-index: 99;
  }
  
  .mobile_menu .slicknav_menu {
    background: transparent;
    margin-top: 0px !important;
  }
  
  /* line 160, ../../../sponDon TI/Running Project/263.InteriorDesign_HTML/HTML/assets/scss/_headerMenu.scss */
  /* .mobile_menu .slicknav_menu .slicknav_btn {
    top: -23px;
  } */
  
  /* line 163, ../../../sponDon TI/Running Project/263.InteriorDesign_HTML/HTML/assets/scss/_headerMenu.scss */
  /* .mobile_menu .slicknav_menu .slicknav_btn .slicknav_icon-bar {
    background-color: #ff1313 !important;
  } */
  
  .mobile_menu .slicknav_menu .slicknav_nav {
    margin-top: 15px !important;
    box-shadow: 0 0 10px 3px rgba(141, 140, 140, 0.5);
  }
  
  .mobile_menu .slicknav_menu .slicknav_nav a:hover {
    background: transparent;
    color: #c2a764;
  }
  
  .mobile_menu .slicknav_menu .slicknav_nav a {
    font-size: 15px;
    padding: 7px 10px;
  }
  
  .mobile_menu .slicknav_menu .slicknav_nav .slicknav_item a {
    padding: 0 !important;
  }

  .header-transparent {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9;
  }

  .modal-message .modal-dialog .modal-content .modal-header {
    text-align: center;
    display: block;
    border-bottom: none;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  /* line 112, ../../../sponDon TI/Running Project/263.InteriorDesign_HTML/HTML/assets/scss/_contact.scss */
  .modal-message .modal-dialog .modal-content .modal-header .close {
    position: absolute;
    right: -15px;
    top: -15px;
    padding: 0px;
    color: #fff;
    opacity: 1;
    cursor: pointer;
  }
  
  /* line 121, ../../../sponDon TI/Running Project/263.InteriorDesign_HTML/HTML/assets/scss/_contact.scss */
  .modal-message .modal-dialog .modal-content .modal-header h2 {
    display: block;
    text-align: center;
    padding-bottom: 10px;
  }
  
  /* line 126, ../../../sponDon TI/Running Project/263.InteriorDesign_HTML/HTML/assets/scss/_contact.scss */
  .modal-message .modal-dialog .modal-content .modal-header p {
    display: block;
  }

  
  @media (max-width: 769px) {

    .header-area .main-header {
      padding-top: unset;
    }
  
    .logo{
      width: 119px;
      height: 80px;
      overflow: hidden;
    }

    .large_btn_container{
        display: none;
    }

    .mobile_btn_container{
        display: block!important;
    }

  }

  .large_btn_container span{
    position: absolute;
    top: 14px;
    right: 100px;
  }

  .box {
    margin: 0 auto;
    width: 40px;
    height: 140px;
    border: solid 1px black;
    position: relative;
  }

  .shadow {
    position: absolute;
    width: 100%;
    height: 10px;
    background-color: grey;
    bottom: 0;
    border-radius: 100%;
    transform: scaleX(.8);
    opacity: .6;
    animation: shadowScale 1s linear infinite;
  }
  
  .gravity {
    width: 40px;
    height: 40px;
    animation: bounce 1s cubic-bezier(0.68, 0.35, 0.29, 0.54) infinite;
  }
  .ball {
    width: 40px;
    height: 40px;
    background-image: url('https://cdn4.iconfinder.com/data/icons/activity-1-1/32/69-256.png');
    background-size: cover;
    animation: roll .7s linear infinite;
  }
  
  @keyframes roll {
    0% {}
    100% { transform: rotate(360deg) }
  }
  @keyframes bounce {
    0% {}
    50% { transform: translateY(100px) }
    100% {}
  }
  @keyframes shadowScale {
    0% {}
    50% { transform: scaleX(1); opacity: .8;}
    100% {}
  }

  .show_style{
    display: block!important;
  }

  .banner-text{
    font-family: "Exo 2", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  }


  .accordion-button{
    background-color: skyblue!important;
    font-weight: 800!important;
    color: red!important;
  }