@import url("font/vazir.css");

/* ----- global ----- */

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'primary-font', 'segoe ui', tahoma;
	font-size: 0.875rem;
	background-color: #fff;
	color: #414141;
	position: relative;
	direction: rtl;
	text-align: right;
	overflow-x: hidden;
}

.wrapper {
	min-height: 80vh;
}

.wrapper h2 {
	text-align: center;
	margin-bottom: 1.5rem;
	color: #3bb37c;
	font-size: 1.5rem;
}

/* nav  */

.navbar {
	flex-direction: row-reverse;
	height: 90px;
	background-color: #2e4057;
}

.navbar-collapse {
    justify-content: flex-start;
}

.dropdown-menu {
    right: 0 !important;
	left: auto !important;
}

.dropdown-toggle::after {
    content: "";
    border: solid #fff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(45deg);
	vertical-align: .1em;
	margin-right: .1rem;
}

.dropdown-item {
	text-align: right;
    padding: .5rem;
	font-size: .85rem !important;
	color: #000 !important;
}

.dropdown-item {
	text-align: right;
    padding: .5rem;
	font-size: .85rem !important;
}

.navbar-nav .nav-link {
	color: #fff !important;
}

.header_logo {
	width: auto;
	height: 80px;
}

.header_logo img {
	height: 100%;
}

/* header */

header {
	height: calc(100vh - 90px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.down_arrow {
	position: absolute;
	bottom: 10px;
	width: 30px;
	height: 30px;
	left: calc(50% - 15px);
	font-size: 3rem;
	text-align: center;
	display: flex;
	align-items: center;
	animation: down_move infinite 2s ease-out;
	color: rgb(216, 216, 216);
}

header h1 {
	font-size: 1.5rem;
	color: #fff;
}

header h2 {
	font-size: 2.1rem;
	margin-bottom: 3rem;
	padding-bottom: 1rem;
	border-bottom: 6px solid #3bb37c;
	display: inline-block;
	color: #fff;
}

header p {
	font-size: 1rem;
	color: #fff;
	line-height: 2;
}

.header_cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.header_cards div {
	padding: 1.5rem 1rem;
	margin: .5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	position: relative;
}


.header_cards img {
	width: 80px;
}

.header_cards h5 {
	font-size: 1.1rem;
	font-weight: 500;
	margin-top: 1.5rem;
	color: #fff;
}

.wave {
	transform: rotate(180deg);
	height: 160px;
	width: 100%;
}


/* services */

.services {
	margin: 0 auto 1rem;
	background-color: #fff;
}

.services h2 {
	text-align: center;
	margin-bottom: 1.5rem;
	color: #3bb37c;
	font-size: 1.5rem;
}

.services .service {
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,.1);
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	padding: .3rem 1rem;
	position: relative;
	min-height: 230px;
}

.services .service::after {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	width: 160px;
	height: 100px;
	background-image: url(../img/icon.svg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: .15;
}

.services .service i {
	font-size: 3.2rem;
	margin: .5rem auto 1rem;
}

.services .service h6 {
	font-weight: bold;
	margin-bottom: 1rem;
	font-size: 1.1rem;
	color: #2e4057;
	text-align: center;
}

.service p {
	text-align: right;
}

/* process */

.process {
	background-color: #2e4057;
	background-image: url(../img/process-bg.svg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.process_container {
	margin: 3rem auto;
	padding: 1rem;
	position: relative;
}

.process_container h2 {
	color: #3bb37c;
	padding-right: 1rem;
	margin-top: 1rem;
	font-size: 1.5rem;
}

.process_info h5 {
	color: #fff;
	padding-right: 1rem;
	font-size: 1rem;
}

.process_info .process_bar {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 1.5rem;
}

.process_bar .process_item {
	display: flex;
	align-items: center;
	margin: 1rem 0;
}

.process_item p {
	margin: 0;
	color: #fff;
}

.process_item span {
	width: 40px;
	height: 40px;
	background-color: #fff;
	margin-left: 1rem;
	border-radius: 50%;
	border: 1px solid #3bb37c;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	position: relative;
	z-index: 1 !important;
}

.process_item:nth-of-type(1) span:after {
	content: '';
	position: absolute;
	bottom: -133%;
	left: calc(50% - 1px);
	border: 1px dashed #3bb37c;
	width: 2px;
	height: 50px;
	z-index: 0;
}

.process_item:nth-of-type(2) span:after {
	content: '';
	position: absolute;
	bottom: -133%;
	left: calc(50% - 1px);
	border: 1px dashed #3bb37c;
	width: 2px;
	height: 50px;
	z-index: 0;
}

.process_item h6 {
	color: #fff;
	font-weight: bold;
}

.process_image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}


/* success-roadmap */

.success-roadmap-container {
	margin-bottom: 4rem;
}

.success-roadmap-container h2 {
	text-align: center;
	color: #3bb37c;
	font-size: 1.5rem;
	margin-bottom: 2rem;
}

.success-roadmap-container p {
	width: 60%;
	text-align: center;
	margin: auto;
	font-size: 1rem;
}

.success-roadmap {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 0 0 1rem;
	margin-bottom: 3rem;
	margin-top: 4rem;
}

.roadmap-image {
	width: 360px;
	min-width: 360px;
	height: 360px;
	padding: 1rem;
	border-radius: 50%;
	border: 8px solid #3bb37c;
	position: relative;
}

.roadmap-image::after {
	content: '';
	position: absolute;
	top: -8%;
	left: -8%;
	width: 116%;
	height: 116%;
	border-radius: 50%;
	z-index: 0;
	border: 2px dashed #2e4057;
	transform: rotate(0);
	animation: rotate_move_reverse 100s infinite linear;
}

.roadmap-image::before {
	content: '';
	position: absolute;
	top: -16%;
	left: -16%;
	width: 132%;
	height: 132%;
	border-radius: 50%;
	z-index: 0;
	border: 2px dashed #2e4057;
	transform: rotate(0);
	animation: rotate_move 90s infinite linear;
}

.success-roadmap img {
	width: 130%;
	height: auto;
	object-fit: contain;
	z-index: 2;
	position: relative;
}

.roadmap {
	text-align: left;
	display: flex;
	height: 100px;
}

.roadmap span {
	position: absolute;
	background-color: #2e4057;
	color: #fff;
	border-radius: 3px;
	padding: .3rem 1rem;
	z-index: 10;
	box-shadow: 0 0 6px rgba(0,0,0,.2);
}

.roadmap span::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -90%;
	width: 105px;
	height: 1px;
	border: 1px dashed #999;
	z-index: 1;
}

.roadmap span::before {
	content: '';
	border: solid rgb(104, 103, 103);
	border-width: 0 3px 3px 0;
	display: inline-block;
	padding: 3px;
	transform: rotate(-45deg);
  	-webkit-transform: rotate(-45deg);
	position: absolute;
	top: 40%;
	right: -50%;
	z-index: 2;
}

.roadmap span:nth-of-type(1) {
	top: 0;
	left: 0;
}

.roadmap span:nth-of-type(2) {
	top: 0;
	left: 220px;
}

.roadmap span:nth-of-type(2)::after {
	right: -113%;
}

.roadmap span:nth-of-type(2)::before {
	right: -55%;
}

.roadmap span:nth-of-type(3) {
	top: 130px;
	left: 310px;
}

.roadmap span:nth-of-type(3)::after {
	content: '';
	position: absolute;
	top: -112px;
	right: 23%;
	width: 1px;
	height: 112px;
}

.roadmap span:nth-of-type(3)::before {
	content: '';
	position: absolute;
	top: 51%;
	right: 100%;
	width: 280px;
	height: 1px;
	border: 1px dashed #999;
	z-index: 1;
	display: inline-block;
	padding: 0;
	transform: rotate(0);
  	-webkit-transform: rotate(0);
}


.roadmap span:nth-of-type(4) {
	top: 230px;
	left: 0px;
}

.roadmap span:nth-of-type(4)::after {
	content: '';
	position: absolute;
	top: -83px;
	left: 28px;
	right: auto;
	width: 1px;
	height: 83px;
}

.roadmap span:nth-of-type(4)::before {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	top: -40px;
	left: 24px;
	right: auto;
}


.roadmap span:nth-of-type(5) {
	top: 330px;
	left: 80px;
	right: auto;
}

.roadmap span:nth-of-type(5)::after {
	content: '';
	position: absolute;
	top: -68px;
	left: -52px;
	right: auto;
	width: 1px;
	height: 89px;
}

.roadmap span:nth-of-type(5)::before {
	content: '';
	position: absolute;
	top: 64%;
	right: 100%;
	width: 50px;
	height: 1px;
	border: 1px dashed #999;
	z-index: 1;
	display: inline-block;
	padding: 0;
	transform: rotate(0);
  	-webkit-transform: rotate(0);
}

.roadmap span:nth-of-type(6) {
	top: 87.8%;
	right: auto;
	left: 35%;
}

.roadmap span:nth-of-type(6)::after {
	content: '';
	position: absolute;
	top: 53%;
	left: -149px;
	right: auto;
	width: 148px;
	height: 1px;
	border: 1px dashed #999;
	z-index: 1;
}

.roadmap span:nth-of-type(6)::before {
	left: -65%;
	right: auto;
	top: 43%;
}

.data {
	margin-bottom: 3rem;
	margin-top: 8rem;
	background-color: #2e4057;
	border-radius: 20px;
	box-shadow: 0 0 8px rgba(0,0,0,.2);
	padding: 1rem;
}

.data h2 {
	text-align: center;
	color: #3bb37c;
	margin-bottom: 2.5rem;
	margin-top: 1rem;
	font-size: 1.5rem;
}

.data .col-lg-3 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.data h4 {
	color: #3bb37c;
}


/* partners */

.partners {
	background-color: #eee;
	padding: 2rem 1rem;
}

.partners h2 {
	color: #3bb37c;
	text-align: center;
	font-size: 1.5rem;
}

.partners h6 {
	color: #2e4057;
	text-align: right;
	margin: 0;
	margin-top: 3rem;
	border-bottom: 2px solid #e6e6e6;
	padding-bottom: .5rem;
}

.partners .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;	
	padding: .5rem;
	margin: 1rem .5rem;
	border-radius: 5px;
	color: #2e4057;
	font-size: .8rem;
	text-decoration: none;
	transition: all .3s;
}

.partners .item:hover {
	background-color: rgb(243, 242, 242);
}

.partners img {
	height: 90px !important;
	width: auto;
	object-fit: contain;
	margin-bottom: .5rem;
}

.owl-carousel .owl-nav button.owl-next {
    position: absolute !important;
    font-size: 3rem !important;
    top: 30% !important;
	left: 0 !important;
}

.owl-carousel .owl-nav button.owl-prev {
    position: absolute !important;
    font-size: 3rem !important;
    top: 30% !important;
}

.owl-carousel button:focus {
    outline: none !important
}



/* footer */

footer {
	background-color: rgb(48, 48, 48);
	padding: 1rem;
}

.footer-links {
	padding: 1rem;
	padding-right: 2rem;
	padding-top: 2rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	border-left: 1px solid #5c5b5b;
}

.footer-links a {
	display: block;
	padding: .4rem;
	text-decoration: none;
	color: #fff;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 1rem;
	border-left: 1px solid #5c5b5b;
}

.footer-contact img {
	width: 120px;
}

.footer-contact div {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
	margin: .8rem;
	color: #fff;
}

.footer-contact div i {
	font-size: 1.3rem;
	margin: 0 .8rem;
	color: #3bb37c;
}

.footer-contact div p {
	margin: 0;
}

.footer-info {
	padding: 0;
	padding: 1rem;
	padding-top: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.footer-info div:first-of-type {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.footer-info div:first-of-type img {
	width: 120px;
	background-color: #fff;
	margin: 0 .5rem;
	padding: .5rem;
	border-radius: 5px;
	box-shadow: 0 0 4px rgba(255, 255, 255, 0.4)
}

.footer-info div:last-of-type {
	margin-top: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-info div:last-of-type a {
	font-size: 2rem;
	margin: 0 1rem;
	color: #fff;
}

.footer {
	background-color: rgb(7, 7, 7);
	padding: 0;
}

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

.to-top {
	position: fixed;
	width: 35px;
	height: 35px;
	color: #fff;
	background-color: #3bb37c;
	bottom: 15px;
	right: 15px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	padding-bottom: .2rem;
	box-shadow: 0 0 5px rgba(0,0,0,.3);
	opacity: 0;
	transform: translateY(200%);
	transition: all .3s;
	text-decoration: none;
}

.active_top {
	opacity: 1;
	transform: translateY(0);
}








@keyframes down_move {
	0%   {bottom: 10px; }
	50%  {bottom: 0px; }
	100% {bottom: 10px; }
}

@keyframes rotate_move {
	0%   { transform: rotate(0deg); }
	50%  { transform: rotate(180deg);}
	100% { transform: rotate(360deg); }
}

@keyframes rotate_move_reverse {
	0%   { transform: rotate(360deg); }
	50%  { transform: rotate(180deg);}
	100% { transform: rotate(0deg); }
}




@media (max-width: 990px) {
	body {
		overflow-x: hidden;
	}

	.navbar {
		flex-direction: row;
		height: auto;
	}
	
	.dropdown-menu {
		background-color: #2e4057;
	}
	.dropdown-item {
		color: #fff !important;
	}
	
	.header_logo {
		width: auto;
		height: 65px;
	}
	
	.header_logo img {
		height: 100%;
	}

	.navbar-toggler {
		color: #fff;
	}

	header {
		height: auto;
	}
	
	.down_arrow {
		display: none;
	}
	
	header h1 {
		font-size: 1rem;
		margin-top: 3rem;
	}
	
	header h2 {
		font-size: 1.3rem;
		margin-bottom: 1rem;
	}
	
	header p {
		line-height: 1.7;
		font-size: .9rem;
	}
	
	.header_cards div {
		padding: 1rem;
	}
	
	.header_cards img {
		width: 60px;
	}
	
	.header_cards h5 {
		font-size: .8rem;
	}
	
	.wave {
		margin-top: -1px;
	}
	
	.services .service img {
		width: 70px;
	}
	
	.process_container {
		margin: 2rem auto;
		padding: 1rem;
	}
	
	.process_bar .process_item {
		margin: 1rem 0;
	}
	
	.process_item span {
		min-width: 40px;
		margin-left: .5rem;
	}
	
	.process_item:nth-of-type(1) span:after {
		bottom: -185%;
		height: 70px;
	}
	
	.process_item:nth-of-type(2) span:after {
		bottom: -185%;
		height: 70px;
	}

	.success-roadmap-container {
		margin-bottom: 4rem;
	}

	.success-roadmap-container p {
		width: 90%;
		text-align: justify;
	}
	
	.success-roadmap {
		padding: 0 0 1rem;
		margin-bottom: 3rem;
		margin-top: 4rem;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	
	.roadmap-image {
		width: 220px;
		min-width: 220px;
		height: 220px;
		margin: auto;
	}
	
	.success-roadmap img {
		width: 100%;
		height: auto;
		object-fit: contain;
		z-index: 2;
		position: relative;
	}
	
	.roadmap {
		text-align: center;
		display: flex;
		flex-direction: column;
		height: auto;
		margin-top: 4rem;
		margin-bottom: 4rem;
	}
	
	.roadmap span {
		position: relative;
		width: 260px;
		margin: auto;
		padding: .6rem 1rem;
	}
	
	.roadmap span::after {
		bottom: -30px;
		top: auto;
		right: 50%;
		width: 1px;
		height: 30px;
	}
	
	.roadmap span::before {
		display: none;
	}
	
	.roadmap span:nth-of-type(1) {
		top: 0;
		left: 0;
	}
	
	.roadmap span:nth-of-type(2) {
		top: 30px;
		left: 0;
	}
	
	.roadmap span:nth-of-type(2)::after { right: 50%;}
	.roadmap span:nth-of-type(2)::before { display: none;}
	
	.roadmap span:nth-of-type(3) {
		top: 60px;
		left: 0;
	}
	
	.roadmap span:nth-of-type(3)::after {
		bottom: -30px;
		top: auto;
		right: 50%;
		width: 1px;
		height: 30px;
	}
	
	.roadmap span:nth-of-type(3)::before {
		display: none;
	}

	.roadmap span:nth-of-type(4) {
		top: 90px;
		left: 0px;
	}
	
	.roadmap span:nth-of-type(4)::after {
		bottom: -30px;
		top: auto;
		right: 50%;
		width: 1px;
		height: 30px;
	}
	
	.roadmap span:nth-of-type(4)::before {
		display: none;
	}
	
	.roadmap span:nth-of-type(5) {
		top: 120px;
		left: 0;
	}
	
	.roadmap span:nth-of-type(5)::after {
		display: none;
	}
	
	.roadmap span:nth-of-type(5)::before {
		bottom: -30px;
		top: auto;
		right: 50%;
		width: 1px;
		height: 30px;
	}
	
	.roadmap span:nth-of-type(6) {
		top: 150px;
		bottom: auto;
		left: 0;
	}
	
	.roadmap span:nth-of-type(6)::after {
		display: none;
	}
	
	.roadmap span:nth-of-type(6)::before {
		display: none;
	}
	
	.data {
		width: 90%;
	}
	
	.data .col-lg-3 {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		color: #fff;
		margin: .5rem auto;
	}

	.partners {
		padding: 1rem;
	}
	
	.partners h2 {
		margin-top: 1rem;
	}
	
	.partners h6 {
		color: #2e4057;
		text-align: right;
		margin: 0;
		margin-top: 3rem;
		border-bottom: 2px solid #e6e6e6;
		padding-bottom: .5rem;
	}
	
	.partners .item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;	
		padding: .5rem;
		margin: 1rem .5rem;
		border-radius: 5px;
		color: #2e4057;
		font-size: .8rem;
		text-decoration: none;
		transition: all .3s;
	}
	
	.partners .item:hover {
		background-color: rgb(243, 242, 242);
	}
	
	.partners img {
		height: 90px !important;
		width: auto;
		object-fit: contain;
		margin-bottom: .5rem;
	}
	
	.owl-carousel .owl-nav button.owl-next {
		position: absolute !important;
		font-size: 3rem !important;
		top: 30% !important;
		left: 0 !important;
	}
	
	.owl-carousel .owl-nav button.owl-prev {
		position: absolute !important;
		font-size: 3rem !important;
		top: 30% !important;
	}
	
	.owl-carousel button:focus {
		outline: none !important
	}


}





 /* ------------- virtual-office ------------- */

.office-services h2 {
	text-align: center;
	margin-bottom: 1.5rem;
	color: #3bb37c;
	font-size: 1.5rem;
}

.office-services h6 {
	color: #1A5FA1;
}

.virtual-office {
	padding: 1rem;
	margin: 1rem auto;
}

.virtual-office a {
	text-decoration: none !important;
}

.pack {
	background-color: #fff;
	box-shadow: 0 0 5px rgba(0,0,0,.2);
	border-radius: 10px;
	overflow: hidden;
	color: #333333;
}

.virtual-office a:nth-of-type(1) .pack {border: 1px solid #5ecd32;}
.virtual-office a:nth-of-type(1) .pack h5 {background-color:#5ecd32;}

.virtual-office a:nth-of-type(2) .pack {border: 1px solid #2320df;}
.virtual-office a:nth-of-type(2) .pack h5 {background-color:#2320df;}

.virtual-office a:nth-of-type(3) .pack {border: 1px solid #cb3535;}
.virtual-office a:nth-of-type(3) .pack h5 {background-color:#cb3535;}

.virtual-office h5 {
	text-align: center;
	font-size: 1rem;
	background-color: #2e4057;
	color: #fff;
	border-bottom: 1px solid #eee;
	padding: 1rem 0;
}

.pack-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: .5rem;
}

.pack-item div {
	flex: 4;
}

.pack-item h6 {
	color: #2e4057;
	font-size: .9rem;
	font-weight: bold;
}

.pack-item span {
	margin: 0;
	font-size: .8rem;
}

.pack-item img {
	width: 30px;
	height: auto;
	object-fit: cover;
}

.pack-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	background-color: #e6e6e6;
	padding: .5rem;
}

.pack-footer div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: .5rem;
}

.pack-footer h4, .pack-footer h6 {
	font-size: .8rem;
	color: #000;
}




 /* ------------- courses ------------- */

.courses h3 {
	font-size: 1.1rem;
	margin: 1.4rem 0;
}





 /* ------------- faq ------------- */


.faq h5 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	margin-top: 3rem;
	color: #2e4057;
	font-weight: bold;
}

.faq p {
	font-size: 1rem;
	line-height: 1.8;
}



 /* ------------- terms ------------- */

.terms h3 {
	color: #2e4057;
	text-align: center;
	margin: 2rem auto;
	font-size: 1.5rem;
}

.terms h5 {
	color: #2e4057;
	font-size: 1.1rem;
	font-weight: bold;
}

.terms p {
	font-size: .9rem;
	line-height: 1.8;
}



 /* ------------- privacy ------------- */

.privacy h5 {
	color: #2e4057;
	font-size: 1.1rem;
	font-weight: bold;
}

.privacy p {
	font-size: .9rem;
	line-height: 1.8;
}


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

.about-us p {
	font-size: 1rem;
}

.about-us .about-us-image {
	width: 50%;
	margin: 3rem auto 0;
}

.about-us .about-us-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 10px;
	box-shadow: 0 0 5px rgba(0,0,0,.2);
}



 /* ------------- partners-page ------------- */

.partners-page {
	margin-top: 4rem;
}

.partners-page .partner {
	background-color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	box-shadow: 0 0 8px rgba(0,0,0,.15);
	text-decoration: none;
	transition: all .3s;
}

.partners-page .partner:hover {
	transform: translateY(-10px);
}

.partners-page .partner img {
	width: 150px;
	margin: 1rem 0;
}

.partners-page .partner h6 {
	color: #2e4057;
	font-size: 1.2rem;
	font-weight: bold;
	margin: 0 auto 1rem;
}



 /* ------------- contact-us ------------- */



.contact-us {
	padding: 1rem;
}

.contact-info div {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 1.5rem;
}

.contact-info i {
	font-size: 2rem;
	margin-left: 1rem;
	color: #00ACE6;
}

.contact-info p {
	margin: 0;
	color: #2e4057;
}

.contact-map iframe {
	height: 350px;
	width: 100%;
}



 /* ------------- help-page ------------- */



.help-page p {
	font-size: 1rem;
	margin: 1.5rem 0;
}

.help-page img {
	width: 100%;
	border-radius: 15px;
	box-shadow: 0 0 6px rgba(0,0,0,.2);
}