@font-face {
    font-family: 'helveticaregular';
    src: url('../fonts/helvetica-webfont.woff2') format('woff2'),
         url('../fonts/helvetica-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'helveticabold';
    src: url('../fonts/helvetica-bold-webfont.woff2') format('woff2'),
         url('../fonts/helvetica-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'SpaceGrotesk-Medium';
    src:url('../fonts/SpaceGrotesk-Medium.woff') format('woff'),
        url('../fonts/SpaceGrotesk-Medium.woff2') format('woff2'),
        url('../fonts/SpaceGrotesk-Medium.svg#SpaceGrotesk-Medium') format('svg'),
        url('../fonts/SpaceGrotesk-Medium.eot'),
        url('../fonts/SpaceGrotesk-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SpaceGrotesk-Medium.ttf') format('truetype');
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  height: 100%;
}
:root {
  --primary: #3a65e3;
  --secondary: #037bc4 ;
  --darkprimary: #08377a ;
  --black: #000;
  --white: #fff;
  --grey: #464646;
  --lightgrey: #f5f5f5;
  --primaryfont: helveticaregular;
  --primaryfontbold: helveticabold;
  --secondaryfontmedium: SpaceGrotesk-Medium;
  --redcolor: red;
}
body {
	font-family: var(--primaryfont);
	font-size: 1rem;
	color: var(--black);
	overflow-x: hidden;
}
.color-primary{
	color: var(--primary);
}
.bg-light{
	background-color: var(--lightgrey);
}
img{
	max-width: 100%;
}

.section-padding{
	padding-top: 100px;
	padding-bottom: 100px;
}
.section-padding__top{
	padding-top: 100px;
}
.section-padding__btm{
	padding-bottom: 100px;
}
.pt-50{
	padding-top: 50px;
}
.mb-50{
	margin-bottom: 50px;
}
.mt-30{
	margin-top: 30px;
}
.mt-60{
	margin-top: 60px;
}
.h-100{
	height: 100%;
}
.justify-center {
	text-align-last: center;
	text-align: justify;
}
.heading-h2{
	font-size: 48px;
	color: var(--black);
	font-family: var(--primaryfontbold);
}
.btn {
	border-radius: 6px;
	font-size: 16px;
	padding: 6px 20px;
	color: var(--white);
}
.btn-primary {
	background: var(--primary);
	border-color: var(--primary);
	padding: 6px 50px;
}
.btn-primary:hover{
	background: var(--secondary);
	border-color: var(--secondary);
	color: var(--white);
}
.btn-secondary:active, .btn-primary:first-child:active {
	color: #fff;
	background: var(--primary);
	border-color: var(--primary);
}
.btn-icon{
	margin-left: 15px;
}
.site-header {
	padding: 20px 100px;
	position: fixed;
	top: 0;
	z-index: 999;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.site-header.fixed-header {
	background-color: var(--white);
	padding-top: 10px;
	padding-bottom: 10px;
}
.site-header.fixed-header .hero-logo img {
	max-width: 150px;
	transition: .5s;
}
.site-lang {
	position: relative;
}
.hero-logo img{
	max-width: 250px;
}
.hero {
	height: 100vh;
	background-color: #fff;
	position: relative;
	overflow: hidden;
}
.site-lang .btn.dropdown-toggle {
	background-color: var(--primary);
	color: var(--white);
	padding: 4px 16px;
}
.site-lang .lang-flag {
	width: 24px;
	display: inline-block;
	margin-right: 5px;
}
.site-header .dropdown-menu {
	padding: 0;
	border-radius: 11px;
	margin-top: 10px;
	left: auto;
	right: 0 !important;
	max-width: 202px;
}
.site-header .dropdown-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 200px;
}
.site-header .dropdown-menu ul li {
	display: block;
	padding: 0;
}
.site-header .dropdown-menu ul li:first-child a {
	border-top: 0;
	border-radius: 10px 10px 0 0;
}

.site-header .dropdown-menu ul li a {
	padding: 15px 15px;
	display: block;
	color: var(--black);
	border-top: 1px solid var(--lightgrey);
	transition: .3s;
	text-decoration: none;
}

.site-header .dropdown-menu ul li:last-child a {
	border-radius: 0 0 10px 10px;
}
.hero-left {
	display: flex;
	flex-direction: column;
	height: 100%;
	float: left;
	width: 50%;
	padding-left: 100px;
	padding-top: 100px;
	padding-right: 50px;
	position: relative;
	z-index: 9;
}
.hero-content {
	margin-top: 120px;
	text-transform: uppercase;
	position: relative;
	z-index: 9;
}
.hero-content-1 {
	color: var(--primary);
	font-size: 130px;
	text-transform: uppercase;
	font-weight: bold;
	display: block;
	position: relative;
	left: -200px;
	transition: 1s;
}
.hero-content-2 {
	display: block;
	margin-top: 30px;
	font-size: 70px;
	position: relative;
	right: -150px;
	transition: 1.5s;
}
.hero-content-3 {
	color: var(--primary);
	display: block;
	font-size: 70px;
	font-weight: bold;
	position: relative;
	left: -200px;
	transition: 1.9s;
}
.hero-content-4 {
	display: block;
	font-size: 40px;
	position: relative;
	right: -250px;
	transition: 2s;
}
.page-loaded .hero-content-1, .page-loaded .hero-content-3{
	left: 0;
}
.page-loaded .hero-content-2, .page-loaded .hero-content-4{
	right: 0;
}
.hero-content__btn {
	margin-top: 30px;
}
.hero-right {
	width: 50%;
	position: absolute;
	right: 0;
	height: 120%;
	overflow: hidden;
	background-image: url('../images/hero-img.jpg');
	border-radius: 50% 0 0 50%;
	top: -10%;
	background-repeat: no-repeat;
	background-position: 40% 100%;
	z-index: 9;
}
.hero .contact-us {
	position: absolute;
	bottom: 30px;
}
.hero-bg-style {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
.hero .contact-us ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.hero .contact-us ul li{
	display: inline-block;
	font-size: 20px;
	color: var(--white);
}
.hero .contact-us ul li + li{
	padding-left: 50px;
}
.hero .contact-us ul li a{
	color: var(--white);
	text-decoration: none;
}
.hero .contact-us ul li i {
	margin-right: 10px;
}
.media-right .about-yezz__content {
	padding-left: 0;
	padding-right: 80px;
	text-align: justify;
}
.about-yezz__content-text {
	font-size: 17px;
	color: var(--grey);
}
.about-yezz__media {
	position: relative;
}

.media-round {
	border-radius: 50px;
	overflow: hidden;
}
.contact-section {
	background-size: cover;
	background-position: 50% 50%;
	color: var(--white);
	background-attachment: fixed;
}
.contact-section__content h3 {
	font-size: 54px;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.contact-section__content h4 {
	font-size: 36px;
	text-transform: uppercase;
	margin-bottom: 50px;
}
.footer-copyright {
	font-size: 14px;
	background-color: var(--primary);
	color: var(--white);
	padding: 5px 0;
}
.footer-copyright a{
	color: var(--white);
}
.show-767{
	display: none;
}
@media (max-width: 1899px){
	.site-header{
		padding-left: 40px;
		padding-right: 40px;
	}
	.hero-left {
		padding-left: 40px;
		padding-top: 40px;
		width: 44%;
	}
	.hero-content-1 {
		font-size: 100px;
	}
	.hero-content-2 {
		margin-top: 20px;
		font-size: 60px;
	}
	.hero-content-3 {
		font-size: 60px;
	}
	.hero-content-4 {
		font-size: 35px;
	}
	.hero-right {
		width: 56%;
	}
}
@media (max-width: 1599px){
	.hero-logo img{
		max-width: 210px;
	}
	.hero-content-1 {
		font-size: 90px;
	}
	.hero-content-2 {
		font-size: 56px;
	}
	.hero-content-3 {
		font-size: 52px;
	}
	.hero-content-4 {
		font-size: 30px;
	}
	.hero .contact-us ul li + li {
		padding-left: 30px;
	}
	.media-right .about-yezz__content {
		padding-right: 20px;
	}
}
@media (max-width: 1366px){
	.hero-left {
		padding-right: 20px;
	}
	.hero-content-1 {
		font-size: 80px;
	}
	.hero-content-2 {
		font-size: 50px;
	}
	.hero-content-3 {
		font-size: 48px;
	}
	.hero-content-4 {
		font-size: 28px;
	}
	.hero .contact-us ul li {
		font-size: 18px;
	}
	.hero .contact-us ul li + li {
		padding-left: 18px;
	}
}

@media (max-width: 1199px){
	.site-header{
		padding-left: 20px;
		padding-right: 20px;
	}
	.hero {
		height: auto;
	}
	.hero-left {
		padding-right: 20px;
		padding-left: 20px;
		padding-top: 20px;
		padding-bottom: 80px;
	}
	.hero-content-1 {
		font-size: 66px;
	}
	.hero-content-2 {
		font-size: 42px;
	}
	.hero-content-3 {
		font-size: 40px;
	}
	.hero-content-4 {
		font-size: 23px;
	}
	.hero .contact-us {
		bottom: 25px;
		width: 110%;
	}
	.hero .contact-us ul li {
		font-size: 16px;
	}
	.hero-right {
		background-position: 40% 40%;
	}
	.media-right .about-yezz__content {
		padding-right: 0;
	}
	.about-yezz__media {
		margin-top: 40px;
	}
}
@media (max-width: 991px){
	.hero-left {
		padding-bottom: 0;
	}
	.hero-logo img {
		max-width: 150px;
	}	
	.hero-content {
		margin-top: 100px;
	}
	.hero-content-1 {
		font-size: 50px;
	}
	.hero-content-2 {
		font-size: 36px;
		margin-top: 10px;
	}
	.hero-content-3 {
		font-size: 30px;
	}
	.hero-content-4 {
		font-size: 18px;
	}
	.hero .contact-us {
		bottom: auto;
		position: relative;
		margin-top: 30px;
	}
	.hero .contact-us ul li {
		font-size: 16px;
		margin-bottom: 10px;
	}
}
@media (max-width: 767px){
	.section-padding {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.hero-left {
		padding-bottom: 0;
		width: 100%;
		text-align: center;
	}
	.hero-right {
		background-position: 40% 40%;
		width: 100%;
		position: relative;
		top: auto;
		right: auto;
		border-radius: 0;
		background: transparent;
	}
	.hero .contact-us {
		width: 100%;
		z-index: 9;
	}
	.contact-section__content h4 {
		font-size: 30px;
	}
	.show-767{
		display: block;
	}
	.hide-767{
		display: none;
	}
	.site-lang .btn.dropdown-toggle{
		padding-left: 5px;
		padding-right: 5px;
	}
	.site-lang .lang-flag {
		width: 20px;
		margin-right: 2px;
	}
}
@media (max-width: 575px){
	.section-padding {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.hero-bg-style {
		width: 200%;
	}
	.contact-section__content h3 {
		font-size: 47px;
	}
	.contact-section__content h4 {
		font-size: 26px;
	}
}
@media (max-width: 479px){
	.hero .contact-us {
		margin-top: 50px;
	}
	.hero-bg-style {
		width: 250%;
	}
	.contact-section__content h3 {
		font-size: 42px;
	}
	.contact-section__content h4 {
		font-size: 21px;
	}
}