/**********************************************************************/
/**********************************************************************/
.page-home {
	background-color: #E8F3FA;
}


/**********************************************************************/
/**********************************************************************/
.page-home .home-banner {
	position: relative;
	width: 100%;
	height: 910px;
	margin-bottom: 100px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.page-home .home-banner picture {
	display: none;
}
.page-home .home-banner .container {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.page-home .home-banner .container__content {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.page-home .home-banner__btn {
	min-width: 210px;
	margin: auto auto 14% 0;
	padding: 20px;
	border-radius: 35px;
	background-color: #01266A;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	color: #FFFFFF;
	text-align: center;
	transition: background-color 0.3s;
}
.page-home .home-banner__btn:hover {
	background-color: #76B5CD;
}

/**********************************************************************/
/**********************************************************************/

/* Customize the label (the container) */
.container-cb {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container-cb input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container-cb:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-cb input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-cb input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-cb .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#contact-form-agree {
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;    
}

 #contact-form-agree.error ~ .checkmark {
    border-color: #F5362D !important;
    color: #F5362D !important;
    border: 1px solid #F5362D;
}

.checkmark {
    border-radius: 8px;
}


/**********************************************************************/
/**********************************************************************/
.page-home .block-banner {
	margin-bottom: 100px;
}


/**********************************************************************/
/**********************************************************************/
.page-home__cards-wrap {
	position: relative;
	z-index: 100;
}
.page-home__cards {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.page-home .homecard {
	display: flex;
	width: 100%;
	min-height: 680px;
	margin-bottom: 90px;
}
.page-home .homecard:not(.homecard-vertical):last-child {
	margin-bottom: 0;
}
.page-home .homecard__img {
	width: 50%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.page-home .homecard__info {
	display: flex;
	flex-direction: column;
	width: 50%;
	padding: 50px;
	background-color: #C5DCEB;
}
.page-home .homecard:not(.homecard-vertical):nth-child(2n) .homecard__info {
	order: -1;
}
.page-home .homecard__body {
	display: flex;
	flex-direction: column;
	width: 500px;
	max-width: 100%;
	margin: auto;
}
.page-home .homecard__title {
	margin-bottom: 30px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 54px;
	line-height: 60px;
	color: #2C4080;
}
.page-home .homecard__descr {
	margin-bottom: 30px;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	color: #2C4080;
}
.page-home .homecard__btn {
	min-width: 210px;
	margin: 0 auto 0 0;
	padding: 13px 18px;
	border-radius: 30px;
	border: 2px solid #2C4080;
	background-color: transparent;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	color: #2C4080;
	text-align: center;
	transition: background-color 0.3s, color 0.3s;
}
.page-home .homecard__btn:hover {
	background-color: #2C4080;
	color: #FFFFFF;
}

/**********************************************************************/
.page-home .homecard-dark .homecard__info {
	background-color: #76B5CD;
}
.page-home .homecard-dark .homecard__title,
.page-home .homecard-dark .homecard__descr {
	color: #FFFFFF;
}
.page-home .homecard-dark .homecard__btn {
	border-color: #FFFFFF;
	color: #FFFFFF;
}
.page-home .homecard-dark .homecard__btn:hover {
	background-color: #FFFFFF;
	color: #76B5CD;
}

/**********************************************************************/
.page-home .homecard-vertical {
	flex-direction: column;
	width: calc(50% - 20px);
}
.page-home .homecard-vertical .homecard__img {
	width: 100%;
}
.page-home .homecard-vertical .homecard__info {
	width: 100%;
	min-height: 520px;
	padding: 70px 50px 50px;
	background-color: #76B5CD;
}
.page-home .homecard-vertical .homecard__body {
	width: 560px;
	margin-top: 0;
}
.page-home .homecard-vertical .homecard__title {
	color: #FFFFFF;
}
.page-home .homecard-vertical .homecard__descr {
	margin-bottom: 40px;
	color: #FFFFFF;
}
.page-home .homecard-vertical .homecard__btn {
	border-color: #FFFFFF;
	color: #FFFFFF;
}
.page-home .homecard-vertical .homecard__btn:hover {
	background-color: #FFFFFF;
	color: #76B5CD;
}


/**********************************************************************/
/**********************************************************************/
.page-home .home-products {
	position: relative;
	padding-top: 220px;
	padding-bottom: 150px;
	margin-top: -80px;
	margin-bottom: 150px;
}
.page-home .home-products:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	height: 100%;
	width: 100vw;
	max-width: 1920px;
	background-color: #C5DCEB;
}
.page-home .home-products__content {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 60px 40px 0;
}
.page-home .home-products__content:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 170px;
	background-color: #FFFFFF;
}

/**********************************************************************/
.page-home .home-products__info {
	position: relative;
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 80px;
}
.page-home .home-products__title {
	width: calc(50% - 20px);
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 54px;
	line-height: 60px;
	color: #2C4080;
	text-align: center;
}
.page-home .home-products__descr {
	width: calc(50% - 20px);
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	color: #7F879B;
}

/**********************************************************************/
.page-home .home-products__body {
	position: relative;
	width: 1200px;
	max-width: 100%;
	margin: 0 auto;
}
.page-home .home-products__slide {
	display: flex;
	flex-direction: column;
	height: 500px;
	margin: 0 20px;
	outline: none;
}
.page-home .home-products__product {
	display: flex;
	flex-direction: column;
	max-height: 100%;
	margin: auto auto 0;
	transition: opacity 0.3s;
	cursor: pointer;
}
.page-home .home-products__product:hover {
	opacity: 0.6;
}
.page-home .home-products__product img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	margin: auto;
}

/**********************************************************************/
.page-home .home-products__nav {
	position: relative;
	display: flex;
	width: 660px;
	max-width: 100%;
	margin: 40px auto 0;
}
.page-home .home-products__nav .home-products__arr {
	display: flex;
	flex-direction: column;
	width: 50px;
	height: 50px;
	margin: auto 0;
	transition: opacity 0.3s;
	cursor: pointer;
}
.page-home .home-products__nav .home-products__arr_l {
	order: 1;
}
.page-home .home-products__nav .home-products__arr_r {
	order: 3;
}
.page-home .home-products__nav .home-products__arr:hover {
	opacity: 0.6;
}
.page-home .home-products__nav .home-products__arr img {
	max-width: 100%;
	max-height: 100%;
	margin: auto;
}
.page-home .home-products__nav .slick-dots {
	position: relative;
	bottom: initial;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: calc(100% - 180px);
	margin: auto;
	padding: 0;
	order: 2;
}
.page-home .home-products__nav .slick-dots li {
	position: relative;
	width: 15px;
	height: 15px;
	margin: 5px 10px;
	cursor: pointer;
}
.page-home .home-products__nav .slick-dots li:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 5px;
	height: 5px;
	border: 2px solid transparent;
	border-radius: 50%;
	background-color: rgba(62, 88, 162, 0.6);
	transition: all 0.3s;
}
.page-home .home-products__nav .slick-dots li:hover:before,
.page-home .home-products__nav .slick-dots li.slick-active:before {
	width: 11px;
	height: 11px;
	border-color: #3E58A2;
	background-color: transparent;
}
.page-home .home-products__nav .slick-dots li button {
	display: none;
}


/**********************************************************************/
/**********************************************************************/
.page-home .home-txtarea {
	display: flex;
	flex-direction: column;
	padding: 90px;
	margin-top: 90px;
	background-color: #76B5CD;
}
.page-home .home-txtarea__title {
	margin-bottom: 30px;
	font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 54px;
    line-height: 60px;
    color: #FFFFFF;
	text-align: center;
}
.page-home .home-txtarea__txt {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
	text-align: center;
}


/**********************************************************************/
/**********************************************************************/
.page-home .home-socials {
	display: flex;
	margin-top: 90px;
	margin-bottom: -80px;
	background-color: #FFFFFF;
}
.page-home .home-socials__content {
	display: flex;
	flex-direction: column;
	width: 40%;
	padding: 50px;
}
.page-home .home-socials__body {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 400px;
	margin: auto;
}
.page-home .home-socials__title {
	margin-bottom: 25px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 54px;
	line-height: 60px;
	color: #2C4080;
}
.page-home .home-socials__subtitle {
	margin-bottom: 70px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
	color: #7F879B;
}
.page-home .home-socials__icons {
	display: flex;
}
.page-home .home-socials__icons a {
	display: flex;
	flex-direction: column;
	margin: 0 20px 0 0;
	transition: opacity 0.3s;
}
.page-home .home-socials__icons a:hover {
	opacity: 0.6;
}
.page-home .home-socials__icons a img {
	width: 30px;
}
.page-home .home-socials__img {
	display: flex;
	flex-direction: column;
	width: 60%;
}
.page-home .home-socials__img img {
	margin: 0 0 0 auto;
}




/**********************************************************************/
/*********************         RESPONSIVE         *********************/
/**********************************************************************/
@media screen and (max-width: 1440px) {
	/******************************************************************/
	/******************************************************************/
	.page-home .home-banner {
		height: 600px;
		margin-bottom: 80px;
	}
	.page-home .home-banner__btn {
		min-width: 180px;
		padding: 15px 20px;
		font-size: 18px;
		line-height: 20px;
	}
	
	
	/******************************************************************/
	/******************************************************************/
	.page-home .block-banner {
		margin-bottom: 80px;
	}


	/******************************************************************/
	/******************************************************************/
	.page-home .homecard {
		min-height: 500px;
		margin-bottom: 60px;
	}
	.page-home .homecard__info {
		padding: 30px;
	}
	.page-home .homecard__body {
		width: 450px;
	}
	.page-home .homecard__title {
		margin-bottom: 20px;
		font-size: 35px;
		line-height: 40px;
	}
	.page-home .homecard__descr {
		margin-bottom: 25px;
		font-size: 16px;
		line-height: 24px;
	}
	.page-home .homecard__btn {
		min-width: 180px;
		padding: 13px;
		font-size: 18px;
		line-height: 20px;
	}

	/******************************************************************/
	.page-home .homecard-vertical .homecard__info {
		min-height: 400px;
		padding: 40px 20px 20px;
	}
	.page-home .homecard-vertical .homecard__body {
		width: 450px;
	}
	.page-home .homecard-vertical .homecard__descr {
		margin-bottom: 30px;
	}


	/******************************************************************/
	/******************************************************************/
	.page-home .home-products {
		padding-top: 140px;
		padding-bottom: 80px;
		margin-top: -60px;
		margin-bottom: 80px;
	}
	.page-home .home-products__content {
		padding: 40px 20px 0;
	}
	.page-home .home-products__content:before {
		bottom: 120px;
	}
	
	/******************************************************************/
	.page-home .home-products__info {
		margin-bottom: 40px;
	}
	.page-home .home-products__title {
		width: calc(50% - 10px);
		font-size: 35px;
		line-height: 40px;
	}
	.page-home .home-products__descr {
		width: calc(50% - 10px);
		font-size: 16px;
		line-height: 24px;
	}
	
	/******************************************************************/
	.page-home .home-products__slide {
		height: 400px;
		margin: 0 10px;
	}

	/******************************************************************/
	.page-home .home-products__nav {
		width: 500px;
		margin-top: 30px;
	}
	.page-home .home-products__nav .home-products__arr {
		width: 30px;
		height: 30px;
	}
	.page-home .home-products__nav .slick-dots {
		width: calc(100% - 100px);
	}
	.page-home .home-products__nav .slick-dots li {
		width: 12px;
		height: 12px;
	}
	.page-home .home-products__nav .slick-dots li:before {
		width: 4px;
		height: 4px;
	}
	.page-home .home-products__nav .slick-dots li:hover:before,
	.page-home .home-products__nav .slick-dots li.slick-active:before {
		width: 8px;
		height: 8px;
	}
	
	
	/******************************************************************/
	/******************************************************************/
	.page-home .home-txtarea {
		padding: 60px;
		margin-top: 60px;
	}
	.page-home .home-txtarea__title {
		margin-bottom: 20px;
		font-size: 35px;
		line-height: 40px;
	}
	.page-home .home-txtarea__txt {
		font-size: 16px;
    	line-height: 24px;
	}


	/******************************************************************/
	/******************************************************************/
	.page-home .home-socials {
		margin-top: 60px;
		margin-bottom: -40px;
	}
	.page-home .home-socials__content {
		padding: 30px;
	}
	.page-home .home-socials__body {
		max-width: 260px;
	}
	.page-home .home-socials__title {
		margin-bottom: 20px;
		font-size: 35px;
		line-height: 40px;
	}
	.page-home .home-socials__subtitle {
		margin-bottom: 50px;
		font-size: 16px;
		line-height: 20px;
	}
	.page-home .home-socials__icons a {
		margin-right: 15px;
	}
	.page-home .home-socials__icons a img {
		width: 25px;
	}
}


@media screen and (max-width: 767px) {
	/******************************************************************/
	/******************************************************************/
	.page-home .home-banner {
		height: auto;
		margin-bottom: 30px;
		background-image: none;
	}
	.page-home .home-banner picture {
		display: block;
	}
	.page-home .home-banner__btn {
		min-width: 150px;
		margin: auto auto 70px;
		border-radius: 25px;
		font-size: 16px;
	}
	
	
	/******************************************************************/
	/******************************************************************/
	.page-home .block-banner {
		margin-bottom: 30px;
	}


	/******************************************************************/
	/******************************************************************/
	.page-home__cards {
		width: 450px;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.page-home .homecard {
		flex-direction: column;
		min-height: initial;
		margin-bottom: 30px;
	}
	.page-home .homecard__img {
		width: 100%;
		height: 250px;
	}
	.page-home .homecard__info {
		width: 100%;
		padding: 30px 20px !important;
		order: -1;
	}
	.page-home .homecard__body {
		margin: 0;
	}
	.page-home .homecard__title {
		font-size: 30px;
		line-height: 35px;
	}
	.page-home .homecard__descr {
		margin-bottom: 30px;
		font-size: 16px;
		line-height: 20px;
	}
	.page-home .homecard__btn {
		min-width: 150px;
		font-size: 16px;
	}

	/******************************************************************/
	.page-home .homecard-vertical {
		width: 100%;
	}
	.page-home .homecard-vertical .homecard__info {
		min-height: initial;
	}
	.page-home .homecard-vertical .homecard__img {
		height: auto;
		order: -1;
	}


	/******************************************************************/
	/******************************************************************/
	.page-home .home-products {
		width: 450px;
		max-width: 100%;
		margin: -20px auto 80px;
		padding-top: 100px;
		padding-bottom: 60px;
	}
	.page-home .home-products__content {
		width: 100%;
		max-width: calc(100vw - 40px);
		padding: 30px 20px 0;
	}

	/******************************************************************/
	.page-home .home-products__info {
		flex-direction: column;
	}
	.page-home .home-products__title {
		width: 100%;
		margin-bottom: 20px;
		font-size: 30px;
		line-height: 35px;
	}
	.page-home .home-products__descr {
		width: 450px;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
		line-height: 20px;
		text-align: center;
	}

	/******************************************************************/
	.page-home .home-products__nav {
		width: calc(100% + 40px);
		max-width: initial;
		margin: 20px -20px 0;
	}
	.page-home .home-products__nav .slick-dots {
		width: calc(100% - 80px);
	}
	.page-home .home-products__nav .slick-dots li {
		width: 10px;
		height: 10px;
		margin: 3px;
	}
	.page-home .home-products__nav .slick-dots li:before {
		width: 2px;
		height: 2px;
	}
	.page-home .home-products__nav .slick-dots li:hover:before,
	.page-home .home-products__nav .slick-dots li.slick-active:before {
		width: 6px;
		height: 6px;
	}
	
	
	/******************************************************************/
	/******************************************************************/
	.page-home .home-txtarea {
		width: 450px;
		max-width: 100%;
		margin: 30px auto 0;
		padding: 30px 20px;
	}
	.page-home .home-txtarea__title {
		font-size: 30px;
    	line-height: 35px;
	}
	.page-home .home-txtarea__txt {
		line-height: 20px;
	}


	/******************************************************************/
	/******************************************************************/
	.page-home .home-socials {
		flex-direction: column;
		width: 450px;
		max-width: 100%;
		margin: 30px auto -40px;
	}
	.page-home .home-socials__content {
		width: 100%;
		padding: 30px 20px 40px;
	}
	.page-home .home-socials__body {
		max-width: 100%;
		margin: 0 auto;
	}
	.page-home .home-socials__title {
		font-size: 30px;
		line-height: 35px;
	}
	.page-home .home-socials__subtitle {
		margin-bottom: 20px;
	}
	.page-home .home-socials__img {
		width: 100%;
	}
}
