@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root{
--main-color: #292930;
	--highlight: #23bd42;
	--highlight2: #7de906;
--highlight-grad:linear-gradient(to right, var(--highlight2), var(--highlight)) ;
--darker: #202025;
}
*{
-webkit-tap-highlight-color: transparent;
}
*:focus {
    outline: none; 
}

body {
	overflow-x: hidden;
}
body {

	color: var(--main-color)
}
body, p, h1, h2, h3, h4, span, ul, textarea {
	font-family: 'Open Sans', sans-serif;
	margin: 0;
	padding: 0;
}

body, div, section, p, span, form, input, a, footer,header {
	box-sizing: border-box;
}
p {
	line-height: 1.5;
}

h1 {font-size:38px;
	text-transform: uppercase;
	font-weight: 700;}
h2 {font-size: 28px;
	font-weight: 700;
	text-transform: uppercase;
	}
h3 {
	font-size: 23px;
	text-transform: uppercase;
	font-weight: 700;
}
h1,h2, h3 {
	font-family: 'Roboto', sans-serif;
	font-weight: 800;

}
.gradientText{
	background: var(--highlight-grad);
	-webkit-background-clip: text;
	color: transparent;
}
.wrapper {
	min-width: 980px;
	max-width: 1366px;
	margin-right: auto;
	margin-left: auto;
	padding: 0 20px;
}

section.third_block.darker > div{
	display: flex;
	flex-direction: row-reverse;
}

header {
	color: var(--main-color);
	top: 0;
    height: 85px;
    background: #fff;
    /*position: fixed;*/
    width: 100%;
    z-index: 90;
	padding: 22px 0 0 0;
	box-shadow: 0 0 10px -5px;
}

header .wrapper {
	max-width: 1550px;
	padding: 0 30px;
}
.hero .button {
	margin-top: 60px;
}

.button {
	-webkit-appearance: none;
	border: 0;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	display: block;
	background: var(--highlight);
	color: #fff;
	border-radius: 10px;/*
	box-shadow: 0 15px 20px -10px var(--highlight);*/
	padding: 12px 0;
	width: 250px;
	/* height: 42px; */
	margin-right: auto;
	margin-left: auto;
	margin-top: 30px;
	transition: box-shadow 0.5s;
	cursor: pointer;
	text-transform: capitalize;
}

.button:hover {
	color: #fff;
	box-shadow: 0 0px 15px var(--highlight2);
}
.logo {
	width: 150px;
}
.desk-menu {
	float: right;
    font-size: 24px;
    display: inline-block;
    margin: 0px 25px 0 0;

}
.desk-menu .button {
	margin-top: 0px;
	width: unset;
	padding: 6px 12px;
	box-shadow: none;
	color: #fff;
	font-size: 14px;
	height: unset;
	font-weight: 600;
}
.desk-menu .button:visited {
	color: #fff;
}
.desk-menu li  {
	position: relative;
	font-weight: 700;
	cursor: pointer;
	font-size: 19px;
	display: inline-block;
	padding: 0px 10px;
}
.submenu {
	position: absolute;
	left: 0px;
	background: #fff;
	cursor: pointer;
	z-index: 40;
	display: none;
}
.submenu a {
	display: block ;
	padding: 10px;
}
.submenu li {
	padding: 0;
	position: relative;
	font-size: 18px;
	height: unset;
	border-bottom: 4px solid #dfdfdf;
	width: 100%;

	background: #fff;
	transition: 0.5s;
	font-weight: 600;
}
.submenu li:hover {

	color: var(--highlight);
}
.submenu li.active {
	border-bottom: 4px solid var(--highlight);
}
/*.active_sub a {*/
/*	color: var(--highlight)!important;*/
/*}*/
.active_sub {
	border-bottom: 4px solid var(--highlight)!important;
}
.footer-menu {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translate(-50%, 0);
}
.footer-menu li {
	display: inline-block;

}
.footer-menu li:not(:last-child) {
	margin-right: 20px;
}
.desk-menu li:not(:last-child) {
	margin-right: 4px;
}
.desk-menu a, .desk-menu a:visited {color: var(--main-color); transition: 0.5s color; }
.desk-menu a:hover, .desk-menu li:hover {
	color: var(--highlight);
	text-decoration: none;
}



.desk-menu > li.active:after {
	content: '';
    position: absolute;
    bottom: -31px;
    width: calc(100% - 20px);
	background: var(--highlight);
    height: 3px;
    left:10px;
	pointer-events: none;
}
.social {
	float: right;
}
.social img {
	margin-top: 8px;
    width: 32px;
    
}
.social a:first-child {
	margin-right: 15px;

}
a {
	text-decoration: none;
}
.hero {
	width: 100%;
	height: fit-content;
}
.main .hero {
	background: linear-gradient(to bottom, #29293096, #00000080), url(../img/hero-img.png);
	background-size: cover;
	background-position: center;
	display: block;
}
.hero .wrapper {
	display: flex;
	height: 100%;
	padding: 100px 0;

}

.hero .wrapper > div {
	text-align: center;
	margin: auto;
	height: fit-content;
	max-width: 720px;
	padding: 0 15px;
}

.hero h1 {
	margin: auto;
	max-width: 720px;
	color: white;
}

.hero h3 {
	margin-top: 20px;
color: #fff;
font-size: 20px;
font-weight: 500;
text-transform: none;
}
.iconsection {
	display: flex;
	height: min-content;
	align-items: center;
}
.iconsection span {
	/*margin-left: auto;
    margin-right: auto;*/
    white-space: normal;
}
.howWorks > .iconsection {
	/*margin-top: 100px;*/
	/*margin-bottom: 70px;*/
}

.howWorks h2{
	text-align: left;
}

.how .iconbox{
	min-height: 100px!important;
    background-color: #eff3f68f;
    margin-right: 20px;
    border-radius: 10px;
    padding: 10px 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.how >h2{
	text-align: center!important;
}
.iconbox {
	position: relative;
	color: var(--main-color);
	padding: 0 20px;
	text-align: center;
	width: 25%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	white-space: nowrap;
	gap: 15px;
	float: left;
	height: min-content;
	margin: 50px 0 70px;

}
.main .iconbox {
	width: 33%;
	min-height: 200px;
}

.iconbox span {
	display: block;
	font-weight: 700;
	font-size: 19px;
	text-align: left;

}

.iconbox h2{
	background-color: var(--highlight);
    color: #f6f8fa;
    padding: 10px;
    border-radius: 5px;
}
.iconbox img {
	display: block;
	margin: 20px auto;
	height: 92px;
}
.iconbox svg {
	fill: var(--highlight);
	display: block;
	padding: 15px;
	border-radius: 10px;
	height: 35px;
	width: auto;

	background-color: #eff3f68f;

}



.iconbox .connector {
	position: absolute;
    width: 77%;
    height: auto;
    left: 62%;
    top: -138px;
    display: block;
  
}
h2.center {
    margin-top: 70px;
    text-align: center;
}
h2.center.dark {
	background: #fff;
	color: var(--darker);
	margin: unset;
	padding-top: 70px;
}
.careers h2.center.dark {
	padding: 50px 0;
}
.iconsection .iconbox:nth-child(2) > img.connector {
	top: unset;
	bottom: -150px;
	transform: rotate(180deg);

	
}

.iconbox p {
	white-space: normal;
    text-align: left;
	width: fit-content;/*
	margin: auto;*/
	color: var(--darker);
}
.iconbox ul {
	margin: auto;
	width: fit-content;
	text-align: left;
}
li::marker{
	color: var(--highlight);
}
.third_block, .halfblock { position: relative; min-height: 600px; }

.third_block .img {
	display: inline-block;
	/*margin-left: -27%;*/
    top: 0;
    width: 50%;
    background: url(../img/desk-img1.jpg) no-repeat;
	background-position: left;
    background-size: cover;

	border-radius: 10px;
}
.halfblock .img {

    display: inline-block;
    position: initial;
    right: 0%;
    width: 50%;
    background: url(../img/half_image.jpg);
    background-size: cover;
    min-height: 600px;

	border-radius: 10px;
}
.halfblock img {
	height: 100%;
}
.halfblock .wrapper {
	min-height: 600px;
	display: flex;
}
.halfblock h2 {
	margin-bottom: 30px;
	color: transparent;
	background: var(--highlight);
	-webkit-background-clip: text;

}
.half_info h2 {
	width: fit-content;
}
.halfblock form {
	margin: auto 0;
    width: 50%;
	text-align: center;
}
form {
	width: max-content;
	margin: 0 auto;
}
.halfblock form .email {
	text-align: center;
	width: 350px;
	height: 42px;
	border-radius: 250px;
	border: 2px solid var(--main-color);
	padding: 10px 20px;
}
.halfblock .button {
	width: 350px;
}
.third_block .column {
	max-width: 720px;
	border-radius: 10px 0 0 10px;
    padding: 40px 30px;
    margin: 70px 0;
	background-color: #eff3f68f;
}

.column .column-list{
	max-width: 720px;
    padding: 0 30px;
    margin-bottom: 30px;
}

.third_block p {
margin: 0px 0px 20px;
}

.third_block p:nth-child(2) {
	margin-bottom: 50px;
}

.howWorks {
	text-align: center;
	padding: 70px 20px;
}
footer {
	background: var(--darker);
	color: #fff;
	height: 190px;
	padding: 50px 30px;
	position: relative;
}
.leftblock {
	position: absolute;
	left: 0;

}
.leftblock span {
	display: block;
	font-size: 16px;
	font-weight: 600;
	margin: 20px 0;
}
.rightblock {
	text-align: right;
    right: 0;
	font-weight: 600;
}
footer .wrapper {
	position: relative;
	padding: 0;
}
footer .social {
	position: absolute;
    margin-top: 20px;
    right: 0;
}
footer .rightblock a {
	margin-left: 15px;
	display: inline-block;
	font-size: 14px;

}
footer a {
	color: var(--highlight);
}
footer a:visited {
	color: var(--highlight);
}
.copyright {
	font-weight: 700;
	color: #fff;
	font-size: 12px;
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translate(-50%, 0);
	width: max-content;
}
[class*="mob"] {
    display: none !important;
}
.hero img {
	box-shadow: 0 23px 15px -14px #00000069;
}
.hero .img {
	background: var(--highlight);
}
/*ABOUT================================*/


.about .hero {
	background: linear-gradient( 0deg, #ffffffe3, #ffffffe3), url(../img/digital.jpg);
	overflow: hidden;
	display: flex;
	/*min-height: 700px;*/
}

.about .hero .wrapper {
	display: flex;
	height: fit-content;
	margin: auto;
}
.about_text {
	margin: auto 0;
    width: 50%;
    text-align: left;
}
.about .hero .img {
	display: inline-block;
    position: absolute;
    right: 0%;
    width: 50%;

    background-size: cover;
    height: 386px;
}
.about .hero img {
	position: absolute;
    left: 30px;
    top: -30px;
	height: 100%;
}

.about .hero .about_text {
	font-size: 16px;
	color: #fff;
	margin: auto ;
    width: 80%;
	max-width: 1200px;
    text-align: left;
    height: unset;
}
.about_text p {
	margin-top: 30px;
	width: 100%;
}

.iconsection.dark {
	background: #fff;
}
.about .iconsection > .wrapper {
	display: flex;
	flex-flow: wrap;
}
.about .iconsection.dark .iconbox:not(:nth-child(-n+4))
 { width: 33%;
 	margin: 0 0 70px;
}
.iconsection.dark .iconbox span {
	max-width: 200px;
    white-space: normal;
}

.about .iconsection.dark .iconbox img {
	height: 68px;
}
.about .halfblock{
	background: #fff;
}
.iconsection.leaders {
    padding: 70px 0;
}
.iconsection.leaders h2 {
    position: absolute;
    text-align: center;
    width: 100%;

}
.iconsection.leaders .iconbox p {
	display: block;
	margin-bottom: 10px;
}
.iconsection.leaders img {
	height: unset;
	width: 100%;
}
.iconsection.leaders  .iconbox > span:nth-child(2) {
	margin-bottom: 0;

}
.iconsection.leaders .iconbox  span:nth-child(3) {
	color: var(--highlight);
}

.about .halfblock .img {
    display: inline-block;
    position: absolute;
    left: 50px;
    max-width: 701px;
    width: 50%;
    background: unset;
    background-size: cover;
    margin-top: 50px;
    height: 480px;
}
.about .halfblock img {
    right: 50px;
    top: -50px;
    position: absolute;
	border-radius: 10px;
}

.about .halfblock form {
    margin: auto 0;
    margin-left: 50%;
    width: 50%;
    text-align: center;
}

.about .hero h1{
	color: var(--darker);
	margin: 0;
}

.about .hero p{
	color: var(--darker);
}


.darker {
	background: white;
	color: #000;
}

.halfblock.right h2 {
	color: var(--main-color);
}
.darker h3 {
	color: transparent;
	background: var(--highlight);
	-webkit-background-clip: text;
	margin-bottom: 30px;
}

.about .iconbox{
	max-width: 300px;
}



/*CONTACT=========================*/
html {
	scroll-behavior: smooth;
}
.contact .hero {
	display: flex;
	background: linear-gradient(to right, var(--main-color), #00000080), url(../img/contact_hero.jpg) no-repeat, #080808;
	background-position: bottom;
	background-size: contain;

}
.contact .hero > div {
    text-align: center;
    margin: auto;
    height: max-content;
    width: 100%;
	padding: 100px 0;
    /*min-height: 444px;*/
}

.contact .halfblock form{
	margin: auto;
}

.contact .hero > div h1{
	max-width: 600px;
	margin-right: auto;
	margin-left: auto;

}
.twoblocks {
	display: flex;
	flex-direction: row;
}
.twoblocks > div {
display: block;
	width: 50%;
	padding: 70px 20px;
}
.twoblocks > div:nth-child(1){
	background: url(../img/design2.jpg);
	background-size: cover;
	background-position: center;
	border-radius: 10px;
}
.officebox {
	max-width: 720px;
	text-align: center;
}

.officebox h2 {
	margin: 0 0 10px;
}


body.contact > section:nth-child(5) {
    text-align: center;
    padding: 0px 0px;
}
.contact .halfblock {
	background: #fff;
	color: #fff;
	height: 700px;
}

.contact .halfblock .img {
    display: inline-block;
    position: absolute;
    right: 0%;
    width: 50%;
    background: url(../img/contactForm.jpg);
    background-size: cover;
    height: 100%;
}
.halfblock form >textarea,
.halfblock form input:not(.button) {
	text-align: center;
    width: 350px;
    height: 42px;
    border-radius: 5px;
    border: 0px solid var(--main-color);
	background-color: #eff3f68f;
    padding: 10px 20px;
    margin-bottom: 15px;
    text-align: left;
}
.halfblock form >textarea {
    resize: none;
    box-sizing: border-box;
    border-radius: 5px;
    height: 100px;
}
.contact .halfblock form >input::placeholder {
	color: var(--main-color);
}
.contact .halfblock .wrapper {
    height: 100%;
    display: flex;
	margin-top: 10px;
}
.contact .halfblock form >textarea::placeholder {
	color: var(--main-color);
}
.capt-box { display: none;
	margin-top: -5px;
}
#capt-img {
	width: 140px;
	vertical-align: top;
	height: 42px;
	border-radius: 25px;
}
#capt-input {
	width: 175px;
	margin-left: 25px;
	white-space: nowrap;
	vertical-align: text-bottom;
}
.partners {
	background: #fff;
	overflow: hidden;
}
.partners .wrapper {
	min-height: 400px;
	display: flex;
	flex-direction: row;
	padding: 30px 20px;
}
.partners h2 {
	color: var(--main-color);
	padding: 0 15px;
}
.partner {
	display: inline-block;
	white-space: nowrap;
	background: var(--main-color);
	width: calc(100% / 3 - 40px);
	padding: 70px 30px 180px;
	margin: 30px 20px;
	position: relative;

}
.partner svg {
	height: 150px;
	margin: auto;
	display: block;
	margin-bottom: 20px;
	width: auto;
}
.partner_box > div {
	max-width: 275px;
	text-align: left;
}
.partner_box {
	position: absolute;
	left: 50%;
	transform: translate(-50%,0);
	bottom: 70px;
	width: max-content;
}
.partner_box img {
	width: 80px;
	border-radius: 300px;
	float: left;
	margin-right: 20px;
	box-shadow: 0 2px 3px #00000082;
}
.partner_box span {
	display: inline-block;

}
.partner_box .partner_title {
	color: var(--highlight);
}
.partner_box .partnername {

	margin-top: 17px;
}
/*SERVICES*/
.services .hero {
    background: linear-gradient( 0deg, #ffffffe3, #ffffffe3), url(../img/digital.jpg) center no-repeat;
    overflow: hidden;
    display: flex;
    background-size: cover;
}
.services .hero .wrapper {
    display: flex;
    /*height: 40vh;*/
    margin: auto;
}
.services .hero h1 {
	color: var(--main-color);
	white-space: nowrap;
	margin: 0;
}
.services .hero h3 {
	color: var(--highlight);
	text-shadow: none;
}
.services .about_text p {
    margin-top: 30px;
    width: 100%;
    color: var(--main-color);
	font-weight: 500;
}

.services .hero .img {
    display: inline-block;
    position: absolute;
    left: 0%;
    width: 50%;

    background-size: cover;
    height: 386px;
}
.services .hero .about_text {
    color: #fff;
    width: 80%;
	max-width: 1200px;
	margin: auto;
    text-align: left;
    height: unset;
}
.services .hero img {
    position: absolute;
    right: 30px;
    top: -30px;
	height: 100%;
}
.services .halfblock {
    position: relative;
    height: 400px;
    color: #fff;
    background: #fff;
	margin-top: 20px;
}

.services .halfblock p{
    color: var(--darker);
}

.halfblock.right {
    height: 400px;
    color: var(--main-color);
    background: #fff;
}

.halfblock.right .wrapper{
	flex-direction: row-reverse;
}


.services .halfblock .half_info {
    width: 50%;
    margin: auto 0;
    padding: 70px 70px;
}
.services .halfblock.right .img {
	left: 0;
	right: unset;
}
.services .halfblock.right .half_info {
	/*margin-left: 50%;*/
}
.services .halfblock .wrapper {
	height: 100%;
}
.services .halfblock .img { 
	height:100%;
}

.services .halfblock:nth-child(4) .img {
    
    background: url(../img/social_media.jpg) center no-repeat;
    background-size: cover;

}
.services .halfblock:nth-child(5) .img {
    
    background: url(../img/digital2.jpg) center no-repeat;
    background-size: cover;

}

.services .halfblock:nth-child(6) .img {
  
    background: url(../img/design.jpg )center no-repeat;
      background-size: cover;

}


.services .halfblock:nth-child(7) .img {
   
    background: url( ../img/webdev.jpg) center no-repeat;
     background-size: cover;

}
.services .halfblock:nth-child(8) .img {
   
    background: url(../img/seo.jpg) center no-repeat;
     background-size: cover;
}

.button_block {
	height: 400px;
	display: flex;

}
.button_block > div {
	margin: auto; 
}
.button_block h2 {
	text-align: center;
margin-bottom: 30px;
}

/*SUBMITTED*/
.thx {
	height: calc(100vh - 210px); 
	color: var(--main-color);
	display: flex;
	background: linear-gradient( 0deg, #ffffffbf, #ffffffbf), url(../img/contact_hero.jpg) center no-repeat;
}
.thx > div {
	margin: auto; 
}
.thx h2 {
	font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
}



/*POP UP*/

#popup {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background: #00000080;
    display: flex;
    display: none;
    z-index: 100;
}
#popup .content {
    width: 65%;
}
.pop_banner {
    position: relative;
    min-height: 350px;
    margin: auto;
    margin-top: 25vh;
    max-width: 700px;
    color: #fff;
    background: linear-gradient(45deg, #0b518c, #186eb7);
    padding: 40px;

}
#popup #close {
}

#popup .button {
    margin-top: 55px;
}
.pop_banner img {
    position: absolute;
    right: -140px;
    top: -50px;
    width: 400px;
    pointer-events: none;
}
#close_pop {
    position: absolute;
    top: 0px;
    right: 10px;
    transform: rotate(45deg);
    font-size: 32px;
    cursor: pointer;
    user-select: none;

}
#close_pop2 {
    color: #fff;
    display: block;
    text-align: center;
    margin-top: 15px;
    text-decoration: underline;
    cursor: pointer;
}
#close_pop2:visited {
    color: #fff;
}

/*========== TERMS ==========*/

.terms-section {
    padding: 70px 0;
}
.terms-section .wrapper {
    max-width: 600px;
}
.terms-section h1 {
    margin-bottom: 30px;
    text-align: center;

}
.terms-section h2 {
    margin-bottom: 15px;
    margin-top: 50px;
}
.terms-section p {
    display: block;
    margin-bottom: 15px;
}
.terms-section ul {
    padding-left: 30px;
}
.terms-section li {
    margin-bottom: 20px;
}
.terms-section span {
    font-weight: 700;
}
.terms a {
	color: var(--highlight);
}
/*PPC================================*/


.ppc .hero {
	background: linear-gradient( 0deg, #ffffffe3, #ffffffe3), url(../img/digital.jpg) center no-repeat;
	overflow: hidden;
	/*height: 100vh;*/
	display: flex;
	background-size: cover;
}

.ppc .hero h1 {
	color: var(--main-color);
	margin: 0;
}
.ppc .hero .wrapper {
	display: block;
	height: unset;
	/*height: 40vh;*/
	min-height: 450px;
	margin: auto;
}
.ppc .hero .button {
	margin: 0;
	margin-top: 30px;
}
.ppc .hero h3 {
	margin-top: 30px;
	margin-bottom: 15px;
	color: var(--main-color);
}
.ppc .hero ul {
	margin-left: 30px;
	margin-top: 10px;
}

.ppc .hero li {
	color: var(--main-color);
}

.about_text {
	margin: auto 0;
	margin: auto 0;
	width: 50%;
	text-align: left;
}
.ppc .hero .img {
	display: inline-block;
	position: absolute;
	right: 0%;
	width: 50%;

	background-size: cover;
	height: 450px;
}
.ppc .hero img {
	position: absolute;
	left: 30px;
	top: -30px;
	height: 100%;
}

.ppc .hero .about_text {
	color: #fff;
	margin: 0;
	width: 80%;
	max-width: 1200px;
	text-align: left;
	height: 50vh;
	margin: auto;
    height: unset;
}

.ppc .hero .about_text ul, .ppc .hero .about_text p {
	text-align: left;
}

.ppc .hero p {
	color: var(--main-color);
}
.audit {
	background: var(--main-color);
	color: #fff;
	padding: 70px 0;
	text-align: center;
}
.audit h2 {
	text-align: center;
	margin-bottom: 15px;
}
.audit span {
	text-align: center;
	color: var(--highlight);
	max-width: 520px;
	display: inline-block;
}

.audit ul {
	text-align: left;
}
.audit h3 {
	margin-top: 30px;
	margin-bottom: 15px;
}
.audit ul {
	width: 50%;
	display: inline-block;
	margin: 0 5%;
}

.audit li {
	position: relative;
	list-style: none;
	margin-bottom: 15px;
}
.audit li::before {
	position: absolute;
	top: -5px;
	content: '✔';
	display: inline-block;
	margin-left: -1em ;
	font-size: 24px;
	color: var(--highlight);

}
.flex {
	display: flex;
}
.average {
	text-align: center;
}
.average span {
	width: unset;
	margin-top: 30px;
	margin-bottom: 15px;
}
.infographic > .wrapper{
	background: url(../img/infograph_desk.png) no-repeat center;
	background-size: 980px auto;
	height: 100vh;
	filter: hue-rotate(250deg);
}

.ppc .iconsection > .wrapper {
	display: flex;
	flex-flow: wrap;
}
.ppc .iconsection.dark {
	background: #fff;
}
.iconsection.dark .iconbox span {
	max-width: 200px;
	margin-left: auto;
	margin-right: auto;
	white-space: normal;
	color: var(--darker);
}
.ppc .iconsection.dark .iconbox {
	color: #fff;

}
.ppc .iconsection.dark .iconbox img {
	height: 68px;
}
.iconsection.leaders {
	padding: 70px 0;
}
.iconsection.leaders h2 {
	position: absolute;
	text-align: center;
	width: 100%;

}
.iconsection.leaders .iconbox p {
	display: block;
	margin-bottom: 10px;
}
.iconsection.leaders img {
	height: unset;
	width: 100%;
}
.iconsection.leaders  .iconbox > span:nth-child(2) {
	margin-bottom: 0;

}
.iconsection.leaders .iconbox  span:nth-child(3) {
	color: var(--highlight);
}
.ppc .halfblock {
	background: #fff;
}

.ppc .halfblock .img {
	display: inline-block;
	position: absolute;
	left: 30px;
	max-width: 701px;
	width: 50%;
	background: url(../img/contactus.jpg);
	background-size: cover;
	margin-top: 60px;
	height: 480px;
	border-radius: 10px;
}
.ppc .halfblock img {
	right: 30px;
	top: -30px;
	position: absolute;
}

.ppc .halfblock form {
	margin: auto 0;
	margin-left: 50%;
	width: 50%;
	text-align: center;
}
.ppc .benefits .iconbox  {
	width: 20%;
	margin: 30px auto;
}
.benefits {
	padding: 0px 0 40px;
}
.ppc .partners {
	background: #fff;
	overflow: hidden;
}
.ppc .partners .wrapper {
	min-height: 400px;
	display: flex;
	flex-direction: row;
	padding: 30px 20px 120px;
}
.ppc .partners h2 {
	color: var(--main-color);
	padding: 0 15px;
}
.ppc .partner {
	display: inline-block;
	white-space: nowrap;
	background: #eff3f68f;
	width: calc(100% / 2 - 40px);
	padding: 30px;
	margin: 60px 20px;
	position: relative;
	height: fit-content;
	border-radius: 10px;
}
.ppc .partner > * {
	color: var(--main-color);
	white-space: normal;
	text-align: left;
}
.plan_img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 200px;
}
.ppc .partner h3 {
    text-align: center;
    margin-bottom: 20px;
    background-color: var(--highlight);
    width: fit-content;
    margin: auto;
    color: white;
    padding: 5px 30px;
    border-radius: 5px;
    margin-bottom: 30px;
    font-size: 18px;
}
.ppc .partner > ul {
	list-style: none;
	font-size: 18px;
	font-weight: 700;
	position: relative;
	max-width: 330px;
	margin: auto;
}
.ppc .partner ol {
	list-style: disc;
	font-size: 16px;
	font-weight: 400;

	margin: auto;
}
.ppc .partner ol > li {
	margin: 8px 0;

	color: var(--main-color);
	line-height: 1.3;

}



.price_box {
text-align: left;


}
.numbers {
	display: block;
}
.price_box .text {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	display: block;
	margin-bottom: 30px;
	margin-top: 30px;
	position: relative;
}
.price_box .text:after {
	content: '';
	position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translate(-50%, 0);
	height: 2px;
	width: 40px;
	background: var(--highlight);
}

.price_box .button {

}
.price_box .price {
	font-size: 19px;
	font-weight: 900;
	margin-bottom: 15px;
	display: inline-block;
}
.price1, .price2 {

	text-align: center;
	color: var(--main-color);
	font-weight: 600;
	width: fit-content;
	margin: auto;
	text-align: left;
}
.partners .subtitle {
	text-align: center;
	color: var(--highlight);
	margin-top: 20px;
}

.partner h3 span {
	font-weight: 400;
text-transform: none;
display: block}
.partner .numbers {
	font-size: 16px;
	color: var(--highlight);
	font-weight: 400;
}

.partner .numbers span {
	color: var(--main-color);
	font-size: 19px;
	display: block;
}

/*
Careers*/

.careers .hero {
	background: linear-gradient( 0deg, #ffffffe3, #ffffffe3), url(../img/digital.jpg) center no-repeat;
	overflow: hidden;
	height: 100vh;
	display: flex;
	background-size: cover;
}

.careers .hero h1 {
	color: var(--main-color);
}
.careers .hero .wrapper {
	display: flex;
	height: 40vh;
	min-height: 450px;
	margin: auto;
}
.careers .hero .button {
	margin-top: 30px;
}
.careers .hero h3 {
	margin-top: 30px;
	margin-bottom: 15px;
	color: var(--main-color);
}
.careers .hero .img {
	display: inline-block;
	position: absolute;
	right: 0%;
	width: 50%;

	background-size: cover;
	height: 450px;
}
.careers .hero img {
	position: absolute;
	left: 30px;
	top: -30px;
	height: 100%;
}

.careers.hero .about_text {
	color: #fff;
	margin: 0;
	width: 50%;
	text-align: left;
	height: 50vh;
}
.careers .hero p {
	color: var(--main-color);
}
.careers .hero .about_text {
	color: #fff;
	margin: 0;
	width: 50%;
	text-align: left;
	height: 50vh;
}
.position_box {

	padding: 50px 0px;
}
.position_box .wrapper {
	max-width: 680px;
}
.position_box li {
	margin-bottom: 10px;
	list-style: disc;
	margin-left: 20px;
}
.ads li::marker {
	color: var(--highlight);


}
.position_box h3 {
	margin-bottom: 20px;
}
.position_box h4 {
	margin-bottom: 5px;
}
.position_box ul {
	list-style-position: inside;
	margin-bottom: 10px;

}
/*.position_box li{*/
/*	color: var(--highlight);*/
/*	list-style: circle;*/
/*	margin-left: 20px;*/
/*}*/
.position_box .wrapper > * {
	margin-bottom: 20px;
}
.position_box:nth-child(even) {
	color: #fff;
	background: var(--main-color);
}