@import url("https://fonts.googleapis.com/css?family=Poppins:400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap");


@font-face {
  font-family: 'Kudryashev headline';
  src: url('../font/Kudryashev Headline.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Apercupro';
  src: url('../font/ApercuPro Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Apercupro';
  src: url('../font/ApercuPro Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Apercupro';
  src: url('../font/ApercuPro Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}




body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 32px;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  width: 100%;
  height: 100%;
  color: black;
  background-color: #ffffff;
}

html {
  width: 100%;
  height: 100%;
}
:root {
  --transparent-color: transparent;
  --primary-color: #000;
  --white-color: white;
  --green-color: #1bb321;
  --tomato-color: #fe4c1c;
  --black-color: #000;
  --p-color: #444444;
  --fw-500: 500;
  --footer-bg: #001c38;
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline-color: var(--transparent-color) !important;
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}
audio, canvas, iframe, img, svg, video {
    vertical-align: middle;
}

.container-1200 {
	width: 100%;
    max-width: 1200px;
    margin: 0 auto;
	padding: 0;
}
@media (max-width: 991px ){
.container-1200 {
	padding: 0 15px;
}
}
img {
	vertical-align: middle;
}

/* 
------------------------------------
  others page title 
--------------------------------------
*/
section.others-page-title {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  height: 35vh;
}
section.others-page-title > div:first-child {
  grid-area: 1 / 1 / 2 / -1;
}
section.others-page-title > div:last-child {
  grid-area: 1 / 1 / 2 / -1;
  z-index: 9;
  display: grid;
  align-items: center;
}
.bgimage-wrapper {
  position: relative;
}
.bg-only-images {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.bgimages-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  background: rgb(0 0 0 / 0.5);
}

.title-section-h1 {
  width: 100%;
  text-align: center;
  color: var(--white-color);
  font-size: 2.5rem;
  line-height: 1.4;
   text-transform: uppercase;
    font-family: Kudryashev headline, sans-serif;
    font-weight: 400;
}
.text-center {
  text-align: center;
}
header.entry-header h1 {
    display: none;
}
.site-main {
    padding: 3% 0;
}

.container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 7.25vw;
    padding-right: 7.25vw;
}

/*---------------------------- navigation -----------------------*/
.main-header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    transition: all 0.5s ease;
    padding: 0px;
}
.navigation-section {
  -webkit-backdrop-filter: brightness(90%) blur(6px);
  backdrop-filter: brightness(90%) blur(6px);
  border-bottom: 0px solid rgba(255, 255, 255, .05);
  transition: background-color 0.5s ease;
}


/* .navigation-section.scrolled {
    background-color: rgba(000,000,0,0.4);
	backdrop-filter: blur(10px);
}
 */



.navigation-container {
  max-width: 100%;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(40px, auto);
  position: relative;
  z-index: 999;
  padding: 7px 7.25vw;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}



.navigation-section .logo-nav {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) auto;
    grid-auto-rows: minmax(40px, auto);
    align-items: center;
	padding: 0;
}

@media (max-width: 767.98px){

.navigation-section .logo-nav {
	padding: 0;
}
}

/*---------------  */

.logo {
    /* grid-column: 1 /span 1; */
}

.nav-class-div {
    /* grid-column: 2 /span 3; */
    justify-self: center;
}

.menu-toggle {
    grid-column: 1/ span 3;
    display: none;
}

.nav-class-div ul {
    padding: 0;
    margin: 0;
    display: inline-block;
    list-style-type: none
}

.nav-class-div ul li {
    padding: 0;
    margin: 0 7px;
    display: inline-block;
    transition: 500ms left cubic-bezier(.57, .21, .69, 1.25);
}

.nav-class-div ul li {
    position: relative;
    list-style-type: none
}

.nav-class-div ul li.menu-item-has-children:before {
    content: "\f0d7";
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    color: white;
    position: absolute;
    right: -5px;
    margin-top: 0px;
}


.nav-class-div ul li.active.menu-item-has-children:before {
    content: '\f0d7';
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    color: white;
}

.nav-class-div ul li ul {
    position: absolute;
    left: 0;
    background-color: var(--white-color);
    display: none;
    min-width: 200px;
}

.nav-class-div ul li ul a {
    color: var(--primary-color);
    margin: 10px 1px;
    font-weight: var(--fw-500);
}

.nav-class-div ul li ul li {
    display: block;
    margin: 0;
    padding: 0;
}

.nav-class-div ul li ul li:not(:last-child) {
    border-bottom: 1px solid #c0c0c061;
}

.nav-class-div ul li ul li a {
    margin: 0 10px;
    padding: 3px 0;
    text-transform: capitalize;
}

.nav-class-div ul li a {
    display: block;
    padding: 0 9px;
    margin: 0 1px 0;;
    color: #fff;
    opacity: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: Apercupro, sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    text-decoration: none;
	-webkit-transition: opacity .5s;
    transition: opacity .5s;
}
.nav-class-div ul li a:hover {
    text-decoration: none;
}
.nav-class-div ul li ul li a {
    opacity: .65;
    letter-spacing: 2px;
	-webkit-transition: opacity .5s;
    transition: opacity .5s;
}
.nav-class-div ul li ul li a:hover {
    text-decoration: underline;
}

.nav-social-icon {
    justify-self: right;
}

@media (max-width: 1199px) {
    .navigation-container .nav-vocous, .navigation-container .sticky {
        padding: 0 1vw;
    }
}

@media (max-width: 767px) {
    .logo {
        display: block;
        color: var(--primary-color);
     /* grid-column: 1 /span 3; */
    }


    .nav-class-div {
        grid-column: 1 / span 4;
        justify-self: stretch;
    }

    .menu-toggle {
        grid-column: span 1 / -1;
        grid-row: 1/span 1;
        display: block;
        font-size: 30px;
        justify-self: end;
        cursor: pointer;
    }

    .menu-toggle:before {
        content: "\f0c9";
        font-family: 'Font Awesome\ 5 Free';
        font-weight: 900;
        color: var(--white-color);
    }


    .menu-toggle.active:before {
        content: "\f00d";
        font-family: 'Font Awesome\ 5 Free';
        font-weight: 900;
        color: var(--white-color);
    }

    .nav-class-div {
        display: none;
    }

    .nav-class-div.active {
        display: block
    }

    .nav-class-div.active ul li {
        display: block
    }

    .nav-class-div ul li.menu-item-has-children:before {
        margin-top: 2px;
    }

    .nav-class-div ul {
        display: block
    }

    .nav-class-div ul li ul {
        position: static
    }
	.nav-social-icon {
    display: none;
}
}

@media (max-width: 767px) {
    .nav-class-div ul li.active ul {
        display: block
    }
}

@media (min-width: 768px) {
    .nav-class-div ul li:hover ul {
        display: block
    }
}

/* -------------------Top menu---------------- */
.nav-social-icon ul {
    margin: 30px 0 0;
    padding: 0;
    list-style-type: none;
    display: flex;
}
.nav-social-icon ul li {
    margin-right: 25px;
    }
.nav-social-icon ul li:last-child {
    margin-right: 0;
    }
.nav-social-icon ul li a {
    color: white;
    font-size: 18px;
	-webkit-transition: color 450ms;
    transition: color 450ms;
}
.nav-social-icon ul li a:hover {
    color: #fac130;
}
/* -------------------------------------------- */

.main-header .logo {
    -webkit-transition: all .5s;
    transition: all .5s;
}
.main-header .logo img {
  max-width: 230px;
}

.main-header .logo-normal {
	display: block;
}

.main-header .logo-sticky {
	display: none;
}

.main-header .sticky .logo-normal {
	display: none;
}

.main-header .sticky .logo-sticky {
	display: block;
}

@media (max-width: 767.98px){
.nav-class-div ul {
	padding: 10px 20px;
}
.nav-class-div ul li a {
	color: white;
	margin: 0 0 5px;
}	
.nav-class-div ul li:last-child a {
	margin-bottom: 0;
}
}

@media (min-width: 1070px){
	.nav-class-div ul{
		margin-left: 13px;
	}
}
@media (min-width: 1170px){
	.nav-class-div ul{
		margin-left: 13px;
	}
}

/* //--------Nav------------- */
/*------------------------  */

scetion.hero-slider {
    position: relative;
}
/* .slider-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999999;
  width: 100%;
  color: white;
}
 */
.dsslider-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
}

.dsslider-container > div:first-child {
  grid-area: 1 / 1 / auto / -1;
}
.dsslider-container > div:last-child {
  grid-area: 1 / 1 / auto / -1;
  place-self: center;
  z-index: 9;
}

.slider-overlay > div {
    display: grid;
    justify-items: center;
}
.slider-overlay-child:first-child {
  /* z-index: 1;
  color: #e6e6e6;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Kudryashev headline, sans-serif;
  font-size: 3vw;
  font-weight: 400; */
  line-height: 1.3;
  position: relative;
}
/* .slider-overlay-child:last-child {
    align-items: center;
    margin-top: 4vw;
    text-decoration: none;
    display: flex;
    position: relative;
	color: #e6e6e6;
    font-family: Kudryashev headline, sans-serif;
    font-size: 1.6vw;
    line-height: 1;
} */
.cta-button-arrow {
    width: 3vw;
    margin-left: -.5vw;
}

.hero-slider a {
    text-decoration: none;
    color: white;
}

/* .dsslider-container::before {
    content: '';
    z-index: 4;
    width: 100vw;
    height: 100vh; 
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 40%, rgba(11, 43, 55, .9) 90%, #0b2b37);
    position: absolute;
    top: .2vw;
    bottom: 0%;
    left: 0%;
    right: 0%;
} */
.slide-images img {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
}
/* ------------------- */


section.dream-about {
    padding-top: 12vw;
    padding-bottom: 12vw;
    position: relative;
}
:nth-child( 1 of .about-child ) {
  color: #c4c4c4;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Apercupro, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 3vw;
}

:nth-child( 2 of .about-child )  {
    color: #e6e6e6;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Kudryashev headline, sans-serif;
    font-size: 6vw;
    font-weight: 400;
    line-height: 1.1;
}
section.dream-about > div {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: auto;
}

section.dream-about > div > :nth-child( 1 of div ) {
 grid-area: 1 / 1 / 2 / -1;
}
section.dream-about > div > :nth-child( 2 of div ) {
 grid-area: 2 / 1 / 3 / -1;
 margin-bottom: 10%;
}
section.dream-about > div > :nth-child( 3 of div ) {
 grid-area: 3 / 1 / 4 / -1;
}
section.dream-about > div > :nth-child( 3 of div ) img {
    max-width: 600px;
    opacity: .7;
    margin-left: 10vw;
}
section.dream-about > div > :nth-child( 4 of div ) {
 grid-area: 3 / 4 / 4 / -1;
	max-width: 100vw;
	color: #73848b;
	margin-bottom: 0;
	font-family: Apercupro, sans-serif;
	font-size: 1.26rem;
	font-weight: 300;
	line-height: 1.2;
}
section.dream-about > div > :nth-child( 5 of div ) {
 grid-area: 4 / 4 / 5 / -1;
}
section.dream-about > div > :nth-child( 6 of div ) {
 grid-area: auto / 1 / auto / -1;
}
section.dream-about > div > :nth-child( 6 of div ) img {
    width: 100vw;
    position: absolute;
    top: 18vw;
    bottom: 0%;
    left: 0%;
    right: 0%;
	z-index: -1;
}

.read-morea {
    font-family: Kudryashev headline, sans-serif;
    font-size: 1.6vw;
    line-height: 1;
    text-decoration: none;
    color: white;
}







/* ---------------------------about-us ----------------------------------------*/

.aboutus-dreamstp {
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    color: var(--white-color);
    position: relative;
}
.overlap-about {
    display: grid;
	grid-template-columns: 1fr;
    background-color: rgba(0, 0, 0, 0.5);
}
.aboutus-dreamstp .about-container {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 30px;
	margin-top: 110px;
	margin-bottom: 110px;
	z-index: 1;
    width: 100%;
}
.wrapper-counter {
    text-align: center;
    font-family: 'Helvetica';
    font-weight: normal;
    font-style: normal;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: .09rem;
}
.borofont{    
	font-size: 38px;
    color: #f9d022;
}
.aboutus-child-left {
	align-self: center;
	padding: 0 70px 0 0;
}
.aboutus-child-left > :nth-child( 1 of .left-child ) {
    text-transform: capitalize;
    font-family: sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-size: 2.1rem !important;
    background: transparent !important;
    margin-bottom: 1.5vw;
}
.aboutus-child-left > :nth-child( 2 of .left-child ) {
    text-align: justify;
}
.aboutus-child-left > :nth-child( 3 of .left-child ) {
    margin-top: 50px;
}
.wrapper-counter:last-child .des-cription{
/* 	word-spacing: 5px; */
}
/* -----------about us -------------------------- */
.aboutus-child-right {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	grid-auto-rows: 260px;
    justify-content: end;
    grid-gap: 20px;
}

.child-right-wrap {
    font-family: sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: background 900ms ease;
    transition: background 450ms ease;
    -webkit-transition: color 900ms;
    transition: color 450ms;
	cursor: grab;
	padding: 25px;
	text-align: center;
	letter-spacing: .1rem;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

/* 
.child-right-wrap:hover {
    background: #0c1e25;
    color: white;
} */

/* ------------------------------------------------------------------------------------- */


@media (max-width: 991.98px) {
.aboutus-dreamstp .about-container {
	grid-template-columns: 1fr;
	grid-gap: 0;
}
.aboutus-child-right {
	display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	grid-auto-rows: 220px;
    justify-content: center;
}
.aboutus-child-left > div.left-child:last-child {
	margin: 50px 0;
	padding: 0 15px;
}	
.child-right-wrap {
    min-height: 165px;
    font-size: 25px;
    padding: 5px;
}	
}

/* ----------------------------------------------- */
section.youtube-instagram {
    padding: 50px 0 90px;
}
section.youtube-instagram > div {
    display: grid;
    grid-template-columns: 2fr 2fr;
    grid-auto-rows: auto;
	grid-gap: 30px;
    background: white;
    background-color: #0b2b37;
}
.socialimg-info {
    margin: 25px 0;
    color: white;
    display: grid;
    grid-template-columns: 55px auto;
	grid-auto-rows: 44px;
    align-items: center;
    justify-items: start;
}
.socialimg-info span:last-child {
	font-size: 23px;
}
.socialimg-info img {
    width: 40px;
}
:nth-child( 2 of .youtube-instagram-child ) .socialimg-img {
	position: relative;
}
:nth-child( 2 of .youtube-instagram-child ) .socialimg-img a::after {
    background-image: url(../images/so-ins.svg);
}

:nth-child( 2 of .youtube-instagram-child ) .socialimg-img a::after {
    content: '';
    background-color: rgba(0,0,0,.8);
    -webkit-transition: all .3s;
    transition: all .3s;
    opacity: 0;
    background-size: 45px 45px;
    background-repeat: no-repeat;
    background-position: center center;
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
:nth-child( 2 of .youtube-instagram-child ) .socialimg-img a:hover::after{
	opacity:1
}

:nth-child(1 of .youtube-instagram-child) a {
    display: block;
    position: relative;
}
:nth-child(1 of .youtube-instagram-child) a::after,
:nth-child(1 of .youtube-instagram-child) a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
}

:nth-child(1 of .youtube-instagram-child) a::after{
  width: 0;
  height: 0;
  border: 16px solid transparent;
  border-left: 20px solid #fff;
  margin-top: -20px;
  margin-left: -10px;
  -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.25));
}

:nth-child( 1 of .youtube-instagram-child ) a::before {
  margin-top: -34px;
  margin-left: -34px;
  width: 60px;
  height: 60px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.42);
}

/* ------------------------- */
.socialimg-img img {
	width: 100vw;
    height: 25vw;
}

/* -------------Slider------------------- */

.slider-container {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
	height: 100vh;
	width: 100vw;
}

.slider-container h1 {
	color: #fff;
	font-size: 100px;
	letter-spacing: 5px;
	position: relative;
	z-index: 100;
	text-align: center;
}

.slider-container::after {
	background-color: #000;
	content: '';
	position: absolute;
	opacity: 0.3;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.slide {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	height: 100%;
	width: 100%;
	transform: scale(1.15);
	transition: opacity .6s ease;
}

.slide.active {
	animation: grow 4s linear forwards;
	opacity: 1;
}

@keyframes grow {
	0%, 20% {
		transform: scale(1);
	}
	
	75%, 100% {
		transform: scale(1.15);
	}
}

.controls-container {
	position: absolute;
	top: 50%;
	right: 10px;
	display: flex;
	flex-direction: column;
	transform: translateY(-50%);
	z-index: 2;
}

.control {
	background-color: #fff;
	cursor: pointer;
	opacity: 0.5;
	margin: 6px;
	height: 40px;
	width: 5px;
	transition: opacity 0.3s, background-color 0.3s, transform 0.3s;
}

.control.active, .control:hover {
	background-color: #fff;
	opacity: 1;
	transform: scale(1.2);
}
/* ---------------------------------- */
.ds-slider-title > div:first-child {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    justify-items: center;
    grid-gap: 40px;
    margin-bottom: 87px;
}
:nth-child( 1 of .dsstitie-child ) {
    color: #ffffff;
    text-transform: uppercase;
    font-family: Kudryashev headline, sans-serif;
    font-size: 5vw;
    font-weight: 400;
    line-height: 1.1;
	text-align: center;
}
/* :nth-child( 2 of .dsstitie-child ) {
	max-width: 40vw;
    color: #73848b;
    margin-bottom: 0;
    font-family: Apercupro, sans-serif;
    font-size: 1.05vw;
	font-size: 1.26rem;
    font-weight: 300;
    line-height: 1.2;
	text-align: center;
} */

/* ---------------------------------- */
.footer-wrap {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	grid-auto-rows: auto;
	grid-gap: 16px;
}
/* ------------Footer----------- */

footer {
    background-color: #1c1c1c;
    margin-bottom: -2vw;
    padding-top: 6vw;
    padding-bottom: 4vw;
}
.footer-wrap > :nth-child( 1 of .footer-child ) img {
  max-width: 280px;
}

.footer-wrap > :not(:first-child) {
  color: #637279;
  text-align: right;
  margin-bottom: 10px;
  font-family: Apercupro, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.05rem;
}

.footer-link {
  color: #e6e6e6;
  text-align: right;
  font-family: Apercupro, sans-serif;
  font-size: 1.247rem;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0.05rem;	
}


.footer-copyright-wrap {
  justify-content: space-between;
  align-items: center;
  margin-top: 4vw;
  display: flex;
}

.footer-credits {
  color: #637279;
  font-family: Apercupro, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
}
.shaonmd {
  color: #fff;
  text-decoration: none;
}

.footer-social-wrap {
  display: flex;
}

.footer-social-icon-wrap {
	width: 3.3rem;
	height: 3.3rem;
	border: 1px solid #e6e6e6;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	margin-left: 0.9rem;
	padding: 0.5rem;
	display: flex;
}

.footer-social-icon {
  width: 90%;
  height: 90%;
}







/* ---------------------- */

.explore-two .container-fluid {
  display: grid; 
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
}
.explore-two .container-fluid a {
text-decoration: none;
}
.main-wrap {
  display: grid; 
  grid-template-columns: 1fr;
  grid-template-rows: 35vw;
}
.img-wrap {
 grid-area: 1 / 1 / 1 / 2 ;
 position: relative;
 overflow: hidden;
}
.img-wrap::after {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(0px) !important;
    content: "";
    width: 100%;
    height: 100%;
	left: 0;
}
.img-wrap img {
  vertical-align: middle;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: transform 1s ease;
  transition: transform 1s ease;
}
.info-wrap {
  grid-area: 1 / 1 / 1 / 2 ;
  align-self: end;
  z-index: 9;
  color: white;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  padding: 3vw 5vw;
}
.info-wrap span:first-child {
    text-transform: uppercase;
    font-family: Kudryashev headline, sans-serif;
    font-size: 3vw;
    font-weight: 400;
    line-height: 1.2;
	display: block;
}
.info-wrap span:last-child {
  font-family: Kudryashev headline, sans-serif;
  font-size: 1.4vw;
  line-height: 1;
  display: block;
  margin-top: 15px;
  opacity: 0;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.info-wrap:hover span:last-child {
  opacity: 1;
}
.main-wrap:hover .info-wrap{
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  margin-bottom: 40px;
}
.main-wrap:hover .img-wrap:after{
    opacity: 1;
}
.main-wrap:hover img {
   transform: scale(1.3);
}

/* ------------------------- */

/* section.ds-slider-after > div {
	display: flow-root;
	background: #d7d7d7 !important;
	height: 25vw;
	margin-top: -22vw;
} */
a.slide-link {
    width: 100%;
}
.slide-img-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 33vw;
    margin: 0;
	overflow: hidden;
	width: 100%;
}

.splide__slide:hover .slide-img-wrap img,.slide-img-wrap:hover img {
	transition: all .3s ease;
	transform: scale(1.2,1.2);
	-webkit-transform: scale(1.2,1.2);
	-moz-transform: scale(1.2,1.2);
	-o-transform: scale(1.2,1.2);
	-ms-transform: scale(1.2,1.2);   
}
.slide-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
	transition: all .3s ease;
}

:nth-child( 1 of .slide-info-child ) {
    color: #979797;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: Apercupro, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
    margin-top: 2vw;
    margin-left: 25px;	
}
:nth-child( 2 of .slide-info-child ) {
    color: #000;
    margin-top: 1vw;
    font-family: sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    display: block;
    margin-left: 25px;
}
:nth-child( 2 of .slide-info-child ) a {
	text-decoration: none;
	 color: #000;
}
:nth-child( 3 of .slide-info-child ) {
    color: #000000;
    margin-top: 1vw;
    font-family: Apercupro, sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1;
	margin-left: 25px;
}

.splide__arrows {
    display: flex;
    justify-content: end;
    margin-bottom: 3%;
    margin-right: 2.5%;
    gap: 15px;
}
.splide__arrow {
    -ms-flex-align: center;
    align-items: center;
    background: #0b2b37;
    border: 1px solid #0b2b37;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr;
    height: 3em;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: .7;
    position: unset;
    top: 0;
    transform: translateY(0);
    width: 3em;
    z-index: 1;
    padding: 10px;
}
button.splide__arrow {
    border: 1px solid #0b2b37;
}
/*  ------project-details-top-------*/
.project-details-top{
overflow: hidden;
}
.project-details-top > .container-fluid {
    height: 100vh;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
}
.project-details-top > .container-fluid > div:first-child{
	grid-area: 1 / 1 / 2 / -4;
	height: 100vh;
}
.project-details-top > .container-fluid > div:first-child img {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
}
.project-details-top > .container-fluid > div:last-child{
	grid-area: 1 / 1 / 2 / -4;
	z-index: 3;
	display: grid;
	place-content: end start;
	height: 100vh;
}
.project-details-top > .container-fluid > div:last-child > div {
    margin-bottom: 5vw;
    color: white;
    text-transform: uppercase;
    font-family: Kudryashev headline, sans-serif;
    font-weight: 400;
    line-height: 1.1;
}
.project-details-top > .container-fluid > div:last-child > div h3{
	font-family: Apercupro, sans-serif;
	font-weight: 300;
}
.project-details-top > .container-fluid:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
    background: radial-gradient(circle, #000 0%, rgba(255,255,255,0) 0%, #000 100%);
    z-index: 2;
}
/*  ------project-details-top-------*/

section.ata-glance {
background: white;
}

section.ata-glance > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    align-items: center;
	grid-gap: 7%;
}
.ata-glance-child:first-child {
    width: 80%;
    margin: 8% 2% 8% 18%;
}
.ata-glance-child:last-child {
    justify-self: end;
}
:nth-child(1 of .atag-child-child) {
	text-transform: uppercase;
    font-family: Kudryashev headline, sans-serif;
    font-weight: 400;
    line-height: 1.1;
	font-size: 3rem !important;
	background: transparent !important;
	margin-bottom: 20px
}
:nth-child(2n of .atag-child-child) {
background: #f9f9f9;
border-bottom: 1px solid #e9e9e9;
font-size: 16px;
line-height: 24px;
padding: 15px 30px;


}
:nth-child(2n+1 of .atag-child-child) {
background: white;
font-size: 16px;
padding: 15px 30px;
}

/*---------------------------  */
section.features-amenities {
    padding: 8vw 0;
    background-color: #0b2b37;
}
.features-amenities-title {
    text-transform: uppercase;
    font-family: Kudryashev headline, sans-serif;
    font-weight: 400;
    line-height: 1.1;
    font-size: 3rem !important;
    background: transparent !important;
    margin-bottom: 6rem;
    color: #e6e6e6
}
.title-arrow {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-auto-rows: auto;
	justify-content: space-between;
}
.faslider-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
	grid-gap: 30px 0;
    justify-items: center;
}
:nth-child( 1 of .fas-child ) {
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: grid;
    grid-template-columns: 110px;
    grid-template-rows: 110px;
    place-items: center;
}
:nth-child( 2 of .fas-child ) {
    font-family: Apercupro, sans-serif;
    font-size: 1.26rem;
    font-weight: 100;
    color: white;
	text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
	letter-spacing: 0.03em
}

/* ----------------------------------------------- */

section.buy-video > div {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    grid-auto-rows: auto;
    place-items: center;
    background: white;
}
:nth-child(1 of .bv-child-child) > span {
    text-transform: capitalize;
    font-family: sans-serif;
    font-weight: 400;
    line-height: 1.3;
    font-size: 2rem !important;
    background: transparent !important;
    margin-bottom: 1.7rem;
    max-width: 400px;
    display: grid;
}
:nth-child(2 of .bv-child-child) > span:first-child {
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: Apercupro, sans-serif;
    font-size: 1.08rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.8rem;
}
:nth-child(2 of .bv-child-child) > span:last-child {
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: Apercupro, sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0;
}


:nth-child(2 of .buy-video-child) a {
    display: block;
    position: relative;
}
:nth-child(2 of .buy-video-child) a img {
    width: 100vw;
}

:nth-child(2 of .buy-video-child) a:after,
:nth-child(2 of .buy-video-child) a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
}

:nth-child(2 of .buy-video-child) a:after{
  width: 0;
  height: 0;
  border: 16px solid transparent;
  border-left: 20px solid #fff;
  margin-top: -20px;
  margin-left: -10px;
  -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.25));
}

:nth-child(2 of .buy-video-child) a:before {
  margin-top: -34px;
  margin-left: -34px;
  width: 60px;
  height: 60px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.42);
}

/* ---------------------------- */

section.floor-plan {
    padding: 8vw 0;
}
section.floor-plan a.slide-link {
    width: 100%;
}
section.floor-plan .slide-img-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 33vw;
    margin: 0;
	overflow: hidden;
	width: 100%;
}

section.floor-plan .splide__slide:hover .slide-img-wrap img,section.floor-plan .slide-img-wrap:hover img {
	transition: all .3s ease;
	transform: scale(1.2,1.2);
	-webkit-transform: scale(1.2,1.2);
	-moz-transform: scale(1.2,1.2);
	-o-transform: scale(1.2,1.2);
	-ms-transform: scale(1.2,1.2);   
}
section.floor-plan .slide-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
	transition: all .3s ease;
}

section.floor-plan :nth-child( 1 of .slide-info-child ) {
    color: #979797;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: Apercupro, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    margin-top: 2vw;
    margin-left: 25px;	
}
section.floor-plan :nth-child( 2 of .slide-info-child ) {
    color: #000;
    margin-top: 1vw;
    font-family: sans-serif;
    font-size: 1.2vw;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    display: block;
    margin-left: 25px;
}
section.floor-plan :nth-child( 3 of .slide-info-child ) {
    color: #000000;
    margin-top: 1vw;
    font-family: Apercupro, sans-serif;
    font-size: 1vw;
    font-weight: 300;
    line-height: 1;
	margin-left: 25px;
}

section.floor-plan .splide__arrows {
    display: flex;
    justify-content: end;
    margin-bottom: 3%;
    margin-right: 2.5%;
    gap: 15px;
}
section.floor-plan .splide__arrow {
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr;
    height: 3em;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: .7;
    position: unset;
    top: 0;
    transform: translateY(0);
    width: 3em;
    z-index: 1;
    padding: 10px;
}

/* -------------------------------- */

section.interior-exterior {
    margin-bottom: 8vw;
}

* { box-sizing: border-box; }
.grid {
  background: transparent;
}
/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */

@media only screen and (max-width: 991px) {
.grid-item {
  width: 50%;
}
.grid-item {
  padding: 5px;
}
}
@media only screen and (min-width: 992px) {
  .grid-item {
    width: 33.333%;
  }
  }
.grid-item {
  float: left;
  padding: 15px;
}

.grid-item img {
  display: block;
  max-width: 100%;
}



/* -----------Contact----------- */
section.shaonmd-contact-form {
    background: #f3f3f3;
	padding: 90px 0;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
}
.contact-child:first-child {
    margin-right: 50px;
}
.contact-child:last-child {
   padding: 50px 0;
   color: white;
   line-height: 1.5;
   font-size:16px;
   align-self: center;
}
.contact-wrap > div:first-child img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-child-child:nth-child(1) {
    font-size: 32px;
    margin: 0px 0 15px;
    font-family: "Open Sans";
    font-weight: 100;
}
.contact-child-child:nth-child(2) {
  margin-bottom: 13px;
  }
.contact-child-child:nth-child(3) {
 
}
.contact-child-child:nth-child(4) {

}
.contact-child-child:nth-child(5) {
  
}
.contact-child-child:nth-child(6) {

}

.contact-child-child:nth-child(7) {
   
}
.contact-child-child:nth-child(8) {
 margin-top: 30px;
}
.contact-child-child:nth-child(9) {
 
}
.contact-child-child:nth-child(10) {
 
}
.contact-child-child:nth-child(14) {
  margin-top: 30px;
}
.contact-form-wrap {
    display: grid;
    grid-template-columns: 40%;
    grid-auto-rows: minmax(35px, auto);
    grid-column-gap: 40px;
	align-items: baseline;
   font-family: sans-serif;
    font-weight: 100;
}

.contact-form-wrap input[type="text"],.contact-form-wrap input[type="email"],.contact-form-wrap textarea {
    background: transparent;
    width: 100%;
    height: 45px;
	font-size: 13px;
}



.contact-form-child:nth-child(2) {
    border-bottom: 1px solid #b7b7b7;
}
.contact-form-child:nth-child(4) {
    border-bottom: 1px solid #b7b7b7;
}
.contact-form-child:nth-child(6) {
    border-bottom: 1px solid #b7b7b7;
}

.contact-form-child:nth-child(1) {
	margin-top:18px
}

.contact-form-child:nth-child(3) {
	margin-top:18px;
}

.contact-form-child:nth-child(5) {
	margin-top:18px;
}


.submitbutton {
    display: grid;
    grid-template-columns: 100px;
    grid-auto-rows: minmax(35px, auto);
    margin: 30px 0 0;
}

.submitbutton-child {
    border: 2px solid #a2a2a2;
	display: block;
    text-align: center;
}

.submitbutton-child a {
    padding: 5px 20px;
    text-decoration: none;
    color: #676767;
    display: block;
    font-size: 15px;
    text-align: center;
}

h2.write-to-us {
    font-family: 'Open Sans';
    font-weight: 100;
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
@media (max-width: 767.98px) {
.contact-child:first-child {
    margin-right: 0px;
    grid-area: 1 / 1 / 2 / -1;
}
.contact-child:last-child {
   grid-area: 1 / 1 / 2 / -1;
   background-color: rgba(000, 000, 000, 0.5);
   backdrop-filter: blur(6px);
   color: white;
}
.contact-child:last-child a{
   color: white !important;
}	
}

.submitbutton-child .wpcf7-spinner {
	display: none;
}
/* ---------------- */
.pichild-child h2  {
    font-family: 'Libre Franklin';
	line-height: 1.3;
	margin-bottom: 10px;
	text-transform: uppercase;
}
.pichild-child h2 strong {
    display: block;
}
.pichild-child.pichild-child-view-more a {
    text-decoration: none;
    color: white;
    padding: 5px 15px;
    border: 1px solid white;
    display: inline-block;
    margin-top: 10px;
    border-radius: 2px;
}


/* ----------------------- */
.shaonmd-contact a.onward-cell-number {
	text-decoration: none;
	color: white;
}

div.wpcf7 .ajax-loader{
	display: none !important;
}

.submitbutton-child [type="submit"] {
    cursor: pointer;
}

.container-contact {
	width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
section.shaonmd-contact-form input[type="text"], section.shaonmd-contact-form input[type="email"], section.shaonmd-contact-form input[type="url"], section.shaonmd-contact-form input[type="password"], section.shaonmd-contact-form input[type="search"], section.shaonmd-contact-form input[type="number"], section.shaonmd-contact-form input[type="tel"], section.shaonmd-contact-form input[type="range"], section.shaonmd-contact-form input[type="date"], section.shaonmd-contact-form input[type="month"], section.shaonmd-contact-form input[type="week"], section.shaonmd-contact-form input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
    color: #666;
    border: 1px solid transparent;
    border-radius: 3px;
    padding: 3px;
}
section.shaonmd-contact-form input[type="submit"] {
	border: 1px solid;
	border-color: transparent;
	border-radius: 3px;
	background: transparent;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0;
}

.contact-form-child p, .submitbutton-child p {
    margin: 0;
}


/* -----------our-story----------- */
section.our-story {

}

.our-story-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
	grid-gap: 70px;
}
.our-story-child:first-child {
  
}
.our-story-child:last-child {
   padding: 70px 70px 70px 0;
   color: white;
   line-height: 1.5;
   font-size:16px;
   align-self: center;
}
.our-story-child:last-child :nth-child( 1 of .our-story-child-child ) {
    text-transform: uppercase;
    font-family: Kudryashev headline, sans-serif;
    font-size: 32px;
    margin: 0px 0 15px;
    font-weight: 100;
	
} 
.our-story-child:last-child :nth-child( 2 of .our-story-child-child ) {
	font-family: 'Poppins';
    text-align: justify;
    font-weight: inherit;
    letter-spacing: 0.7px;
} 
.our-story-wrap > div:first-child img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


@media (max-width: 991.98px) {
.our-story-child:first-child {
    margin-right: 0px;
    grid-area: 2 / 1 / 3 / -1;
}
.our-story-child:last-child {
   padding: 50px 50px 0px;
   grid-area: 1 / 1 / 2 / -1;
/*    background-color: rgba(000, 000, 000, 0.5);
   backdrop-filter: blur(6px); */
   color: white;
}
.our-story-child:last-child a{
   color: white !important;
}	
}

/* --------who-we-are------- */


section.who-we-are {
    background: #f3f3f3;
    padding: 90px 0;
}
.who-we-are-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
	column-gap: 30px;
}
:nth-child( 1 of .who-we-are-child ) {
    grid-area: auto / 1 / auto / -1;
    font-size: 2.188rem;
    margin-bottom: 45px;
}
:nth-child( 2 of .who-we-are-child ) {
	grid-area: auto / 1 / auto / 2;
}
:nth-child( 2 of .who-we-are-child ) img {
	-webkit-box-shadow: 0 5px 20px 0 rgba(0,0,0,.1);
	box-shadow: 0 5px 20px 0 rgba(0,0,0,.1);
	max-width: 100%;
}
:nth-child( 3 of .who-we-are-child ) {
	grid-area: auto / 2 / auto / -1;
	text-align: justify;
	align-self: center;
}

/* ---------------------------our-approach----------------------------------------*/

.our-approach {
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    color: var(--white-color);
    position: relative;
}
.overlap-approach {
    display: grid;
	grid-template-columns: 1fr;
    background-color: rgba(0, 0, 0, 0.5);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}
.our-approach-wrap {
    padding-left: 9vw;
    padding-right: 9vw;
	margin-top: 110px;
	margin-bottom: 110px;
	z-index: 1;
}
.our-approach-wrap > :nth-child( 1 of .our-approach-child ) {
    text-transform: capitalize;
    font-family: sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-size: 2.188rem !important;
    background: transparent !important;
    margin-bottom: 1.8rem;
}
.our-approach-wrap > :nth-child( 2 of .our-approach-child ) {
    text-align: justify;
}
.our-approach-wrap > :nth-child( 3 of .our-approach-child ) {
    margin-top: 50px;
}

/* --------our-logo------- */

section.our-logo {
    background: #f3f3f3;
    padding: 90px 0;
}
.our-logo-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
	column-gap: 30px;
}
:nth-child( 1 of .our-logo-child ) {
    grid-area: auto / 1 / auto / -1;
    font-size: 35px;
    margin-bottom: 45px;
}
:nth-child( 2 of .our-logo-child ) {
	grid-area: auto / 1 / auto / 2;
}
:nth-child( 2 of .our-logo-child ) img {
	-webkit-box-shadow: 0 5px 20px 0 rgba(0,0,0,.1);
	box-shadow: 0 5px 20px 0 rgba(0,0,0,.1);
	max-width: 100%;
}
:nth-child( 3 of .our-logo-child ) {
	grid-area: auto / 2 / auto / -1;
	text-align: justify;
	align-self: center;
}

/* --------------directors------------- */
section.directors {
    background: #f3f3f3;
    padding: 90px 0;
}
.directors-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    grid-gap: 40px;
}
.directors-wrap:not(:first-child) {
    margin-top: 90px;
}
.directors-wrap :nth-child( 1 of .directors-child ) img {
    width: 26vw;
    height: 33vw;
    object-fit: cover;
}
:nth-child( 1 of .directors-child-child ) {
	font-size: 20px;
	font-size: 1.25rem;
}
:nth-child( 2 of .directors-child-child ) {
	font-size: 16px;
	font-size: 1rem;
	color: #7f7b79;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #cccccc7a;
}
:nth-child( 3 of .directors-child-child ) {
	text-align: justify;
	line-height: 28px
}


/* -------directors-even------ */
.directors-wrap:nth-child(even) > div:first-child {
    grid-area: 1 / auto / auto / auto;
    display: grid;
    justify-items: end;
}
.directors-wrap:nth-child(even) > div:last-child {
    grid-area: 1 / 1 / auto / auto;
}
/* -------directors-odd------ */
.directors-wrap:nth-child(odd) > div:first-child {
    grid-area: 1 / auto / auto / auto;
}
.directors-wrap:nth-child(odd) > div:last-child {
    grid-area: 1 / auto / auto / auto;
}

/* --------------vision-mission------------- */
section.vision-mission {
    background: #f3f3f3;
    padding: 90px 0;
}
section.vision-mission .container {
    padding-left: 18vw;
    padding-right: 18vw;
}
.vision-mission-wrap {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    grid-auto-rows: auto;
    grid-gap: 0;
    /* align-items: stretch; */
}
.vision-mission-wrap:not(:first-child) {
    margin-top: 90px;
}
.vision-mission-wrap :nth-child( 1 of .vision-mission-child ) {
    outline: 4px solid #fff !important;
    height: 325px;
}
.vision-mission-child:last-child :nth-child( 1 of .vision-mission-child-child ) {
	text-align: justify;
	line-height: 28px;
}
/* ----------------------- */

.vision-mission-child:first-child {
    padding: 50px;
    font-size: 45px;
    color: #d7d7d7;
    font-weight: 100;
    font-family: system-ui;
    text-transform: uppercase;
}
/* --------even------ */
.vision-mission-wrap:nth-child(even) > div:first-child {
    grid-area: 1 / 4 / auto / -1;
    display: grid;
    place-items: end;
}
.vision-mission-wrap:nth-child(even) > div:last-child {
    grid-area: 1 / 1 / auto / 4;
    padding: 0 50px 0 0;
}
/* --------odd------ */
.vision-mission-wrap:nth-child(odd) > div:first-child {
    grid-area: 1 / 1 / auto / 2;
}
.vision-mission-wrap:nth-child(odd) > div:last-child {
    grid-area: 1 / 2 / auto / -1;
    padding: 0 0 0 50px;
}

/* --------------management-team------------- */
section.management-team {
    background: #f3f3f3;
    padding: 90px 0;
}
.management-team-title {
    margin-bottom: 50px;
    font-size: 40px;
    font-size: 2.5rem;
    color: #7f7b79;
}
.management-team-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    grid-gap: 40px;
}
.management-team-wrap:not(:first-child) {
    margin-top: 90px;
}
.management-team-wrap :nth-child( 1 of .management-team-child ) img {
    width: 26vw;
    height: 33vw;
    object-fit: cover;
}
:nth-child( 1 of .management-team-child-child ) {
	font-size: 20px;
	font-size: 1.25rem;
}
:nth-child( 2 of .management-team-child-child ) {
	font-size: 16px;
	font-size: 1rem;
	color: #7f7b79;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #cccccc7a;
}
:nth-child( 3 of .management-team-child-child ) {
	text-align: justify;
	line-height: 28px
}
/* -------management-team-even------ */
.management-team-wrap:nth-child(even) > div:first-child {
    grid-area: 1 / auto / auto / auto;
    display: grid;
    justify-items: end;
}
.management-team-wrap:nth-child(even) > div:last-child {
    grid-area: 1 / 1 / auto / auto;
}
/* -------management-team-odd------ */
.management-team-wrap:nth-child(odd) > div:first-child {
    grid-area: 1 / auto / auto / auto;
}
.management-team-wrap:nth-child(odd) > div:last-child {
    grid-area: 1 / auto / auto / auto;
}

/* ------------------------------------------ */

section.senior-management {
    background: #f3f3f3;
    padding: 30px 0 90px 0;
}
.senior-management-title {
    margin-bottom: 50px;
    font-size: 40px;
    font-size: 2.5rem;
    color: #7f7b79;
}
section.senior-management > div:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: auto;
    grid-gap: 30px;
}
section.senior-management > div:last-child > div :nth-child( 2 of .senior-management-child) {
    border-top: 1px solid #ccc;
    margin: 3vw 0 0; 
    padding: 1.5vw 0 0;
	font-size: 20px;
    font-size: 1.25rem;
}
section.senior-management > div:last-child > div :nth-child( 3 of .senior-management-child) {
    margin: 0 0 1vw;
	color: #7f7b79;
}

/* ------------------------------------------------------------------- */
section.dsour-team {
    background: #f3f3f3;
    padding: 30px 0 90px 0;
}
.dsour-team-title {
    margin-bottom: 50px;
    font-size: 40px;
    font-size: 2.5rem;
    color: #7f7b79;
}
section.dsour-team > div:last-child {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    grid-gap: 30px;
}
section.dsour-team > div:last-child :nth-child( 1 of .dsour-team-child ) img {
	width: 100%;
	height: auto;
} 
	
/* ----------------------------------------------------------------- */

section.ds-csr {
    background: #f3f3f3;
    padding: 90px 0;
}
section.ds-csr .container {
    padding-left: 18vw;
    padding-right: 18vw;
}
.csr-wrap :nth-child( 1 of .csr-parent ) {
    font-family: 'Open Sans';
    font-weight: 100;
	font-size: 2.5rem;
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.csr-wrap :nth-child( 3 of .csr-parent ) :nth-child( 1 of .csr-child ) {
    font-weight: 500;
    font-size: 2.5rem;
    font-size: 18px;
    margin-bottom: 5px;
}

/* ---------------------Gallery--------------------------- */
section.gallery-section {
    background: #f3f3f3;
}
.gallery-wrapper{
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
	grid-template-columns: repeat(3,1fr);
	grid-auto-flow: dense;
}
.otherspage-gallery-wrapper{
	grid-template-columns: repeat(3,1fr);
}
/* ------------------ */
.gallery-wrapper figure {
	margin: 0;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.gallery-wrapper figure a {
   display: block;
}
.gallery-wrapper figure img {
   -webkit-transition:  0.3s ease-in-out;
   -o-transition:  0.3s ease-in-out;
   transition:  0.3s ease-in-out;
   width: 100%;
}
.gallery-wrapper figure:hover img {
	transition: all .3s ease;
	transform: scale(1.2,1.2);
	-webkit-transform: scale(1.2,1.2);
	-moz-transform: scale(1.2,1.2);
	-o-transform: scale(1.2,1.2);
	-ms-transform: scale(1.2,1.2);   
}
.gallery-wrapper figure figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: .5s ease;
  -o-transition: .5s ease;
  transition: .5s ease;
  background: rgba(0,0,0, 0.4);
}
.gallery-wrapper-child:hover figure figcaption {
  opacity: 1;
}
.gallery-wrapper figure figcaption h2 {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
@media (max-width: 767.98px) { 
.gallery-wrapper{
	-ms-grid-columns: 1fr 15px 1fr;
	grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 575.98px) {
.gallery-wrapper{
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
}
.gallery-wrapper figure figcaption h2 {
	font-size: 6vw;
	}
}
/* ----------------Our Client--------------- */
section.our-client {
    background: #f3f3f3;
}
.our-client {
    padding: 110px 0 110px;
    margin: 0;
    color: black;
}

.our-client-wrap {
    padding-left: 14vw;
    padding-right: 14vw;
	text-align: center;
}
.our-client-wrap > :nth-child( 1 of .our-client-parent ) {
    text-transform: capitalize;
    font-family: sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-size: 1.75vw !important;
    background: transparent !important;
    margin-bottom: 1.5vw;
}
.our-client-wrap > :nth-child( 2 of .our-client-parent ) {
}

/* --------------Client Logo---------------- */
/* --------------Client Logo---------------- */

section.client-logo {
    background: #f3f3f3;
    padding: 0 0 90px;
}
.client-logo-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    grid-gap: 30px;
}
.client-logo-wrap > div {
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: auto;
}
.client-logo-wrap > div :nth-child(1 of .client-logo-child) {
	grid-area: 1 / 1 / 2 / -1;
}
.client-logo-wrap > div :nth-child(2 of .client-logo-child) {
	grid-area: 1 / 1 / 2 / -1;
	background-color: transparent;
	transition: background-color 0.5s ease;
}
.client-logo-wrap > div:hover :nth-child(2 of .client-logo-child) {
	background-color: #0c1e25;
	cursor: pointer;
}
.client-logo-child:first-child img {
    width: 100%;
}
@media (max-width: 991px){
.client-logo-wrap {
    grid-template-columns: 1fr 1fr;
}	
}
@media (max-width: 557px){
.client-logo-wrap {
    grid-template-columns: 1fr;
}	
}

/* -------------------------------
            News and Event
-------------------------------- */
section.news-and-events {
    background: #f3f3f3;
    padding: 90px 0;
}
#newsevent-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-auto-rows: auto;
    grid-gap: 30px;
}
.newsevent-wrap {
    display: flex;
    flex-direction: column;
    -webkit-box-shadow: 0 3px 6px 0 rgba(10, 31, 68, 0.1);
    box-shadow: 0 3px 6px 0 rgba(10, 31, 68, 0.1);
    transition: all .5s;
    border-radius: 5px;
}
:nth-child( 1 of .newsevent-wrap-child) {
	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: 17vw;
}
:nth-child( 1 of .newsevent-wrap-child) a {
	display: block;
	overflow: hidden;
	border-radius: 5px 5px 0 0;
}
:nth-child( 1 of .newsevent-wrap-child) a img {
   border-radius: 5px 5px 0 0;
}

:nth-child( 1 of .newsevent-wrap-child) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
    transition: all .3s ease;
}
.newsevent-wrap:hover .newsevent-wrap-child img,
.newsevent-wrap :nth-child( 1 of .newsevent-wrap-child):hover img {
	transition: all .3s ease;
	transform: scale(1.2,1.2);
	-webkit-transform: scale(1.2,1.2);
	-moz-transform: scale(1.2,1.2);
	-o-transform: scale(1.2,1.2);
	-ms-transform: scale(1.2,1.2);   
}
:nth-child( 2 of .newsevent-wrap-child) {
    padding: 1.5rem 2.5rem 1rem;
    line-height: 1.65;
    color: black;
    font-weight: 500;
}
:nth-child( 3 of .newsevent-wrap-child) {
    padding: 0rem 2.5rem 0.5rem;
    line-height: 1.65;
    color: black;
    font-size: 0.85rem;
}
:nth-child( 4 of .newsevent-wrap-child) {
	padding: 0 2.5rem 1rem;
    line-height: 1.65;
    color: black;
}
:nth-child( 4 of .newsevent-wrap-child) a {
    text-decoration: none;
    color: black;
}
:nth-child( 5 of .newsevent-wrap-child) {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
	margin: 0 2.5rem 1rem;
    line-height: 1.65;
    color: black;
    font-weight: normal;
    height: 100%;
	text-align: justify;
}
:nth-child( 6 of .newsevent-wrap-child) {
    padding: .5rem 2.5rem 2.5rem;
    margin-top: auto;
    width: 100%;
}
:nth-child( 6 of .newsevent-wrap-child) a {
	text-decoration: none;
	color: black;
}
div#outof-container {
    text-align: center;
}
div#outof-container span {
    display: inline-block;
	margin-top: 2.5rem;
}
div#load-more-button {
    display: block;
    text-align: center;
	margin-top: 2.5rem;
}
div#load-more-button span {
    display: inline-block;
	padding: 0.25rem 1.5rem;
	cursor: pointer;
	background: #0c1e25;
	color: white;
}
/* -------------------------- */


/* ---------------------------hr-philosophy----------------------------------------*/

.hr-philosophy {
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    color: var(--white-color);
    position: relative;
}
.overlap-hr-philosophy {
    display: grid;
	grid-template-columns: 1fr;
    background-color: rgba(0, 0, 0, 0.5);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}
.hr-philosophy-wrap {
    padding-left: 9vw;
    padding-right: 9vw;
	margin-top: 110px;
	margin-bottom: 110px;
}
.hr-philosophy-wrap > :nth-child( 1 of .hr-philosophy-child ) {
    text-transform: capitalize;
    font-family: sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-size: 2rem !important;
    background: transparent !important;
    margin-bottom: 1rem;
}
.hr-philosophy-wrap > :nth-child( 2 of .hr-philosophy-child ) {
	font-size:1.875rem;
	margin-bottom: 1.5rem;
	line-height: 1.4;
}
.hr-philosophy-wrap > :nth-child( 3 of .hr-philosophy-child ) {
    text-align: justify;
}

/* ------------------------------------------- */



/* ------------------------------------------------- */
.career-wrap {
    padding-left: 9vw;
    padding-right: 9vw;
}
.career-from { 
	padding-bottom: 50px !important;
}
.career-page-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(35px, auto);
	grid-gap: 0px 160px;
}

.career-page-form .contact-form-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(35px, auto);
    grid-column-gap: 40px;
	align-items: baseline;
	font-family: 'Open Sans';
}
.career-page-form .contact-form-child p {
    margin: 0;
}
.career-page-form .contact-form-wrap:nth-child(2) {
align-self: start;
}
.career-page-form .contact-form-wrap input[type="text"],.career-page-form .contact-form-wrap input[type="email"],.career-page-form .contact-form-wrap textarea,.career-page-form .contact-form-wrap input[type="tel"] {
    background: transparent;
    width: 100%;
    height: auto;
    line-height: 1.5;
    font-size: 13px;
    padding: 0;
}
.career-page-form .contact-form-child:nth-child(even) {
    border-bottom: 1px solid #b7b7b7;
}

.career-page-form .contact-form-child:nth-child(odd) {
	margin-top:10px
}
.career-page-form .submitbutton {
    display: grid;
    grid-template-columns: 100px;
    grid-auto-rows: minmax(35px, auto);
    margin: 30px 0 0;
}

.career-page-form .submitbutton-child {
    border: 2px solid #a2a2a2;
	display: block;
    text-align: center;
}

.career-page-form .submitbutton-child a {
    padding: 5px 20px;
    text-decoration: none;
    color: #676767;
    display: block;
    font-size: 15px;
    text-align: center;
}
.career-page-form .submitbutton-child {
height: 42px;
}
.career-page-form .submitbutton-child p {
 margin: 0;
}
.career-page-form .submitbutton-child input[type="submit"] {
    cursor: pointer;
    background-color: var(--transparent-color);
    border-color: var(--transparent-color);
	padding: 10px 15px;
	font-weight: 500;
}
.career-page-form h2.write-to-us {
    font-family: 'Open Sans';
    font-weight: 100;
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
@media (max-width: 767.98px) {
.career-page-form .contact-child:first-child {
    margin-right: 0px;
    grid-area: 1 / 1 / 2 / -1;
}
.career-page-form .contact-child:last-child {
   padding: 50px;
   grid-area: 1 / 1 / 2 / -1;
   background-color: rgba(000, 000, 000, 0.5);
   backdrop-filter: blur(6px);
   color: white;
}
	
.career-page-form {
    grid-template-columns: 1fr;
	grid-gap: 0;
}
}
/* ------------------------ */

section.all-project {
    background: #f3f3f3;
    padding: 90px 0;
}
.all-project-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    grid-auto-rows: auto;
    grid-gap: 30px;
}
.project-wrap-child {
    display: flex;
    flex-direction: column;
	transition: all .5s;
}
.project-child-child a {
	text-decoration: none;
	color: inherit;
}
:nth-child( 1 of .project-child-child) {
	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: 33vw;
}
:nth-child( 1 of .project-child-child) a {
	display: block;
	overflow: hidden;
	border-radius: 0px 0px 0 0;
}
:nth-child( 1 of .project-child-child) a img {
   border-radius: 0px 0px 0 0;
}

:nth-child( 1 of .project-child-child) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
    transition: all .3s ease;
}
.project-wrap-child:hover img,
.project-wrap-child:hover .project-wrap-child img,
.project-wrap-child :nth-child( 1 of .project-child-child):hover img {
	transition: all .3s ease;
	transform: scale(1.2,1.2);
	-webkit-transform: scale(1.2,1.2);
	-moz-transform: scale(1.2,1.2);
	-o-transform: scale(1.2,1.2);
	-ms-transform: scale(1.2,1.2);   
}
:nth-child( 2 of .project-child-child) {
    padding: 1.5rem 0 0.5rem;
    line-height: 1.65;
    color: black;
    font-weight: 500;
}
:nth-child( 3 of .project-child-child) {
    padding: 0 0 0.5rem;
    line-height: 1.65;
    color: black;
    font-size: 0.85rem;
}

/* --------------------------- */

section.silgle-post-page {
    background: white;
    padding: 90px 0;
}


/* ------------------- */

.scrollTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1c1c1c;
    color: #fff;
    border: 1px solid #73848b;
    border-radius: 5px;
    padding: 4px 14px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.scrollTop.visible {
    opacity: 1;
}

/* ---------------------------- */

.splide-wrapper div#splide01 {
    display: grid;
    grid-template-columns: 1fr;
}
.splide-wrapper div#splide01-track {
    grid-area: 1 / 1 / 2 / -1;
}
.splide-wrapper .splide__arrows {
    grid-area: 1 / 1 / 2 / -1;
    align-self: center;
    display: flex;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    margin-bottom: 2%;
    margin-right: unset;
    gap: unset; 
}















/* -------09-06-24--------- */
.dsslider-container > div:last-child {
    place-self: center start;
}
.slider-overlay > div {
    display: grid;
    justify-items: start;
}
.container-wrap {
    width: 500px;
}


/* ------------------------------ */
section.ds-slider {
    background: white;
    padding: 70px 0;
}
:nth-child( 1 of .dsstitie-child ) {
    color: black;
    text-transform: uppercase;
    font-family: sans-serif;
    font-size: 2vw;
    font-weight: 400;
    line-height: 1.1;
    text-align: left;
}
.ds-slider-title > div:first-child {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    justify-items: start;
    grid-gap: 18px;
    margin-bottom: 70px;
}
:nth-child( 1 of .dsstitie-child ) {
    grid-area: 1 / 1 / auto / -1;
    justify-self: start;
    font-size: 13px;
    letter-spacing: 1px;
}

/* :nth-child( 2 of .dsstitie-child ) {
    grid-area: 2 / 1 / auto / -1;
    justify-self: start;
    font-size: 35px;
    font-weight: 500;
    color: #083521;
    font-family: "Poppins", sans-serif;
} */

:nth-child( 2 of .dsstitie-child ) {
    color: #083521;
    text-transform: uppercase;
    font-family: sans-serif;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.1;
    grid-area: 1 / 1 / auto / -1;
    justify-self: end;
    align-self: center;
}

:nth-child( 2 of .dsstitie-child ) svg {
    fill: currentColor;
    width: 16px;
    height: 11px;
    color: #083521;
}


/* ------------ */

a.slide-link {
    position: relative;
}
.slide-info-wrap {
    position: absolute;
    z-index: 9999;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

:nth-child( 1 of .slide-info-child ) {
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: Apercupro, sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1;
    margin-top: 15px;
    margin-left: 25px;
}
:nth-child( 2 of .slide-info-child ) {
    color: #000;
    margin-top: 12px;
    font-family: sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    display: block;
    margin-left: 25px;
}
:nth-child( 2 of .slide-info-child ) a {
	text-decoration: none;
	color: white;
}
:nth-child( 3 of .slide-info-child ) {
    color: white;
    margin-top: 13px;
    font-family: Apercupro, sans-serif;
    font-size: 1.0rem;
    font-weight: 300;
    line-height: 1;
    margin-left: 25px;
    padding-bottom: 15px;
}
/* ------------------- */
.slide-img-wrap {
    grid-auto-rows: 27vw;
}
/* --------------------- */
.tokyo-about-title-child h1 {
    width: 500px;
    text-align: center;
    margin: 0 auto 50px;
    font-weight: 600;
    line-height: 1.2;
    color: #083521;
}
section.tokyo-about-section {
    padding: 70px 0 140px;
    background: #ffffff;
}
.tokyo-about-title-wrap{
    background: #ffffff;
}
.tokyo-about-wrap {
    background: #f9f7f7;
}
.tokyo-about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: auto;
}
:nth-child( 2 of .tokyo-about-child ){
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    align-content: center;
}
:nth-child( 3 of .tokyo-about-child ) {
    justify-self: stretch;
}
.tokyo-about-child img {
    width: 100%;
    height: 35vw;
    object-fit: cover;
}
.tokyo-about-child-wrap {
    padding: 70px;
}
:nth-child( 1 of .tko1 ) {
font-size: 30px;
}
:nth-child( 2 of .tko1 ) {
margin: 25px 0;
text-align: justify;
}
:nth-child( 3 of .tko1 ) {
display: block;
}
:nth-child( 3 of .tko1 ) a svg {
    fill: currentColor;
    width: 16px;
    height: 11px;
    color: #ffffff;
}
:nth-child( 3 of .tko1 ) a {
    display: inline-block;
    padding: 10px 25px;
    background-color: #083521;;
    text-decoration: none;
    color: white;
}
:nth-child( 3 of .tko1 ) a:hover {

}
/* ------------------------- */
.text-stroke {
    --bs-stroke-width: 1px;
    --bs-primary-rgb: 255, 255, 255;
    --bs-stroke-rgb: var(--bs-primary-rgb);
    --bs-stroke-opacity: 1;
    --bs-stroke-width: 1.5px;
    -webkit-text-stroke: var(--bs-stroke-width) rgba(var(--bs-stroke-rgb), var(--bs-stroke-opacity));
    color: transparent !important;
    font-size: 3.75rem;
    font-weight: 700;
   
}
/* ----------------------------- */

.tokyo-letesconnect-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

section.tokyo-letesconnect-section {
    background: white;
    padding: 100px 0;
}
:nth-child( 1 of .tokyo-letesconnect-child ){
    justify-self: start;
}
:nth-child( 2 of .tokyo-letesconnect-child ){
    justify-self: end;
}

.letesconnect-tko1:first-child {
    line-height: 1.1;
}
.letesconnect-tko1:first-child.text-stroke {
    --bs-stroke-width: 1px;
    --bs-primary-rgb: 0, 0, 0;
    --bs-stroke-rgb: var(--bs-primary-rgb);
    --bs-stroke-opacity: 1;
    --bs-stroke-width: 1.5px;
    -webkit-text-stroke: var(--bs-stroke-width) rgba(var(--bs-stroke-rgb), var(--bs-stroke-opacity));
    color: transparent !important;
    font-size: 4.25rem;
    font-weight: 700;
}
:nth-child( 1 of .dsstitie-child ),:nth-child( 1 of .tko1 ) {
    --bs-stroke-width: 1px;
    --bs-primary-rgb: 0, 0, 0;
    --bs-stroke-rgb: var(--bs-primary-rgb);
    --bs-stroke-opacity: 1;
    --bs-stroke-width: 1.5px;
    -webkit-text-stroke: var(--bs-stroke-width) rgba(var(--bs-stroke-rgb), var(--bs-stroke-opacity));
    color: transparent !important;
    font-size: 3.25rem;
    line-height: 1.3;
    font-weight: 700;
}
/* .aboutus-child-left > :nth-child( 1 of .left-child ) {
    --bs-stroke-width: 1px;
    --bs-primary-rgb: 255, 255, 255;
    --bs-stroke-rgb: var(--bs-primary-rgb);
    --bs-stroke-opacity: 1;
    --bs-stroke-width: 1.5px;
    -webkit-text-stroke: var(--bs-stroke-width) rgba(var(--bs-stroke-rgb), var(--bs-stroke-opacity));
    color: transparent !important;
    font-size: 3.25rem;
    font-weight: 700;
} */
:nth-child( 1 of .letesconnect-tko1 ){
    margin-bottom: 30px;
}
:nth-child( 2 of .letesconnect-tko1 ) {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #000;
}
:nth-child( 2 of .letesconnect-tko1 ) :nth-child( 1 of .letesconnect-tko1-child ) {
font-size: 24px;
}
:nth-child( 3 of .letesconnect-tko1 ) :nth-child( 1 of .letesconnect-tko1-child ) {
font-size: 24px;
}

:nth-child( 2 of .letesconnect-tko1 ) svg, :nth-child( 3 of .letesconnect-tko1 ) svg {
    fill: currentColor;
    width: 34px;
    height: 11px;
    color: #000000;
}
.icon{ display: inline-block;}




















/* -------------------------------------------- */

section.client-testimonial > div.container:first-child {
    display: grid;
    justify-content: center;
}
section.client-testimonial {
    margin: 0 0 5% 0;
    background-color: white;
}
section.testimonial-after > div.container-fluid {
    display: flow-root;
    background: #f9f7f7 !important;
    height: 330px;
    margin-top: -13%;
    margin-bottom: unset !important;
}
section.client-testimonial .title-container {
    width: 100%;
    max-width: 100%;
    margin: 90px auto 50px;
    padding-left: 7.25vw;
    padding-right: 7.25vw;
    --bs-stroke-width: 1px;
    --bs-primary-rgb: 0, 0, 0;
    --bs-stroke-rgb: var(--bs-primary-rgb);
    --bs-stroke-opacity: 1;
    --bs-stroke-width: 1.5px;
    -webkit-text-stroke: var(--bs-stroke-width) rgba(var(--bs-stroke-rgb), var(--bs-stroke-opacity));
    color: transparent !important;
    font-size: 3.25rem;
    font-weight: 700;
    display: block;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
}
.client-testimonial .swiper {
  max-width: 1270px;
  min-height: 400px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}
.client-testimonial .swiper-slide {
display: grid;
grid-template-columns: 1fr 1fr;
grid-auto-rows: auto;
}
.client-testimonial .swiper-slide > div:first-child img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.client-testimonial .swiper-slide > div:last-child {
  background: #f9f7f7;
  padding: 100px;
  height: 100%;
}
.client-testimonial .swiper-slide > div:last-child > div {
display: grid;
place-content: center;
text-align: center;
height: 100%;
font-size: 17px;
color: #797978;
line-height: 1.6;
}

.client-testimonial .swiper-slide > div:last-child > div :nth-child(1) {
    margin-bottom: 15px;
    font-size: 15px;
}
.client-testimonial .swiper-slide > div:last-child > div :nth-child(2) {
    font-size: 16px;
}
.client-testimonial .swiper-slide > div:last-child > div :nth-child(3) {
    margin-top: 15px;
    font-size: 15px;
}
.client-testimonial .swiper-button-next, .client-testimonial .swiper-button-prev {
    position: absolute;
    top: unset;
    bottom: 45px;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #84847c;
}
.client-testimonial .swiper-button-next:after, .client-testimonial .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size-no-use, 25px);
    text-transform: none!important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}
.client-testimonial .swiper-button-prev, .client-testimonial .swiper-rtl .swiper-button-next {
    left: 70%;
    right: auto;
}

.client-testimonial .swiper-button-next, .client-testimonial .swiper-rtl .swiper-button-prev {
    right: 20%;
    left: auto;
}

.client-testimonial .swiper-horizontal>.swiper-pagination-bullets, .client-testimonial .swiper-pagination-bullets.swiper-pagination-horizontal, .client-testimonial .swiper-pagination-custom, .client-testimonial .swiper-pagination-fraction {
    bottom: 50px;
    left: 50%;
    width: 50%;
    color: #84847c;
}
@media only screen and (max-width: 991px) {
.client-testimonial .swiper-slide > div:last-child {
    padding: 70px 50px 100px;
}
.client-testimonial .swiper-slide {
grid-template-columns: 1fr;
}
.client-testimonial .swiper-button-prev, .client-testimonial .swiper-rtl .swiper-button-next {
    left: 40%;
    right: auto;
}
.client-testimonial .swiper-button-next, .client-testimonial .swiper-rtl .swiper-button-prev {
    right: 40%;
    left: auto;
}
.client-testimonial .swiper-button-next, .client-testimonial .swiper-button-prev {
    top: unset;
    bottom: 45px;
}
.client-testimonial .swiper-horizontal>.swiper-pagination-bullets, .client-testimonial .swiper-pagination-bullets.swiper-pagination-horizontal, .client-testimonial .swiper-pagination-custom, .client-testimonial .swiper-pagination-fraction {
    bottom: 40px;
    left: 0;
    width: 100%;
}
section.testimonial-after > div {
    height: 310px;
}
}




/* ---------------------------------------- */

.text-scrooing-wrapper {
    max-width: 100%;
    overflow: hidden;
  }
  
  .text-scrooing {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    animation: marquee 60s linear infinite;
  }
  
  .text-scrooing p {
    display: inline-block;
    --bs-stroke-width: 1px;
      --bs-primary-rgb: 0, 0, 0;
      --bs-stroke-rgb: var(--bs-primary-rgb);
      --bs-stroke-opacity: 1;
      --bs-stroke-width: 1.5px;
      -webkit-text-stroke: var(--bs-stroke-width) rgba(var(--bs-stroke-rgb), var(--bs-stroke-opacity));
      color: transparent !important;
      font-size: 3.75rem;
      line-height: 1.3;
      font-weight: 600;
      margin-bottom: 0;
  }
  
  @keyframes marquee {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    100% {
      -webkit-transform: translate3d(-50%, 0, 0);
      transform: translate3d(-50%, 0, 0);
    }
  }


/* ---------------------------------- */

section.achievement-counter {
    margin-bottom: 140px;
}
section.achievement-counter .title-container .title-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 50px;
    /* padding-left: 7.25vw; */
    /* padding-right: 7.25vw; */
    --bs-stroke-width: 1px;
    --bs-primary-rgb: 0, 0, 0;
    --bs-stroke-rgb: var(--bs-primary-rgb);
    --bs-stroke-opacity: 1;
    --bs-stroke-width: 1.5px;
    -webkit-text-stroke: var(--bs-stroke-width) rgba(var(--bs-stroke-rgb), var(--bs-stroke-opacity));
    color: transparent !important;
    font-size: 3.25rem;
    font-weight: 700;
    letter-spacing: 0.7px;
    /* display: block; */
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
}
section.achievement-counter .container {
    padding-left: 15vw;
    padding-right: 15vw;
}
.achievement-counter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    grid-auto-rows: auto;
    grid-gap: 30px;
}
.ac-wrapper-child {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.ac-wrapper-child:nth-child(3) {
    place-self: stretch end;
}
.counter-only {
    font-size: calc(17.38462px + 1.28205vw)!important;
    line-height: 1;
    font-weight: 600;
    color: #083521;
}
.info-only {
    font-size: calc(10.61538px + .38462vw)!important;
}















.nav-class-div ul li ul li a {
    white-space: nowrap;
}