@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Bold.eot');
    src: local('Manrope Bold'), local('Manrope-Bold'),
    url('/fonts/Manrope-Bold.eot?#iefix') format('embedded-opentype'),
    url('/fonts/Manrope-Bold.woff2') format('woff2'),
    url('/fonts/Manrope-Bold.woff') format('woff'),
    url('/fonts/Manrope-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Semibold.eot');
    src: local('Manrope Semibold'), local('Manrope-Semibold'),
    url('/fonts/Manrope-Semibold.eot?#iefix') format('embedded-opentype'),
    url('/fonts/Manrope-Semibold.woff2') format('woff2'),
    url('/fonts/Manrope-Semibold.woff') format('woff'),
    url('/fonts/Manrope-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Regular.eot');
    src: local('Manrope Regular'), local('Manrope-Regular'),
    url('/fonts/Manrope-Regular.eot?#iefix') format('embedded-opentype'),
    url('/fonts/Manrope-Regular.woff2') format('woff2'),
    url('/fonts/Manrope-Regular.woff') format('woff'),
    url('/fonts/Manrope-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Light.eot');
    src: local('Manrope Light'), local('Manrope-Light'),
    url('/fonts/Manrope-Light.eot?#iefix') format('embedded-opentype'),
    url('/fonts/Manrope-Light.woff2') format('woff2'),
    url('/fonts/Manrope-Light.woff') format('woff'),
    url('/fonts/Manrope-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts//fonts/Manrope-Thin.eot');
    src: local('Manrope Thin'), local('Manrope-Thin'),
    url('/fonts/Manrope-Thin.eot?#iefix') format('embedded-opentype'),
    url('/fonts/Manrope-Thin.woff2') format('woff2'),
    url('/fonts/Manrope-Thin.woff') format('woff'),
    url('/fonts/Manrope-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Medium.eot');
    src: local('Manrope Medium'), local('Manrope-Medium'),
    url('/fonts/Manrope-Medium.eot?#iefix') format('embedded-opentype'),
    url('/fonts/Manrope-Medium.woff2') format('woff2'),
    url('/fonts/Manrope-Medium.woff') format('woff'),
    url('/fonts/Manrope-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-ExtraBold.eot');
    src: local('Manrope ExtraBold'), local('Manrope-ExtraBold'),
    url('/fonts/Manrope-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('/fonts/Manrope-ExtraBold.woff2') format('woff2'),
    url('/fonts/Manrope-ExtraBold.woff') format('woff'),
    url('/fonts/Manrope-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    font-weight: normal;
    font-style: normal;
    background: #fff;
    color: #000;
    line-height: 1.6;
    max-width: 1200px;
    margin: auto;
    padding: 0 10px;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

li {
    list-style: none;
}

header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 10px;
    padding-top: 15px;
    border-bottom: 1px solid #ccc;
}
header .logo {
    margin-right: 30px;
}
header .logo img {
    width: 60px;
}

nav a {
    margin-right: 20px;
    text-decoration: none;
    color: black;
    border-bottom: 1px solid transparent;
}

nav a:hover {
    border-color: black;
}

.section {
    margin-bottom: 60px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    border: 1px solid #000;
    background: none;
    color: #000;
    text-decoration: none;
    font-size: 16px;
}

.btn:hover {
    background: #000;
    color: #fff;
}
.content h3 {
    margin-top: 30px;
}
#about h3 {
    margin-bottom: 5px;
    margin-top: 20px;
}
#for_no li {
    margin-bottom: 15px;
}
.price_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.price_item {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 20px;
    margin: 10px;
    flex: 1 1 0;
    transition: .3s;
    min-width: 280px;
    justify-content: space-between;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .1), 0 2px 6px 0 rgba(0, 0, 0, .1);
}
.price_item:hover {
    transform: scale(1.02);
}
#faq h3 {
    margin-bottom: 5px;
}
#faq p {
    margin-bottom: 20px;
}
#contacts .contact_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.contact_item {
    margin: 10px;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
}
.soc_icon {
    display: inline-block;
    width: 50px;
    height: 50px;
}
.contact_item:hover {
    transform: scale(1.02);
}
.soc_icon.tg {
    background: url("/img/telegram_50.svg") no-repeat;
    background-size: contain;
}
.soc_icon.wp {
    background: url("/img/whatsapp_50.svg") no-repeat;
    background-size: contain;
}
.soc_icon.email {
    background: url("/img/email_50.png") no-repeat;
}
.soc_icon.phone {
    background: url("/img/phone_50.png") no-repeat;
}
.soc_icon.email, .soc_icon.phone {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    background-size: contain;
}
.contact_item a {
    color: inherit;
    text-decoration: none;
    display: inline-block;

}
.soc_icon.tg a, .soc_icon.wp a {
    width: 100%;
    height: 100%;
}
.soc_icon.email a, .soc_icon.phone a {
    white-space: nowrap;
}
footer {
    margin-top: 80px;
    font-size: 14px;
    color: #555;
    text-align: center;
    border-top: 1px solid #ccc;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
footer a {
    color: inherit;
    text-decoration: none;
}
@media all and (max-width: 800px) {
    .contact_item.email, .contact_item.phone {
        flex-basis: 100%;
    }
}