@import url('https://fonts.googleapis.com/css2?family=PT+Sans&family=Sofia+Sans+Condensed:wght@300;400;600;700&display=swap');

html {
    overflow-x: hidden;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: flex-start;
    justify-content: space-between;
}

body, body * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'PT Sans';
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
}

h1, h2 {
    font-family: 'Sofia Sans Condensed';
    font-size: 50px;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 4px;
    text-decoration-color: rgba(188,80,80,1);
    text-align: center;
    line-height: 160%;
}

h2.contacts__city{
	margin-bottom: 30px;
}

/* h1:after,h2:after{
    content: '';
    background: linear-gradient(180deg, rgba(188,80,80,1) 0%, rgba(165,21,21,1) 25%, rgba(165,21,21,1) 75%, rgba(249,240,240,1) 100%);
    display: block;
    width: 100%;
    height: 4px;
} */

p, b, li {
    /* font-size: 20px; */
    text-align: justify;
}
p {
    margin-bottom: 30px;
}
ul {
    margin-bottom: 30px;
    margin-left: 50px;
}
li {
    line-height: 1.2;
}
img{
    max-width: 100%;
    height: auto;
}
.shadow-light-blue{
    box-shadow: 5px 5px 8px 5px #f3f8fd;
}
.shadow-light-gray{
    box-shadow: 5px 5px 8px 5px lightgrey;
}
.shadow-light-beige{
    box-shadow: 5px 5px 8px 5px #aeb4bd36;
}
.shadow-dark-gray {
  box-shadow: 6px 7px 5px 0 #00000036;
}
.mt-30{
    margin-top: 30px;
}
.mb-30 {
    margin-bottom: 30px;
}
.my-30{
    margin-top: 50px;
    margin-bottom: 30px;
}
.mt-50{
    margin-top: 50px;
}
.mb-50 {
    margin-bottom: 50px;
}
.my-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}
.top-content{
    width: 100%;
}
.top-content.--admin{
    padding-top: 40px;
}
.main_banner{
    margin-top: -50px;
    width:100%;
    min-height: 250px;
    object-fit: cover;
}
.page-content {
    width: 100%;
}
.page-content h1+p, .page-content h2+p{
    font-size: 22px;
    text-align: center; 
}
.simple-button {
    color: #2d4c7d;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 45px;
    height: 40px;
    margin: 30px auto;
    border: 1px solid #2d4c7d;
    box-shadow: 0 0 1px #2d4c7d;
    text-decoration: none;
    transition: all 0.2s;
    background: linear-gradient(to right, #2d4c7d 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;
}

.simple-button.--detail{
    margin-bottom: 70px;
}

.simple-button:hover {
    color: white;
    background: linear-gradient(to right, #2d4c7d 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: left bottom;
}
._name{
    font-family: 'Sofia Sans Condensed';
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
._desc {
    font-size: 17px;
}
.btn-burger-block{
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.btn-burger {
    position: relative;
    display: inline-block;
    background: #205889;
    width: 100%;
    height: 4px;
    cursor: pointer;
    z-index: 99;
    border-radius: 2px;
}
.btn-burger::after, .btn-burger::before {
    content: "";
    display: block;
    position: absolute;
    background: #205889;
    width: 100%;
    height: 4px;
    border-radius: 2px;
}
.btn-burger::before {
    top: -7px;
}
.btn-burger::after {
    top: 7px;
}
.font_24 {
    font-size: 24px;
    margin: 25px 0;
}
.container.mt-50 .col-12.d-flex h2{
	width: 100%;
	margin-bottom: 30px;
}

@media (max-width: 992px){
	.container.mt-50 .col-12.d-flex h2{
		margin-bottom: 20px;
	}
}