*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	padding: 0;
	background-color: #FFFFFF;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	color: #000;
}

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.clear {
	clear: both;
	line-height: 0;
	font-size: 0;
}

img {
	max-width: 100%;
	object-fit: cover;
}

a {
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

footer,
section {
	position: relative;
	z-index: 11;
}

@font-face {
    font-family: 'Times New Roman';
    src: url('../font/TimesNewRomanPSMT.woff2') format('woff2'),
        url('../font/TimesNewRomanPSMT.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	margin: 0;
	padding: 0;
	font-family: 'Heebo', sans-serif;
}

h1 {
	font-size: 35px;
	padding: 0 0 15px;
	color: #272727;
}


h2 {	
	font-size: 24px;
	color:#151227;
	font-weight: 400;
	line-height: 26px;
	padding-bottom: 15px;
}

h2 span {
	color: #19AD7D;
	font-weight: 900;
}

h3 {
	font-size: 14px;

}

p {
	margin: 0;
	padding: 0 0 12px 0;
	font-weight: 400;
	font-size: 15px;
	color: #313030;
}

p:last-child {
	padding-bottom: 0;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.image-overlay {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.object-fit {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.subheading {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 20px;
	padding-top: 65px;
	display: inline-block;
	position: relative;
}

.subheading.center {
	margin: 0 auto 20px;
	display: table;
	text-align: center;
}

.subheading:after {
	content: "";
	position: absolute;
	width: 39px;
	height: 39px;
	background: url(../img/subheading-icon.png) 0 0 no-repeat;
	left: 0;
	top: 0;
}

.subheading.center:after {
	left: 50%;
	transform: translate(-50%, 0);
}

@media(min-width: 768px) {

	h1 {
		font-size: 40px;
	}

	h2 {
		font-size: 32px;
	}

	p {
		font-size: 16px;
	}
}

@media(min-width: 1200px) {

	h1 {
		font-size: 40px;
		line-height: 1.3em;
	}

	h2 {
		font-size: 42px;
		line-height: 44px;
	}

	p {
		font-size: 17px;
	}
}

.btn {
    font-family: 'Inter', sans-serif;
    border: none;
    color: #fff;
    width: max-content;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn img {
	margin-right: 10px;
}

.btn-primary {
	background-color: #10AA7A;
	color: #fff;
}

.btn-secondary {
	background-color: #D8ED23;
	color: #181B02;
}

@media(min-width: 1200px) {
	.btn {
		padding: 14px 35px;
	}		 

	.btn-secondary:hover {
		background-color: #eafd49;
		color: #181B02;
	}

	.btn-primary:hover {
		background-color: #0e9168;
		color: #fff;
	}
}

.container {
	width: 100%;
	max-width: 1344px;
	margin: 0 auto;
	padding: 0 22px;
}

@media(min-width: 768px) {
	.container {
		padding: 0 52px;
	}
}

@media(min-width: 1200px) {
	.container {
		padding: 0 22px;
	}
}


/* input */

/* default text input style */

.form-col {
	display: inline-block;
	width: 100%;
	position: relative;
	margin-bottom: 12px;
}

.form-col span {
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translate(0, -50%);
}

.form-col .btn {
	margin-top: 12px;
}

textarea {
	border-radius: 4px;
    padding: 14px 60px 14px 20px;
    display: block;
    width: 100%;
    height: 117px;
    resize: none;
    outline: none;
    font-size: 15px;
    color: #fff;
    background-color: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.24);
}

[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
    border-radius: 4px;
    padding: 14px 60px 14px 20px;
    display: block;
    width: 100%;
    height: 55px;
    outline: none;
    font-size: 15px;
    color: #fff;
    background-color: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.24);
}

input::placeholder,
textarea::placeholder {
	opacity: 1;
	color: #fff;
}

input:focus,
textarea:focus {
	outline: none;
	box-shadow: none;
	border: 1px solid #d8ed23;
}

/* header */

.header-top {
	background: #fff;
}

.page-header {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 999;
	left: 0;
}

.page-header.small {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 999;
	left: 0;
}

.page-header.small .header-top {
	position: absolute;
	top: -200px;
}

.header-top-wrap {
	padding: 10px 0;
	text-align: center;
}

.header-top-wrap .btn {
	font-size: 10px;
	padding: 5px 15px;
	text-transform: capitalize;
}

.header-top-wrap p {
	font-size: 12px;
	color: #0E1133;
	font-weight: 500;
}

.header-top-wrap p span {
	color: #10AA7A;
}

.header-top-left-col {
	display: flex;
	align-items: center;
	width: max-content;
	margin: 0 auto;
	padding-bottom: 4px;
}

.header-top-left-col img {
	width: 18px;
	height: 18px;
	margin-left: 5px;
}

.headre-bottom {
	background-color: #051A22;
	padding: 10px 0;
}

.headre-logo {
	width: 50px;
}

.hamburger {
	position: relative;
}

.hamburger .line{
	width: 25px;
	height: 2px;
	background-color: #ecf0f1;
	display: block;
	margin: 8px 0 0;
	transition: all 0.3s ease-in-out;
  }

  .hamburger .line:first-child {
	margin-top: 0;
  }
  
  .hamburger:hover{
	cursor: pointer;
  }

  
#hamburger-9{
	position: relative;
	transition: all 0.3s ease-in-out;
  }
  
  #hamburger-9.is-active{
	transform: rotate(45deg);
  }
  
  #hamburger-9:before{
	content: "";
	position: absolute;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 37px;
	height: 37px;
	border: 5px solid transparent;
	top: -5px;
	left: -8px;
	border-radius: 100%;
	transition: all 0.3s ease-in-out;
  }
  
  #hamburger-9.is-active:before{
	border: 2px solid #ecf0f1;
  }
  
  #hamburger-9.is-active .line{
	width: 20px;
  }
  
  #hamburger-9.is-active .line:nth-child(2){
	opacity: 0;
  }
  
  #hamburger-9.is-active .line:nth-child(1){
	transform: translateY(13px);
  }
  
  #hamburger-9.is-active .line:nth-child(3){
	transform: translateY(-7px) rotate(90deg);
  }

  .headre-bottom-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
  }

  .headre-nav-wrap {
	position: fixed;
	left: -100%;
	top: 150px;
	width: 300px;
	height: 100%;
	background-color: #051A22;
	padding: 40px;
	z-index: 999;
	transition: all 0.3s ease-in-out;
}

.small .headre-nav-wrap {
	top: 89px;
}

.headre-nav-wrap.is-open {
	left: 0;
}

.headre-nav-wrap ul {
	padding-bottom: 25px;
}

.headre-nav-wrap ul li a {
	color: #FFFFFF;
	font-size: 15px;
	font-weight: 600;
	line-height: 26px;
	text-transform: uppercase; 
	display: inline-block;
	width: 100%;
	padding: 8px 0;
	margin-top: 5px;
	padding-left: 10px;
}

.headre-nav-wrap ul li.active a {
	border-left: 6px solid #10AA7A;
	background: rgba(255, 255, 255, 0.15);
}

@media(min-width: 768px) {

	.headre-logo {
		width: 64px;
	}

	.headre-nav-wrap {
		top: 154px;
	}

	.small .headre-nav-wrap {
	    top: 110px;
	}

	.header-top-left-col {
		margin: 0;
		padding-bottom: 0px;
	}

	.header-top-wrap p {
		width: max-content;
		padding: 0 0 0 5px;
	}

	.header-top-wrap {
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

@media(min-width: 1200px) {

	.headre-bottom {
		padding: 0 0;
	}

	.small .headre-nav-wrap {
	    top: 0;
	}

	.header-top-wrap .btn {
		font-size: 12px;
	}

	.header-top-left-col img {
		margin-left: 8px;
	}

	.header-top-wrap p {
		padding: 0 0 0 8px;
	}

	.header-top-wrap {
		padding: 16px 0;
	}

	#hamburger-9 {
		display: none;
	}

	.headre-nav-wrap {
		position: relative;
		left: 0%;
		top: 0;
		width: auto;
		height: auto;
		background-color: transparent;
		padding: 0px;
	}

	.headre-nav-wrap ul {
		padding-bottom: 0;
		display: flex;
	}

	.headre-nav-wrap {
		display: flex;
		align-items: center;
	}

	.headre-nav-wrap .btn {
		margin-left: 60px;
	}

	.headre-nav-wrap ul li a {
		padding: 47px 33px;
		position: relative;
		margin: 0;
	}

	.small .headre-nav-wrap ul li a {
		padding: 32px 33px;
	}

	.small .headre-logo {
	    width: 54px;
	}

	.headre-nav-wrap ul li.active a {
		border: none;
	}

	.headre-nav-wrap ul li.active a::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 6px;
		background-color: #10AA7A;
	}

	.headre-nav-wrap ul li a:hover {
		color: #10AA7A;
	}
}

/* headre end */

/* banner */

.banner {
    position: relative;
    z-index: 1;
    margin-top: 157px;
}

.banner .image-overlay {
	z-index: -2;
}

.banner-content {
	padding: 50px 0 200px;
}

.banner-content h5 {
	color: #070320;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2.96px;
	font-family: 'Inter', sans-serif;
	padding: 0 0 10px;
	text-transform: uppercase;
}

.banner-content h1 {
	font-weight: 400; 
	color: #151227; 
	letter-spacing: 2.8px; 
	font-family: 'Heebo', sans-serif;
	text-transform: uppercase;
}

.banner-content h1 span {
	font-weight: 900; 
}

.banner-content p {
	color: #111;
	font-weight: 400;
	padding: 0 0 20px;
}

.banner-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1;
}

.banner-image {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 250px;
	z-index: -1;
}


@media(min-width: 768px) {
	.banner {
	    margin-top: 154px;
	}

	.banner-content {
		padding: 80px 0;
	}

	.banner-content {
		width: 54%;
	}

	.banner-image {
		top: 66px;
		width: 360px;
	}

	.banner-wrap {
		position: relative;
	}
}

@media(min-width: 1200px) {
	.banner {
	    margin-top: 180px;
	}

	.banner-wrap {
		position: relative;
		height: calc(100vh - 180px);
		display: flex;
		align-items: center;
	}

	.banner-content h5 {
		font-size: 16px; 
		letter-spacing: 4.96px; 
		padding: 0 0 23px;
	}

	.banner-content h1 {
		font-size: 56px;
		line-height: 71px; 
	}

	.banner-content h1 span {
		font-size: 85px; 
	}

	.banner-content p {
		font-size: 18px;
	}

	.banner-content {
		width: calc(50% - 50px);
		padding: 50px 0;
	}

	.banner-image {
		top: 50%;
		width: 500px;
		transform: translate(0% , -50%);
	}


	.vert-move {
		-webkit-animation: mover 1s infinite  alternate;
		animation: mover 1s infinite  alternate;
	}
	@-webkit-keyframes mover {
		0% { transform: translateY(0); }
		100% { transform: translateY(-15px); }
	}
	
	.animation-text {
		display: inline-block;
		animation: texts 5s infinite  alternate;
	}
	@-webkit-keyframes texts {
		0% { color: #10AA7A; }
		50% { color: #C7D838; }
		100% { color: #051A22; }
	}


}

@media(min-width: 1920px) {
	.banner-image {
		top: 0;
		right: 0px;
		width: 50%;
		position: relative;
		transform: translate(0% , 0%);
	}

	.banner-image img {
		max-width: 864px;
	}

	.banner {
		overflow: hidden;
	}
}

/* banner end */

/* product-section */

.product-section {
	padding: 0 0 50px;
}

.product-cards {
	border-radius: 18px;
	border: 1px solid #EDEDED;
	background: #FFF;
	box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.12); 
	padding: 30px;
	margin-top: 20px;
}

.product-cards-image {
	height: 55px;
	margin-bottom: 30px;
}

.product-cards-content p {
	font-size: 17px; 
	font-weight: 400; 
	color: #313030; 
}

.product-cards-heading {
	width: 100%;
	max-width: 869px;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 10px;
}

@media(min-width: 768px) {
	.product-section {
		padding: 0 0 80px;
	}

	.flex-row {
		display: flex;
	}

}

@media(min-width: 1200px) {

	.product-cards {
		margin-top: 0px;
		padding: 34px 34px 70px 36px;
		height: 100%;
	}

	.product-section {
		padding: 0 0 130px;
	}

	.product-cards-image {
		margin-bottom: 36px;
	}

	.product-cards-heading {
		padding-bottom: 50px;
	}

}


/* product-section end */

/* number-counter */

.number-counter {
	background-color: #10AA7A;
	background-image: url(../img/number-counter-bg.jpg);
	padding: 50px 0;
	position: relative;
	z-index: 1;
}

.counter {
	width: 93px;
	height: 93px;
	position: relative;
	color: #FFF;
	font-size: 42px;
	line-height: 28px;
	font-family: 'Times New Roman';
	font-weight: 700; 
	display: flex;
	align-items: center;
	justify-content: end;
	z-index: 1;
}

.counter::before {
	content: '';
	width: 70px;
	height: 70px;
	background: linear-gradient(156deg, #27DEBF -0.9%, rgba(39, 222, 191, 0.00) 89.77%);
	position: absolute;
	top: 8px;
	left: 0;
	border-radius: 50%;
	z-index: -1;
}

.number-counter-col {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 15px;
}

.number-counter-col h4 {
	width: calc(100% - 93px);
	color: #FFF;
	font-size: 17px;
	font-weight: 500;
	line-height: 28px;
	letter-spacing: 1.19px; 
	padding-left: 44px;
}

.counter-plus::after {
	content: '+';
	position: absolute;
	top: 32px;
	right: -30px;
}

.counter-percentage::after {
	content: '%';
	position: absolute;
	top: 32px;
	right: -38px;
} 

.number-counter .banner-wave {
	bottom: unset;
	top: 0;
}

.number-image-overlay-right,
.number-image-overlay-left {
	display: none;
}

@media(min-width: 1200px) {

	.number-counter {
		padding: 64px 0;
	}

	.number-counter-col h4 {
		padding-left: 49px;
	}

	.number-counter-col {
		margin-top: 0px;
		border-left: 1px solid rgba(255, 255, 255, 0.53);
		padding-left: 80px;
	}

	.counter::before {
		content: '';
		width: 92px;
		height: 92px;
		top: 0;
		left: 0;
	}

	.border-none {
		border: none;
		padding-left: 0;
	}

	.number-image-overlay-right,
	.number-image-overlay-left {
		display: block;
		position: absolute;
	}

	.number-image-overlay-left {
		left: 0;
		bottom: 0;
	}

	.number-image-overlay-right {
		right: 0;
		bottom: 0;
	}

}

/* number-counter end */

.about-block {
	padding: 60px 0;
	position: relative;
}

.about-block-left {
	width: 100%;
	height: 335px;
	margin: 25px auto 0;
	position: relative;
	border-radius: 30px;
	background: rgb(39,222,191);
	background: linear-gradient(0deg, rgba(39,222,191,0) 0%, rgba(25,190,149,0.21332282913165268) 64%, rgba(16,170,122,1) 100%);
	display: table;
	max-width: 331px;
}

.about-block-left img {
    position: absolute;
    left: -25px;
    top: 40px;
    width: 375px;
    max-width: unset;
}

.about-block ul {
	padding: 0;
	margin: 15px 0 35px;
}

.about-block ul li {
	position: relative;
	padding-left: 33px;
	font-size: 14px;
	font-weight: 400;
	color: #313030;
	margin-bottom: 15px;
}

.about-block ul li:after {
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
	width: 16px;
	height: 16px;
	background: url(../img/checkbox-icon.png) 0 0 no-repeat;
}


@media(min-width: 768px) {
	.about-block {
		padding: 80px 0;
	}

	.about-block-left {
	    height: 495px;
	    max-width: 481px;
	}

	.about-block-left img {
	    left: -35px;
	    width: 555px;
	}

	.about-block ul li {
		font-size: 15px;
	}
}

@media(min-width: 1200px) {
	.about-block {
		padding: 130px 0;
	}

	.about-block-flex {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-direction: row-reverse;
	}

	.about-block-right {
	    width: calc(100% - 595px);
	    padding-left: 130px;
	    max-width: 693px;
	}

	.about-block-left img {
	    left: -91px;
	    width: 715px;
	    top: 68px;
	}

	.about-block-left {
		width: 595px;
		height: 603px;
    	max-width: unset;
    	margin: 0;
	}

	.about-block ul li {
		font-size: 17px;
	}
}


.page-footer {
	background: #10AA7A;
	position: relative;
}

.footer-top {
	position: relative;
}

.footer-top-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.footer-top-bg img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.footer-top-overlay {
	position: relative;
	padding: 100px 0;
	z-index: 1;
	background: rgb(66 207 146 / 69%);
}

.footer-top-left {
	margin-bottom: 30px;
}

.footer-top-left h2,
.footer-top-left p,
.footer-top-left .subheading {
	color: #fff;
}

.footer-top-left h2 span {
	color: #4CE691;
}

.footer-top-left .subheading:after {
	background: url(../img/footer-subheading-icon.png) 0 0 no-repeat;
}

.footer-bottom p {
	color: #fff;
	text-align: center;
	padding: 0;
}

.footer-bottom {
	background: #021215;
	padding: 22px 0;
	position: relative;
	z-index: 1;
}

.footer-bottom:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 46px;
    top: -45px;
    left: 0;
    background: url(../img/footer-bottom-scratch.png) 0 0 no-repeat;
}

.footer__cta_wrapper {
	padding: 20px 34px;
	background: #086044;
	border-radius: 20px;
	position: relative;
}

.footer__cta_wrapper:before {
    content: "";
    position: absolute;
    width: 100%;
    top: -18px;
    height: 100%;
    right: 0;
    background: url(../img/footer__cta_wrapper_bg-light.png) top right no-repeat;
    z-index: -1;
    transition: all ease 0.3s;
    border-radius: 82px 0 0 0;
}

.footer__cta_wrapper-heading h2 {
	line-height: 33px;
}

.footer__cta {
    margin-bottom: -60px;
    z-index: 111;
}

.footer__cta_wrapper-heading h2,
.footer__cta_wrapper-heading h2 span {
	color: #fff;
}

.footer__cta_wrapper-text a {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	position: relative;
	padding-left: 55px;
	display: block;
}

.footer__cta_wrapper-text {
	margin-top: 25px;
}

.footer__cta_wrapper-text a:after {
	content: "\f095";
	font-family: "Font Awesome 6 Free";
	position: absolute;
	left: 0;
	font-weight: 700;
	top: 10px;
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #fff;
}

.footer__cta_wrapper-text a:hover:after {
	background: #82FFD8;
	border: 1px solid #82FFD8;
	color: #086044;
}

.footer__cta_wrapper-text a:hover span {
	color: #82FFD8;
}

.footer__cta_wrapper-text a span {
	font-size: 24px;
	display: block;
	font-weight: 700;
}

.page-footer:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 46px;
    top: 0;
    left: 0;
    background: url(../img/footer-top-scratch.png) 0 0 no-repeat;
    z-index: 1;
}

@media(min-width: 768px) {
	.footer-top-overlay {
		padding: 150px 0 100px;
	}

	.footer__cta_wrapper-heading h2 {
		line-height: 44px;
	}

	.footer__cta {
	    margin-bottom: -90px;
	}
}


@media(min-width: 1200px) {
	.footer-top-flex {
		display: flex;
		justify-content: space-between;
	}

	.footer-top-left {
		width: 40%;
		max-width: 515px;
	}

	.footer-top-right {
	    width: 60%;
	    max-width: 684px;
	    padding-left: 30px;
	}

	.footer-top-overlay {
		padding: 231px 0 160px;
	}

	.footer-bottom p {
		font-size: 18px;
	}

	.footer-bottom {
		padding: 36px 0;
	}

	.footer__cta_wrapper {
	    display: flex;
	    justify-content: space-between;
	    background: transparent;
	    padding: 100px 50px 68px 66px;
	    max-width: 1293px;
	    margin: 0 auto;
	    min-height: 271px;
	}

	.footer__cta_wrapper:after {
	    content: "";
	    position: absolute;
	    width: 100%;
	    top: -18px;
	    height: 100%;
	    right: 0;
	    background: url(../img/footer__cta_wrapper_bg-dark.png) top right no-repeat;
	    z-index: -1;
	    border-radius: 82px 0 0 0;
	}

	.footer__cta_wrapper-text a {
	    font-size: 20px;
	    padding-left: 81px;
	}

	.footer__cta_wrapper-text a span {
	    font-size: 36px;
	}

	.footer__cta_wrapper-text a:after {
	    top: 5px;
	    width: 58px;
	    height: 58px;
	}

	.footer__cta_wrapper-text {
	    margin-top: 0;
	    width: 390px;
	}

	.footer__cta_wrapper-heading {
		width: calc(100% - 390px);
		max-width: 691px;
	}

	.footer__cta {
	    margin-bottom: -150px;
	}

	.footer__cta_wrapper:hover:before {
		transform: rotate(-2deg);
	}
}

.logo-carousel {
	padding: 60px 0 80px;
}

.logo-carousel-heading {
	text-align: center;
	max-width: 869px;
	margin: 0 auto 32px;
}

.logo-carousel-heading h2 span {
    color: #4CE691;
}

.logo-carousel-heading .subheading:after {
    background: url(../img/footer-subheading-icon.png) 0 0 no-repeat;
}

.logo-carousel-slider .slick-track {
	display: flex;
}

.logo-carousel-slider.slick-initialized .slick-slide {
	height: auto;
	margin: 0 10px;
}

.logo-carousel-slider.slick-initialized .slick-slide div {
	height: 100%;
}

.logo-carousel-slider {
	padding-bottom: 100px;
}

.logo-carousel-item {
	padding: 20px 15px;
	border: 1px solid #E2E1E1;
	height: 100%;
	display: flex !important;
	align-items: center;
	justify-content: center;
}

@media(min-width: 1200px) {
	.logo-carousel-heading {
		margin: 0 auto 64px;
	}

	.logo-carousel {
		padding: 130px 0;
	}

	.logo-carousel-slider {
	    padding: 0 78px;
	}

	.logo-carousel-slider .slick-arrow {
		bottom: unset;
		top: 50%;
		transform: translate(0, -50%);
		margin: 0 !important;
	}

	.logo-carousel-slider.slick-initialized .slick-slide {
	    margin: 0 15px;
	}

	.logo-carousel .container {
		max-width: 1524px;
	}

	.logo-carousel-slider .slick-prev {
	    left: 17px;
	}

	.logo-carousel-slider .slick-next {
	    right: 17px;
	    left: unset;
	}
}

.modal .close {
    position: absolute;
    padding: 0;
    background: transparent;
    border: none;
    color: #000;
    font-size: 34px;
    opacity: 1;
    top: 14px;
    right: 30px;
}

.modal .modal-content {
	padding: 54px 40px 35px;
	border-radius: 12px;
}

.modal .modal-dialog {
	max-width: 567px;
	border-radius: 12px;
}


.modal [type="text"],
.modal textarea {
    border: 1px solid #ECECEC;
    color: #020E1D;
}

.modal .form-col {
    margin-bottom: 15px;
}

.modal.show {
	z-index: 999999;
}

.modal [type="text"]::placeholder,
.modal textarea::placeholder {
	color: #020E1D;
	opacity: 1;
}

.modal h2 {
	text-align: center;
	font-size: 27px;
	font-weight: 700;
	color: #020E1D;
	padding-bottom: 5px;
}

.modal p {
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	color: #111111;
	padding-bottom: 33px;
	max-width: 356px;
	margin: 0 auto;
}

.modal .btn {
	margin: 5px auto 0;
	display: table;
}