/* fonts */
@font-face { font-family: 'Poppins'; src: url('../fonts/Poppins-Regular.ttf'); }
@font-face { font-family: 'Poppins Medium'; src: url('../fonts/Poppins-Medium.ttf'); }
@font-face { font-family: 'Poppins Semi-Bold'; src: url('../fonts/Poppins-SemiBold.ttf'); }
@font-face { font-family: 'Poppins Bold'; src: url('../fonts/Poppins-Bold.ttf'); }
@font-face { font-family: 'Poppins Black'; src: url('../fonts/Poppins-Black.ttf'); }
@font-face { font-family: 'ABeeZee Italic'; src: url('../fonts/ABeeZee-Italic.ttf'); }
@font-face { font-family: 'Inter'; src: url('../fonts/Inter-Regular.ttf'); }
@font-face { font-family: 'Inter Medium'; src: url('../fonts/Inter-Medium.ttf'); }
@font-face { font-family: 'Inter Semi-Bold'; src: url('../fonts/Inter-SemiBold.ttf'); }
@font-face { font-family: 'Inter Bold'; src: url('../fonts/Inter-Bold.ttf'); }
@font-face { font-family: 'Nunito Bold'; src: url('../fonts/Nunito-Bold.ttf'); }
/* */

/* Common Css */
*, :after, :before {
  box-sizing: border-box;
}

a:focus,
a:hover {
	text-decoration: none;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
	font-family: 'Nunito Bold';
}

ul, ol {
	list-style-type: none;
	margin: 0px;
	padding: 0;
}

a {
	-webkit-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	text-decoration: none;
}

a:focus, a:hover {
	text-decoration: none;
}

img {
  max-width: 100%;
}

body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: #222;
}

p{
	margin: 0px;
}

span{
	display: inline-block;
}

.common-btn{
	padding: 0px;
	background-color: transparent;
	border: 2px solid;
	border-radius: 100px;
	padding: 8px 18px;
	min-width: 120px;
	display: flex;
  align-items: center;
  justify-content: center;
}

.main-title{
  font-size: 48px;
  line-height: 54px;
	margin-bottom: 25px;
}

.btn-blue-bg{
	background-color: #023e7d;
	color: #fff;
	border-color: #023e7d;
}

.btn-blue-bg:hover{
	background-color: #fff;
	color: #023e7d;
}

.btn-green-bg{
	background-color: #78dcd0;
	color: #fff;
	border-color: #78dcd0;	
}

.btn-green-bg:hover{
	background-color: #fff;
	color: #78dcd0;
}

.section-head-center{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.section-title{
	font-size: 38px;
	line-height: 44px;
	margin-bottom: 15px;
}

.section-sub-text{
	font-size: 18px;
	line-height: 26px;
	font-family: 'Poppins Medium';
}

.bg-color{
	background-color: #f3f7fd;
	/* position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 55px;
	right: 55px;
	border-radius: 20px; */
}

.highlight-text{
	font-family: 'Poppins Bold';
	color: #023e7d;
}

.highlight-text:hover{
	color: #78dcd0;
}

.alt-bg-color{
	background-color: rgb(120 220 208/20%);
}
/* */

/* header */
.main-menu-wrapper{
	padding: 12px 18px;
}

.main-menu-wrapper .navbar-brand{
  padding: 0;
  margin: 0 40px 0 0;
  width: 220px;
}

.btn-close {
  display: none;
}

.main-menu .navbar-nav .nav-item{
	display: flex;
}

.main-menu .navbar-nav .nav-item:not(:last-child){
	margin-right: 15px;
}

.main-menu .navbar-nav .nav-item.dropdown .dropdown-menu{
	margin-top: 8px;
	border-radius: 10px;
	background-color: #ffffff;
	box-shadow: 0 0px 50px 0 rgb(0 0 0 / 15%);
	border: 0px;
}

.main-menu .navbar-nav .nav-item.dropdown .dropdown-menu:before{
	content: '';
	position: absolute;
	top: -8px;
	left: 10px;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #ffffff;
}

.main-menu .navbar-nav .nav-item.dropdown .dropdown-menu li .dropdown-item{
	font-size: 15px;
}

.main-menu .navbar-nav .nav-item.dropdown .dropdown-menu li .dropdown-item:active,
.main-menu .navbar-nav .nav-item.dropdown .dropdown-menu li .dropdown-item:hover{
	color: #fff;
	background-color: #78dcd0;
}

.main-menu .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle:after{
	border: 0;
	background-image: url(../images/dropdon-icon.svg);
	background-repeat: no-repeat;
	background-position: right;
	width: 12px;
	height: 12px;
  margin-bottom: -5px;
}

.main-menu .navbar-nav .nav-item .nav-link{
	padding: 24px 8px;
	color: #000;
	position: relative;
	font-size: 15px;
}

.main-menu .navbar-nav .nav-item .nav-link:before{
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 0px;
	height: 2px;
	background-color: transparent;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
}

.main-menu .navbar-nav .nav-item .nav-link.active:before,
.main-menu .navbar-nav .nav-item .nav-link:hover:before{
	width: 100%;
	background-color: #78dcd0;
}

.main-menu .navbar-nav .nav-item .nav-link.active,
.main-menu .navbar-nav .nav-item .nav-link:hover{
	color: #78dcd0;
}

.menu-right-side{
  display: flex;
  align-items: center;
  padding: 0;
  border-radius: 30px;
}

.mobile-menu-right-side{
	display: none;
}

.banner_text {
    display: flex;
    justify-content: center;
}

.home.alert {
    margin-bottom: 0;
    text-align: center;
    padding: 8px;
    color: #fff;
    background: #0c84c8;
    border: none !important;
    border-radius: 0 !important;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home.alert-dismissable .close, .alert-dismissible .close {
    position: absolute;
    top: 5px;
    right: 4px;
    color: #fff;
    background: transparent;
    border: 0 !important;
}

.home.alert p {
    font-size: 16px;
}

.psgTimer {
    display: table;
    font-size: 0;
    font-family: 'Roboto', sans-serif;
}
.psgTimer_numbers>div, .psgTimer_labels>div {
    display: inline-block;
    font-size: 0;
    width: 60px;
    text-align: center;
}
.psgTimer_numbers>div {
    position: relative;
}
.psgTimer_numbers>div>div:first-child {
    margin-right: 5px;
}

.psgTimer_numbers>div>div {
    display: inline-block;
    vertical-align: top;
    width: 35px;
    height: auto;
    line-height: 30px;
    background: #21272C;
    box-shadow: 0px 4px 8px rgb(0 0 0 / 20%);
    border-radius: 6px;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    color: #FFD631;
}

.psgTimer_numbers>div.days:after,
.psgTimer_numbers>div.hours:after,
.psgTimer_numbers>div.minutes:after {
    content: ":";
    line-height: normal;
    height: auto;
    display: block;
    font-weight: bold;
    font-size: 24px;
    color: #21272C;
    position: absolute;
    top: 0;
    right: -4px;
}


.menu-right-side a,
.menu-right-side .search-icon-wrapper{
  width: 40px;
  height: 40px;
  border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-right-side a img{
	width: 50%;
	height: 50%;
}

.menu-right-side .search-icon-wrapper{
	position: relative;
}

.menu-right-side a svg,
.menu-right-side .search-icon-wrapper .search-icon svg{
	width: 20px;
	height: 20px;
}

.menu-right-side a.user-icon{
	margin-right: 10px;
	position: relative;
    text-transform: uppercase;
}

.menu-right-side a.user-icon:before{
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 60%;
  background-color: #023e7d;
}

.menu-right-side a.user-icon svg path{
	fill: #023e7d;
}

.menu-right-side .search-icon-wrapper .search-icon svg path{
	fill: #023e7d;
}

.sticky-on .main-menu-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  -webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
  box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
  -webkit-animation: sticky 1.2s;
  animation: sticky 1.2s;
  background-color: #fff;
  padding: 0px 18px;
}

.sticky-on .main-menu-wrapper .navbar-brand{
  width: 200px;
}

.sticky-on .main-menu .navbar-nav .nav-item .nav-link{
	padding: 20px 8px;
}

.search-icon-wrapper .search-toggle .search-icon{
    width: 20px;
	border: 0px;
	padding: 0px;
	background-color: transparent;
}
.search-icon-wrapper .search-container .autocomplete-items div a .badge {
    color: #023e7d !important;
}

.search-icon-wrapper .search-toggle .icon-search img{
	width: 100%;
	height: 100%;
}

.search-icon-wrapper .search-toggle .icon-close img{
	width: 45%;
	height: 45%;
}

.search-icon-wrapper .search-container .search-icon img{
	width: auto;
	height: auto;	
}

.search-toggle .search-icon.icon-close,
.search-toggle.opened .search-icon.icon-search{
  display: none;
}

.search-toggle.opened .search-icon.icon-close{
	display: inline-block;
}

.search-icon-wrapper .search-container {
  position: relative;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
	height: 0;
	overflow: hidden;
}

.search-icon-wrapper .search-container {
	position: absolute;
	right: 10px;
	top: 52px;
}

.search-icon-wrapper .search-container.opened{
	box-shadow: 0px 0 7px 7px rgb(2 62 125/7%);
	border-radius: 10px;
	padding: 8px 15px;
	border: 2px solid #023e7d;
	background-color: #fff;
  z-index: 1;
  overflow: inherit;
}

.autocomplete-items a:hover {
    background: #e5ebf2;
    border-radius: 0px;
}

.search-icon-wrapper .search-container input[type="text"] {
	outline: none;
	font-size: 16px;
	margin: 0;
	width: 320px;
	border: 0;
	border-radius: 0;
	min-height: 40px;
	background-color: transparent;
	padding: 0 10px 0 0;
}

.search-icon-wrapper .search-container .search-icon {
  vertical-align: middle;
  width: 20px;
}

.search-icon-wrapper .search-container.opened {
  height: 60px;
}

.search-icon-wrapper .search-container form{
	display: flex;
	align-items: center;
}

.search-icon-wrapper .search-container .search-icon{
	background-color: transparent;
	border: 0px;
	padding: 0px;
}
/* */

/* banner section */
.banner-button-wrapper{
	display: flex;
	align-items: center;
	margin: 35px 0 0 0;
}

.banner-button-wrapper .btn-blue-bg{
	margin-right: 15px;
}

.banner-image{
	position: relative;
	width: 545px;
	height: 565px;
}

.banner-circle-content{
	width: 276px;
	height: 296px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
}

.circle-bg-clr .circle-bg{
  width: 60px;
  height: 60px;
  background-color: #023e7d;
  border: 2px solid #023e7d;
  border-radius: 50%;
  position: absolute;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.circle-bg-clr .circle-bg:hover{
	background-color: #fff;
	border-color: #78dcd0;
}

.built-template-desktop {
    position: relative;
}
.built-template-desktop .template-desktop {
    max-width: 100% !important;
    width: 100% !important;
}
.template-gif {
    position: absolute;
    left: 50%;
    top: 18px;
    width: calc(100% - 35px) !important;
    transform: translateX(-50%);
    height: calc(100% - 24.5%);
}

.circle-bg-clr .circle-bg img{
	width: 30px;
}

.circle-bg-clr.circle-section-1 .circle-bg img,
.circle-bg-clr.circle-section-5 .circle-bg img{
	width: 25px;
}

.circle-bg-clr .circle-bg .colored-icon{
	display: none;
}

.circle-bg-clr .circle-bg:hover .colored-icon{
	display: block;
}

.circle-bg-clr .circle-bg:hover .white-icon{
	display: none;
}

/* .circle-section-1 .circle-bg svg path.cls-1{
	fill: #fff;
}

.circle-section-1 .circle-bg:hover svg path.cls-1{
	fill: #023e7d;
}

.circle-section-2 .circle-bg svg .st0{
	stroke: #fff;	
}

.circle-section-2 .circle-bg svg .st1{
	fill: transparent;
}

.circle-section-2 .circle-bg:hover svg .st0{
	stroke: #023e7d;	
}

.circle-section-3 .circle-bg svg path.st0{
	fill: #fff;
	stroke: none;
}

.circle-section-3 .circle-bg svg .st1{
	fill: #fff;
}

.circle-section-3 .circle-bg:hover svg path.st0{
	fill: #023e7d;
}

.circle-section-3 .circle-bg:hover svg .st1{
	fill: #023e7d;
}

.circle-section-4 .circle-bg svg path.st0{
	fill: #fff;
	stroke: none;
}

.circle-section-4 .circle-bg svg .st1{
	fill: #fff;
}

.circle-section-4 .circle-bg:hover svg path.st0{
	fill: #023e7d;
}

.circle-section-4 .circle-bg:hover svg .st1{
	fill: #023e7d;
}

.circle-section-5 .circle-bg svg path.st0{
	stroke: #fff;
}

.circle-section-5 .circle-bg svg .st1{
	fill: #fff;
}

.circle-section-5 .circle-bg:hover svg path.st0{
	stroke: #023e7d;
}

.circle-section-5 .circle-bg:hover svg .st1{
	fill: #023e7d;
}

.circle-section-6 .circle-bg svg path.st0{
	stroke: #fff;
}

.circle-section-6 .circle-bg svg .st1{
	fill: #fff;
}

.circle-section-6 .circle-bg:hover svg path.st0{
	stroke: #023e7d;
}

.circle-section-6 .circle-bg:hover svg .st1{
	fill: #023e7d;
}

.circle-section-7 .circle-bg svg .st0{
	stroke: #fff;
}

.circle-section-7 .circle-bg svg .st1{
	fill: #fff;
}

.circle-section-7 .circle-bg:hover svg .st0{
	stroke: #023e7d;	
}

.circle-section-7 .circle-bg:hover svg .st1{
	fill: #023e7d;
} */

.circle-section-1 .circle-bg{
  top: 40px;
  left: 20px;
}

.circle-section-2 .circle-bg{
  top: -5px;
  left: 110px;
}

.circle-section-3 .circle-bg{
	top: 40px;
	right: 10px;
}

.circle-section-4 .circle-bg{
	bottom: 95px;
	right: -15px;
}

.circle-section-5 .circle-bg{
  bottom: 15px;
  right: 50px
}

.circle-section-6 .circle-bg{
  bottom: 15px;
  left: 55px;
}

.circle-section-7 .circle-bg{
	top: 140px;
	left: -5px;
}

.circle-bg{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.circle-bg svg{
	width: 32px;
	height: 32px;
}

.banner-circle-details{
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 42%;
	text-align: center;
}

.circle-section-1 .banner-circle-details{
	left: -70px;
	top: -15px;
}

.circle-section-2 .banner-circle-details{
	left: 75px;
	top: -85px;
}

.circle-section-3 .banner-circle-details{
	right: -70px;
	top: -45px;
}

.circle-section-4 .banner-circle-details{
	right: -125px;
	top: 125px;
}

.circle-section-5 .banner-circle-details{
  right: -25px;
  bottom: -55px;
}

.circle-section-6 .banner-circle-details{
	left: 10px;
	bottom: -80px;
}

.circle-section-7 .banner-circle-details{
	left: -115px;
	top: 135px;
}

.circle-title{
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 4px;
	text-transform: uppercase;
	color: #023e7d;
}

.banner-circle-details p{
	font-size: 12px;
	line-height: 18px;
/* 	display: -webkit-box;
	-webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; */
}

.review-prep-logo{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
  width: 170px;
  margin-left: 7px;
}

.review-prep-logo img{
	width: 100%;
}
/* */

/* why us */
.why-us-section{
	padding: 220px 0;
	position: relative;
	background-image: url('../images/shape-pattern-bg.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.resources-grid-wrapper{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 60px;
	align-items: stretch;
}

.resources-grid{
	width: 20%;
	padding: 40px 25px 80px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-shadow: 0px 25px 70px rgb(1 33 58 / 7%);
	margin: 0 15px;
	position: relative;
	background-color: #fff;
}

.resources-grid:nth-last-child(-n+3){
	margin-top: 40px;
}

.resource-grid-img{
	/* width: 120px;
	height: 120px;
	border-radius: 50%;
	box-shadow: 0px 25px 70px rgb(1 33 58 / 7%); 
	padding: 35px; */
	width: 55px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
}

.resource-grid-img img{
	width: 100%;
	height: 100%;
}

.resources-grid-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-title{
	margin-bottom: 15px;
}

.resources-grid-content p{
	color: #404046;
	font-size: 14px;
	line-height: 22px;
	margin-bottom: 25px;
}

.resources-grid-content .common-btn{
	position: absolute;
	bottom: 30px;
}

/* .resources-grid-content .btn-blue-bg{
	background-color: rgb(2 62 125/20%);
	color: rgb(2 62 125);
	border-color: transparent;
}

.resources-grid-content .btn-blue-bg:hover{
	background-color: rgb(2 62 125);
	color: #fff;
} */
/* */

/* counter section */
.certification-section{
	padding: 60px 0;
}

.certification-wrapper {
  display: flex;
  justify-content: space-between;
}

.certification-wrapper .certification-col:first-child{
	margin-left: 0px;
}

.certification-wrapper .certification-col:last-child{
	margin-right: 0px;
}

.certification-col {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 15px;
  box-shadow: 0px 25px 70px rgb(1 33 58 / 7%); 
  display: flex;
  flex-direction: column;
  align-items: center;
	width: 33%;
	margin: 0 15px;
}

.certification-badge{
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 25px;
	margin-bottom: 25px;
}

.prep-badge .certification-badge{
	background-color: #F4F4FC;
}

.prep-badge .certification-badge svg path{
	fill: #8989d7;
}

.review-badge .certification-badge{
	background-color: #FFE6DE;
}

.review-badge .certification-badge svg path{
	fill: #ef8c6d;
}

.information-badge .certification-badge{
	background-color: #EFFFD9;
}

.information-badge .certification-badge svg path{
	fill: #a4c777;
}

.certification-badge svg{
	width: 100%;
	height: 100%;
}

.certification-content{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.certification-content span{
	font-size: 32px;
	line-height: 38px;
	font-family: 'Poppins Bold';
	margin-bottom: 15px;
	color: #023e7d;
}

.certification-title{
	font-size: 24px;
	line-height: 32px;
}

.certification-description{
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	margin-top: 60px;
}

.certification-description .banner-button-wrapper{
	justify-content: center;
}

.certification-description .banner-button-wrapper .common-btn{
	margin: 0 10px;
	position: relative;
}

/* .certification-description .banner-button-wrapper .common-btn:hover{
  padding-right: 40px;
}

.certification-description .banner-button-wrapper .common-btn .arrow{
	position: absolute;
	right: 13px;
}

.certification-description .banner-button-wrapper .common-btn svg{
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
}

.certification-description .banner-button-wrapper .common-btn svg polygon{
	fill: #78dcd0;
}

.certification-description .banner-button-wrapper .common-btn:hover svg{
	width: 20px;
} */

.resources-grid-wrapper-section{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 60px;
	align-items: stretch;
}

.resources-grid-item{
	width: 20%;
	padding: 40px 25px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
  justify-content: center;
	text-align: center;
	/* box-shadow: 0px 5px 30px rgb(0 0 0 / 25%); */
	box-shadow: 0px 5px 20px rgb(0 0 0 / 6%);
	margin: 0 15px;
	position: relative;
	background-color: #fff;
	min-height: 220px;
	overflow: hidden;
}

.resources-grid-item:nth-last-child(-n+4){
	margin-top: 40px;
}

.resource-grid-top-sec .resource-title{
	margin-bottom: 0px;
	text-transform: uppercase;
	font-size: 18px;
	line-height: 26px;
}

.resource-img-wrap{
	position: relative;
	width: 120px;
	height: 70px;
	margin: 0 auto 25px;
}

.resource-img-wrap:before{
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	height: 2px;
	background-color:  #023e7d;
}

.resource-img-wrap img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.resource-grid-bottom-sec{
	position: absolute;
	transform: translateY(220px);
	opacity: 0;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 15px;
	height: 100%;
}

.resource-grid-bottom-sec:before{
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(2,62,125,0.9);
}

.resources-grid-item:hover .resource-grid-bottom-sec{
	transform: translateY(0);
	opacity: 1;
}

.resource-grid-bottom-sec p{
	color: #fff;
	font-size: 13px;
	line-height: 20px;
	margin-bottom: 18px;
	position: relative;
}

.resource-grid-bottom-sec .common-btn{
  font-size: 14px;
  line-height: 21px;
  position: relative;
  padding: 5px 14px;
}

.resource-grid-bottom-sec .common-btn.btn-green-bg:hover{
	background-color: rgb(120 220 208/70%);
	color: #fff;
}

.review-specifications img,
.certification-bottom-section img{
	width: 60%;
}

.certification-bottom-section .certification-image,
.free-personal-signature .review-specification-image{
	text-align: center;
}
/* */

/* feature slider */
.feature-preparation-journey{
	padding: 0px 0px 70px;
}

.feature-preparation-wrapper{
	display: flex;
	align-items: center;
}

.feature-preparation-wrapper .section-title{
	margin-bottom: 30px;
}

.feature-slider-left-side{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-preparation-wrapper .feature-slider-main{
	width: calc(100% - 300px);
}

.feature-slider-main .slick-list{
	padding: 50px 0px;
}

.feature-slider-wrapper .slick-slide .feature-slider{
	background-color: #F0F6FF;
	padding: 30px;
	margin: 0 12px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	box-shadow: 0px 5px 20px rgb(0 0 0 / 7%);
	/* box-shadow: 0px 25px 70px 0px rgba(0, 0, 0, 0.07); */
}

.feature-topic-title{
	font-size: 18px;
	line-height: 27px;
	margin-bottom: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.client-location-name{
	font-size: 16px;
	line-height: 24px;
	font-family: 'ABeeZee Italic';
	margin-bottom: 20px;
}

.client-description{
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 30px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.feature-slider .common-btn{
	font-size: 13px;
	padding: 5px 10px;
	min-width: 110px;
}

.feature-slider-wrapper .slick-arrow{
	width: 32px;
	height: 22px;
	border: 0;
	padding: 0;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	background-size: 32px;
	background-color: transparent;
	bottom: -30px;
}

.feature-slider-wrapper .slick-arrow.slick-prev{
	background-image: url('../images/slider-left-arrow.png');
	left: calc(50% - 45px);
}

.feature-slider-wrapper .slick-arrow.slick-next{
	background-image: url('../images/slider-right-arrow.png');
	right: calc(50% - 45px);
}

.slider-explore-button{
	display: flex;
	align-items: center;
	justify-content: center;
}
/* */

/* certification section */
.certification-list-wrapper{
	padding: 100px 0 0;
	position: relative;
}

/* .certification-list-wrapper:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
	background-image: url(../images/left-pattern.svg);
	background-repeat: no-repeat;
	background-position: left -50px center;
	background-size: 55%;
	z-index: -1;
}
 */
.certification-top-section{
	margin-bottom: 60px;
	padding-bottom: 60px;
	border-bottom: 1px solid #ccc;
}

.certification-top-section .row{
	align-items: center;
}

.certificate-listing{
	margin-top: 40px;
}

.certificate-listing ul{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: space-between;
}

.certificate-listing ul li{
	width: 48%;
	display: flex;
	margin-bottom: 20px;
	font-size: 18px;
	line-height: 26px;
}

.certificate-listing ul li:nth-last-child(-n+2){
	margin-bottom: 0px;
}

.certificate-listing ul li:nth-child(even){
	margin-left: 20px;
}

.certificate-listing ul li a{
	color: #023e7d;
	border-radius: 10px;
	background-color: #e5ebf2;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 10px;
}

.certification-bottom-section .row{
	align-items: center;
}

.common-specification-courses{
	margin: 25px 0 20px;
}

.common-specification-courses p{
	font-size: 14px;
	line-height: 24px;
}

.common-specification-courses p:not(:last-child){
	margin-bottom: 15px;
}

.certification-tag-line{
	display: inline-block;
	width: 100%;
}

.common-listng .banner-button-wrapper .common-btn:first-child{
	margin-right: 15px;
}
/* */

/* feature business */
.feature-business{
	padding: 70px 0px;
}

.feature-business .row{
	align-items: center;
}

.feature-business-lisiting {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-business-content ul{
	margin: 0 0 30px 0;
}

.feature-business-lisiting li:not(:last-child){
	margin-bottom: 12px;
}

.feature-business-lisiting li{
  padding: 0 0 0 30px;
  background-image: url(../images/colored-checkmark.svg);
  background-repeat: no-repeat;
  background-position: left 0 top 2px;
  background-size: 18px;
}

.feature-tag-line{
	font-family: 'Poppins Bold';
	margin-bottom: 30px;
}

.company-logo-circular {
	left: -16px;
	position: absolute;
	right: 0;
	top: -50px;
	transition: transform .4s cubic-bezier(0,-.26,1,.46);
	width: 100%;
}

/* */

/* hardwork */
.review-specifications{
  padding: 200px 0;
  position: relative;
  background-image: url(../images/shape-pattern-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hard-work-tag-line{
	margin-bottom: 40px;
}

.hard-work-wrapper .row{
	align-items: center;
}

.review-section{
	padding: 60px 0;
}

.review-section .row{
	align-items: stretch;
}

.hard-work-content .review-grid:nth-child(3){
	margin-bottom: 30px;
}

.review-grid{
	display: flex;
	align-items: center;
	flex-direction: row;
}

.review-wrapper {
  width: 100px;
  height: 100px;
  margin-right: 25px;
  box-shadow: 0px 25px 70px rgb(1 33 58 / 7%);
  background-color: #fff;
  padding: 25px;
  border-radius: 50%;
}

.review-content{
	width: calc(100% - 110px);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.review-text{
	margin-bottom: 10px;
	font-size: 20px;
	line-height: 24px;
	font-family: 'Poppins Semi-Bold';
}

.review-sub-text{
	font-family: 'ABeeZee Italic';
	font-size: 14px;
}

.hard-work-content{
	margin-bottom: 50px;
}

.hard-work-wrapper-section{
	padding-top: 40px;
}
/* */

/* review */
.reviewers-section-wrapper{
	padding: 70px 0;
	background-image: url('../images/review-bg.jpg');
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	background-size: cover;
}

.reviewers-section-wrapper:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(6,6,6,0.5);
}

.reviewers-mesage-wrapper{
	position: relative;
	padding-top: 60px;
}

.reviewers-mesage-wrapper .row{
	align-items: center;
}

.reviewers-mesage-wrapper .banner-button-wrapper{
	display: flex;
}
/* */

/* blog section */
.blog-section{
	padding: 0 0px 70px;
}

.blog-section .section-title{
	margin-bottom: 40px;
	text-align: center;
}

.blog-section .row .col-md-4 {
  align-items: stretch;
  display: flex;
}

.blog-grid{
	box-shadow: 0px 0px 20px 10px rgb(1 33 58 / 7%);
	padding: 20px 15px 30px;
	border-radius: 10px
}

.blog-img-wrapper{
 margin-bottom: 25px;
}

.blog-img-wrapper a{
  display: flex;
}

.blog-img-wrapper a img{
	border-radius: 10px;
	min-height: 180px;
	object-fit: cover;
}

.blog-content{
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	padding: 0 15px;
}

.blog-title{
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 10px;
}

.blog-title a{
	color: #023e7d;
}

.blog-title a:hover{
	color: #78dcd0;
}

.blog-date{
	font-size: 13px;
	line-height: 23px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	font-family: 'Poppins Bold';
}

.blog-date img{
  width: 15px;
  margin-right: 7px;
}

.blog-description{
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.common-btn.blog-btn{
	font-size: 13px;
	padding: 5px;
	min-width: 100px;
}
/* */

/* contact form */
.contact-form{
	padding: 70px 0px;
}

.contact-form .row{
	align-items: center;
}

.contact-form-section{
	background-color: #fff;
	box-shadow: 0px 25px 70px rgb(1 33 58 / 7%);
	padding: 40px;
	border-radius: 20px;
}

.contact-form-section .section-title{
	margin-bottom: 10px;
}

.sub-text{
	margin-bottom: 30px;
}

.contact-form-wrapper .form-group{
	position: relative;
}

.contact-form-wrapper .form-group:not(:last-child){
	margin-bottom: 20px;
}

.contact-form-wrapper .form-group .form-control{
 	border-radius: 30px;
 	min-height: 45px;
}
.contact-form-wrapper .form-group.select-interest{
  background-image: url(../images/dropdon-icon.svg);
  background-repeat: no-repeat;
  background-position: right 12px top 14px;
  background-size: 16px;
  background-color: #fff;
  border-radius: 30px;
  margin-bottom: 35px;
}

.contact-form-wrapper .form-group select{
  border: 1px solid #ced4da;
  border-radius: 30px;
  width: 100%;
  min-height: 45px;
  webkit-appearance:  none;
  appearance:  none;
  background-color: transparent;
  padding: 0 10px;
}
/* */

/* footer */
.footer{
	position: relative;
	padding: 200px 0px 30px;
}

.footer-bg-color{
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0;
	background-image: url('../images/footer-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	z-index: -1;
}

.footer-logo{
	display: flex;
	width: 170px;
	margin-top: -20px;
}

.footer-title{
	margin-bottom: 15px;
	color: #fff;
}

.footer-listing li{
	font-size: 14px;
	line-height: 24px;
	font-family: 'Nunito Bold';
}

.footer-listing li:not(:last-child){
	margin-bottom: 8px;
}

.footer-listing li a,
.footer-links li a{
	color: rgb(255 255 255/70%);
}

.footer-listing li a:hover,
.footer-links li a:hover{
	color: #78dcd0;
}

.footer-listing li a:hover{
	padding-left: 10px;
}

.footer_social li a {
    color: #FFFFFF;
    font-size: 28px;
}

.footer_social {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-icon-wrapper{
	display: flex;
	padding: 8px 16px;
    background-color: rgb(255 255 255/30%);
	border-radius: 10px;
	align-items: center;
}

.app-icon-wrapper:last-child{
	margin-top: 20px;
}

.app-icon{
	padding-right: 20px;
	display: flex;
	align-items: center;
	padding-bottom: 2px;
	width: 45px;
}

.app-content{
	text-align: left;
	padding-left: 20px;
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	text-transform: initial;
}

.app-content span{
	font-size: 12px;
	line-height: 16px;
	width: 100%;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
}

.app-content span.icon-font-bold{
	margin-top: 3px;
	font-size: 14px;
	line-height: 20px;
	font-family: 'Nunito Bold';
}

.copyright-section{
	padding-top: 20px;
	margin-top: 40px;
	border-top: 1px solid #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.copyright-text,
.footer-links li{
	font-size: 13px;
	line-height: 18px;
	color: #fff;
}

.footer-links{
	display: flex;
	align-items: center;
}

.footer-links li{
  font-family: 'Nunito Bold';
}

.footer-links li:first-child{
	margin-right: 10px;
}
/* */

/* keyframes */
@keyframes sticky{
	0% {
		top: -200px;
	}
	100% {
		top: 0;
	}
}

@keyframes spin { 
  100% { 
    transform: rotateZ(360deg); 
  }
}
/* */


