* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
	font-family: 'Segoeuib';
	src: url(/static/fonts/segoeui/segoeuib.ttf);
}
.container {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}
a {
    text-decoration: none;
    color: #6A6A6A;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
a:hover {
    color: #02B056;
}
.btn_mal {
    display: inline-block;
    text-transform: uppercase;
    background-color:#BB0D30;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    transition: .3s;
    cursor: pointer;
}
.btn_mal:hover {
    color: #fff;
    box-shadow: 0 0 6px rgba(187, 13, 48, .8);
}
.btn_mal:focus {
    transform: scale(.9);
}
@font-face {
    font-family: 'Segoe UI Reg';
    src: url("../fonts/segoeui/segoeui.ttf");
}
@font-face {
    font-family: 'Segoe UI Bold';
    src: url("../fonts/segoeui/segoeuib.ttf");
}
@font-face {
    font-family: 'Segoe UI Italic';
    src: url("../fonts/segoeui/segoeuii.ttf");
}
@font-face {
    font-family: 'Segoe UI Italic Bold';
    src: url("../fonts/segoeui/segoeuiz.ttf");
}

body {
    font-family: 'Segoe UI Reg';
    background-color: #F5F5F5;
}
header {
    z-index: 999;
    position: sticky;
    top: 0;
    background-color: #fff;
}
.header {
    display: flex;
    justify-content: space-between;
    height: 120px;
}
.logo {
    margin: auto 0;
    height: 80%;
}
.logo img {
    height: 100%;
}
.menu {
    margin: auto 0;
}
.menu_list {
    display: flex;
    list-style-type: none;
    font-size: 18px;
    text-transform: uppercase;
}
.list_item {
    margin-left: 30px;
}
.link-active::before {
    position: relative;
    display: block;
    content: "";
    height: 1px;
    width: 100%;
    top: 7px;
    background-color: #02B056;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    opacity: 0;
}
.link-active::after {
    position: relative;
    display: block;
    content: "";
    height:13px;
    width:13px;
    margin-left: auto;
    margin-right: auto;
    background-color: #02B056;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0;
}

.list-link:hover ~ .link-active::before,
.list-link:focus ~ .link-active::before {
    opacity: 1;
}
.list-link:hover ~ .link-active::after {
    opacity: 1;
    -webkit-transform: rotate(405deg);
    -moz-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    transform: rotate(405deg);
}
/* Header end */
.d-flex {
    display: flex !important;
}
.time_input {
    width: 50px;
    height: 50px;
    border: 0;
    text-align: center;
}
.time_savebtn {
    border: 1px solid #02B056;
    border-radius: 12px;
    background-color: transparent;
    padding: 12px 18px;
    cursor: pointer;
    color: #02B056;
    transition: .3s;
    text-transform: uppercase;
}
.time_savebtn:hover {
    color: #fff;
    background-color: #02B056;
}

/* Payment form start */
.payment {
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    z-index: 1001;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .3);
    display: none;
    justify-content: center;
    align-items: center;
    animation: form_show .5s;
}
@keyframes form_show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.service_title_name {
    color: #fff;
    font-size: 20px;
}
.title_service {
    color: #F5F5F5;
    font-size: 16px;
}
.price_service {
    color: #F5F5F5;
    font-size: 18px;
}
.price_service:last-of-type {
    margin-bottom: 12px;
}

.payment_form {
    width: 400px;
    position: relative;
    margin-top: -150px;
    background-color: #02B056;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
}
.payment_form_title {
    font-size: 26px;
    text-align: center;
    margin-bottom: 12px;
    color: #fff;
    font-family: 'Segoe UI Italic Bold';
}
.payment_form_input {
    width: 100%;
    margin-bottom: 12px;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 18px;
    border: 0;
    font-family: 'Segoe UI Italic';
}
.message-error {
    display: none;
    border-radius: 12px;
    color: #fff;
    background-color: #BB0D30;
    margin-top: 4px;
    padding: 12px;
    margin-bottom: 14px;
}
.country_code {
    position: absolute;
    color: #fff;
    font-size: 18px;
    font-family: 'Segoe UI Italic Bold';

}
.payment_form_btn_buy {
    border: 0;
    font-family: 'Segoe UI Reg';
}
#close-menu {
    display: none
}
#close_form {
    position: absolute;
    top: 8px;
    right: 8px;
}
/* Payment form end */

/* Closer start */
    .closer {
        position: relative;
        top: 16px;
        right: 20px;
        width: 30px;
        height: 30px;
        cursor: pointer;
        border: 1px solid #fff;
        border-radius: 50%;
        padding: 4px;
        -webkit-transition: .3s;
        -moz-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
    }
    .closer-ic::before,
    .closer-ic::after {
        position: relative;
        display: block;
        content: "";
        width: 2px;
        height: 100%;
        left: 48%;
        background-color: #ffffff;
        -webkit-transition: .3s;
        -moz-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
    }
    .closer-ic::before {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .closer-ic::after {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        margin-top: -100%;
    }
    .closer:hover .closer-ic::before,
    .closer:hover .closer-ic::after {
        background-color: #B20C2E;
    }
    .closer:focus .closer-ic::before,
    .closer:focus .closer-ic::after {
        background-color: #B20C2E;
    }
    .closer:hover,
    .closer:focus {
        background-color: #fff;
    }
/* Closer end */

/* Footer start */
footer {
    background-color: #282B33;
}
.footer-line-up {
    background-color: #02B056;
    width: 100%;
    height: 10px;
}
.footer {
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    color: #fff;
}
.footer-block {
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.footer_blocks_line {
    width: 1px;
    height: 60%;
    background-color: #3F434B;
}
.footer_map {
    width: 270px;
    height: 200px;
    background-color: #555555;
}
.footer_block_content {
    margin-left: 20px;
}
.footer_heading {
    font-size: 26px;
    text-transform: uppercase;
}
.footer_block_list {
    list-style-type: none;
    font-size: 16px;
    color: #EEEEEE;
}
.footer_link {
    color: #EEEEEE;
}
.footer_link:hover {
    border-bottom: 1px solid #02B056;
}
.footer-line-down {
    background-color: #3F434B;
    height: 1px;
    width: 100%;
}
.copyright {
    color: #EEEEEE;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    font-size: 15px;
}

/* Footer end */

.heading {
    font-family: 'Segoe UI Bold';
    font-size: 30px;
    background-color: #fff;
    display: inline-block;
    padding: 25px 40px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
}

/* Services */
.services {
    max-width: 1150px;
    margin: 100px auto;
}
.services-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.service-block {
    position: relative;
    margin: 12px;
    background-color: #fff;
    width: 330px;
    /* height: 400px; */
    border-radius: 12px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
}
.service_content_block {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}
.service-col-block-1 {
    position: absolute;
    width: 100%;
    background-color: #BB0D30;
    height: 80px;
    top: 10px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
.service-col-block-2 {
    position: absolute;
    background-color: #02B056;
    width: 100%;
    height: 80px;
    top: 20px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service_title {
    color: #fff;
    font-size: 18px;
}
.service_price_info {
    margin-top: 125px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    color: #02B056;
}
.tgmark {
    font-size: 10px;
    margin-top:10px;
}
.service_price {
    font-size: 34px;
    margin-bottom: -8px;
}
.service_time {
    font-size: 20px;
    text-align: right;
}
.service_description {
    color:#671727;
    font-size: 16px;
}
.service_btn_buy {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}
/* Services end */

/* Time content start */
.time_content {
    margin: 80px auto;
    background-color: #fff;
    border-radius: 12px;
    padding-top: 18px;
    padding-bottom: 18px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
}
.time_heading {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 30px;
    margin-bottom: 50px;
}
.time_blocks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.time_block {
    flex-basis: 400px;
    background-color:#CBFFFA;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
    border-radius: 12px;
    padding: 33px 15px;
    margin: 0 32px;
    margin-bottom: 32px;
}
.time_block_heading {
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
}
.time_block_table {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.time_thead th {
    padding: 8px 16px;    
    font-size: 20px;
}
.time_tbody {
    font-size: 20px;
}
/* Time content end */

/* About start */
.about_picture {
    background: url(../img/aboutpicture.jpg) no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    min-height: 720px;
}
.about_picture_heading {
    color: #fff;
    font-size: 44px;
    max-width: 750px;
    text-align: center;
    margin-top: 20px;
    text-shadow: 0 0 12px rgba(0, 0, 0, .5);
    font-family: 'Segoe UI Italic Bold';
}
.about {
    margin-top: 40px;
    margin-bottom: 40px;
}
.about_content {
    background-color: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
    border-radius: 12px;
    padding: 44px 40px;
}
.about_content_heading {
    margin-bottom: 34px;
    font-family: 'Segoe UI Bold';
    text-transform: uppercase;
    color: #000;
    font-size: 28px;
    text-align: center;
}
.about_content_text {
    font-size: 20px;
    color: #555555;
    line-height: 1.5;
    text-align: justify;
}
/* Pictures */
.about_content_pictures {
    margin-top: 18px;
    padding: 25px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
}
.small-pictures {
    display: flex;
    justify-content: space-between;
}
.small-pictures img {
    flex-grow: 1;
}
.small-pictures img:first-child {
    margin-right: 20px;
}
.large-pictures img {
    margin-top: 20px;
    width: 100%;
}
/* About end */

/* Alert start */
.alert {
    position: fixed;
    z-index: 1001;
    background-color: #CBFFFA;
    width: 400px;
    height: 550px;
    border-radius: 12px;
    margin: auto;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.closer-alert {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 1s;
    -o-transition: 1s;
    -moz-transition: 1s;
    -webkit-transition: 1s;
}
.closer-alert:hover {
    transform: rotate(360deg);
}
.alert-heading {
    margin-bottom: 12px;
}
#saveFile {
    margin-top: 10px;
    border: 2px solid #02B056;
    padding: 8px 12px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    color: #02B056;
    transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
}
#saveFile:hover {
    background-color: #02B056;
    color: #fff;
}
#saveFile:focus,
#saveFile:active {
    transform: scale(0.96);
}
/* Alert end */
.d-none {
    display: none;
}

.news {
    margin: 60px auto;
    padding: 0;
}
.news_blocks {
    margin-bottom: 60px;
}
.news-title {
    text-align: center;
    margin-bottom: 25px;
}
.news-text {
    font-size: 20px;
    line-height: 30px;
    text-align: justify;
    color: #0D0D0D;
    margin-bottom: 37px;
    margin-top: 26px;
}
.simple-block {
    padding: 23px 26px;
}
.simple-block_details {
    background: #ffffff;
    -webkit-box-shadow: 0px 2px 4px rgba(100,100,100,0.5);
    -moz-box-shadow: 0px 2px 4px rgba(100,100,100,0.5);
    -o-box-shadow: 0px 2px 4px rgba(100,100,100,0.5);
    box-shadow: 0px 2px 4px rgba(100,100,100,0.5);
    border-radius: 12px;
}
.simple-block_heading {
    color: #686868;
    font-size: 30px;
	font-family: 'Segoeuib';
}


.simple-block_button {
    border-radius: 12px;
    background: #0072ff;
    font-size: 17px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    letter-spacing: -0.3px;
    color: #fff;
    padding: 10px 35px;
    display: block;
    width: 107px;
    margin-right: 0;
    margin-left: auto;
}
.simple-block_button:hover {
    color: #fff;
    -webkit-box-shadow: 3px 3px 3px rgba(100,100,100,0.5);
    -moz-box-shadow: 3px 3px 3px rgba(100,100,100,0.5);
    -o-box-shadow: 3px 3px 3px rgba(100,100,100,0.5);
    box-shadow: 3px 3px 3px rgba(100,100,100,0.5);
}

.news-image {
    width: 100%;
}

/* News Slider Start */
.wrapper {
    height: 400px;
    margin-top: 10px;
    margin-bottom: 30px;
    position: relative;
}

.slider {
	background-color: #ddd;
	height: inherit;
	overflow: hidden;
	position: relative;
}
.wrapper > input {
	display: none;
}

.slides {
	height: inherit;
	position: absolute;
	width: inherit;
}

.wrapper .controls {
	left: 50%;
	margin-left: -98px;
	position: absolute;
}

.wrapper label {
	cursor: pointer;
	display: inline-block;
	height: 8px;
	margin: 25px 12px 0 16px;
	position: relative;
	width: 8px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
}

.wrapper label:after {
	border: 2px solid #0047e0;
	content: " ";
	display: block;
	height: 8px;
	left: -4px;
	position: absolute;
	top: -4px;
	width: 8px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
}

.wrapper label {
	cursor: pointer;
	display: inline-block;
	height: 4px;
	margin: 15px 2px 0 16px;
	position: relative;
	width: 4px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: background ease-in-out .5s;
	-moz-transition: background ease-in-out .5s;
	-o-transition: background ease-in-out .5s;
	transition: background ease-in-out .5s;
}

.wrapper label:hover, 
#slide1:checked ~ .controls label:nth-of-type(1),
#slide2:checked ~ .controls label:nth-of-type(2),
#slide3:checked ~ .controls label:nth-of-type(3),
#slide4:checked ~ .controls label:nth-of-type(4),
#slide5:checked ~ .controls label:nth-of-type(5) {
	background: #0047e0;
}

.slides {
	height: inherit;
	opacity: 0;
	position: absolute;
	width: inherit;
	z-index: 0;
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-o-transform: scale(1.5);
	transform: scale(1.5);
	-webkit-transition: transform ease-in-out .5s, opacity ease-in-out .5s;
	-moz-transition: transform ease-in-out .5s, opacity ease-in-out .5s;
	-o-transition: transform ease-in-out .5s, opacity ease-in-out .5s;
	transition: transform ease-in-out .5s, opacity ease-in-out .5s;
}

#slide1:checked ~ .slider > .slide1,
#slide2:checked ~ .slider > .slide2,
#slide3:checked ~ .slider > .slide3,
#slide4:checked ~ .slider > .slide4,
#slide5:checked ~ .slider > .slide5 {
	opacity: 1;
	z-index: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

/* News Slider End */

.feedback-form {
    max-width: 500px;
    margin: 110px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feedback-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #0056b3;
}