html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

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

* {
	box-sizing: border-box;
}

*:focus {
	outline: none;
}

a {
	cursor: pointer;
	text-decoration: none;
	transition: all .2s cubic-bezier(0.4, 0, 1, 1);
}

p {
	margin: 0;
}

body {
	background: url('../img/bg.jpg') no-repeat center center;
	background-size: cover;
	font-family: 'Open Sans', sans-serif;
}

.wrap {
	width: 100%;
	max-width: 1200px;
    margin: 0 auto;
	display: flex;
}

.slick-slider
{
    position: relative;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    min-height: 1px;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: flex;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 21px;
    height: 36px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    border: none;
    outline: none;
}

.slick-prev {
    left: -48px;
    z-index: 21;
    background: url('../img/prev.svg') no-repeat center left;
}

.slick-next {
    right: -48px;
    background: url('../img/next.svg') no-repeat center right;
}

.slick-dots
{
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    z-index: 7;
    position: absolute;
    bottom: 34px;
    left: 110px;
}
.slick-dots li
{
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    border: 2px solid #fff;
    border-radius: 18px;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 18px;
    height: 18px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li.slick-active
{
    background: #f2f2f2;
}

.wrap-head {
	width: 100%;
	max-width: 840px;
	margin: 30px auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.wrap-head img {
	height: 70px;
}

.subhead {
	width: 100%;
	max-width: 1100px;
	height: 140px;
	margin: 0 auto 40px auto;
	padding: 0 25px;
	background: #fff;
	border-radius: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.subhead .logo {
	height: 75px;
}

.subhead-contacts {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	font-weight: 700;
	font-size: 14px;
}

.subhead-contacts .title {
	text-transform: uppercase;
	margin-bottom: 4px;
}

.slider {
	width: 100%;
	max-width: 1280px;
	height: 500px;
	margin: 0 auto;
}

.slider .slide {
	width: 1280px;
	/*width: 100%;*/
	height: 500px;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	background-position: center center !important;
}

.projects-block {
	padding: 64px 110px;
	background: rgba(7, 24, 73, 0.6);
	border-radius: 40px;
	width: 100%;
	max-width: 1280px;
	margin: 40px auto 60px;
}

.projects-title {
	width: 100%;
	max-width: 1100px;	
	/*margin: 30px auto;*/
	margin-bottom: 32px;
	color: #fff;
	font-weight: 700;
	font-size: 24px;
}

.projects-text {
	display: block;
	width: 483px;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #FFFFFF;
	margin-top: 16px;
	margin-left: 20px;
	margin-right: 5px;
}

.projects {
	/*margin: 0 auto 80px auto;*/
	width: 100%;
	max-width: 1060px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.projects a {
	/*margin-bottom: 15px;*/
	margin-bottom: 40px;
}

.project {
	background-repeat: no-repeat !important;
	background-size: contain !important;
	background-position: center center !important;
	width: 508px;
	height: 160px;
}

.logos {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	border-bottom: 2px solid #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 60px;
	flex-wrap: wrap;
}

.logos .logo {
	width: 260px;
	height: 60px;
	background-repeat: no-repeat !important;
	background-size: contain !important;
	background-position: center center !important;
}

.partners-wrap {
	display: flex;
	margin: 90px auto 30px auto;
	width: 100%;
	max-width: 1120px;
}

.partners-wrap span {
	width: 300px;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
}

.partners {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 820px;
}

.partner {
	width: 180px;
	height: 90px;
	background-repeat: no-repeat !important;
	background-size: contain !important;
	background-position: center center !important;
}

.project__container {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
}

.project-block {
	min-height: 384px;
	border-radius: 20px;
	background: #FFF;
	padding: 40px 32px 32px 32px;
	color: rgba(0, 0, 0, 0.60);
	font-size: 14px;
	line-height: 20px;
	display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-block__img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.project-block__text {
	margin-bottom: 16px;
}

.project-block__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto 0 0 auto;
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	color: #000;
}

.project-block__logo span {
	display: none;
	margin-right: 8px;
}

.project-block:hover .project-block__logo path {
	fill: #0083C7;
}

.project__link {
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 1000px;
	border: 1px solid rgba(255, 255, 255, 0.60);
	padding: 16px 32px;
	color: #FFF;
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	margin: 48px auto 0 auto;
}

.project__link:hover {
	background: #FFF;
	color: #000;
}

footer {
	background: #071849;
	padding: 35px 0;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
}

footer a {
	color: #fff;
	font-weight: 700;
	font-size: 14px;
}
footer a:hover {
	text-decoration: underline;
}

footer .wrap {
	max-width: 1100px;
	display: flex;
	justify-content: space-between;
}

footer .wrap .col {
	width: 380px;
}

@media only screen and (max-width:768px){
	.wrap-head {
    	flex-direction: column;
    }
    
    .wrap-head img {
    	height: 50px;
    	margin-bottom: 10px;
	}
	
	.subhead {
    	flex-direction: column;
    	height: auto;
    	padding: 20px;
    }
    
    .subhead .logo {
    	height: 65px;
	}
	
	.subhead-contacts {
    	align-items: center;
    }
    
    .slick-slide div {
	    width: 100%;
    }
    
    .slider, .slider .slide {
    	width: 100%;
    	height: 220px;
    }
    
    .slick-dots {
	    bottom: 20px;
	    left: 20px;
	}
	
	.projects-title {
	    padding-left: 20px;
	}
	
	.projects a {
    	width: 100%;
    	margin-bottom: 28px;
	}

	.projects a:last-child {
		margin-bottom: 0;
	}
	
	.project {
		width: 100%;
		height: 130px;
	}
	
	.logos {
    	flex-direction: column;
    }
    
    .logos .logo {
	    margin-bottom: 15px;
    }
    
    .projects {
    	/*margin: 0 auto 20px auto;*/
    	margin: 0 auto;
    }

    .partners-wrap {
	    flex-direction: column;
	    margin: 20px auto;
		padding: 0 20px;
	}
	
	.partners-wrap span {
    	width: 100%;
    	margin-bottom: 20px;
    	text-align: center;
    }
    
    .partners {
    	flex-direction: column;
    	width: 100%;
    }
    
    .partner {
    	margin-bottom: 20px;
    }

    footer .wrap {
    	flex-direction: column;
    	padding: 0 20px;
    }
    
    footer .wrap .col {
    	width: 100%;
    	margin-bottom: 20px;
	}
	
	.alrosa {
		width: 160px;
	}

	.projects-block {
		padding: 48px 0;
		border-radius: 0;
	}

	.projects-text {
		max-width: 483px;
    	width: 100%;
    	margin-top: 12px;
	    margin-left: auto;
	    margin-right: auto;
	    padding: 0 20px;
	}

	.project__container {
		padding-left: 20px;
		padding-right: 20px;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width: 500px){
	.project__container {
		grid-template-columns: 1fr;	
    	grid-row-gap: 20px;
	}

	.project-block {
		min-height: 360px;
		padding: 24px 20px;
	}

	.project-block__logo {
		    margin: auto auto 0 auto;
	}

	.project-block__logo span {
		display: block;
	}
}

@media only screen and (max-width: 360px){
	.subhead .logo {
	    height: 50px;
	}
}