@font-face {
    font-family: "Montserrat-Regular";
    src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Didot";
    src: url("../fonts/Didot-Regular.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Montserrat-Medium";
    src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Montserrat-Bold";
    src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
    font-display: swap;
}

:root {
    --darkblue: #0f2b7f;
    --white: #ffffff;
    --darkgray: #15181a;
    --lightpeach: #e8e0db;
    --lightgray: #f4f4f5;
    --toppadding: 55px;
    --bottompadding: 65px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* cursor: none; */
}

*:hover,
*:focus,
*:visited {
    outline: 0;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

html {
    font-family: "Montserrat-Regular";
    scroll-behavior: smooth;
}

body {
    margin: 0 auto;
    font-family: "Montserrat-Regular";
    font-weight: 400;
    color: #2a2a2a;
    font-size: 15px;
    line-height: 150%;
    background-color: var(--white);
    overflow: hidden;
}

.clearfix {
    clear: both;
}

.dHide {
    display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0.55vw 0;
    line-height: 140%;
}

h1 {
    font-size: 40px;
    font-weight: 400;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 13px;
    text-transform: uppercase;
}

h6 {
    font-size: 10px;
    text-transform: uppercase;
}

p {
    margin: 0;
    line-height: 165%;
    font-weight: 400;
}

p:last-child {
    margin-bottom: 0;
}

small {
    font-size: 12px;
}

.txtCenter {
    text-align: center;
}

.centerAlign {
    margin: 20px auto !important;
}

.txtLeft {
    text-align: left;
}

.txtJustify {
    text-align: justify;
}

.txtCenterJustify {
    text-align: justify;
    text-align-last: center;
}

.txtUppercase {
    text-transform: uppercase;
}

.w-800 {
    width: 800px;
    max-width: 95%;
    margin: 0 auto;
}

.mHide {
    display: block !important;
}

.dHide {
    display: none !important;
}

a {
    color: #222;
    text-decoration: none;
    cursor: pointer;
}

a:hover,
a:focus {
    color: var(--darkblue);
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

a.blueLink {
    color: var(--darkblue);
}

a,
a:link,
a:hover,
a:active {
    outline: none;
}

.fancybox.a {
    background-color: transparent;
}

img {
    width: auto;
    max-width: 100% !important;
    height: auto !important;
    border: 0;
    -ms-interpolation-mode: bicubic;
    /*aspect-ratio: attr(width) / attr(height);*/
}

ul {
    padding: 0;
    list-style: disc inside none;
    margin-bottom: 0;
    padding-left: 0;
}

ol {
    padding: 0;
    list-style: decimal inside none;
    margin-bottom: 20px;
    padding-left: 30px;
}

button {
    border: 0 solid;
}

.wrapper {
    width: 100%;
    margin: 0;
}

.padding20 {
    padding: 20px;
}

.marginbottom {
    margin-bottom: 60px;
}

.paddingTop {
    padding-top: 50px;
}

.paddingTop20 {
    padding-top: 20px;
}

.paddingBottom {
    padding-bottom: 50px;
}

.paddingTopBottom {
    padding: 60px 0px;
}

.full_width {
    width: 100%;
    margin: 0 auto;
}

.padding-TopBottom {
    padding-top: var(--toppadding);
    padding-bottom: var(--bottompadding);
    padding-left: 0px;
    padding-right: 0px;
}

/* .containerAsp {
    width: 1280px;
    max-width: 98%;
    margin: 0 auto;
  } */

.containerAsp {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.section-title {
    text-transform: uppercase;
    color: var(--darkblue);
    font-size: 50px;
    font-family: "Didot";
    padding-bottom: 0px;
    padding: 0px;
    line-height: normal;
    margin: 0px;
}

.section-subtitle {
    color: #000;
    font-size: 15px;
    font-weight: 100;
    font-family: "Montserrat-Medium";
    /* text-transform: lowercase; */
}

/* .section-subtitle:first-letter {
      text-transform: uppercase;
  } */

/* .pinkbg
{
  background-color: #e8e0db;
} */

.w-100 {
    width: 100%;
}

li {
    list-style: none;
}

/*disclaimer */

.disclaimer_modal .modal-dialog {
    max-width: 60%;
}

.disclaimer_modal p {
    text-align: justify;
}

.disclaimer_modal.show .modal-dialog-scrollable {
    max-height: calc(100% - 20%);
    min-height: calc(100% - 20%);
    height: calc(100% - 20%);
}

.disclaimer_modal .modal-footer .popupbtn {
    color: var(--white);
    font-weight: normal;
    background-color: var(--darkblue);
    font-family: "Montserrat-Regular";
    text-align: left;
    font-size: 15px;
}

/* disclaimer Ends*/

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header {
    position: fixed;
    z-index: 2;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
    top: 0;
}

.containerAsp {
    padding: 0px;
}

.navbar {
    padding: 0.5rem 0rem !important;
}

.navbar .navbar-nav .nav-item .nav-link {
    color: #000000;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-family: "Montserrat-Regular";
    font-weight: 600;
    padding-right: 1rem;
    padding-left: 1rem;
}

.navbar .navbar-nav {
    margin-top: 10px;
}

.navlinklast {
    padding-right: 0rem !important;
}

.navbar-light .navbar-toggler-icon {
    background-image: none !important;
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 0px solid transparent;
    border-radius: 0.25rem;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--darkblue);
}

.navbar-logo-centered .navbar-nav .nav-link {
    padding: 0.5em 1em;
}

.navbar-brand img {
    width: 150px;
}

/*---------------------------------*\
#Banner
\*----------------------------------*/

#bannerLinkAction {
    cursor: pointer;
}

.videobanner {
    height: 100vh;
}

.bannerVideoHeight {
    position: inherit;
    overflow: hidden;
    right: 0;
    min-width: 100%;
    z-index: -9999;
    /* height: 100vh; */
    /* object-fit: cover; */
    object-position: center top;
}

.videobanner .containerAsp {
    width: 100%;
    max-width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.bannerCaption {
    float: right;
}

.bannerCaption {
    background-color: #0f2b7fd8;
    color: var(--white);
    width: 360px;
    padding: 15px 25px;
    padding-bottom: 20px;
    float: right;
    /* margin-left: 20px; */
}

.bannerCaption div {
    color: var(--white);
    font-weight: 400;
    margin: 0;
    padding: 0.55vw 0;
    line-height: 140%;
}

.bannerCaption .section-title {
    font-size: 40px;
}

.bannerCaption a {
    background-color: transparent;
    color: var(--lightpeach);
    padding: 10px 10px;
    text-transform: uppercase;
    font-family: "Montserrat-Regular";
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-left: 0px;
    margin-top: 5px;
    width: 200px;
}

.bannerCaption a:hover {
    background-color: var(--white);
    color: var(--darkblue);
    padding: 10px 10px;
}

.bannerCaption a:hover img {
    transition: all 0.2s ease-in-out;
    animation: movearrow 1.5s infinite;
}

.bannerCaption a img {
    width: 22px;
    height: auto;
}

.playcontainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.playcontainer img {
    width: 80px;
}

.playbutton {
    background-color: #fff;
    color: #000;
    width: 60px;
    height: 60px;
    font-weight: 700;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.video-player iframe {
    height: 100vh;
}

/*-----------------------------------*\
  #Stats
\*-----------------------------------*/

.stats {
    padding-top: 100px;
    padding-bottom: 150px;
    background-color: var(--white);
}

.stats .containerAsp {
    padding-left: 0px;
    padding-right: 0px;
}

.statslist {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

.statsitem {
    flex: 1;
    text-align: center;
    border-right: 1px solid #bebec6;
}

.statsitem h4 {
    color: var(--darkblue);
    font-size: 50px;
    font-weight: 400;
    font-family: "Didot";
}

.statsitem:last-child {
    border-right: none;
}

.span-plus {
    padding-left: 2px;
    font-weight: 600;
}

/*-----------------------------------*\
  #aboutus
\*-----------------------------------*/

.aboutus {
    background-color: var(--lightpeach);
}

.aboutcontainer {
    display: flex;
    /* gap: 100px; */
    align-items: flex-end;
}

.aboutcontent {
    flex: 1.35;
    padding-right: 100px;
}

.aboutcontent a {
    display: block;
    background-color: var(--darkblue);
    text-align: left;
    color: var(--white);
    margin-top: 40px;
    text-transform: uppercase;
    font-family: "Montserrat-Bold";
    font-size: 15px;
    padding: 15px 20px;
    width: 300px;
    padding-left: 20px;
}

.aboutcontent a:hover {
    background-color: var(--white);
    color: var(--darkblue);
}

/* .aboutcontent a:visited
{
  background-color: var(--darkblue);
  color: var(--white);
  
} */

a.aboutBtn:hover img {
    transition: all 0.2s ease-in-out;
    animation: movearrow 1.5s;
}

@keyframes movearrow {
    0% {
        margin-left: 5px;
    }
    50% {
        margin-left: 10px;
    }
    100% {
        margin-left: 0px;
    }
}

@keyframes moveuparrow {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

a.aboutBtn1 {
    padding-right: 25px;
    margin-top: 0px;
    text-align: left;
    padding-top: 25px;
    padding-bottom: 25px;
    width: 400px;
}

a .btnArrow {
    padding-left: 5px;
}

.aboutimage {
    flex: 1;
    margin-top: -167px;
    text-align: right;
}

.aboutimage img {
    width: 443px;
    height: 532px;
}

/* .aboutcontent a:is(:hover, :focus) {
  background: var(--black);
  color: var(--dark-jungle-green);
  border-color: var(--black);
} */

.btn2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--white);
    transition: 0.25s ease;
    z-index: -1;
    border: 0px solid var(--darkblue);
}

.btn2:is(:hover,
:focus)::before {
    width: 100%;
}

.btn2:is(:visited)::before {
    width: 0;
}

.btn3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--darkblue);
    transition: 0.25s ease;
    z-index: -1;
    border: 0px solid var(--white);
}

.btn3:is(:hover,
:focus)::before {
    width: 100%;
}

.btn3:is(:visited)::before {
    width: 0;
}

.btn4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--white);
    transition: 0.25s ease;
    z-index: -1;
    border: 1px solid var(--darkblue);
}

.btn4:is(:hover,
:focus)::before {
    width: 100%;
}

.btn4:is(:visited)::before {
    width: 0;
}

a.btn5 span {
    font-size: 19px;
    font-family: "Didot";
}

a.btn5:hover span {
    transition: all 0.2s ease-in-out;
    animation: movearrow 1.5s infinite;
}

a.btn5::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--white);
    transition: 0.25s ease;
    z-index: -1;
    border: 1px solid var(--darkblue);
    color: var(--darkblue);
}

a.btn5:focus {
    background: var(--white);
    color: var(--darkblue);
    border: 1px solid var(--darkblue);
}

a.btn5:active {
    background: var(--white);
    color: var(--darkblue);
    border: 1px solid var(--darkblue);
}

a.btn5:is(:hover,
:focus)::before {
    width: 100%;
}

a.btn5:is(:visited)::before {
    width: 0;
}

/* a.btn5:visited{
  background: var(--darkblue);
  border:1px solid var(--darkblue);
} */

.btn5.a:hover {
    background: var(--darkblue);
    border: 1px solid var(--darkblue);
    color: var(--white);
}

a.btn5:active:after {
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: 0s;
}

a.btn5:active::before {
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: 0s;
}

/*-----------------------------------*\
  #Projects
\*-----------------------------------*/

.OurProjects {
    background-color: var(--white);
    border-bottom: 1px solid #d5d5d8;
}

.subheader {
    display: flex;
    /* gap: 400px; */
    align-items: flex-start;
    justify-content: space-around;
    gap: 20px;
}

.OurProjects .containerAsp h3 {
    flex: 3;
}

.OurProjects .containerAsp button {
    flex: 1;
}

.nextBtn button,
.prevBtn button {
    flex: none;
}

.pinkbtn {
    color: #0f2b7f;
    padding: 15px 20px;
    width: 267px;
    padding-left: 20px;
    /* display: flex; */
    align-items: center;
    gap: 10px;
    /* margin-right: -110px; */
    /* margin-right: -190px; */
    font-weight: 600;
    background-color: var(--lightpeach);
    text-transform: uppercase;
    font-family: "Montserrat-Medium";
    /* letter-spacing: 1px; */
    text-align: left;
    position: relative;
    max-width: 267px;
}

.pinkbtn:hover {
    color: #fff;
    background-color: var(--darkblue);
}

.pinkbtn:hover span {
    transition: all 0.2s ease-in-out;
    animation: movearrow 1.5s infinite;
}

.pinkbtn span {
    font-size: 19px;
    font-family: "Didot";
}

.pinkbtn:visited {
    background-color: var(--lightpeach);
    color: #0f2b7f;
}

.tInvestorSliderBtn {
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nextBtn,
.prevBtn {
    width: 200px !important;
    padding: 15px 17px;
    text-align: center;
    margin: 0px 15px;
}

.ourprojectsSlider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project {
    position: relative;
}

.projectcaption {
    position: absolute;
    left: 50%;
    bottom: 25px;
    background-color: #fff;
    padding: 10px;
    transform: translateX(-50%);
    width: 85%;
    text-align: center;
}

.projectcaption:hover {
    background-color: var(--darkblue);
    color: var(--white);
}

.projectcaption:hover h4 {
    color: var(--white);
}

.projectcaption:hover a {
    color: var(--white) !important;
}

.projectcaption a span {
    font-size: 19px;
    font-family: "Didot";
}

.projectcaption:hover a>span {
    transition: all 0.2s ease-in-out;
    animation: movearrow 1.5s infinite;
}

.projectcaption h4 {
    color: #0f2b7f;
    font-family: "Didot";
    font-weight: 500;
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 1px;
    padding-bottom: 3px;
    padding-top: 3px;
}

.ourprojectsSlider {
    margin-top: 10px;
    /* margin-bottom: 10px;*/
}

.projectcaption p {
    margin-bottom: 3px;
}

.projectcaption a {
    color: var(--darkblue) !important;
    font-family: "Montserrat-Bold";
    text-transform: uppercase;
    font-weight: 600;
}

/*-----------------------------------*\
  #testimonial
\*-----------------------------------*/

.testimonials {
    background-color: var(--white);
    border-bottom: 1px solid #d5d5d8;
}

.testimonials .containerAsp h3 {
    flex: 3;
    padding-right: 20px;
}

.testimonials .containerAsp button {
    flex: none;
}

.testimonialsContainer {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    text-align: center;
    margin-top: 30px;
    justify-content: space-between;
}

.testimonialsContainer .testimonial {
    margin-right: 20px;
    flex: 1;
}

.testimonialsContainer .testimonial:last-child {
    margin-right: 0px;
}

.testimonialimage {
    position: relative;
}

.testimonialimage img {
    display: block;
    width: 100%;
}

.testimonial p {
    margin-top: 10px;
    font-family: "Montserrat-Medium";
    /* text-transform: uppercase; */
    font-size: 15px;
    font-weight: 600;
}

.testimonial .testimonialSubtext {
    margin-top: 0px;
    font-family: "Montserrat-Medium";
    /* text-transform: uppercase; */
    font-size: 13px;
    font-weight: normal;
}

.testimonialimage iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: transparent;
}

.testimonialimage .play {
    height: 68px;
    width: 68px;
    left: 50%;
    top: 50%;
    position: absolute;
    background: url(../images/icons/play-big.png) no-repeat;
    background-size: cover;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.testimonialimage:hover .play {
    height: 68px;
    width: 68px;
    left: 50%;
    top: 50%;
    position: absolute;
    background: url(../images/icons/playnew.svg) no-repeat;
    background-size: cover;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

/* awards  */

.awards {
    background-color: var(--lightpeach);
    /* padding-top:60px;
  margin-bottom: 60px; */
}

.awards .awardhead button {
    border: 1px solid #000;
}

.awards .containerAsp h2 {
    /* flex: 3; */
    /* padding-right: 400px; */
}

.responsive-tabs .dropdown-arrow {
    display: none;
}

.awardhead {
    /* display: flex;
  align-items: center; */
}

.awards .subheader {
    display: block;
}

.awards .containerAsp button {
    flex: 2;
}

.awardscontainer nav {}

.awardscontainer .nav-item {
    margin-bottom: 10px !important;
    width: 50%;
}

.awardimage p {
    font-family: "Montserrat-Medium";
    font-weight: 600;
    padding-top: 10px;
    text-align: center;
}

.awardimage .awardsubtext {
    font-weight: normal;
    padding-top: 0px;
}

.awardimage img {
    width: 50% !important;
    margin: 0 auto;
}

.awardslider2022 {
    width: 400px !important;
    margin: 0px auto;
    display: block;
}

.awardscontainer .nav-tabs {
    /* border-bottom: none !important; */
    cursor: pointer;
}

.awardscontainer .nav-tabs .nav-item.show .nav-link,
.awardscontainer .nav-tabs .nav-link {
    border: 0px solid #fff !important;
    border-color: transparent;
    border-top-left-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom: 1px solid #000 !important;
    color: #000;
    font-family: "Montserrat-Bold";
}

.awardscontainer .nav-tabs .nav-item.show .nav-link,
.awardscontainer .nav-tabs .nav-link.active {
    background-color: transparent !important;
    border-bottom: 2px solid var(--darkblue) !important;
}

.awardscontainer .nav-tabs .nav-item.show .nav-link,
.awardscontainer .nav-tabs :hover {
    background-color: transparent !important;
    /* border-bottom: 1px solid var(--darkblue) !important; */
}

.tab-pane {
    padding-top: 20px;
}

.tab-pane .owl-theme .owl-dots .owl-dot.active span,
.tab-pane .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--darkblue);
}

.tab-pane .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: transparent;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 0.2s ease;
    border-radius: 30px;
    border: 1px solid #919191;
}

/*  Events */

.events {
    border-bottom: 1px solid #ccc;
}

.eventsSlider {
    /* margin-top:30px;
    margin-bottom: 30px; */
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.events .containerAsp h3 {
    flex: 3;
    /* padding-right: 400px; */
}

.events .containerAsp button {
    flex: 1;
}

.eventsitems {
    /* padding: 10px; */
    flex: 1;
}

.eventsitems hr {
    background-color: #8d8d8d;
    height: 1.5px;
    margin-bottom: 0.8rem;
    display: inline-block;
    width: 100%;
    opacity: 0.5;
    border: 0px;
}

.eventsitems .eventdate {
    color: #8d8d8d;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-family: "Montserrat-Medium";
}

.eventsitems .eventTitle {
    color: #0f2b7f;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-family: "Montserrat-Medium";
    font-size: 15px;
}

.eventsitems img {
    margin-bottom: 0.8rem;
}

.eventsitems img.btnArrow {
    margin-bottom: 0;
    display: inline-block;
}

.eventsitems a {
    text-transform: uppercase;
    color: #0f2b7f;
    font-weight: 600;
    font-family: "Montserrat-Bold";
}

.eventsitems a span {
    font-size: 19px;
    font-family: "Didot";
}

.eventsitems a:hover span {
    transition: all 0.2s ease-in-out;
    animation: movearrow 1.5s infinite;
}

/* Events */

/*-----------------------------------*\
  #FAQs
\*-----------------------------------*/

.faq {}

.faq-title {
    text-transform: none;
}

.faqcontainer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* gap: 150px; */
}

.faqleft {
    /* flex:1;
  padding-right: 150px; */
    flex-basis: 30%;
}

.faqright {
    /* flex:2; */
    flex-basis: 45%;
}

.faqleft h2 {
    padding: 20px 0px;
    padding-top: 8px;
}

.faqleft .subheader {
    padding-bottom: 20px;
    justify-content: initial;
}

.faqcontainer .faqleft a {
    background-color: var(--darkblue);
    text-align: left;
    color: var(--white);
    margin-top: 30px;
    text-transform: uppercase;
    font-family: "Montserrat-Bold";
    font-size: 15px;
    display: block;
    position: relative;
    z-index: 1;
    padding: 15px 20px;
    width: 300px;
    padding-left: 20px;
}

.faqcontainer .faqleft a:hover {
    background-color: var(--white);
    color: var(--darkblue);
}

.faqcontainer .faqleft a:hover img {
    transition: all 0.2s ease-in-out;
    animation: movearrow 1.5s infinite;
}

.accordian {
    max-width: 100%;
    display: block;
    margin: 0px auto;
}

.accordian .card {
    float: left;
    width: 100%;
    border: 0px solid #fff;
    border-radius: 0px;
    border-bottom: 2px solid #9ea8c9;
    background-color: transparent;
}

.accordian .card .card-header h3 {
    cursor: pointer;
    color: #0f2b7f;
    position: relative;
    margin: 0;
    padding: 0px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    font-family: "Montserrat-Medium";
    padding-right: 30px;
}

.accordian .card .card-header {
    position: relative;
    background-color: transparent;
}

.accordian .card .card-header img {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.faq .accordian .card .card-header img {
    height: 13px;
    top: 50%;
    transform: translateY(-50%);
}

.accordian .card .card-body {
    padding: 0px 20px 10px 0px;
}

.accordian .card .card-body {
    display: none;
}

/*open one card by default*/

.accordian .card:nth-child(1) .card-body {
    display: block;
}

.accordian .card .card-body p {
    font-size: 15px;
    line-height: 24px;
    color: #000000;
    margin: 0px;
    text-align: justify;
}

.card-header {
    padding: 1.05rem 1.25rem 1.05rem 0rem;
    margin-bottom: 0;
    background-color: transparent;
    border-bottom: 0px;
}

/*-----------------------------------*\
  #our blogs
\*-----------------------------------*/

.ourblogs {
    background-color: var(--lightpeach);
}

.ourblogs h2 {
    /* padding: 20px 0px; */
}

.ourblogs .containerAsp .section-title {
    flex: 1;
    /* padding: 20px 0px; */
    /* padding-right: 400px;*/
}

.ourblogs .containerAsp button {
    flex: 2;
}

.ourblogs .subheader button {
    border: 1px solid #000;
}

.ourblogscontainer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* gap: 50px; */
}

.ourblogsleft {
    flex: 1;
    padding-right: 100px;
}

.ourblogsleft .subheader {
    flex-direction: column;
}

.ourblogsleft a {
    background-color: var(--darkblue);
    text-align: left;
    color: var(--white);
    margin-top: 30px;
    text-transform: uppercase;
    font-family: "Montserrat-Bold";
    font-size: 15px;
    display: block;
    position: relative;
    z-index: 1;
    width: 300px;
    padding: 15px 20px;
    width: 300px;
    padding-left: 20px;
}

.ourblogsleft a:hover {
    background-color: var(--white);
    color: var(--darkblue);
}

.ourblogsleft a:hover img {
    transition: all 0.2s ease-in-out;
    animation: movearrow 1.5s infinite;
}

.ourblogsright {
    flex: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.blogitem {
    flex: 1;
    padding-left: 20px;
}

.blogitem h2 {
    color: var(--darkgray);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 17px;
    font-family: "Montserrat-Bold";
}

.blogitem button:hover span {
    transition: all 0.2s ease-in-out;
    animation: movearrow 1.5s infinite;
}

.zoom-on-hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    z-index: 1;
}

.zoom-on-hover:hover {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    z-index: 9999999999999;
}

.blogitem img {
    width: 363px;
    height: 338px;
}

.blogitem:hover .blogitem img {
    transform: scale(1.1);
}

.blogitem button {
    background-color: transparent;
    text-align: left;
    color: var(--darkbue);
    padding: 0px;
    margin-top: 0px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    font-family: "Montserrat-Bold";
    color: var(--darkblue);
}

.blogitem button img {
    width: 20px;
    height: 30px;
}

.blogitem button span {
    font-size: 19px;
    font-family: "Didot";
}

/*-----------------------------------*\
  #Footer
\*-----------------------------------*/

.btm-title {
    font-size: 15px;
    padding-bottom: 0px;
}

.ficons {
    transition: all 0.2s ease-in-out;
    animation: locationIconAnim 1.5s infinite;
}

@keyframes locationIconAnim {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.footer {
    background-color: #f4f4f5;
    color: #212529;
    padding-top: 40px;
}

.footer-link-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-top .containerAsp {
    display: flex;
    justify-content: space-between;
}

.footer-top {
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-list-title {
    font-family: "Montserrat-Medium";
    font-size: 15px;
    color: var(--darkgray);
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: 25px !important;
}

.nounderline {
    text-decoration: none !important;
    margin-bottom: 0px !important;
}

.social-list {
    display: flex;
    align-items: center;
    /* gap: 10px; */
    margin-bottom: 40px;
}

.footer-bottom {
    background-color: #1b2b5d;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
}

.footer-list a {
    text-decoration: none;
    color: var(--darkgray);
}

/* .social-list li
  {
    border: 2px solid var(--darkblue);
    padding: 5px;
    border-radius: 50%;
  } */

.social-list a {
    color: var(--darkbue);
    font-size: 20px;
    margin-right: 10px;
}

.social-list img {
    width: 40px;
    height: 40px;
}

.social-list a:hover img {
    transition: all 0.2s ease-in-out;
    animation: moveuparrow 1.5s infinite;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0px;
}

.contact-link img {
    background-color: #e8e0db;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.contact-link p {
    margin: 0px;
}

.reachusAddress {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d1d1d1;
    padding-bottom: 30px !important;
}

.reachusAddress h4 {
    text-transform: uppercase;
    color: var(--darkblue);
    flex: 1;
}

.footerenqbutton {
    text-align: right;
}

.footerenqbutton a {
    color: var(--white);
    width: 300px;
    font-weight: 600;
    background-color: var(--darkblue);
    text-transform: uppercase;
    font-family: "Montserrat-Medium";
    letter-spacing: 1px;
    display: block;
    text-align: left;
    float: right;
    position: relative;
    z-index: 1;
    padding: 15px 20px;
    width: 300px;
    padding-left: 20px;
}

.footerenqbutton a:hover {
    color: var(--darkblue);
    background-color: var(--white);
    /* border:1px solid var(--darkblue); */
}

.footerenqbutton a:hover img {
    transition: all 0.2s ease-in-out;
    animation: movearrow 1.5s infinite;
}

.addlinks {
    flex: 2.5;
    display: grid;
    grid-template-columns: 2fr 1fr 0.8fr;
    align-items: center;
    justify-items: center;
}

.copyright {
    font-size: 1rem;
    text-align: center;
}

.copyright a {
    display: inline-block;
}

.copyright a:is(:hover,
:focus) {
    color: #ccc;
}

.footer-brand {
    padding-top: 55px;
}

/* Enq Now */

.enqnowtemplate .mb_20 {
    margin-bottom: 20px !important;
}

.enqnowtemplate .floatingButton {
    position: fixed;
    right: -72px;
    z-index: 999;
    top: 36%;
    transform: rotate(-90deg);
    float: right;
}

.enqnowtemplate .floatingButton button {
    background-color: var(--darkblue);
    color: var(--white);
    /* border: 1px solid var(--darkblue); */
    padding: 10px 13px;
    border-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    font-size: 16px;
    width: 180px;
    font-family: "Montserrat-Medium";
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    border-bottom: 0px;
}

.enqnowtemplate .form-mobile {
    display: none;
}

.enqnowtemplate .form-mobile {
    box-shadow: 0 0 9px 1px hsl(0deg 0% 0% / 18%);
    background-color: #fff;
    width: 400px;
    padding: 15px 25px 15px 25px;
    border: 10px solid #e8e0db;
    position: fixed;
    top: 50%;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999999;
}

.enqnowtemplate .form-mobile .form-control {
    padding: 0.35rem 0.35rem;
    font-size: 0.85rem;
    border: 2px solid #b7b7b7;
    color: var(--darkgray) !important;
    font-weight: 600;
    font-family: "Montserrat-Regular";
}

.enqnowtemplate .form-mobile h3 {
    color: var(--darkblue);
    font-family: "Montserrat-Bold";
    padding-bottom: 23px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0px auto;
    padding: 15px 10px;
    display: block;
    text-align: center;
}

.enquirymobileform form img.whitelandlogo {
    margin: 0px auto;
    display: block;
    width: 45%;
}

.form-group label {
    margin-bottom: 0.2rem;
    font-family: "Montserrat-Regular";
    font-weight: 600;
    color: #817c7c;
    font-size: 14px;
}

.enqnowtemplate .form-mobile .form-control::placeholder {
    color: var(--darkgray) !important;
    font-weight: 600 !important;
    font-family: "Montserrat-Regular" !important;
}

.enqnowtemplate .form-mobile :-ms-input-placeholder {
    color: var(--darkgray) !important;
    font-weight: 600 !important;
    font-family: "Montserrat-Regular" !important;
}

.enqnowtemplate .form-mobile ::-ms-input-placeholder {
    color: var(--darkgray) !important;
    font-weight: 600 !important;
    font-family: "Montserrat-Regular" !important;
}

.enqnowtemplate .form-check-inline .form-check-input {
    margin-right: 0.3rem;
}

.enqnowtemplate .form-check-inline {
    margin-right: 0.25rem;
}

.enqnowtemplate .terms {
    font-size: 12px !important;
    margin: 0;
    color: var(--darkblue);
    text-align: center;
    font-family: "Montserrat-Medium";
}

.enqnowtemplate .form-check-label {
    margin-bottom: 0;
    color: #252525;
    font-size: 13px;
    font-family: "Montserrat-Medium";
}

.enqnowtemplate .form-mobile button {
    background-color: var(--darkblue);
    /* background-image: -webkit-linear-gradient(right, #54ab34, #065194); */
    background-image: -o-linear-gradient(right, #54ab34, #065194);
    background-image: -moz-linear-gradient(right, #54ab34, #065194);
    /* background-image: linear-gradient(to right, #54ab34, #065194); */
    /* border: 0px solid #087900; */
    color: var(--white);
    padding: 7px 30px;
    border-radius: 0px;
    font-size: 1rem;
    width: 100%;
    font-family: "Montserrat-Medium";
    text-transform: uppercase;
    outline: 0;
}

.enqnowtemplate .form-mobile .close_frm_frm_close1 {
    text-align: right;
    top: 6px;
    position: absolute;
    right: 5px;
    cursor: pointer;
}

.enqnowtemplate .form-mobile .close_frm_frm_close1 {
    display: block !important;
}

.enqnowtemplate .form-mobile .close_frm_frm_close1 img {
    width: 25px;
}

.form_strip {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border: 0px solid;
    padding: 15px;
    background-color: var(--lightpeach);
    color: var(--darkblue);
    text-align: center;
    border: 1px solid #bdb7b4;
    z-index: 9999999;
}

.form_strip button {
    color: var(--darkblue);
    background-color: var(--lightpeach);
    text-transform: uppercase;
    font-family: "Montserrat-Bold";
    font-size: 18px;
}

.form_strip {
    display: none;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #002b7f;
}

.owl-theme .owl-dots .owl-dot span {
    margin: 5px 7px;
    background: #d6d6d6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 0.2s ease;
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 100%;
    background-color: rgb(214, 214, 214);
    border: 1px solid #616161;
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/* @media (min-width: 576px)
{
  .containerAsp {
      max-width: 540px;
  }
} */

@media (max-width: 1200px) {
    .bannerCaption {
        width: 280px;
    }
    .bannerCaption .section-title {
        font-size: 30px;
    }
    .bannerCaption p {
        font-size: 12px;
    }
}

@media (min-width: 768px) {
    .containerAsp {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .containerAsp {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .containerAsp {
        max-width: 1140px;
    }
}

/**
   * responsive for larger than 1920px screen
   */

@media (max-width: 1920px) {
    /* .container {
        max-width: 1300px;
    } */
    /* .bannerCaption {
        right: 300px;
    } */
    /* .pinkbtn {
        margin-right: -303px;
    } */
    .footer-link-box {
        flex-basis: 700px;
    }
    .footer-brand {
        flex: 0.5;
    }
}

@media only screen and (max-width: 1666px) {
    /* .container {
      max-width: 1300px;
  } */
    /* .bannerCaption {
      right: 112px;
  } */
    .footer-link-box {
        flex-basis: 700px;
    }
    .footer-brand {
        flex: 0.69;
    }
}

@media only screen and (max-width: 1466px) {
    /* .container {
    max-width: 1300px;
} */
    /* .bannerCaption {
    right: 60px;
} */
    .footer-link-box {
        flex-basis: 700px;
    }
}

@media only screen and (max-width: 1366px) {
    /* .containerAsp {
    width: 1160px;
  } */
}

@media only screen and (max-width: 1280px) {
    /* .container {
      max-width: 1100px;
  } */
    /* .bannerCaption {
      right: 60px;
  } */
    /* .pinkbtn {
    margin-right: -70px;
  } */
    .footer-link-box {
        flex-basis: 700px;
    }
}

/**
   * responsive for larger than 992px screen
   */

/* @media (min-width: 992px) {

    
  
  } */

@media only screen and (max-width: 992px) {
    .disclaimer_modal .modal-dialog {
        max-width: 90%;
    }
    .disclaimer_modal.show .modal-dialog-scrollable {
        max-height: calc(100% - 40%);
        min-height: calc(100% - 40%);
        height: calc(100% - 40%);
    }
    .bcenq {
        display: none !important;
    }
    /*     
    #myNavbarToggler7
    {
      margin-top:10px;
    } */
    .containerAsp {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }
    .btn2::before {
        display: none;
    }
    .btn2:is(:hover,
    :focus)::before {
        width: 100%;
        display: none;
    }
    .btn3::before {
        display: none;
    }
    .btn3:is(:hover,
    :focus)::before {
        width: 100%;
        display: none;
    }
    /* .containerAsp
    {
      max-width:90%;
    } */
    .section-title {
        font-size: 30px;
    }
    .pinkbtn {
        margin-right: -49px;
    }
    .aboutimage {
        flex: 1;
        margin-top: -137px;
        text-align: right;
    }
    .aboutcontent {
        flex: 1;
        padding-right: 50px;
    }
    .project {
        position: relative;
        padding: 10px;
    }
    .testimonial {
        padding: 10px;
    }
    .addlinks {
        flex: 3.5;
    }
    .footer-link-box {
        flex-basis: 500px;
    }
    .footer-brand {
        flex: 0.8;
    }
    .enqnowtemplate .floatingButton button {
        font-size: 13px;
        width: 150px;
        padding: 10px 10px;
    }
    .enqnowtemplate .floatingButton {
        right: -53px;
        top: 36%;
    }
}

@media only screen and (max-width: 768px) {
    /* .cursor{
    display: none;
  } */
    .floatingButton {
        display: none;
    }
    a.btn5::before {
        display: none;
    }
    .padding-TopBottom {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-left: 0px;
        padding-right: 0px;
    }
    .form_strip {
        display: block;
    }
    .zoom-on-hover {
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        z-index: 1;
    }
    .zoom-on-hover:hover {
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        z-index: 9999999999999;
    }
    /* .projectcaption {
  display: none!important;
} */
    .mHide {
        display: none !important;
    }
    .dHide {
        display: block !important;
    }
    .paddingTopBottom {
        padding: 40px 0px;
    }
    .videobanner .containerAsp {
        max-width: 100%;
        left: 0;
        transform: translateX(0%);
        width: 100%;
        padding-right: 0px;
        padding-left: 0px;
    }
    .bannerVideoHeight {
        position: inherit;
        overflow: hidden;
        right: 0;
        min-width: 100%;
        z-index: -9999;
        height: 73vh;
        object-fit: contain;
    }
    .videobanner {
        height: 80vh;
    }
    .video-player iframe {
        height: 80vh;
    }
    .statsitem h4 {
        font-size: 40px;
    }
    /* .containerAsp
  {
    max-width: 90%;
  } */
    .bannerCaption {
        background-color: var(--darkblue);
        right: 0px;
        width: 100%;
        margin-left: 0;
        padding: 20px 20px;
    }
    .section-title {
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    .statslist {
        width: 600px;
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
        gap: 0px;
        margin: 0px auto;
    }
    .statsitem {
        flex: unset;
        width: 50%;
        /* min-height: 158px; */
        min-height: 180px;
        border-bottom: 1px solid #bebec6;
        padding: 21px;
        border-right: 0px solid #bebec6;
    }
    .statsitem:nth-child(odd) {
        border-right: 1px solid #bebec6;
    }
    .statsitem:last-child {
        min-height: auto;
        border: 0px solid #fff;
        padding-bottom: 10px;
    }
    .stats {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    /* About us */
    .aboutus {
        padding-top: 0px;
        padding-bottom: 30px;
    }
    .aboutus .containerAsp {
        max-width: 100%;
        width: 100%;
        padding-right: 0px;
        padding-left: 0px;
    }
    .section-subtitle {
        margin-bottom: 15px;
    }
    .aboutcontainer {
        display: flex;
        gap: 20px;
        flex-direction: column-reverse;
    }
    .aboutcontent {
        flex: 1;
        padding: 15px;
    }
    .aboutcontent a {
        width: 100%;
        margin-top: 20px;
    }
    .aboutcontent a:hover {
        background-color: var(--darkblue);
        color: var(--white);
    }
    .aboutimage {
        flex: 1;
        margin-top: 0px;
        text-align: center;
        text-align: center;
        margin: 0px auto;
        width: 100%;
    }
    .aboutimage img {
        width: 100%;
        height: 532px;
    }
    /* project */
    .subheader {
        gap: 0px;
    }
    .OurProjects {
        /* padding-bottom: 30px; */
    }
    .OurProjects .containerAsp h3 {
        flex: 1;
        padding-right: 0px;
    }
    .OurProjects .containerAsp .pinkbtn {
        flex: 1;
        display: none;
        width: 100%;
    }
    .ourprojectsSlider .project .projectcaption img {
        display: unset !important;
        width: unset !important;
    }
    .ourprojectsSlider .projectSlide {
        margin-right: 0px !important;
    }
    /* .owl-carousel .owl-item img {
  display: unset!important; 
  width: unset!important; 
} */
    .owl-theme .owl-nav [class*="owl-"]:hover {
        background: transparent;
        color: #fff;
        text-decoration: none;
    }
    .owl-theme .owl-nav [class*="owl-"] {
        color: #fff;
        font-size: 14px;
        margin: 5px;
        padding: 4px 7px;
        background: transparent !important;
        display: inline-block;
        cursor: pointer;
        border-radius: 3px;
    }
    .owl-theme .owl-nav .disabled {
        opacity: 1 !important;
        cursor: default !important;
    }
    .projectcaption h4 {
        font-weight: 600;
    }
    /* testimonial */
    .testimonials .containerAsp h3 {
        flex: 1;
        padding-right: 0px;
    }
    .testimonials .containerAsp .pinkbtn {
        flex: 1;
        display: none;
        width: 100%;
        margin-top: 10px;
    }
    .testimonialsContainer {
        margin-top: 0px;
    }
    .testimonialsContainer .testimonial {
        margin-right: 0px !important;
    }
    /* testimonial */
    /* Awards */
    .awardscontainer .nav-item {
        margin-bottom: 0px !important;
        width: 100%;
    }
    .awardscontainer .nav-tabs .nav-item.show .nav-link,
    .awardscontainer .nav-tabs .nav-link {
        border-bottom: 0px solid #000 !important;
    }
    .awardscontainer .nav-tabs .nav-item.show .nav-link,
    .awardscontainer .nav-tabs .nav-link.active {
        border-bottom: 0px solid var(--darkblue) !important;
    }
    .awardscontainer .nav-tabs {
        border: 1px solid #747373;
        cursor: pointer;
    }
    .responsive-tabs {
        position: relative;
        border: 1px solid #747373 !important;
        border-bottom: 1px solid #747373 !important;
    }
    .responsive-tabs li {
        width: 100%;
        margin: 0 !important;
    }
    .responsive-tabs li>a {
        display: none;
        border: 0 !important;
        border-radius: 0 !important;
    }
    .responsive-tabs.open li>a,
    .responsive-tabs li>a.active {
        display: block;
    }
    .responsive-tabs .dropdown-arrow {
        position: absolute;
        top: 15px;
        right: 15px;
        border: solid black;
        border-width: 0 3px 3px 0;
        display: inline-block;
        padding: 3px;
        vertical-align: middle;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transition: all ease 0.5s;
        cursor: pointer;
    }
    .responsive-tabs.open .dropdown-arrow {
        transform: rotate(-135deg);
        transition: all ease 0.5s;
    }
    /* Events */
    .events .containerAsp {
        /* border-bottom: 1px solid #d1d1d1; */
        /* padding-bottom: 30px!important; */
    }
    .events .containerAsp h3 {
        flex: 1;
        padding-right: 0px;
    }
    .events .pinkbtn {
        display: none;
        width: 100%;
        margin-top: 10px;
    }
    .eventsitems {
        padding: 10px;
    }
    .eventsitems a {
        margin-top: 10px;
        display: block;
    }
    .eventsitems a img {
        margin-bottom: 0.2rem !important;
        /* width: 30px !important; */
        display: inline-block !important;
    }
    /* Events Ends*/
    /* FAQ */
    /* .faq {
  padding-bottom: 50px;
    padding-top: 40px
} */
    .faqcontainer {
        flex-direction: column;
        gap: 20px;
    }
    .faqleft {
        flex: 1;
        padding-right: 0px;
    }
    .faqright {
        flex: 1;
        margin-top: 0px;
    }
    .faqleft .subheader {
        padding-bottom: 10px;
    }
    .faqleft .subheader .section-subtitle {
        margin-bottom: 10px;
    }
    .faqcontainer .faqleft button {
        margin-top: 30px;
    }
    .faqleft h2 {
        padding: 20px 0px;
        padding-top: 0px;
        margin-bottom: 0px;
    }
    .faqcontainer a.knowmore {
        background-color: var(--darkblue);
        text-align: left;
        color: var(--white);
        margin-top: 20px;
        text-transform: uppercase;
        font-family: "Montserrat-Bold";
        font-size: 15px;
        display: block;
        position: relative;
        z-index: 1;
        width: 100%;
        padding: 15px 20px;
    }
    .faqcontainer a.knowmore:hover {
        background-color: var(--darkblue);
        color: var(--white);
        border: 1px solid var(--darkblue);
    }
    .faqcontainer a.knowmore:hover img {
        transition: all 0.2s ease-in-out;
        animation: movearrow 1.5s infinite;
    }
    .card-header {
        padding: 1.05rem 2rem 1.05rem 0rem;
    }
    /* FAQ Ends */
    /* Our Blogs */
    /* .ourblogs {
  padding: 50px 0px;
} */
    .ourblogsleft .subheader {
        padding-bottom: 0px;
    }
    .ourblogs .containerAsp .section-title {
        flex: 1;
        padding: 0px 0px;
        padding-right: 0px;
    }
    .ourblogscontainer a.exploremore {
        background-color: var(--darkblue);
        text-align: left;
        color: var(--white);
        padding: 15px 20px;
        margin-top: 20px;
        text-transform: uppercase;
        font-family: "Montserrat-Bold";
        font-size: 15px;
        display: block;
        position: relative;
        z-index: 1;
        width: 100%;
    }
    .ourblogscontainer a.exploremore:hover {
        background-color: var(--darkblue);
        color: var(--white);
        border: 1px solid var(--darkblue);
    }
    .ourblogscontainer a.exploremore:hover img {
        transition: all 0.2s ease-in-out;
        animation: movearrow 1.5s infinite;
    }
    .ourblogs .subheader .pinkbtn {
        display: none;
    }
    .ourblogscontainer {
        flex-direction: column;
    }
    .ourblogsleft {
        padding-right: 0px;
    }
    .ourblogsright {
        flex: 1;
        display: block;
        margin-top: 25px;
    }
    .blogitem {
        flex: 1;
        padding-left: 0px;
    }
    .blogitem button img {
        width: 30px !important;
        display: inline-block !important;
    }
    /* Our Blogs Ends */
    /* Reach us & footer*/
    .reachusAddress {
        flex-direction: column;
        align-items: initial;
        border-bottom: 0px solid #d1d1d1;
        padding-bottom: 10px !important;
    }
    .addlinks {
        grid-template-columns: 1fr;
        align-items: end;
        justify-items: start;
        margin-top: 15px;
    }
    .contact-link {
        margin-bottom: 20px;
    }
    .contact-link {
        margin-bottom: 20px;
        justify-content: start;
        width: 100%;
    }
    .footerenqbutton a {
        width: 100%;
        /* text-align: center; */
        float: unset;
    }
    .footer-top .containerAsp {
        flex-direction: column;
    }
    .footer-top {
        padding-top: 50px;
        padding-bottom: 40px;
    }
    .projectslist {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    .footer-link-box {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
        flex-basis: 0px;
    }
    .footer-bottom {
        margin-bottom: 55px;
    }
    .pinkbtn:hover {
        color: var(--darkblue);
        background-color: var(--lightpeach);
    }
    /* Reach us  ends*/
}

/** PROJECTS **/

.ourprojectsSlider .projectSlide {
    margin-right: 20px;
}

.ourprojectsSlider .projectSlide:last-child {
    margin-right: 0px;
}

/**
   * responsive for larger than 1200px screen
   */

@media only screen and (min-width: 896px) and (orientation: portrait) {
    .stats {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .statslist {
        width: 600px;
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
        gap: 0px;
        margin: 0px auto;
    }
    .statsitem:nth-child(odd) {
        border-right: 1px solid #bebec6;
    }
    .statsitem {
        flex: unset;
        width: 50%;
        min-height: 158px;
        border-bottom: 1px solid #bebec6;
        padding: 21px;
        border-right: 0px solid #bebec6;
    }
    .statsitem h4 {
        font-size: 40px;
    }
    .aboutcontainer {
        display: flex;
        /* gap: 100px; */
        align-items: center;
    }
    .aboutimage {
        flex: 1;
        margin-top: 0px;
        text-align: right;
    }
}

@media only screen and (max-width: 320px) {
    .videobanner {
        height: 95vh;
    }
    .video-player iframe {
        height: 95vh;
    }
}

ul.subcat_footer li {
    list-style: disc;
    margin-left: 15px;
    font-size: 12.5px;
}