@import url('https://fonts.googleapis.com/css?family=Poppins:400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&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;
}

html {
	width: 100%;
	height: 100%;
}

* {
	outline-color: transparent;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
audio, canvas, iframe, img, svg, video {
    vertical-align: middle;
}
button{
	border: none;
	outline: none;
}
.logo img {
	max-width: 100%;
    height: auto;
	padding: 10px 0;
}
img {
	max-width: 100%;
	height: auto;
}
.mb-50{
	margin-bottom: 50px;
}
.mb-60{
	margin-bottom: 60px;
}
.mb-70{
	margin-bottom: 70px;
}
.mb-75{
	margin-bottom: 75px;
}
.mt-0{
	margin-top: 0;
}
.mt-50{
	margin-top: 50px;
}
.mt-60{
	margin-top: 60px;
}
.mt-70{
	margin-top: 70px;
}
.mt-75{
	margin-top: 75px;
}
:root {
	--transparent-color: transparent;
	--primary-color: #000;
	--white-color: white;
	--green-color: #1bb321;
	--yellow-color: #f7bf20;
	--black-color: #000;
	--p-color: #444444;
	--fw-500: 500;
	--footer-bg:#000000e0;
}

.main-layout {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    height: 100vh;
}
.main-layout > header, .main-layout > footer {
    flex: 0 0 auto;
}
.main-layout > main {
    flex: 1;
}

.title-s1{
	display: grid;
	width: 100%;
	grid-template-columns: 1fr;
	align-items:center;
	text-align:center;
	grid-gap:20px;
	color: var(--black-color);
	text-transform: uppercase;
	font-size: 2.5rem;
	line-height: 1.4;
}

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

.container,.title-container,.shaonmd-slider-wraper {
	max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 7.25vw;
    padding-right: 7.25vw;
}

@media (max-width:1199px) {
	.container {
		padding: 0 15px;
	}
}

/* 
	max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 7.25vw;
    padding-right: 7.25vw;
 *  */
section.others-page-title {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
}
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: 1;
}
.bgimage-wrapper {
  position: relative;
}
.bg-only-images {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
/*   filter: blur(1px); */
}
.bgimages-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  background: rgb(0 0 0 / 0.5);
  backdrop-filter: blur(5px);
}

.title-section-h1 {
  width: 100%;
  text-align: center;
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 2.5rem;
  line-height: 1.4;
  padding: 90px 0;
}
.text-center {
  text-align: center;
}

h3.new-title-small {
    font-style: normal;
    text-transform: capitalize;
    color: #464545;
    font-size: 35px;
	font-weight: 500 !important;
    text-align: center;
    margin: 70px 0 50px;
    padding: 0;
}

/* ---------------------------------------- */
section.text-scrooing-section {
    margin-block: 1vw 2vw;
}
.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);
    }
  }


/*
==================================================================
Navigation
==================================================================
*/

.navigation-section {
	background: white;
}

.navigation-container {
	max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 7.25vw;
    padding-right: 7.25vw;
	display: -ms-grid;
	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: minmax(40px, auto);
	position: relative;
	z-index: 2;
}

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

.sticky {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 100;
	transition: all 0.5s ease 0s;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
	background-color: white;
}

.sticky .nav-class-div ul li a {
	color: var(--primary-color);
	font-weight: var(--fw-500);
	text-transform: capitalize;
}

.sticky .nav-class-div ul li ul li a {
	color: var(--primary-color);
	font-weight: var(--fw-500);
	text-transform: capitalize;
}

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


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

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

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

.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 8px;
	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.current-menu-item a, .nav-class-div ul li.current-menu-parent > a, .nav-class-div ul li.current-menu-parent ul li.current-menu-item a {
	color: #AF191A;
}
.nav-class-div ul li.menu-item-has-children:before {
    content: "";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    right: -12px;
    top: 8px;
    margin-top: 18px;
    display: block;
    width: 12px;
    height: 12px;
    background-image: url('../images/arrow-down.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.sticky .nav-class-div ul li.menu-item-has-children:before {
	color: var(--primary-color);
}

.sticky .nav-class-div ul li.active.menu-item-has-children:before {
	color: var(--primary-color);
}

.nav-class-div ul li.active.menu-item-has-children:before {
    content: "";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    right: -12px;
    top: 8px;
    margin-top: 15px;
    display: block;
    width: 12px;
    height: 12px;
    background-image: url('../images/arrow-down.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

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

.sticky .nav-class-div ul li ul {
	background-color: var(--white-color);
	box-shadow: 0 15px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
}

.sticky .nav-class-div ul li ul a {
	color: var(--primary-color);
	font-weight: var(--fw-500);
}
.sticky .nav-class-div ul li.current-menu-item a, .sticky .nav-class-div ul li.current-menu-parent > a, .sticky .nav-class-div ul li.current-menu-parent ul li.current-menu-item a {
	color: #AF191A;
}
.sticky .nav-class-div ul li ul li:not(:last-child) {
	border-bottom: 1px solid #dedcdc;
}

.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 6px;
	margin: 15px 1px;
	text-decoration: none;
	color: var(--primary-color);
	font-weight: var(--fw-500);
	text-transform: capitalize;
}
@media (max-width:1199px) {
	.navigation-container .sticky {
		padding: 0 15px;
	}
}
@media (max-width:767px) {
	.logo {
		display: block;
		color: var(--primary-color);
		grid-column: 1 /span 3;
	}
	.sticky .logo {
		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: "";
		position: absolute;
		right: 15px;
		top: 22px;
		margin-top: 0;
		display: block;
		width: 40px;
		height: 40px;
		background-image: url('../images/mobile-menu.png');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
	}
	.sticky .menu-toggle:before {
		color: var(--primary-color);
	}
	.menu-toggle.active:before {
		content: "";
		position: absolute;
		right: 15px;
		top: 22px;
		margin-top: 0;
		display: block;
		width: 40px;
		height: 40px;
		background-image: url('../images/mobile-menu.png');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
	}
	.sticky .menu-toggle.active:before {
		color: var(--primary-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
	}
}

@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
	}
}


/* 
===================================================================
-Hero Section
===================================================================
*/

section.smnsschero {
	margin: 0;
}

.smnsscherp-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: auto;
}

.smnsscherp-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: auto;
}

.smnsscherp-item {
	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: auto;
}

.smnsscherp-item > div:first-child {
	grid-area: 1 / 1 / -1 / -1;
}

.smnsscherp-item > div:first-child {
	position: relative;
	z-index: -1;
}
.smnsscimages img {
    width: 100vw;
    height: 40vw;
    object-fit: cover;
}

/* .smnsscimages::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--primary-color,#100F11);
	opacity: 70%;
	z-index: 1;
} */
.smnsscherp-item > div:first-child .smnsscimages-overlay {
	position: absolute;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	width: 100%;
	height: 100%;
}

.smnsscherp-item > div:last-child {
	grid-area: 1 / 1 / -1 / -1;
	display: grid;
	justify-items: center;
	align-content: center;
	color: white;
	max-width: 100%;
    padding-left: 7.25vw;
    padding-right: 7.25vw;
    text-align: center;
}

.smnsscchild-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: auto;
	row-gap: 30px;
	line-height: 1.1;
	max-width: 1000px;
}

.smnsscherp-item > div > div:last-child div:nth-child(1) {
	font-size: 3.2vw;
	font-weight: 700;
	text-transform: uppercase;
}
.smnsscherp-item > div > div:last-child div:nth-child(1) span {
	color: #fd6454;
}
.smnsscherp-item > div > div:last-child div:nth-child(2) {
	font-size: 17px;
	line-height:1.6;
	font-weight: 400;
	text-transform: capitalize;
}

.smnsscherp-item > div > div:last-child div:nth-child(3) {
	font-size: 13px;
	font-weight: 400;
}

.smnsscherp-item > div > div:last-child div:nth-child(3) a {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    color: white;
    font-size: 16px;
    background: #fd6454;
    border-radius: 5px;
}
@media only screen and (max-width: 991px) {
	.smnsscchild-wrapper {
		row-gap: 15px;
		padding: 0 15px;
	}

	.smnsscherp-item > div > div:last-child div:nth-child(1) {
		font-size: 20px;
		font-weight: 700;
		text-transform: uppercase;
	}

	.smnsscherp-item > div > div:last-child div:nth-child(2) {
		font-size: 17px;
		font-weight: 400;
		text-transform: uppercase;
	}
}


section.smnsschero .swiper-button-next, section.smnsschero .swiper-button-prev {
	position: absolute;
	top: unset;
	bottom: 50%;
	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: #ffffff;
}

section.smnsschero .swiper-button-next:after, section.smnsschero .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;
}

section.smnsschero .swiper-button-prev, section.smnsschero .swiper-rtl .swiper-button-next {
	left: 2%;
	right: auto;
}

section.smnsschero .swiper-button-next, section.smnsschero .swiper-rtl .swiper-button-prev {
	right: 2%;
	left: auto;
}

section.smnsschero .swiper-horizontal>.swiper-pagination-bullets, section.smnsschero .swiper-pagination-bullets.swiper-pagination-horizontal, section.smnsschero .swiper-pagination-custom, section.smnsschero .swiper-pagination-fraction {
	width: 100%;
	color: #ffffff;
}

/*
==================================================================
About
==================================================================
*/


section.smnssc-alaglance {
	background-color: var(--smoke-color, white);
	padding-block: 4rem;
	position: relative;
}

.smnssc-alaglance-parent {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	grid-gap: 40px;
}

:nth-child( 1 of .smnssc-alaglance-child ) {
	animation: nudge 7s linear infinite alternate;
	padding-inline-end: 3rem;
}

:nth-child( 2 of .smnssc-alaglance-child ) {
	text-align: justify;
}

:nth-child( 1 of .smnssc-alaglance-child-child ) {
	font-size: 3.3rem;
	font-weight: 600;
	color: var(--title-color, black);
	font-family: 'Poppins';
	text-align: start;
	line-height: 1.5;
	margin-block-end: 2rem;
}

:nth-child( 2 of .smnssc-alaglance-child-child ) {
	line-height: 2;
	color: black;
}

@keyframes nudge {
	0%,100% {
		transform: translate(0,0);
	}

	50% {
		transform: translate(30px,0);
	}

	80% {
		transform: translate(-30px,0);
	}
}

:nth-child( 2 of .smnssc-alaglance-child-child ) ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
:nth-child( 2 of .smnssc-alaglance-child-child ) ul li {
    color: var(--primary-color);
    line-height: 1.5em;
    text-transform: capitalize;
    background: url('../images/icon-check.svg') no-repeat;
    background-position: left top;
    background-size: 24px auto;
    padding: 0 0 10px 40px;
    margin-bottom: 10px;
}
/* -------------------------- */

.title-child:first-child {
    font-size: 3.3rem;
    font-weight: 600;
    color: black;
    line-height: normal;
    text-transform: capitalize;
    text-align: center;
}

/*
==================================================================
multiple-cat
==================================================================
*/

section.multiple-cat {
    padding: 3% 0;
}
.multiple-cat-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: auto;
  grid-gap: 40px;
}
.multiple-cat-wrapper-child {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 8px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s ease-in;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.multiple-cat-wrapper-child:hover {
  box-shadow:0 2px 10px 0 rgba(0,0,0,.25);
}
:nth-child( 1 of .catmultiple-child-child ) {
  grid-area: 1 / 1 / auto / -1;
}
:nth-child( 1 of .catmultiple-child-child ) img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    width: fit-content;
    display: block;
    margin-inline: auto;
    margin-block-start: 4rem;
}
:nth-child( 2 of .catmultiple-child-child ) {
    color: #282828;
    font-weight: 600;
    font-size: 1.375rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1.5rem 1rem 2rem;
}
:nth-child( 3 of .catmultiple-child-child ) {
    color: #282828;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0rem 2rem 4rem 2rem;
    text-align: justify;
}
.multiple-title-arrow {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    text-transform: capitalize;
}

/* ----------------------------------- */
section.course-section {
    margin-block: 3%;
}
/* ------------ */
.course-section-parent {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: auto;
    grid-gap: 40px;
}
.course-section-child {
    position: relative;
}
a.slide-link {
    position: relative;
}
.slide-info-wrap {
    position: absolute;
    z-index: 1;
    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;
	visibility: hidden;
}
: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;
	visibility: hidden;
}
/* ------------------- */
.slide-img-wrap {
    grid-auto-rows: 27vw;
}
/* ------------------------ */


.our-services{
    position: relative;
    background: var(--secondary-color, white);
    padding: 100px 0;
	margin-block-end: 3vw;
}

.our-services::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: url('../images/service-bg-track.png');
    background-repeat: repeat-x;
    background-position: bottom left;
    background-size: cover;
    width: 100%;
    height: 100%;
    animation: servicebgmove 30s infinite linear;
}

@keyframes servicebgmove{
	from{
		background-position: right bottom;
	}
	to{
		background-position: right 100vw bottom;
	}
}

.our-services::after{
    content: '';
    position: absolute;
    bottom: 18px;
    left: 15px;
    right: 0;
    background: url('../images/service-bg-car.png');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
    width: 345px;
    height: 340px;
}
@media (max-width: 767px){
	.our-services::before{
        animation: none;
    }

    .our-services::after{
        width: 100px;
        height: 98px;
    }

    .service-item-content .icon-box img{
        max-width: 35px;
    }
}
/* all media */
@media (max-width: 767px){
section.smnssc-alaglance {
    background-color: var(--smoke-color, white);
    padding-block: 4rem 2rem;
}	
:nth-child( 1 of .smnssc-alaglance-child-child ) {
    font-size: 2.5rem;
    margin-block-end: 2vw;
}
.title-child:first-child {
    font-size: 2.5rem;
}
.text-scrooing p {
    display: inline-block;
    --bs-stroke-width: unset;
    --bs-primary-rgb: unset;
    --bs-stroke-rgb: unset;
    --bs-stroke-opacity: 1;
    --bs-stroke-width: unset;
    -webkit-text-stroke: unset;
    color: black !important;
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 0;
}
	:nth-child( 1 of .smnssc-alaglance-child ) {
    animation: none;
    padding-inline-end: 0;
}
}





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








/* ------------------------Front price list -------------------------- */
.front-pricelist-section {
	margin-block: 3vw;
}
.front-pricelist-wrapper {
    display: flex;
	flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.front-package-wrapper {
    flex: 0 1 380px;
    -webkit-transition: cubic-bezier(.77, 0, .175, 1).5s;
    transition: cubic-bezier(.77, 0, .175, 1).5s;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
}

.more-price {
    display: block;
    text-align: center;
    margin: 2.5rem 0 3.5rem;
}

.front-package-wrapper a {
    display: inline-block;
    background-color: #ffb120;
    font-size: 20px;
    border: 2px solid #ffb120;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
	transition: all 0.3s;
}
.front-package-wrapper a:hover {
    background-color: white;
    border: 2px solid black;
}

.front-package-wrapper:hover {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.front-package-child {
    padding: 5px;
  	text-align:center;
    align-items: center;
    display: grid;
}

.front-package-child:not(:first-child):not(:nth-last-child(2)) {
    border-bottom: 1px solid #dad8d9ad;
}

.front-package-child:first-child {
    margin: 4rem 0 .2rem;
	padding-block: 1vw;
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    line-height: 1;
    background: #ffb120;
}
.front-package-child:first-child span {
    display: block;
    font-size: 1.7rem;
    color: black;
    margin-top: 0.3rem;
}
.front-package-child:nth-child(2) {
    padding: 25px;
    border-bottom: 1px solid #dad8d9ad;
    color: black;
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
}

/* 
====================================================================
courses-section
====================================================================
*/
sections.courses-section {
    display: flow-root;
    margin-block: 3vw;
}
.courses-wrapper {
    display: grid;
    grid-template-columns: 1fr 3.5fr;
    grid-gap: 30px;
}

.courses-left h3 {
    margin-block: 0 10px;
    padding-block: 0;
}
.courses-left ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.courses-left ul li a {
    display: block;
    margin-block-end: 2px;
    padding-block: 5px;
    padding-inline-start: 15px;
    color: white;
    background: #050748;
    text-decoration: none;
    text-transform: uppercase;
}
.courses-left ul li.current-menu-item a, .courses-left ul li a:hover {
    color: white;
	background: #e42313;
}
@media (max-width: 767px) {
	
	sections.courses-section ul {
		list-style-type: none;
	}
   	sections.courses-section ol {
		padding-inline-start: 20px;
	}
	.courses-wrapper {
		grid-template-columns: 1fr;
	}
	
}
/* 
====================================================================
Contact 
====================================================================
 */
.contact-section {
    background: #D6FFFC;
    background: -moz-linear-gradient(top,#D6FFFC 0,#ffeff5 100%);
    background: -webkit-linear-gradient(top,#D6FFFC 0,#ffeff5 100%);
    background: linear-gradient(to bottom,#D6FFFC 0,#ffeff5 100%);
    padding-block: 2vw;
}
section.contact-section > div {
    width: min(90%, 1200px);
    padding-inline: 0;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
}
:nth-child( 1 of .contact-parent ) :nth-child( 1 of .contact-child ) {
    font-size: 45px;
    font-weight: 600;
    color: #050748;
    line-height: 1.3;
    text-transform: capitalize;
}
:nth-child( 1 of .contact-parent ) :nth-child( 2 of .contact-child ) {
    font-size: 16px;
    font-weight: 500;
    color: #050748;
    line-height: 1.5;
    text-transform: capitalize;
    margin-block: 20px;
}
:nth-child( 1 of .contact-parent ) :nth-child( 3 of .contact-child ) {
    font-size: 20px;
    font-weight: 500;
    color: #050748;
	margin-block-end: 20px;
}
.main-address {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.address-parent {
    display: grid;
    grid-template-columns: fit-content(100%) fit-content(100%);
    align-items: center;
    grid-gap: 5px;
    align-content: center;
}

.address-child:first-child {
    width: 30px;
}

.address-child:last-child a {
    text-decoration: none;
    color: #050748;
    font-size: 15px;
}
.info-image-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    grid-gap: 30px;
}
:nth-child( 1 of .info-image-parent ) div:first-child {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    color: #050748;
}
:nth-child( 1 of .info-image-parent ) div:last-child {
	margin-block-start: 10px;
}
:nth-child( 1 of .info-image-parent ) div:last-child a {
	text-decoration: none;
    font-size: 16px;
    font-weight: 500;
	color: red;
}
.info-image-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    grid-gap: 30px;
    background: white;
    padding-inline-start: 15px;
    border-radius: 5px;
}







.contact-parent:last-child {
    padding-block: 10px;
    padding-inline: 20px;
    background: #050748;
    border-radius: 5px;
}
@media ( max-width:767px ){ 
.contact-wrapper {
    grid-template-columns: 1fr;
}
}
/* --------Contact Form------------ */

.wpcf7 label {
    display: block;
	color: white;
	margin-block-end: 10px;
}
input.wpcf7-form-control, textarea.wpcf7-form-control, select.wpcf7-select {
    min-height: 40px;
    border: 2px solid #ccc;
    padding: 10px;
    width: 100%;
}
.wpcf7-text:focus, .wpcf7-textarea:focus {
    outline:none;
}

input.wpcf7-form-control.wpcf7-submit {
	font-family: 'Poppins';
    width: fit-content;
    background: #AF191A;
    color: white;
    font-weight: bold;
    padding-inline: 20px;
    font-size: 15px;
    border: none;
    cursor: pointer;
}
input.wpcf7-form-control.wpcf7-submit {
    background-color: #69727d;
    border-radius: 3px;
    color: #000000;
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    padding: 15px 30px;
    fill: #ffffff;
    text-align: center;
    transition: all .3s;
    background: #ffb120;
	
	background-color: #ffb120;
    font-size: 16px;
    border: 2px solid #ffb120;
	
}
input.wpcf7-form-control.wpcf7-submit:hover {
	background-color: transparent;
	color: white;
    border: 2px solid #ffb120;
}

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

/* input.wpcf7-form-control.wpcf7-submit {
    background-color: #69727d;
    border-radius: 3px;
    color: #ffffff;
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    padding: 15px 30px;
    fill: #fff;
    text-align: center;
    transition: all .3s;
    background: #ffbd84;
    background: -moz-linear-gradient(left, #ffbd84 0, #ff1f8e 100%);
    background: -webkit-linear-gradient(left, #ffbd84 0, #ff1f8e 100%);
    background: linear-gradient(to right, #ffbd84 0, #ff1f8e 100%);
    -webkit-box-shadow: 0 10px 15px 0 rgba(175, 0, 87, .2);
    box-shadow: 0 10px 15px 0 rgba(175, 0, 87, .2);
}
 */






/*
==================================================================
Footer
==================================================================
*/

footer {
	background-color: #004287;
	color: white;
}

footer > section.main-footer {
	padding: 4% 0;
}

.main-footer div .footer-child h1 {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	border-bottom: 0;
	margin: 0 0 5px 0;
	padding: 0 0 5px 0;
	font-size: 17px;
	text-transform: uppercase;
	color: #ffffff;
	margin-bottom: 15px;
}

.main-footer div .footer-child:not(:first-child) h1 {
	border-bottom: 2px solid #ffffff;
}

.main-footer ul {
	margin: 0;
	padding: 0 0 0 0;
	list-style-type: none;
}

.main-footer ul li {
	padding: 0;
	margin: 10px 0;
	line-height: 28px;
}

.main-footer ul li a,
  .main-footer a {
	text-decoration: none;
	color: var(--white-color);
	transition: all 0.5s;
	font-size: 15px;
}

.main-footer ul li a:hover {
	color: #EB3649;
}

.main-footer > div {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-gap: 40px;
}

.main-footer > div > div:nth-child(1) {
	grid-column: 1 / 5;
}

.main-footer > div > div:nth-child(2) {
	grid-column: 6 / 8;
}

.main-footer > div > div:nth-child(3) {
	grid-column: 8 / 11;
	justify-self: center;
}

.main-footer > div > div:nth-child(4) {
	grid-column: 11 / 14;
	justify-self: end;
}

.footer-addres-child {
	text-align: justify;
}

.footer-social ul {
    display: flex;
    justify-content: start;
    gap: 1.5rem;
    margin-block-start: 20px
}

.footer-social a {
    font-family: 'Jost';
    color: #282828;
    text-decoration: none;
    font-size: 15px;
}

.footer-social svg {
    display: block;
    height: 1.5rem;
    fill: #ffffff;
    max-width: 2.5rem;
}
@media (max-width: 991.98px) {
	.main-footer > div > div:nth-child(1) {
		grid-area: 1 / 1 / span 1 / span 6;
	}

	.main-footer > div > div:nth-child(2) {
		grid-area: 1 / 7 / span 1 / span 6;
	}

	.main-footer > div > div:nth-child(3) {
		grid-area: 2 / 1 / span 1 / span 6;
		justify-self: stretch;
	}

	.main-footer > div > div:nth-child(4) {
		grid-area: 2 / 7 / span 1 / span 6;
		justify-self: stretch;
	}
}

@media (max-width: 575.98px) {
	.main-footer > div {
		grid-column-gap: 0px;
	}

	.main-footer > div > div:nth-child(1) {
		grid-area: 1 / 1 / span 1 / -1;
	}

	.main-footer > div > div:nth-child(2) {
		grid-area: 2 / 1 / span 1 / -1;
	}

	.main-footer > div > div:nth-child(3) {
		grid-area: 3 / 1 / span 1 / -1;
	}

	.main-footer > div > div:nth-child(4) {
		grid-area: 4 / 1 / span 1 / -1;
	}
}

.copyright {
	padding: 0 0 40px;
	color: #fff;
}

.copyright .copyright-wrapper {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: minmax(20px, auto);
	align-items: center;
	padding-top: 40px;
	border-top: 3px solid #ffffff;
}

.copyright .copyright-wrapper div:first-child {
	color: #ffffff;
	font-size: 16px;
}

.copyright .copyright-wrapper div:last-child {
	justify-self: end;
	display: flex;
	gap: 5px;
}

.copyright .copyright-wrapper div:last-child div {
	background-color: #fff;
}

.copyright .copyright-wrapper div:last-child img {
	width: 45px;
	height: auto;
}

@media (max-width: 992px) {
	.copyright .copyright-wrapper {
		grid-template-columns: repeat(1, 1fr);
		place-items: center;
		text-align: center;
	}

	.copyright .copyright-wrapper div:last-child {
		justify-self: center;
	}
}
  
  /* ------------------------Footer------------------------ */
  
  /* ----Footer Social---- */
footer {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
}
.footer-addres {
	display: grid;
	grid-auto-rows: minmax(20px, auto);
}

.social-icons {
	margin-top: 20px !important;
}

.social-icons li {
	display: inline-block;
	margin: 0 10px 5px 0 !important;
	position: relative;
	vertical-align: middle;
}

.social-icons li a {
	color: #fff;
	display: block;
	font-size: 16px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	width: 40px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
  /*-----------------------  */
.footer-child.child:nth-child(3) ul li {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
}

.footer-child.child:nth-child(3) ul li i {
	margin-right: 10px;
	font-size: 20px;
	color: #05fd97;
}
/*    */

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

/*
==================================================================
Scroll To Top
==================================================================
*/

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

.scrollTop.visible {
	opacity: 1;
}








@media (max-width: 991px) {
.smnssc-alaglance-parent {
    grid-template-columns: 1fr;
}

.smnsscchild-wrapper {
	display:none;
}

}



























































.testimonial-section {
    display: flow-root;
    margin-block: 6% 4%;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    padding-block: 60px 0px;
    color: #fff;
}
.testimonial-section .container {
	width: min(90%, 1200px);
	margin-inline: auto;
	padding-inline: 7.25vw;
}
.testimonial-section .swiper-slide {
    background-color: transparent;
}
.testimonial-wrap {
	font-family: "Plus Jakarta Sans", sans-serif;
    margin: 6% 0;
}
.testimonial-slider-parent {
    display: grid;
    justify-items: center;
    color: white;
	padding-inline: 80px;
	padding-block-end: 70px;
}
:nth-child( 1 of .testimonial-slider-child ) img {
    border-radius: 50%;
    width: 150px;
}
:nth-child( 2 of .testimonial-slider-child ) {
    margin-block: 1vw;
    font-size: 18px;
    text-align: center;
}
:nth-child( 3 of .testimonial-slider-child ) {
	margin-block-end: 1vw;
}
:nth-child( 3 of .testimonial-slider-child ) img {
	 width: 150px;
}
:nth-child( 4 of .testimonial-slider-child ) {
	font-size: 22px;
}
:nth-child( 5 of .testimonial-slider-child ) {
	font-size: 18px;
}


.testimonial-section .swiper-button-next, .testimonial-section .swiper-button-prev {
	position: absolute;
	top: unset;
	bottom: 50%;
	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: #ffffff;
	display: none; 
	transition: all 0.3s;
}

.testimonial-section .swiper-button-next:after, .testimonial-section .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;
}

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

.testimonial-section .swiper-button-next, .testimonial-section .swiper-rtl .swiper-button-prev {
	right: 2%;
	left: auto;
}
.testimonial-section .testimonial-wrap:hover  .swiper-button-next, .testimonial-section .testimonial-wrap:hover .swiper-button-prev {
	display: block;
}

@media (max-width: 767px) {
	.testimonial-slider-parent {
		padding-inline: 0px;
		padding-block-end: 70px;
	}
}

/* 
=============================================

=============================================
 *  */









sections.contact-page-section a {
    text-decoration: none;
    color: black;
}


sections.about-page-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
sections.about-page-section ul li {
    color: var(--primary-color);
    line-height: 1.5em;
    text-transform: capitalize;
    background: url('../images/icon-check.svg') no-repeat;
    background-position: left top;
    background-size: 24px auto;
    padding: 0 0 10px 40px;
    margin-bottom: 10px;
}

/* ----------- */
.about-wrapper {
    max-width: 1200px;
    margin-inline: auto;
}
.about-parent {
    display: grid;
    grid-template-columns: 1fr 1fr;
}




















/* 
==================================================================
Testimonal Page
==================================================================
*/
section.testimonal-page-section {
    margin-block: 50px;
}
section.testimonal-page-section > div {
    max-width: 1200px;
    padding-inline: 2vw;
}
.testimonal-page-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 40px;
}
.testimonal-page-parent {
    display: grid;
    grid-template-columns: fit-content(100%) 1fr;
    grid-gap: 40px;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.2s ease-in;
    padding-inline: 20px;
    padding-block: 20px;
}

.testimonal-page-child.client-image img {
    border-radius: 50%;
    width: 150px;
}
.client-review img {
    width: 150px;
}

@media (max-width: 767px) {
	section.testimonal-page-section > div {
		padding-inline: 7.25vw;
	}
	.testimonal-page-parent {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}
}


/* Pagination */


.custom-pagination ul {
    display: flex;
    justify-content: center;
    padding: 0;
    list-style: none;
    margin-top: 30px;
}

.custom-pagination li {
    margin: 0 5px;
}

.custom-pagination a,
.custom-pagination span {
    display: block;
    padding: 5px 16px;
    text-decoration: none;
    background-color: #f0f0f0;
    color: #333;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-pagination a:hover {
    background-color: red;
    color: #fff;
}

.custom-pagination .current {
    background-color: #ffb120;
    color: #000000;
}







/* 
============================================================
Blog
============================================================
*/

/*-------------------- blog ---------------------------*/
.blog {
    padding: 0 0 5%;
}
.blog > .container {
    max-width: 1280px;
    padding-inline: 2vw;
}
.blog .blog-main-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: auto;
    grid-gap: 30px;
}

.blog-wrapper {
    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;
}

.blog-wrapper:hover {
    -webkit-box-shadow: 0 5px 26px 0 rgba(10, 31, 68, 0.12);
    box-shadow: 0 5px 26px 0 rgba(10, 31, 68, 0.12);
}

.blog-wrapper > div:nth-child(2) {
    padding: 1.5rem 2.5rem 1rem;
    color: var(--p-color);
}

.blog-wrapper > div:nth-child(3) {
    padding: 0 2.5rem 1rem;
    line-height: 1.65;
    color: var(--black-color);
    font-weight: 500;
    height: 100%;
}

.blog-wrapper > div:nth-child(4) {
    padding: .5rem 2.5rem 2.5rem;
    margin-top: auto;
    width: 100%;
}

.blog-images img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}

.author img {
    border-radius: 50%;
    border: 2px solid #fff;
    height: 60px !important;
    -webkit-box-shadow: 0 0 1px 0 rgba(10, 31, 68, 0.08), 0 3px 10px 0 rgba(10, 31, 68, 0.1);
    box-shadow: 0 0 1px 0 rgba(10, 31, 68, 0.08), 0 3px 10px 0 rgba(10, 31, 68, 0.1);
}

.author-img {
    position: relative;
    display: grid;
    justify-items: end;
}

.author-img::after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    right: 90px;
    border-bottom: 2px solid #f2f2f2;
}
.author .date {
    color: var(--p-color);
}
.blog-wrapper .catagory-name a{
    color: var(--p-color)
}
.blog-wrapper .title a{
    color: var(--black-color);
}

/* 
=================================================================================
[ Pagination Section ]
====================================================================================
 */

.pagination-section {
	text-align: center;
	padding: 40px 0 20px;
}

.pagination-section ul li:not(:first-child):not(:last-child) {
	display: inline-grid;
	justify-items: center;
	margin: 0 5px
}

.pagination-section ul li.pag-prev {
	float: left;
}

.pagination-section ul li.pag-next {
	float: right;
}

.pagination-section ul li.pag-prev a,
.pagination-section ul li.pag-next a {
	border-bottom: 4px solid #ff671f;
	padding-bottom: 4px;
}

.pagination-section ul li a {
	font-size: 1.4rem;
	font-weight: 600;
	color: #fff;
	display: block;
	text-decoration: none;
	-moz-transition: all 0.25s ease-out;
	-webkit-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
}

.pagination-section ul li a:hover {
	color: #4c4c4c;
}

.pagination-section ul li a i {
	color: #231f20;
	font-size: 1.6rem;
	margin: 0 0.5rem;
}

.pagination-section ul li.active a {
	color: #4c4c4c;
}

/* 
------------------------ 
 Extra Pagination
------------------------
*/

.nav-links {
	text-align: center;
}

.nav-links a:not(:first-child):not(:last-child) {
	display: inline-grid;
	justify-items: center;
	margin: 0 5px
}

.nav-links .prev {
	float: left;
}

.nav-links .next {
	float: right;
}

.nav-links a.prev,
.nav-links a.next {
	border-bottom: 4px solid red;
	padding-bottom: 4px;
}

.nav-links a {
	font-size: 1.4rem;
	font-weight: 600;
	color: black;
	text-decoration: none;
	-moz-transition: all 0.25s ease-out;
	-webkit-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
}

.nav-links a:hover {
	color: #4c4c4c;
}

.nav-links ul li a i {
	color: #231f20;
	font-size: 1.6rem;
	margin: 0 0.5rem;
}

.nav-links .current {
	color: #4c4c4c;
	font-size: 1.4rem;
	font-weight: 600;
	margin: 0 5px;
}




/* Single Post */


.single-contener {
    max-width: 1200px;
    margin-inline: auto;
}

.single-contener .entry-content {
    margin-block: 20px;
    line-height: 2;
    font-family: 'Poppins';
    text-align: justify;
}

.single-contener .post-thumbnail img {
    display: block;
    margin-inline: auto;
}

.single-contener .entry-meta {
    /* display: grid; */
    text-align: center;
    margin-block-end: 25px;
}

.single-contener h1.entry-title {
    text-align: center;
    margin-block: 30px;
    font-size: 36px;
}

.single-contener .entry-meta a {
    text-decoration: none;
    color: black;
}











/*  */

.packages-wrapper {
    max-width: 500px;
    margin-inline: auto;
    background: #050748;
    padding: 20px;
    margin-block: 50px;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    color: white;
    text-align: center;
}

sections.packages-title-section {
    margin-block: 50px;
    /* font-weight: 700; */
    display: flow-root;
    font-family: sans-serif;
}




















/*
================================================================
All Title Inner start
================================================================
*/
section.title-section {
    margin-block-start: 4%;
    padding-block: 4%;
}

section.title-section-wtth-bg {
    padding-block: 4%;
    background: #f1f2e7;
}

section.title-all {
    margin-block: 70px;
}

.title-wrapper {
    max-width: 900px;
    margin-inline: auto;
}
.title-child:first-child {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0b2d0e;
    line-height: normal;
    text-transform: capitalize;
    text-align: center;
}
.title-child:last-child {
	  font-size: 1.3rem;
    font-weight: 300;
    color: #0b2d0e;
    line-height: normal;
    text-transform: capitalize;
    text-align: center;
}
@media screen and (max-width: 768px) {
  .title-child:first-child {
    font-size: 2.5rem;
    font-weight: 600;
}
.title-child:last-child {
	  font-size: 1.2rem;
    font-weight: 300;
}
}
/*
================================================================
All Title Inner end
================================================================
*/




















/* 
==========================================
     Top 3 sections
==========================================
 */

section.top-3-section {
    margin-block: 4% 0;
}
.top-3-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    grid-gap: 40px;
}

.top-3-wrapper svg {
    height: auto;
    width: 4em;
}
.top-3-parent {
    padding: 60px 40px;
    text-align: center;
    border: 2px solid #395c7c;
    border-radius: 10px;
}
:nth-child( 2 of .top-3-child ) {
    font-weight: 600;
}
:nth-child( 1 of .top-3-child ) img {
    display: block;
    margin-inline: auto;
}
:nth-child( 2 of .top-3-child ):not(:empty) {
    padding: .5em 0;
    font-size: 22px;
    color: #0b2d0e;
}
:nth-child( 3 of .top-3-child ) p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; 
  line-clamp: 3;
  overflow: hidden;
}
:nth-child( 4 of .top-3-child ) {
  margin-top: 15px;
}
:nth-child( 4 of .top-3-child ) a {
    background-color: #fd6454;
    display: inline-grid;
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
	transition: all 0.3s ease-in-out;
}
:nth-child( 4 of .top-3-child ) a:hover {
    color: #bfef1e;
}

@media (991px <= width <= 1440px) {
.top-3-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    grid-gap: 20px;
}
.top-3-parent {
    padding: 35px 35px;
}
}
@media (max-width: 767px) {
.top-3-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.top-3-parent {
    padding: 30px 20px;
}
}
/* 
==========================================
Top 3 Inner Page
==========================================
 */


.top-3-menu-wrapper {
    display: grid;
    grid-template-columns: 1fr 3.5fr;
    grid-gap: 30px;
    margin-block: 50px;
}
.top-3-left {
    position: sticky;
    top: 75px;
}
.top-3-left h3 {
    margin-block-end: 2px;
    padding-block: 8px;
    padding-inline: 10px;
    background: #0b2d0e;
    color: #bfef1e;
    font-weight: 500;
}
.top-3-left ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.top-3-left ul li a {
    display: block;
    margin-block-end: 2px;
    padding-block: 5px;
    padding-inline-start: 15px;
    color: white;
    background: #0b2d0e;
    text-decoration: none;
    text-transform: uppercase;
}
.top-3-left ul li.current-menu-item a, .top-3-left ul li a:hover {
    color: white;
	background: #117c1b;
}
@media (max-width: 767px) {
	.top-3-menu-wrapper {
		grid-template-columns: 1fr;
	}
	
}
/* 
==========================================
     Single Top 3 Pages
==========================================
 */

section.single-top-3-section {
    margin-block: 0 4%;
}
.single-top-3-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 40px;
}

.single-top-3-wrapper svg {
    height: auto;
    width: 4em;
}
.single-top-3-parent {
    padding: 0px 40px;
}
:nth-child( 1 of .single-top-3-child ) {
	font-size: 30px;
    font-weight: inherit;
	color: #0b2d0e;
}
:nth-child( 2 of .single-top-3-child ) {
    font-weight: inherit;
}
:nth-child( 2 of .single-top-3-child ):not(:empty) {
    padding: 2rem 0;
    font-size: 18px;
    line-height: 2;
    color: #0b2d0e;
    text-align: justify;
}
:nth-child( 3 of .single-top-3-child ) p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; 
  line-clamp: 3;
  overflow: hidden;
}
:nth-child( 4 of .single-top-3-child ) {
  margin-top: 15px;
}
:nth-child( 4 of .single-top-3-child ) a {
    background-color: #fd6454;
    display: inline-grid;
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
	transition: all 0.3s ease-in-out;
}
:nth-child( 4 of .single-top-3-child ) a:hover {
    color: #bfef1e;
}
@media (max-width: 767px) {
.single-top-3-wrapper {
    grid-template-columns: 1fr;
}
.single-top-3-parent {
    padding: 30px 20px;
}
}






















/* 
==========================================
     Services
==========================================
 */

section.feature-resource-section {
    margin-block: 0 4%;
    background: #ebf2fa;
    padding-block-end: 4%;
}
.feature-resource-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-gap: 40px;
}

.feature-resource-wrapper svg {
    height: auto;
    width: 4em;
}
.feature-resource-parent {
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #395c7c;
}
:nth-child( 2 of .feature-resource-child ) {
    font-weight: 600;
}
:nth-child( 2 of .feature-resource-child ):not(:empty) {
    padding: .5em 0;
    font-size: 22px;
    color: #0b2d0e;
}
:nth-child( 3 of .feature-resource-child ) p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; 
  line-clamp: 3;
  overflow: hidden;
}
:nth-child( 4 of .feature-resource-child ) {
  margin-top: 15px;
}
:nth-child( 4 of .feature-resource-child ) a {
    background-color: #fd6454;
    display: inline-grid;
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
	transition: all 0.3s ease-in-out;
}
:nth-child( 4 of .feature-resource-child ) a:hover {
    color: #bfef1e;
}
@media (991px <= width <= 1440px) {
.feature-resource-parent {
    padding: 35px 35px;
    background: #ffffff;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #395c7c;
}
}
@media (max-width: 767px) {
.feature-resource-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.feature-resource-parent {
    padding: 30px 20px;
}
}
/* 
==========================================
Our Service Inner Page
==========================================
 */


.feature-resource-menu-wrapper {
    display: grid;
    grid-template-columns: 1fr 3.5fr;
    grid-gap: 30px;
    margin-block: 50px;
}
.feature-resource-left {
    position: sticky;
    top: 75px;
}
.feature-resource-left h3 {
    margin-block-end: 2px;
    padding-block: 8px;
    padding-inline: 10px;
    background: #0b2d0e;
    color: #bfef1e;
    font-weight: 500;
}
.feature-resource-left ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.feature-resource-left ul li a {
    display: block;
    margin-block-end: 2px;
    padding-block: 5px;
    padding-inline-start: 15px;
    color: white;
    background: #0b2d0e;
    text-decoration: none;
    text-transform: uppercase;
}
.feature-resource-left ul li.current-menu-item a, .feature-resource-left ul li a:hover {
    color: white;
	background: #117c1b;
}
@media (max-width: 767px) {
	.feature-resource-menu-wrapper {
		grid-template-columns: 1fr;
	}
	
}
/* 
==========================================
     Single Services Pages
==========================================
 */

section.single-feature-resource-section {
    margin-block: 0 4%;
}
.single-feature-resource-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 40px;
}

.single-feature-resource-wrapper svg {
    height: auto;
    width: 4em;
}
.single-feature-resource-parent {
    padding: 0px 40px;
}
:nth-child( 1 of .single-feature-resource-child ) {
	font-size: 30px;
    font-weight: inherit;
	color: #0b2d0e;
}
:nth-child( 2 of .single-feature-resource-child ) {
    font-weight: inherit;
}
:nth-child( 2 of .single-feature-resource-child ):not(:empty) {
    padding: 2rem 0;
    font-size: 18px;
    line-height: 2;
    color: #0b2d0e;
    text-align: justify;
}
:nth-child( 3 of .single-feature-resource-child ) p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; 
  line-clamp: 3;
  overflow: hidden;
}
:nth-child( 4 of .single-feature-resource-child ) {
  margin-top: 15px;
}
:nth-child( 4 of .single-feature-resource-child ) a {
    background-color: #fd6454;
    display: inline-grid;
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
	transition: all 0.3s ease-in-out;
}
:nth-child( 4 of .single-feature-resource-child ) a:hover {
    color: #bfef1e;
}
@media (max-width: 767px) {
.single-feature-resource-wrapper {
    grid-template-columns: 1fr;
}
.single-feature-resource-parent {
    padding: 30px 20px;
}
}













/* 
==========================================
Our Work
==========================================
*/
section.top-tier-insights-section {
    padding-block: 0 4%;
}
section.top-tier-insights-section .title-wrapper {
	margin-bottom: 2rem;
}
.top-tier-insights-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: auto;
  grid-gap: 40px;
}
.top-tier-insights-parent {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-text-decoration: none;
  text-decoration: none;
}
:nth-child( 1 of .top-tier-insights-child ) {
  grid-area: 1 / 1 / auto / -1;
  overflow: hidden;
  border-radius: 10px;
}
:nth-child( 1 of .top-tier-insights-child ) img {  
  width: 100%;
  height: auto;  
  -webkit-transition: transform 1s ease;
  transition: transform 1s ease;
}
.top-tier-insights-parent:hover :nth-child( 1 of .top-tier-insights-child ) img {  
  transform: scale(1.2);
}
:nth-child( 1 of .top-tier-insights-child ) video {
		width: 100%;
		height: auto;
  -webkit-transition: transform 1s ease;
  transition: transform 1s ease;
}
.top-tier-insights-parent:hover :nth-child( 1 of .top-tier-insights-child ) video {  
  transform: scale(1.2);
}

:nth-child( 2 of .top-tier-insights-child ) {
    margin: 5px 0;
    font-size: 0;
    line-height: 0;
}
:nth-child( 3 of .top-tier-insights-child ) {
    margin: 0;
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 2rem;
    color: #282828;
}
:nth-child( 4 of .top-tier-insights-child ) {
    margin: 0 1rem 1.25rem;
	color:#534f4f;
	font-size: 1.125rem;
    line-height: 1.75rem;
    display: none;
}

:nth-child( 4 of .top-tier-insights-child ) .arrow-button {
	margin-left: 0.3rem;
	font-size: 1.2rem;
	transform: translateX(0);
	transition: transform 0.2s ease;
}
:nth-child( 4 of .top-tier-insights-child ) a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
:nth-child( 4 of .top-tier-insights-child ) a:hover .arrow-button {
	  transform: translateX(4px);
}
@media screen and (max-width: 991px) {
.top-tier-insights-wrapper {
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  grid-gap: 25px;
}
}
@media (max-width: 767px) {
.top-tier-insights-wrapper {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
}



/* 
==========================================
Most Read Articles
==========================================
*/
section.most-read-articles-section {
    padding-block: 0 4%;
    background-color: #ebf2fa;
}
section.most-read-articles-section .title-wrapper {
	margin-bottom: 2rem;
}
.most-read-articles-wrapper {
    width: min(90%, 1200px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    grid-gap: 10px 50px;
}
.most-read-articles-parent {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-text-decoration: none;
  text-decoration: none;
}
:nth-child( 1 of .most-read-articles-child ) {
  grid-area: 1 / 1 / auto / -1;
}

@media screen and (max-width: 991px) {
.most-read-articles-wrapper {
  grid-template-columns: 1fr;
  grid-gap: 25px;
}
}
@media (max-width: 767px) {
.most-read-articles-wrapper {
  grid-template-columns: 1fr;
}
}


/* 
==========================================
explore-further
==========================================
*/
section.explore-further-section {
    padding-block: 0 4%;
}
section.explore-further-section .title-wrapper {
	margin-bottom: 2rem;
}
.explore-further-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-auto-rows: auto;
  grid-gap: 40px;
}
.explore-further-parent {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 25px;
    align-items: center;
    text-decoration: none;
}
:nth-child( 1 of .explore-further-child ) {
  overflow: hidden;
  border-radius: 10px;
}
:nth-child( 1 of .explore-further-child ) img {  
  width: 100%;
  height: auto;  
  -webkit-transition: transform 1s ease;
  transition: transform 1s ease;
}
.explore-further-parent:hover :nth-child( 1 of .explore-further-child ) img {  
  transform: scale(1.2);
}
:nth-child( 2 of .explore-further-child ) .explore-further-title {
    margin: 0 0 5px 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
     color: #282828;
}
:nth-child( 2 of .explore-further-child ) .explore-further-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
}
:nth-child( 2 of .explore-further-child ) .explore-further-link .arrow-button {
	margin-left: 0.3rem;
	font-size: 1.2rem;
	transform: translateX(0);
	transition: transform 0.2s ease;
}
:nth-child( 2 of .explore-further-child ) .explore-further-link a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
}
:nth-child( 2 of .explore-further-child ) .explore-further-link a:hover .arrow-button {
	  transform: translateX(4px);
}
@media screen and (max-width: 991px) {
.explore-further-wrapper {
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  grid-gap: 25px;
}
}
@media (max-width: 767px) {
.explore-further-wrapper {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
}
