﻿@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Lalezar&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*******************
AJAX OVERLAY
********************/
#p3solved_ajax_overlay {
	display: none;
	width: 100%;
	height: 100%;
	top: 0px;
	position: fixed;
	z-index: 99999;
	background-color: rgba(255, 255, 255, 0.6);
}

.lds-ripple {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
	position: absolute;
	top: calc(50% - 3.5px);
	left: calc(50% - 3.5px);
}

	.lds-ripple .lds-pos {
		position: absolute;
		border: 2px solid #2962FF;
		opacity: 1;
		border-radius: 50%;
		animation: lds-ripple 1s cubic-bezier(0, 0.1, 0.5, 1) infinite;
	}

		.lds-ripple .lds-pos:nth-child(2) {
			animation-delay: -0.5s;
		}

@keyframes lds-ripple {
	0% {
		top: 28px;
		left: 28px;
		width: 0;
		height: 0;
		opacity: 0;
	}

	5% {
		top: 28px;
		left: 28px;
		width: 0;
		height: 0;
		opacity: 1;
	}

	100% {
		top: -1px;
		left: -1px;
		width: 58px;
		height: 58px;
		opacity: 0;
	}
}
/*******************
END - AJAX OVERLAY
********************/

body {
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	line-height: normal;
	color: #797979;
	-webkit-tap-highlight-color: transparent;
}

*,
:after,
:before,
div {
	box-sizing: border-box;
}

.bg_dark {
	background-color: #242331;
	background-image: url("images/bglines_test.svg");
	width: 100%;
	z-index: 0;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}
.bg_black {
	background-color: #000;
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}
@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        box-shadow: 0 0 1px white;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        -webkit-box-shadow: 0px 0px 2px 2px rgba(255,255,255,0.4);
-moz-box-shadow: 0px 0px 2px 2px rgba(255,255,255,0.4);
box-shadow: 0px 0px 2px 2px rgba(255,255,255,0.4);
        transform: scale(1);
    }
}
.star {
    position: absolute;
	z-index: 0;
    width: 1px;
    height: 1px;
    background-color: white;
    border-radius: 50%;
    animation: twinkle 2s infinite ease-in-out;
}

.bg_light {
	background-color: #F9F9F9;
	height: 100%;
}

.cont {
	width: 80%;
	margin: 0 auto;
	position: relative;
	clear: both;
	z-index: 1;
}

.cont_home {
	max-width: 1180px;
	padding: 0 20px;
	color: #fff;
}

.pos_abs {
	position: absolute;
}

.pos_rel {
	position: relative;
}

.button {
	background-color: #fff;
	color: #242331;
	padding: 15px 35px;
	font-size: 14px;
	font-weight: 700;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	cursor: pointer;
	border: 1px solid #242331;
	transition: background-color 0.5s;
	white-space: nowrap;
}

a.button:link,
a.button:visited,
a.button:active {
	text-decoration: none;
	letter-spacing: 0;
	display: inline-block;
	white-space: nowrap;
}

.button:hover {
	background-color: #242331;
	color: #fff;
}

.btnred {
	background-color: #CF0000 !important;
	color: #fff !important;
	border: 0 !important;

}

.btnred:hover,
a.btnred:hover {
	background-color: #242331 !important;
}

.btnpink {
	background-color: #FFECEF;
    white-space: nowrap;
	color: #CF0000 !important;
	width: fit-content;
	padding: 15px 35px;
    font-size: 14px;
    font-weight: 700;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
}

h1 {
	font-size: 40px;
	font-weight: 600;
	line-height: 125%;
	margin: 0 0 25px 0;
	padding: 0;
}
h2, h3, h4
{
	color: #242331;
}
.txt12 {
	font-size: 12px;
	font-weight: 400;
	line-height: 125%;
}
.txt14 {
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
}

.txt16 {
	font-size: 16px;
	line-height: 150%;
}

.txt18 {
	font-size: 18px;
	line-height: 150%;
}

.txt20 {
	font-size: 20px;
	line-height: 130%;
}
.txt22 {
	font-size: 22px;
	line-height: 130%;
}
.txt25 {
	font-size: 25px;
	line-height: 150%;
	font-weight: 600;
}

.txt30 {
	font-size: 30px;
	line-height: 125%;
	font-weight: 600;
}

.txtblack {
	color: #242331;
}
.txtwhite {
	color: #fff;
}
.txtred {
	color: #CF0000;
}
.txtdarkred {
	color: #9c0000;
}
.txtcenter {
	text-align: center;
}

.white_box {
	background-color: #fff;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	padding: 6px 10px;
	border: 1px solid #F6F6F6;
	box-shadow: 1px 20px 30px 0px rgba(200, 200, 200, 0.25);
	-moz-box-shadow: 1px 20px 30px 0px rgba(200, 200, 200, 0.25);
	-webkit-box-shadow: 1px 20px 30px 0px rgba(200, 200, 200, 0.25);
}

.gray_box {

	background-color: #F6F6F6;
	border: 15px solid #fff;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;

}

.gray_bord {
	border-top: 1px solid #D3D3D3;
	border-bottom: 1px solid #D3D3D3;
	padding-top: 25px;
	padding-bottom: 25px;
}

.w250 {
	width: 250px
}

.white_box img {
	margin-right: 10px;
	vertical-align: middle;
	max-width: 117px;
}

.w24 {
	width: 24%;
}

.w76 {
	width: 76%;
}

.d-flex {
	display: flex;
	width: 100%;
}

.d-flex-center {
	display: flex;
	align-items: center;
}

/* Slideshow container */
.slideshow-container {
	position: relative;
}

/* Slides */
.mySlides {
	display: none;
	padding: 0 120px;
	font-size: 20px;
	font-weight: 300;
	line-height: 150%;
	text-align: center;
}

/* Next & previous buttons */
.prev,
.next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: auto;
	padding: 0;
	user-select: none;
	width: 60px;
	background-color: #FFECEF;
	height: 60px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	z-index: 5;
}

.prev svg,
.next svg {
	position: absolute;
	top: 50%;
	right: 50%;
	color: #FFECEF;
	width: 20px;
	transform: translate(50%, -50%);
}

/* Position the "next button" to the right */
.next {
	right: 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
	color: rgba(42, 42, 42, 0.8);

}

/* The dot/bullet/indicator container */
.dot-container {
	text-align: center;
	padding: 20px;
	display: none;
}

/* The dots/bullets/indicators */
.dot {
	cursor: pointer;
	height: 10px;
	width: 10px;
	margin: 0 2px;
	border-radius: 50%;
	display: inline-block;
	border: 2px solid #242331;
	transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active,
.dot:hover {
	background-color: #242331;
}

.slideshow-container {
	position: relative;
}

.p20 {
	padding: 20px !important;
}

.p50 {
	padding: 50px !important;
}

.pt20 {
	padding-top: 20px;
}

.pt50 {
	padding-top: 50px;
}
.pt150 {
	padding-top: 150px;
}
.mt5 {
	margin-top: 5px;
}

.mt10 {
	margin-top: 10px;
}

.mt15 {
	margin-top: 15px;
}

.mt20 {
	margin-top: 20px;
}

.mt25 {
	margin-top: 25px;
}

.mt50 {
	margin-top: 50px;
}

.mt75 {
	margin-top: 75px;
}

.mt100 {
	margin-top: 100px;
}

.mt150 {
	margin-top: 150px;
}

.mt200 {
	margin-top: 200px;
}

.mb10 {
	margin-bottom: 10px !important;
}

.mauto {
	margin-left: auto;
	margin-right: auto;
}

.mlauto {
	margin-left: auto;
}

.mr50 {
	margin-right: 50px;
}

.testimg img {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

strong {
	font-weight: 800;
}
.fw400 {
	font-weight: 400;
}
.fw600 {
	font-weight: 600;
}

.fw700 {
	font-weight: 700!important;
}
.fsi
{
	font-style: italic;
}
.star {
	margin-bottom: 50px;
}

.star svg {
	margin-right: 7px;
}

.bg_lines {
	background-image: url("images/bglines.svg");
	padding-bottom: 56.8%;
	width: 100%;
	z-index: 0;
	top: 0;
	position: absolute;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.bg_redshape {
	background-image: url("images/head-bg.svg");
	background-repeat: no-repeat;
	width: 100%;
	position: absolute;
	padding-bottom: 53%;
	background-size: 70% 70%;
	background-position: top right;
}

.bg_contact {
	background-image: url("images/bgcontact.svg");
	background-repeat: no-repeat;
	width: 100%;
	position: absolute;
	height: 850px;
	top: 100px;
	right: 0;
	background-position: top right;
}

.logo {
	width: 124px;
	height: 67px;
	margin-right: 20px;
}


.zind {
	z-index: 1;
}

.head_txt {
	width: 50%;
	padding-top: 50px;
	float: left;
	max-width: 100%;
}

.head_lal {
	color: #242331;
	font-size: 50px;
	font-family: 'Lalezar', cursive;
	line-height: 125%;
}

.head_anim {
	padding-top: 50px;
	width: 50%;
	float: right;
}

.head_anim img {
	width: 100%;
}
.menu {
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	background-color: #F9F9F9;
	padding-bottom:5px;
	padding-left: 10px;
	padding-right: 10px;
	display: inline-block;
	margin: 30px 20px 20px 35px;
}

.menu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.menu ul li {
	display: inline-block;
	padding: 10px 10px 0 10px;
}

.menu li a:link,
.menu li a:visited,
.menu li a:active {
	color: #242331;
	text-decoration: none;
	font-size: 15px;
	font-weight: 400;
}

.bg_black .menu {
	padding-bottom: 0;
	background-color: transparent;
	border-radius: 0px;
}

.bg_black .menu li a:link,
.bg_black .menu li a:visited,
.bg_black .menu li a:active {
	color: #fff;
}

a.blue:link,
a.blue:visited,
a.blue:active {
	color: #1E20D7;
	text-decoration: underline;
	font-weight: 600;

}

a.gray:link,
a.gray:visited,
a.gray:active {
	color: #797979;
	text-decoration: none;

}

a:link,
a:visited,
a:active {
	text-decoration: none;

}
.menu li a:hover,
.mactive {
	color: #CF0000 !important;
}

.menu li a.button:link,
.menu li a.button:visited,
.menu li a.button:active {
	color: #242331;
	font-size: 14px;
}

.bg_black .menu li a:hover,
.mactive {
	color: #ff776c;
}


.signin {
	display: inline-block;
}

.max400 {
	max-width: 400px;
}

.max800 {
	max-width: 800px;
}
.max900 {
	max-width: 900px;
}
.row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}


.col-1 {
	-ms-flex: 0 0 75%;
	flex: 0 0 75%;
	max-width: 75%;
}

.col-2 {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

.col-3 {
	-ms-flex: 0 0 33.33333333%;
	flex: 0 0 33.33333333%;
	max-width: 33.33333333%
}

.col-4 {
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}

.col-1,
.col-2,
.col-3,
.col-4,
.accmenu,
.accont {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	z-index: 1;
}

.red_box {
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	padding: 8px 10px;
	overflow: hidden;
	position: relative;
	color: #fff;
	background: rgb(207, 0, 0);
	background: -moz-linear-gradient(90deg, rgba(207, 0, 0, 1) 0%, rgba(250, 88, 88, 1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(207, 0, 0, 1) 0%, rgba(250, 88, 88, 1) 100%);
	background: linear-gradient(90deg, rgba(207, 0, 0, 1) 0%, rgba(250, 88, 88, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cf0000", endColorstr="#fa5858", GradientType=1);
}

.circle1 {

	background-image: url("images/vect_top.svg");
	background-repeat: no-repeat;
	width: 100%;
	position: absolute;
	padding-bottom: 37%;
	top: 0;
	left: 37%;
	background-size: 39% 39%;
	mix-blend-mode: multiply;
	opacity: 0.7;
}

.circle2 {
	background-image: url("images/vect_bottom_left.svg");
	background-repeat: no-repeat;
	width: 100%;
	position: absolute;
	padding-bottom: 29%;
	left: 0;
	bottom: 0;
	background-size: 28% 28%;
	mix-blend-mode: multiply;
	opacity: 0.7;
	background-position: left bottom;
}

.circle3 {
	background-image: url("images/vect_bottom_right.svg");
	background-repeat: no-repeat;
	width: 100%;
	position: absolute;
	padding-bottom: 102%;
	left: 0;
	bottom: 0;
	background-size: 25% 25%;
	mix-blend-mode: multiply;
	opacity: 1;
	background-position: right bottom;
}

.footer {
	border-top: 2px solid #E3E3E3;
	border-bottom: 2px solid #E3E3E3;
	padding-bottom: 50px;
}

.val img {
	vertical-align: middle;
	margin-right: 5px;

}

.menuf ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.menuf li {
	margin-top: 10px;
	margin-bottom: 10px;
}

.menuf li a {
	color: #797979;
	text-decoration: none;
}

.menuf li a:hover {
	color: #CF0000;
}

.copr div:last-child {
	margin-left: auto
}

.copr div:last-child img {
	margin-right: 10px;
}

.copr {
	margin-bottom: 20px;
}

.h28 img {
	height: 28px;
}

.rectangle {
	position: relative;
	width: 100%;
}

.rectangle:before {
	content: "";
	display: block;
	padding-top: 70%;
	/* Set the height as a percentage of the width */
}

.placehold_img {

	background-color: #D9D9D9;
	-webkit-border-radius: 36px;
	-moz-border-radius: 36px;
	border-radius: 36px;
	padding-bottom: 66%;

}

.rounded_box40 {
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	padding: 20px;
	transition: background-color 1s;

}

.rounded_box20 {
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	padding: 20px;
	transition: background-color 1s;

}

.case_sel {
	background-color: #F9F9F9;
	padding-top: 60px;

}

.getst {
	bottom: 20px;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);

}

.bg_red {
	background-color: #CF0000;
	color: #fff;
	height: 100%;
}
.border_red
{
	border: 3px solid #CF0000;
}
.fl_left {
	float: left;
}

.fl_right {
	float: right;
}

p {
	margin: 0 0 20px 0;
}

.aboutl ul {
	margin: 0;
	display: block;
}

.aboutl ul li {
	margin-bottom: 10px;
}

.contact {
	width: 40%;
}

.contact:first-child {
	margin-left: auto;
	padding-right: 15px;
	;
}

.contact:last-child {
	margin-right: auto;
	padding-left: 15px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=text],
input[type=password],
input[type=tel],
input[type=email],
input[type=number],
input[type=date] {
	width: 100%;
	padding: 15px 20px;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
	display: block;
	background-color: #fff;
	border: 1px solid #D3D3D3;
	vertical-align: bottom;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	margin: 5px 0 0 0;
	font-size: 16px;
	letter-spacing: 0.5px;
}

select,
select:not(:checked) {
	width: 100%;
	padding: 15px 20px;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
	display: block;
	background-color: #fff;
	border: 1px solid #D3D3D3;
	vertical-align: bottom;
	background: url("images/chevron_down.svg") no-repeat right center #fff;
	background-position: bottom 45% right 20px;
	background-size: 25px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	margin: 5px 0 0 0;
	font-size: 16px;
	letter-spacing: 0.5;

}

@-moz-document url-prefix() {

	select,
	select:not(:checked) {
		padding: 0 0 3px 0;
	}
}

textarea {
	height: 200px;
	width: 100%;
	padding: 20px;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
	display: block;
	background-color: #fff;
	border: 1px solid #D3D3D3;
	vertical-align: bottom;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 5px 0 0 0;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	font-size: 16px;
	letter-spacing: 0.5px;
}

#hamburger {
	display: none;
}

.about {
	display: flex;
}

.error, .VAMErrorText {
	color: #CF0000;
	font-size: 14px;
	margin-left: 20px;
	margin-top: 5px;
	display: block;
}

.line {
	height: 1px;
	background-color: #E3E3E3;
	width: 100%;
}

.accmenu {
	-ms-flex: 0 0 30%;
	flex: 0 0 30%;
	max-width: 30%
}

.accont {
	-ms-flex: 0 0 70%;
	flex: 0 0 70%;
	max-width: 70%
}

.accmenu ul {
	margin: 50px 0 0 0;
	padding: 0;
	list-style-type: none;
}

.accmenu ul li {
	margin-bottom: 50px;
	position: relative;
	cursor: pointer;
	padding-left: 20px;

}

.accmenu li::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: transparent;
	transition: background-color 0.3s ease;
}

.accmenu li:hover::before,
.accmenu li.selected::before {
	background-color: red;
}

.accmenu ul li a:link {
	color: #242331;
}

.accont .txt30 {
	margin-right: 30px;
}
/* Custom radio and checkboxes */

.radiocont,
.checkcont {
	display: block;
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.radiocont input,
.checkcont input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark1 {
	position: absolute;
	top: 0;
	left: 0;
	height: 19px;
	width: 19px;
	border: 1px solid #242331;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.checkmark2 {
	position: absolute;
	top: 0;
	left: 0;
	height: 22px;
	width: 22px;
	border: 1px solid #242331;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.radiocont:hover input~.checkmark1,
.checkcont:hover input~.checkmark2 {
	background-color: #FFECEF;
}

.radiocont input:checked~.checkmark1,
.checkcont input:checked~.checkmark2 {
	background-color: #fff;
	border: 1px solid #CF0000;
}

.checkcont input:checked~.checkmark2 {
	background-color: #CF0000;
	border: 1px solid #CF0000;
}

.checkmark1:after,
.checkmark2:after {
	content: "";
	position: absolute;
	display: none;
}

.radiocont input:checked~.checkmark1:after,
.checkcont input:checked~.checkmark2:after {
	display: block;
}

.radiocont .checkmark1:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #CF0000;
}

.checkcont .checkmark2:after {
	left: 6px;
	top: 2px;
	width: 7px;
	height: 14px;
	border: solid white;
	border-width: 0 3.5px 3.5px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* End radio and checkboxes */

ul li
{
	margin-bottom: 10px;
}
.pinkbox
{
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
    background: #FFCACA;
	color: #000;
	width: 116px;
	height: 116px;
    font-family: Lalezar;
    font-size: 75px;
	text-align: center;
	line-height: 130px;
}
.h100
{
	height: 100%;
}
.red_box .error
{
	color: #fff;

}
/* rotating text */
.rotating-text {
    position: relative;
    height: 2em;
    overflow: hidden;
}

.rotating-text span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
	background-color: transparent;
    transition: opacity 1s ease, top 1s ease;
}

.rotating-text span.active {
    opacity: 1;
    top: 0;
}

.rotating-text span.exiting {
    opacity: 0;
    top: -20px;
}
/* end rotating text */
.video-mask{
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
}
#myVideo {
    position: absolute;
    top: -17.5%;
    left: -17.5%;
    width: 135%;
    height: 135%;
    object-fit: cover; 
    object-position: center center; 
}

.table {
    width: 100%;
    color: #000;
    font-size: 15px;
    border-collapse: collapse;
	border: 1px solid #e9ecef;
	margin-bottom: 20px;
}
.table th, .table td {
    padding: 1rem;
    vertical-align: top;
    text-align: left;
	border: 1px solid #e9ecef;
    word-wrap: break-word;
}
.table th
{
	font-weight: 700;
	background-color: #fbfbfb;
}
@media only screen and (max-width: 600px) {
	.menu {
		background-color: #242330;
		opacity: 0.86;
		-webkit-box-shadow: -4px 0px 5px 0px rgba(0, 0, 0, 0.3);
		-moz-box-shadow: -4px 0px 5px 0px rgba(0, 0, 0, 0.3);
		box-shadow: -4px 0px 5px 0px rgba(0, 0, 0, 0.3);
		height: 100%;
		bottom: 0;
		overflow: auto;
		top: 0;
		width: 235px;
		padding: 80px 0 0 0;
		z-index: 2;
		margin: 0;
		position: fixed;
		right: -250px;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
	}

	#navMenu {
		transform: none;
		transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0)
	}

	#hamburger span {
		display: flex;
		width: 25px;
		height: 3px;
		margin-bottom: 5px;
		position: relative;
		background: #2a2a2d;
		border-radius: 3px;
		z-index: 1;
		transform-origin: 5px 0px;
		transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
	}


	#hamburger {
		position: fixed;
		z-index: 3;
		top: 20px;
		right: 10px;
		display: block;
		background-color: rgba(207, 0, 0, 0.7);
		padding: 10px 10px 5px 10px;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
	}


	.menu ul {
		flex-direction: column;
	}

	.menu ul li {
		border-bottom: 1px solid #fff;
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 0;
		padding-top: 20px;
		display: block;
		padding-bottom: 20px;
		cursor: pointer;
	}

	.menu ul li:hover {
		background-color: #CF0000;
	}

	.menu li a:link,
	.menu li a:visited,
	.menu li a:active {
		color: #fff;
		font-size: 18px;
	}

	.menu li a:hover {
		color: #fff !important;
	}

	#navMenu {
		transform: none;
		transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0)
	}

	#hamburger span {
		display: flex;
		width: 25px;
		height: 3px;
		margin-bottom: 5px;
		position: relative;
		background: #fff;
		border-radius: 3px;
		z-index: 1;
		transform-origin: 5px 0px;
		transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
	}

	.signin {
		text-align: right;
		display: block;
		padding-right: 35px;
		margin: 20px;
	}


	.cont {
		width: 100%;
		padding-left: 10px;
		padding-right: 10px;
	}

	.head_anim {
		float: none;
		width: 100%;
		padding-top: 20%;
	}

	.head_txt {
		padding-top: 20px;
		width: 100%;
		text-align: center;
	}

	.head_lal {
		font-size: 40px;

	}

	.pt150 {
		padding-top: 75px;
	}

	h1 {
		font-size: 30px;
	}

	.col-2,
	.col-3,
	.col-4 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 20px;
		padding-right: 0;
		padding-left: 0;
	}

	.txt25 {
		font-size: 20px;
	}

	.col-2 .white_box {
		text-align: center;
	}

	.txt20 {
		font-size: 18px;
	}

	.txt18 {
		font-size: 16px;
	}

	.txt16 {
		font-size: 14px;
	}

	.mt100 {
		margin-top: 50px;
	}

	.copr {
		font-size: 14px;
	}

	.p50 {
		padding: 20px !important;
	}

	.gray_box {
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
		border-radius: 30px;
		border: 10px solid #fff;
	}

	.red_box {
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
		border-radius: 30px;
	}

	.red_box .w250 {
		width: 100%;
		text-align: left;
	}

	.about {
		display: block;
	}

	.aboutl {
		width: 100%;
		float: none;

	}

	.aboutr {
		width: 100%;
		float: none;
		margin-bottom: 20px;

	}

	.rounded_box20 .mt100 {
		margin-top: 70px;
	}

	.button {
		padding: 11px 33px;
	}

	.mt75 {
		margin-top: 50px;
	}

	.txt30 {
		font-size: 28px;
	}

	.w250 {
		width: 100%;
	}

	.footer {
		text-align: center;
	}

	.row.mt25 {
		margin-top: 0;
	}

	.d-flex.column {
		flex-direction: column;
	}

	.contact {
		width: 100%;
	}

	.contact:first-child {
		padding-right: 0;
		margin-bottom: 20px;
	}

	.contact:last-child {
		padding-left: 0;
	}

	.contact img {
		max-width: 80px;
		margin-right: 0;
		display: block;
		margin-bottom: 10px;
	}

	.contact .d-flex-center {
		flex-direction: column;
	}

	.contact .mlauto {
		margin-left: 0;
		margin-top: 10px;
	}

	input[type=text],
	input[type=password],
	input[type=tel],
	input[type=number],
	input[type=date],
	textarea {
		font-size: 14px;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
		padding: 15px;
		margin: 5px 0;
	}

	.cont_home {
		padding: 0;
	}

	.mySlides {
		padding: 0 80px;
	}

	.prev,
	.next {
		width: 50px;
		height: 50px;
	}

	.col-4 .bg_light,
	.col-4 .bg_red {
		text-align: center;
	}

	.rounded_box40 {
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
		border-radius: 30px;
	}

	.row {
		margin-right: 0;
		margin-left: 0;
	}

	.pinkbox
	{
		margin: 0 auto;
	}
	.txt22
	{
		font-size: 20px;
	}

	
}

/* The Modal  */
.modal {
	display: none;
	position: fixed;
	z-index: 3;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
	position: absolute;
	background-color: #fefefe;
	padding: 0;
	max-width: 860px;
	width: 100%;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	animation-duration: 0.4s;
	-webkit-border-radius: 19px;
	-moz-border-radius: 19px;
	border-radius: 19px;
	top: 50%;
	left: 50%;
	-ms-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);

}

.modal-body .radiocont,
.modal-body .checkcont {}

.modal-header {
	background-color: #ebf9ff;
	-webkit-border-top-left-radius: 19px;
	-webkit-border-top-right-radius: 19px;
	-moz-border-radius-topleft: 19px;
	-moz-border-radius-topright: 19px;
	border-top-left-radius: 19px;
	border-top-right-radius: 19px;
	height: 39px;
}

body.modal-open {
	overflow: hidden
}

.modal-body {
	padding: 30px;
	font-size: 14px;
}

.modal-body h1 {
	margin-top: 0
}