@font-face {
    font-family: 'Aller Display';
    font-style: normal;
    font-weight: 400;
    src: local('Aller Display'), local('AllerDisplay-Regular'),
        url(/static/fonts/aller-display.ttf) format('truetype'),
        url(/static/fonts/aller-display.woff2) format("woff2"), /* chrome firefox */
        url(/static/fonts/aller-display.woff) format("woff"), /* chrome firefox */
        url(/static/fonts/aller-display.svg) format("svg"); /* iOS 4.1- */
}

.aller{
    font-family: 'Aller Display', sans-serif;
}

body{
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}
/**
BUTTON UP
 */
.btn-up {
    position: fixed;
    background-color: #1a2b68;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    transition: all ease .2s;
    visibility: visible;
    opacity:1;
    z-index:1;
}

.btn-up::before {
    content: "";
    text-align: center;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 12px;
    top: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cg fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 17V4M3 10l7-7 7 7'/%3E%3C/g%3E%3C/svg%3E");
}

.btn-up_hide {
    visibility: hidden;
    opacity:0;
    z-index:-1000;
}

@media (hover: hover) and (pointer: fine) {
    .btn-up:hover {
        background-color: #8f98a8;
    }
}

/**
HACKS
 */
.inline-block{
    display: inline-block;
}
h3, h4, h5{
    font-family: 'Aller Display', sans-serif;
    color: rgb(4, 0, 33);
    font-weight: 700;
}
h5{
    font-size: 20px;
}
h4{
    font-size: 24px;
    line-height: 27.8333px
}
h3{
    font-size: 28px;
    line-height: 32.4833px
}

ul.flexibility li{
    display: flex;
    align-items: center;
    margin-bottom:5px;
}
ul.flexibility li:last-child{
    margin:0;
}
ul.flexibility li .icon{
    margin-right:10px;
    position: relative;
    top:2px;
}
.pre-heading{
    margin-bottom:25px;
}
.pre-heading span{
    display: inline-block;
    position:relative;
    color:rgb(89, 2, 167);
    font-size:18px;
    font-weight:700;
    text-transform: uppercase;
}
.pre-heading span:before{
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    background: rgb(89, 2, 167);
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
}

.input{
    background: #f8f8f8;
    color: #040021;
    height: 60px;
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 26px;
    border: 1px solid transparent;
}
.input:focus{
    border: 1px solid #040021;
    outline: none;
}
.label-checkbox{
    display: block;
    margin-bottom:15px;
    cursor: pointer;
}

/**
END HACKS
 */

:root{
    --blue-strong: rgb(26, 43, 104);
    --yellow: rgb(252, 205, 28);
    --yell: #fccd1c;
    --container-width: 1200px;
    --row-margin: -15px;
	--grid-padding: 15px;
    --standart-color: rgb(109, 109, 109);
}

.relative{
    position:relative;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}
.align-center{
	align-items: center;
}
.align-start{
	align-items: start;
}
.align-end{
	align-items: end;
}
.justify-content-center{
    justify-content: center;
}

.text-align-center{
	text-align: center;
}

.text-align-right{
	text-align: right;
}
.upper{
    text-transform: uppercase;
}
.mb-120{
    margin-bottom:120px !important;
}
.mb-90{
    margin-bottom:90px !important;
}
.mb-60{
    margin-bottom:60px !important;
}
.mb-45{
    margin-bottom:45px !important;
}
.mb-30{
    margin-bottom:30px !important;
}
.mb-15{
    margin-bottom:15px !important;
}
.mt-120{
    margin-top:120px !important;
}
.mt-90{
    margin-top:90px !important;
}
.mt-60{
    margin-top:60px !important;
}
.mt-45{
    margin-top:45px !important;
}
.mt-30{
    margin-top:30px !important;
}
.mt-15{
    margin-top:15px !important;
}

/**
GRIDS
 */
.container{
	max-width: var(--container-width);
	margin:0 auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
	margin: 0 var(--row-margin);
}
.grid{
	padding:0 var(--grid-padding);
}
.w100, .w1-1{
	width:100%;
}
.w1-2{
	width:50%;
}
.w1-3{
	width:calc(100%/3);
}
	.w2-3{
		width:calc((100%/3) * 2);
	}
.w1-4{
	width:calc(100%/4);
}
	.w3-4{
		width:calc((100%/4) * 3);
	}
.w1-5{
	width:calc(100%/5);
}
	.w2-5{
		width:calc((100%/5) * 2);
	}
	.w3-5{
		width:calc((100%/5) * 3);
	}
	.w4-5{
		width:calc((100%/5) * 4);
	}
.w1-6{
	width:calc(100%/6);
}
	.w4-6{
		width:calc((100%/6) * 4);
	}
	.w5-6{
		width:calc((100%/6) * 5);
	}
.w1-12{
	width:calc(100%/12);
}
	.w2-12{
		width:calc(100%/6);
	}
	.w3-12{
		width:calc(100%/4);
	}
	.w4-12{
		width:calc(100%/3);
	}
	.w7-12{
		width:calc((100%/12) * 7);
	}

/**
spoiler
 */
.spoiler-data{
	padding-right:10px;
	height:0;
	background:#fff;
	overflow: hidden;
	transition: all ease-in .2s
}
.spoiler-header {
    text-decoration: none;
}
.spoiler-header .chevron{
	line-height: 0;
	transform: rotate(180deg) translateY(0);
	transition: all ease-in .2s;
	display: inline-block;
}
.spoiler-header.active .chevron{
	transform: rotate(0) translateY(0);
}

/**
card
 */
.card{
    background:#fff;
    margin-bottom:60px;
    font-family: 'Montserrat', sans-serif;
    color:rgb(109, 109, 109);
}
.card h3{
    font-family: 'Aller Display', sans-serif;
    font-size:24px;
    color:rgb(4, 0, 33);
    margin: 8px 0
}
.card-avatar{
    overflow:hidden;
}
.card-content{
    position:relative;
    padding:30px;
}
.card-content .spot{
    width:80px;
    height:80px;
    position:absolute;
    top:-40px;
    left:30px;
    border-radius:100%;
    z-index:1;
    background:#fff;
    padding: 5px;
    display:flex;
    align-items: center;
    justify-content: center;
}
.card-content .read-more{
    text-decoration: none;
    color:rgb(109, 109, 109);
    margin-top:30px;
    transition: all ease-in .2s;
    display:inline-flex;
    align-items: center;
    font-family: 'Aller Display', sans-serif;
    text-transform: uppercase;
}
.card-content .read-more .right{
    margin-left:5px;
    transition: all ease-in .2s;
    position:relative;
    top:2px;
}
.card-content .read-more:hover{
    color:rgb(89, 2, 167);
}
.card-content .read-more:hover .right{
    margin-left:10px;
}



/**
Header
 */
.head-top{
    background:#fff;
    padding:15px 0;
}
.cta{
    padding:0;
    margin:0;
}
.cta li{
    padding-right: 62px;
    display: inline-block;
}
.cta-item-inner{
    display: flex;
    align-items: center;
}
.cta-icon{
    height: 33px;
    width: 33px;
    background: #f2eeff;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-strong);
    margin-right:10px;
}
.cta-content span{
    display: block;
    color: var(--standart-color);
}
.cta-content span a{
    color: var(--standart-color);
    text-decoration: none;
}

.social-top ul{
    margin:0;
    padding:0;
    text-align: right;
}
.social-top ul li{
    display: inline-block;
    margin-left:10px;
}
.social-top ul li:first-child{
    margin-left: 0;
}
.social-top ul li a{
    width:35px;
    height:35px;
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    border: 1px solid #e7ebf9;
    transition: all ease .3s;
}

.social-top ul li.facebook a{
    color:#6639ff;
}
.social-top ul li.twitter a{
    color: #01b6e5;
}
.social-top ul li.instagram a{
    color: #d90b51;
}
.social-top ul li.linkedin a{
    color: #6639ff;
}

.social-top ul li a:hover{
    color:#fff;
    background: var(--blue-strong);
    border: 1px solid var(--blue-strong);
}

.head-main{
    margin: 0 auto;
    position: absolute;
    left:0;
    right:0;
    transition: all ease .2s;
}
.logo-bg{
    position:absolute;
    top:-1px;
    left: -100px;
    width:408px;
    z-index: 1;
}
.logo{
    z-index:10;
    position: relative;
    top:30px;
}
.menu-bg{
    position:absolute;
    top: 10px;
    left: -20px;
    z-index: 1;
}
.menu-main-bg{
    position:relative;
    top:10px;
    background:#fff;
    height:100px;
    margin-right: -30%;
    right:-11%;
    z-index:10;
}
.menu-main-bg nav{
    position:relative;
    right: 4%;
    height:100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 72.5%;
}
.menu-main-bg nav ul{
    padding:0;
    margin:0;
    display: flex;
    justify-content: space-between;
    width: 75%;
}
.menu-main-bg nav ul li{
    display:inline-block;
    position:relative;
}
.menu-main-bg nav ul li a{
    color: var(--blue-strong);
    font-family: 'Aller Display', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    position:relative;
}

.head-main.sticky{
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100%;
    z-index:100;
    background: #fff;
    box-shadow: 0 0 60px 0 rgba(53,57,69,.15);
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.head-main.sticky .menu-bg,
.head-main.sticky .logo-bg{
    display:none;
}
.head-main.sticky .menu-main-bg{
    top: 0;
}

/** dropdown menu **/
.menu-main-bg nav ul li.dropdown ul{
    background:#fff;
    position: absolute;
    width: auto;
    text-align: left;
    padding: 15px 0;
    box-shadow: 0 6px 12px rgba(0,0,0,.176);
    transition: all 0.3s ease 0s;
    border-top:3px solid var(--blue-strong);
    top:115%;
    opacity:0;
    z-index: -100;
    left:0;
    visibility: hidden;
}
.menu-main-bg nav ul li.dropdown:hover ul{
    top:85px;
    opacity:1;
    z-index: 5;
    visibility: visible;
}
.menu-main-bg nav ul li.dropdown ul li{
    display:block;
    margin: 0;
    padding: 8px 25px 8px 25px;
}
.menu-main-bg nav ul li.dropdown ul li a{
    padding: 0;
    display: block;
    color: #212237;
    position: relative;
    font-size: 15px;
    transition: all 0.3s ease 0s;
    left:0;
}
.menu-main-bg nav ul li.dropdown ul li a:hover{
    left:5px;
}


.contact-us-btn a{
    font-family: 'Aller Display', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    padding: 0 20px;
    height: 60px;
    line-height: 60px;
    background: var(--blue-strong);
    display: inline-block;
    border-radius: 3px;
    min-width: 180px;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: all ease .3s;
}
.contact-us-btn a span{
    display: inline-flex;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: #fff;
    align-items: center;
    justify-content: center;
    color:var(--blue-strong);
    margin-left:10px;
    position: relative;
    top:1px;
}
.contact-us-btn a:hover{
    background: var(--yellow);
}


/**
FOOTER
 */
.content-info{
    background: #040021;
    color:#858585;
    padding:90px 0;
}
.content-info a{
    color:#adadad;
}
.content-info .aller{
    color:#fff;
}
.content-info .head{
    margin-bottom: 15px;
    font-size: 18px;
    display:inline-block;
}
.footer-social ul{
    margin:0;
    padding:0;
    margin-top:30px;
}
.footer-social ul li{
    display: inline-block;
    margin-left:10px;
}
.footer-social ul li:first-child{
    margin-left: 0;
}
.footer-social ul li a{
    width:35px;
    height:35px;
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    border: 1px solid #454545;
    transition: all ease .3s;
    color: #fff;
    background: #454545;
}

.footer-certifications{
    margin-top:60px;
}
.footer-certifications .cert{
    max-width: 96px;
    margin-top: 15px;
}
.footer-certifications .cert:first-child{
    margin-top: 0;
}

.footer-list li{
    font-family: 'Aller Display', sans-serif;
    margin-top: 12px;
}
.footer-list li a{
    text-decoration: none;
}


.subfooter{
    background: #f2f2f2;
}
.logo-shape {
  position: relative;
    background: #1a2b68;
    text-align: center;
    line-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:50px 0;
}
.logo-shape img{
    display: inline-block;
    max-width:75%;
}
.logo-shape::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 45px;
  background: #1a2b68;
  clip-path: polygon(100% 0,100% 100%,0 100%);
  top: -45px;
  left: 0;
}
.logo-shape::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 45px;
  background: #253986;
  clip-path: polygon(0 0,100% 100%,0 100%);
  top: -45px;
  right: -35px;
}
.hh{
    height:100%;
    display:flex;
    align-items: center;
      color: #6d6d6d;
}


/**
FRONTPAGE
 */
.video-bg-main {
    overflow: hidden;
    z-index: 0;
    position: relative;
    height: 100%;
    width: 100%;
    padding-top:45%;
}
.fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.hero-btn{
    font-family: 'Aller Display', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 0 20px;
    height: 60px;
    line-height: 60px;
    background: var(--blue-strong);
    display: inline-block;
    border-radius: 3px;
    min-width: 180px;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: all ease .3s;
    cursor: pointer;
    border:none;
}
.hero-btn span{
    display: inline-flex;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: #fff;
    align-items: center;
    justify-content: center;
    color:var(--blue-strong);
    margin-left:10px;
    position: relative;
    top:1px;
}
.hero-btn:hover{
    background: var(--yellow);
}
.hero-action{
    margin-top:45px;
}
.video-content{
    position: absolute;
    left:0;
    right:0;
    margin:0 auto;
    top:50%;
    transform: translateY(-50%);
    color:#fff;
    z-index:5;
}
.video-content h1{
    font-size:90px;
    line-height: 1;
}

.about-us{
    padding:120px 0;
}
.hello-wrap{
    position:relative;
}
.hello-block{

}
.phone-block{
    position:absolute;
    left: -90px;
    bottom: -50px;
}
.all-in-one{
    width: 165px;
    padding: 10px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(16,0,71,.1);
    right: 85px;
    top: -70px;
    text-align: center;
    position: absolute;
}
.all-in-one img {
    display: inline-block;
}
.all-in-one p{
    color:rgb(4, 0, 33) !important;
}

.hello-head{
    color: #6639ff;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    margin:30px 0;
    font-family: 'Montserrat', sans-serif;
}
.hello-head::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    background: #1a2b68;
    left: 0;
    top: -8px;
}
.about-us h2{
    margin-bottom:30px;
    display: inline-block;
}
.about-us p {
    font-family: 'Montserrat', sans-serif;
    color: #6d6d6d;
}
.about-us .plank{
    background: #f5f8ff;
    border: 1px solid #6639ff;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 45px;
    margin-bottom: 50px;
}
.about-us .plank-item{
    display: flex;
    align-items: center;
    padding: 30px 15px;
}
.about-us .hello-avatar{
    width: 50px;
    height: 50px;
    text-align: center;
    background: #fff;
    display: inline-block;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,5,75,.08);
    margin-right: 25px;
}
.about-us .hello-avatar i{
    color: #777;
    line-height: 60px;
    font-size: 28px;
    transition: all 0.3s ease-out 0s;
}
.about-us .plank-item:hover .hello-avatar i{
    color: rgb(4, 0, 33);
}
.about-us h4{
    font-size: 16px;
    color: rgb(4, 0, 33);
    font-weight:400;
}

/**
Services
 */
.services{
    background: rgb(247, 248, 250);
    padding: 120px 0 0;
    color:rgb(109, 109, 109);
}
.services h2{
    color: rgb(4, 0, 33);
    font-size: 48px;
}
.services p{
    font-family: 'Montserrat', sans-serif;
}

.services-items{
    margin-top:60px;
}
.panel-service{
    background: #fff;
    box-shadow: 0 20px 40px rgba(170,177,183,.1);
    padding: 50px 25px;
    border-radius: 5px;
    text-align: center;
}
.avatar-panel{
    display: inline-block;
}
.avatar-panel a{
    border:2px solid rgb(26, 43, 104);
    border-radius: 100%;
    color:rgb(26, 43, 104);
    width:96px;
    height:96px;
    transition: all 0.5s ease-out 0s;
    display: block;
    background: #fff;
    position: relative;
}
.avatar-panel a:hover{
    background: rgb(26, 43, 104);
    color:#fff;
}
.avatar-panel a div{
    position: relative;
    top:5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width:96px;
    height:96px;
}
.avatar-panel a svg{
    transition: all 0.5s ease-out 0s;
}
.avatar-panel a:hover svg{
    filter: grayscale(100%) invert(100%);
}
.panel-service{
    margin-bottom:60px;
}
.panel-service p{
    font-family: 'Montserrat', sans-serif;
    margin:30px 0;
}
.panel-service h3{
    font-size:24px;
    color:rgb(4, 0, 33);
    margin-top:15px;
}
.panel-service .panel-button{
    margin-top:30px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: 30px;
    border: 1px solid rgb(26, 43, 104);
    color: rgb(109, 109, 109);
    padding:10px 24px;
    background:#fff;
    transition: all 0.5s ease-out 0s;
}
.panel-service .panel-button:hover{
    background: rgb(26, 43, 104);
    color:#fff;
}
.panel-service .panel-button span{
    margin-left:10px;
    display: inline-block;
    font-size:14px;
}

.new-standarts{
    padding:60px 0;
    background:url(/static/img/front-page/counter-bg.jpg) no-repeat;
}
.new-standarts h2{
    color:#fff;
    font-size:48px;
    line-height: 58px;
}

.new-standarts .button-empty{
    height: 60px;
    background: transparent;
    text-align: center;
    padding: 0 38px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    /*text-transform: uppercase;*/
    line-height: 58px;
    border-radius: 3px;
    display: inline-block;
    min-width: 150px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
    font-family: 'Aller Display', sans-serif;
}
.new-standarts .button-empty:hover{
    background:var(--blue-strong);
    border-color: var(--blue-strong);
}

.benefits{
    font-family: 'Montserrat', sans-serif;
    font-size:18px;
    padding-left: 30px;
    padding-bottom:30px;
    background:#fff;
    box-shadow: 0 20px 40px rgba(16,0,71,.1);
    width: 100%;
    overflow: hidden;
    margin:30px 0;
}
.benefits h3{
    font-size: 48px;
    line-height: 58px;
    color: #040021;
    margin-bottom:30px;
    margin-top:30px;
}
.item-benefit{
    margin-bottom:30px;
}
.item-benefit .w1-3{
    color: rgb(26, 43, 104);
}
.item-benefit .w2-3{
    color: rgb(109, 109, 109);
}

.industries h2{
    font-size: 48px;
    line-height: 58px;
    color: #040021;
    margin-bottom: 0;
}
.industries .serve-head{
    margin-top:30px;
    margin-bottom:15px;
    color: rgb(109, 109, 109);
    font-family: montserrat, sans-serif;
    font-size: 25px;
}

.industries .swiper {
    width: 100%;
    height: 100%;
    margin-bottom:30px;
}

.industries .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    height:300px;
    background:#eee;
    border-radius: 10px;
    overflow: hidden;
    position:relative;
}

.industries .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industries .swiper-slide .serve{
    position:absolute;
    bottom:-130px;
    background:var(--yellow);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    width: 250px;
    padding:30px 0;
    font-family: 'Aller Display', sans-serif;
    font-size:18px;
    transition: all ease-in .3s;
}
.industries .swiper-slide:hover .serve{
    bottom:0;
}
.industries .avatar-plus{
    width:50px;
    height:50px;
    border-radius:100%;
    background:#fff;
    color:rgb(109, 109, 109);
    display:inline-flex;
    align-items: center;
    justify-content: center;
    position:absolute;
    margin:0 auto;
    left:0;
    right:0;
    top:-25px;
}

/**
Pages
 */
.page-header{
    padding-top: 230px;
    padding-bottom: 160px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 0;
}
.page-header .container{
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}
.page-header .container h1{
    font-size: 60px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 10px;
    font-family: 'Aller Display', sans-serif;
}
.page-header .container nav{
    font-size:18px;
}
.page-header .container nav a{
    font-family: 'Aller Display', sans-serif;
    color:#fff;
    text-decoration: none;
}
.page-header .container nav.breadcrumbs a,
.page-header .container nav.breadcrumbs span{
    display:inline-block;
    padding:0 10px
}

section.page.content{
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #6d6d6d;
}
section.page.content h1,
section.page.content h2,
section.page.content h3,
section.page.content h4,
section.page.content h5{
    font-family: 'Aller Display', sans-serif;
    color:rgb(4, 0, 33);
}

section.page.content h3{
    font-size: 28px;
}

/**
About US
 */
.about_us{
    background:url(/static/img/about-us/About-us.jpg) no-repeat;
}

.content-about-us{
    padding-top:120px;
}
#who-we-are h3, #who-we-are p,
#our-philosophy h3, #our-philosophy p{
    margin-bottom:30px;
}
.live .icon{
    display: inline-block;
    width:50px;
    height: 50px;
    margin-right: 10px;
}
.live li{
    display:flex;
    align-items: center;

}
.supports-ul {
    margin:30px 0 !important;
}
.supports-ul li{
    display:flex;
    align-items: center;
    margin-bottom:5px;
}
.supports-ul li .data-circle{
    width:14px;
    height:14px;
    position:relative;
    top:-3px;
}
.supports-ul li span{
    display:inline-block;
    margin-left:15px;
}
.philosophy-icons .item{
    margin-bottom:30px;
}
.philosophy-icons .avatar{
    width:48px;
    height:48px;
    display:inline-block;

}
.philosophy-icons .text{
    font-family: 'Aller Display', sans-serif;
    color:rgb(4, 0, 33);
    font-size: 18px
}
#support{
    margin-top:150px;
}
.head-support span{
    color:var(--yellow);
    font-size: 18px;
    font-weight: 700;
    display:inline-block;
    margin-bottom:30px;
    position:relative;
}
.head-support span:before{
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    background: var(--yellow);
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
}
#support h3{
    margin-bottom:55px;
}
.support-row{
    margin-top: 80px;
    margin-bottom: 120px;
}
.support-row img{
    width:100%;
}

.corporate-rows{
    background-color: #f6f6f6;
    padding:120px 0;
}
.corporate-rows h3{
    margin-bottom:30px;
}

/**
Partners
 */
.partners{
    background:url(/static/img/partners/Partner.jpg) no-repeat;
}
.content-partners{
    margin: 120px 0;
}
.content-partners .item{
    margin-bottom:60px;
}
.content-partners img{
    display: inline-block;
}

/**
Services
 */
.services-page{
    background:url(/static/img/services/Services.jpg) no-repeat;
}


/**
services
 */
.content-services{
    padding:120px 0 0 0;
}
.content-services .services-head h3{
    margin-bottom:90px
}
.services-spoiler{
    margin-bottom:90px;
}
.content-services .spoiler-header{
    font-family: 'Aller Display', sans-serif;
    font-size:24px;
    color:rgb(4, 0, 33);
}
.content-services .spoiler.item{
    border-bottom: 1px solid #d5d8dc;
    padding:10px 0;
}
.content-services .spoiler.item .more{
    margin-top:45px;
    font-family: 'Aller Display', sans-serif;
    text-decoration: none;
    color:rgb(109, 109, 109);
    display:inline-block;
}
.g-partners img{
    display: inline-block;
}


.global-partners h2{
    color:rgb(4, 0, 33);
    text-transform: uppercase;
    font-size:48px;
}
.global-partners .item{
    margin-bottom:45px;
}

.have-projects{
    background: url(/static/img/services/do-you-have-some-project-in-mindv2.jpg) no-repeat;
    background-size:cover;
    margin-top: 125px;
}
.have-projects .wrapper{
    padding:185px 0;
    background: rgba(11, 6, 40, 0.8)
}

.have-projects h2{
    color:#fff !important;
    font-size:48px;
    line-height: 58px;
    margin-bottom:30px;
}
.btn-yellow{
    font-family: 'Aller Display', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    padding: 0 20px;
    height: 60px;
    line-height: 60px;
    background: var(--yellow);
    display: inline-block;
    border-radius: 3px;
    min-width: 180px;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: all ease .3s;
}
.btn-yellow span.circle {
  display: inline-flex;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: #fff;
  align-items: center;
  justify-content: center;
  color: var(--blue-strong);
  margin-left: 10px;
  position: relative;
  top: 1px;
}
.btn-yellow:hover{
    color:#fff;
    background:var(--blue-strong)
}

/**
Services slider
 */
.slider-navigations{
    margin-bottom:60px;
}
.slider-navigations h3.aller{
    margin:45px 0;
    font-size:24px;
    color:rgb(4, 0, 33);
}
.slider-navigations .nn{
    background: #fff;
    box-shadow: rgba(16, 0, 71, 0.07) 3px 0 30px 0
}

.nn .swiper-pagination-bullet{
    width: 20px;
    height: 9px;
    border-radius: 4.5px;
    background: #fff;
    border: 1px solid #cacbce;
    margin-right: 10px;
    opacity: 1;
}
.nn .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 3px solid #8500d1;
}

.pos-attended-page{
    background:url(/static/img/pos-attended/POSbannertop.jpg) no-repeat;
}
.pos-attended-content,
.contact-content,
.wws-content,
.fraud-content,
.gp-content,
.pp-content,
.pl-content,
.da-content,
.web-content,
.softpos-content,
.pos-unattended-content{
    margin-top:120px;
}

.pos-unattended-page{
    background:url(/static/img/pos-unattended/Unattended_1920x700-top-bannerv8.jpg) no-repeat;
}

.softpos-page{
    background:url(/static/img/softpos/softpos-bannertop.jpg) no-repeat;
}

.softpos-content .phone-items{
    overflow:hidden;
    height:285px;
}

.web-page{
    background:url(/static/img/web/Web-topbanner.jpg) no-repeat;
    background-size: 100%;
}

.da-page{
    background:url(/static/img/da/News.jpg) no-repeat;
}

.pl-page{
    background:url(/static/img/pl/paybylink-topbanner.jpg) no-repeat;
}

.pp-page{
    background:url(/static/img/pp/Payroll_Payout_1920x700.jpg) no-repeat;
}

.gp-page{
    background: url(/static/img/gp/googlepay-bannerv7.jpg) no-repeat center;
    background-size: cover;
}

.fraud-page{
    background: url(/static/img/fraud/fraud-topbanner.jpg) no-repeat center;
    background-size: cover;
}

.wws-page{
    background: url(/static/img/wws/Who-we-serve.jpg) no-repeat center;
    background-size: cover;
}

.contact-page{
    background: url(/static/img/contact/ContactUs.jpg) no-repeat center;
    background-size: cover;
}
.news-page{
    background: url(/static/img/news/News.jpg) no-repeat center;
    background-size: cover;
}
.content-info-news span.item{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right:20px;
}
.content-info-news span.item span.info{
    margin-left:10px;
}
.content-news a{
    text-decoration: none;
}
.error{
    color:#ff0000;
    font-weight:700;
    font-size:18px;
}
.success{
    color: #118738;
    font-weight:700;
    font-size:18px;
}
.contact-content .contact-sub{
    display:inline-block;
    color:rgb(26, 43, 104);
    font-weight: 800;
    margin-bottom:20px;
    text-transform: uppercase;
}
.contact-content .contact-head{
    color:rgb(36, 38, 41);
    font-size:50px;
    margin-bottom:10px;
    line-height: 60px;
    text-transform: uppercase;
}

.contact-spots .item{
    display:flex;
    align-items: center;
    margin-bottom:10px;
    padding:20px 0;
    border-bottom:1px solid rgb(233, 235, 237);
}
.contact-spots .item:last-child{
    border-bottom: none;
}
.contact-spots .item .spot-c{
    width:65px;
    height:65px;
    border-radius: 100%;
    background:rgb(242, 243, 245);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right:15px;
}
.contact-spots .item .info-c span{
    text-transform: uppercase;
    margin-bottom:5px;
    display:block;
}
.contact-spots .item .info-c a{
    text-decoration: none;
    color: rgb(4, 0, 33);
    font-size:20px;
}

.map-container{
    position: relative;
    bottom:-8px;
    margin-top:120px;
}
#map{
    height:500px;
    width:100%;
    border:none;
    margin:0;
}