@font-face {
    font-family: IconFont;
    src: url('../fonts/IconFont.eot');
    src: url('../fonts/IconFont.eot?#iefix') format("embedded-opentype"), url('../fonts/IconFont.woff') format("woff"), url('../fonts/IconFont.ttf') format("truetype");
    font-display: swap
}

@font-face {
    font-family: Gilroy;
    src: url('../fonts/gilroy-heavy.eot');
    src: url('../fonts/gilroy-heavy.eot?#iefix') format("embedded-opentype"), url('../fonts/gilroy-heavy.woff2') format("woff2"), url('../fonts/gilroy-heavy.woff') format("woff"), url('../fonts/gilroy-heavy.ttf') format("truetype");
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: Gilroy;
    src: url('../fonts/gilroy-bold.eot');
    src: url('../fonts/gilroy-bold.eot?#iefix') format("embedded-opentype"), url('../fonts/gilroy-bold.woff2') format("woff2"), url('../fonts/gilroy-bold.woff') format("woff"), url('../fonts/gilroy-bold.ttf') format("truetype");
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: Gilroy;
    src: url('../fonts/gilroy-medium.eot');
    src: url('../fonts/gilroy-medium.eot?#iefix') format("embedded-opentype"), url('../fonts/gilroy-medium.woff2') format("woff2"), url('../fonts/gilroy-medium.woff') format("woff"), url('../fonts/gilroy-medium.ttf') format("truetype");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: Gilroy;
    src: url('../fonts/gilroy-regular.eot');
    src: url('../fonts/gilroy-regular.eot?#iefix') format("embedded-opentype"), url('../fonts/gilroy-regular.woff2') format("woff2"), url('../fonts/gilroy-regular.woff') format("woff"), url('../fonts/gilroy-regular.ttf') format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Gilroy;
    src: url('../fonts/gilroy-light.eot');
    src: url('../fonts/gilroy-light.eot?#iefix') format("embedded-opentype"), url('../fonts/gilroy-light.woff2') format("woff2"), url('../fonts/gilroy-light.woff') format("woff"), url('../fonts/gilroy-light.ttf') format("truetype");
    font-weight: 300;
    font-style: normal
}

* {
    list-style-type: none;
    margin: 0;
    padding: 0;
    outline: 0;
    text-decoration: none;
    font-family: "Gilroy", sans-serif;
}

.wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    float: left;
    width: 100%;
    position: fixed;
    z-index: 5000;
    padding: 20px 0;
    box-sizing: border-box;
    transition: 0.3s;
}

header.scroll {
    background-color: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}

header.scroll div.right span.search,
header.scroll div.right>.lang,
header.scroll div.right nav>ul>li>a {
    color: #000;
}

header.scroll div.right nav>ul {
    border-right: 1px solid #000;
}

header.scroll div.right {
    border-left: 1px solid #000;
}

header.scroll a.logo {
    background-image: url('../img/logo-dark.png');
}

header div.wrapper {
    width: 100%;
    max-width: inherit;
    padding: 0 30px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

header a.logo {
    float: left;
    width: 230px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url('../img/logo.svg');

}

header div.right {
    width: calc(100% - 255px);
    float: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-left: 1px solid rgba(221, 221, 221, 0.3);
}

header div.right nav>ul {
    float: right;
    margin-left: 20px;
    padding: 0 20px;

    border-right: 1px solid rgba(221, 221, 221, 0.3);
    margin-right: 20px;
}

header div.right nav>ul>li {
    float: left;
    position: relative;
}

header div.right nav>ul>li>a {
    float: left;
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    padding: 10px 0px 10px 20px;
    box-sizing: border-box;
}

header div.right nav>ul>li>ul {
    display: none;
    position: absolute;
    left: 20px;
    background-color: #fff;
    border-radius: 6px;
    float: left;
    top: 40px;
    padding: 10px 20px;
}

header div.right nav>ul>li>ul>li>a {
    float: left;
    width: 100%;
    padding: 10px 0;
    font-size: 20px;
    font-weight: 400;
    color: #000;
}

header div.right nav>ul>li:hover>ul {
    display: block;
}

header div.right span.search {
    float: left;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-right: 10px;
}

header div.right>.lang>i {
    margin-right: 4px;
}

header div.right>.lang {
    float: left;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}

div.slider,
div.slider div.items,
div.slider div.items div.item {
    width: 100%;
    height: 800px;
    float: left;
    position: relative;
    background-size: cover;
    background-position: center;
}

div.slider div.items div.item {
    display: flex;
    align-items: center;
}

div.slider div.items div.item:before {
    content: '';
    background-color: rgba(0, 0, 0, 0.35);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

div.slider div.items div.item div.content {
    max-width: 55%;
    float: left;
    z-index: 2;
    background-color: rgba(0, 0, 0, .40);
    border-left: 10px solid #ED1C24;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
}

div.slider div.items div.item div.content h2 {
    width: 100%;
    float: left;
    font-size: 70px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}


div.slider div.items div.item div.content div.text {
    width: 100%;
    float: left;
    font-size: 30px;
    font-weight: 500;
    color: #fff;
}


div.slider div.dots {
    position: absolute;
    bottom: 5%;
    z-index: 1000;
}

div.slider div.dots button {
    width: 12px;
    height: 12px;
    background-color: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
    border-radius: 100%;
    float: left;
    margin-right: 5px;
    border: 0;
    cursor: pointer;
}

div.slider div.dots button.active {
    background-color: #ED1D26;
}


/* Home Product Start */

div.home-products {
    float: left;
    width: 100%;
    padding: 80px 0px;
    box-sizing: border-box;
}

div.home-products div.top {
    float: left;
    width: 100%;
    margin-bottom: 40px;
}

div.home-products div.top>p {
    width: 100%;
    float: left;
    font-size: 25px;
    line-height: 40px;
    font-weight: 400;
    color: #4A4A4A;
}

div.home-products div.items {
    width: 100%;
    float: left;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
    column-gap: 30px;
}

div.home-products div.items a.item {
    float: left;
    width: 100%;
    border: 1px solid #ddd;
    padding: 20px;
    box-sizing: border-box;
}

div.home-products div.items a.item div.image {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

div.home-products div.items a.item div.image:before {
    width: 100%;
    float: left;
    padding-top: 150%;
    content: '';
}

div.home-products div.items a.item h4 {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000;
}

div.home-products div.items a.item span.more {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #ED1C24;
}

/* Home Product End */

/* Home Slider Start */

div.home-slider {
    float: left;
    width: 100%;
    padding: 80px 0px;
    box-sizing: border-box;
}

div.home-slider div.top {
    float: left;
    width: 100%;
    margin-bottom: 40px;
}

div.home-slider div.top>h3,
div.home-products div.top>h3 {
    width: 100%;
    float: left;
    font-size: 44px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

div.home-slider div.top>h3 span,
div.home-products div.top>h3 span {
    color: #ED1C24;
}

div.home-slider div.row {
    width: 100%;
    float: left;
    position: relative;
}

div.home-slider div.items {
    width: 100%;
    float: left;
}


div.home-slider div.items div.item {
    float: left;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

div.home-slider div.items div.item div.image {
    width: 67%;
    float: left;
    position: relative;
    background-size: cover;
    background-position: center;
}

div.home-slider div.items div.item div.image:before {
    width: 247px;
    height: 247px;
    background-image: url(../img/slider_image_mask.png);
    position: absolute;
    left: 0;
    top: 0;
    float: left;
    content: '';
}

div.home-slider div.items div.item div.right {
    width: 30%;
    float: right;
    background-color: #000;
    padding: 30px;
    box-sizing: border-box;
}

div.home-slider div.items div.item div.right div.title {
    width: 100%;
    float: left;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    height: 60px;
    color: #fff;
    box-sizing: border-box;
    margin-bottom: 20px;
    overflow: hidden;
}

div.home-slider div.items div.item div.right div.text {
    width: 100%;
    float: left;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    height: 150px;
    color: #c7c7c7;
    box-sizing: border-box;
    margin-bottom: 20px;
    overflow: hidden;
}


div.home-slider div.items div.item div.right a {
    width: 100%;
    float: left;
    background-color: #3C3C3C;
    text-align: center;
    padding: 15px 20px;
    color: #fff;
    box-sizing: border-box;
    margin-bottom: 100px;
}

div.home-slider div.buttons {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 2;
}

div.home-slider div.buttons a {
    width: 62px;
    height: 62px;
    float: left;
    background-image: url(../img/blog_prev.svg);
}

div.home-slider div.buttons a.next {
    background-image: url(../img/blog_next.svg);
    margin-left: 4px;
}

div.home-slider.reverse div.items div.item div.image {
    float: right;
    order: 2;
}

div.home-slider.reverse div.items div.item div.image:before {
    width: 247px;
    height: 247px;
    background-image: url(../img/slider_image_mask2.png);
    position: absolute;
    right: 0;
    left: inherit;
    top: 0;
    float: left;
    content: '';
}


div.home-slider.reverse div.items div.item div.right {
    float: left;
    order: 1;
    background-color: #ED1C24;
}

div.home-slider.reverse div.buttons {
    right: inherit;
    left: 20px;
}


div.home-slider.reverse div.buttons a.next {
    background-image: url(../img/catalog_next.svg);
}


/* Home Slider End */

div.page-banner {
    width: 100%;
    padding: 200px 0px;
    box-sizing: border-box;
    float: left;
    background-image: url(../../uploads/slider.png);
    position: relative;
}

div.page-banner:before {
    content: '';
    background-color: rgba(113, 0, 4, 0.70);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

div.page-banner div.wrapper {
    z-index: 2;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

div.page-banner h1 {
    font-size: 70px;
    color: #fff;
    font-weight: 300;
}

div.page-banner a {
    font-size: 20px;
    color: #fff;
    font-weight: 400;
}

div.page-banner a:after {
    content: ' / ';
}

div.page-banner a:last-child:after {
    content: '';
}

div.page {
    padding: 80px 0;
    float: left;
    width: 100%;
}

div.page div.corporate {
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

div.page div.corporate div.image {
    width: 35%;
    float: left;
}

div.page div.corporate div.image img {
    width: 100%;
}

div.page div.corporate div.right {
    width: 60%;
    float: right;
}

div.page div.corporate div.right h3 {
    width: 100%;
    float: left;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
}

div.page div.corporate div.right p {
    width: 100%;
    float: left;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #4A4A4A;
    margin-bottom: 15px;
}


div.page div.certificates {
    width: 100%;
    float: left;
}

div.page div.certificates h3 {
    width: 100%;
    float: left;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: #000;
    margin-bottom: 30px;
}

div.page div.certificates div.items {
    width: 100%;
    float: left;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 60px;
    grid-row-gap: 60px;
}

div.page div.certificates div.items>.item {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    box-sizing: border-box;
    float: left;
    width: 100%;
}

div.page div.certificates div.items>.item>.image {
    float: left;
    width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

}

div.page div.certificates div.items>.item>.image:before {
    content: '';
    float: left;
    width: 100%;
    padding-top: 150%;
}

div.page div.blogs {
    width: 100%;
    float: left;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 60px;
    grid-row-gap: 60px;
}

div.page div.blogs a.item {
    float: left;
    width: 100%;
}

div.page div.blogs a.item div.image {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
}

div.page div.blogs a.item div.image:before {
    width: 100%;
    float: left;
    padding-top: 50%;
    content: '';
}

div.page div.blogs a.item h4 {
    width: 100%;
    float: left;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: #000;
    margin-bottom: 30px;
}

div.page div.blogs a.item p {
    width: 100%;
    float: left;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #4A4A4A;
    margin-bottom: 15px;
}

div.page div.blog {
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

div.page div.blog div.image {
    width: 35%;
    float: left;
}

div.page div.blog div.image img {
    width: 100%;
}

div.page div.blog div.right {
    width: 60%;
    float: right;
}

div.page div.blog div.right h3 {
    width: 100%;
    float: left;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
}

div.page div.blog div.right p {
    width: 100%;
    float: left;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #4A4A4A;
    margin-bottom: 15px;
}

div.page div.contact {
    width: 100%;
    float: left;
}

div.page div.contact div.info {
    width: 32%;
    float: left;
    border-radius: 6px;
    padding: 20px;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

div.page div.contact div.info div.title {
    width: 100%;
    float: left;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #ED1C24;
}

div.page div.contact div.info p {
    width: 100%;
    float: left;
    font-size: 25px;
    line-height: 36px;
    font-weight: 400;
    color: #4A4A4A;
    margin-bottom: 15px;
}

.page>.wrapper>.contact>.info>.row>.item {
    float: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.page>.wrapper>.contact>.info>.row>.item>.left {
    float: left;
    font-size: 25px;
    color: #ED1C24;
    font-weight: 400;
    margin-right: 20px;
}

.page>.wrapper>.contact>.info>.row>.item>.right {
    float: left;
}

.page>.wrapper>.contact>.info>.row>.item>.right>a {
    float: left;
    width: 100%;
    font-size: 25px;
    color: #4A4A4A;
    font-weight: 400;
}

.page>.wrapper>.contact>.info>.row>.item>.right>a:first-child {
    margin-bottom: 10px;
}

div.page div.contact div.form {
    width: 65%;
    float: right;
}

div.page div.contact div.form div.row {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

div.page div.contact div.form div.row label {
    width: 100%;
    float: left;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 7px;
}

div.page div.contact div.form div.row input,
div.page div.contact div.form div.row textarea {
    width: 100%;
    float: left;
    font-size: 20px;
    font-weight: 500;
    background-color: #F4F4F4;
    border: 1px solid #BFBFBF;
    border-radius: 6px;
    padding: 10px 20px;
    box-sizing: border-box;
}

div.page div.contact div.form div.row textarea {
    height: 200px;
}

div.page div.contact div.form div.row div.g-recaptcha {
    float: left;
}

div.page div.contact div.form div.row button {
    float: right;
    font-size: 20px;
    font-weight: 500;
    background-color: #ED1C24;
    border-radius: 6px;
    padding: 10px 20px;
    box-sizing: border-box;
    border: 0;
    color: #fff;
}

footer {
    width: 100%;
    float: left;
    background-color: #000;
    padding: 40px 0;
}

footer>.wrapper>.left {
    width: 30%;
    float: left;
}

footer>.wrapper>.left>.logo {
    float: left;
    width: 100%;
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    background-image: url('../img/logo.svg');
}

footer>.wrapper>.left>.social-media {
    float: left;
    width: 100%;
    margin-top: 40px;
}

footer>.wrapper>.left>.social-media>.item {
    float: left;
    width: 80px;
    height: 80px;
    color: #fff;
    background-color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-left: 80px;
}

footer>.wrapper>.left>.social-media>.item:nth-child(2n) {
    margin-left: 80px;
}

footer>.wrapper>.left>.social-media>.item:nth-last-child(2) {
    margin-left: 0px !important;
}

footer>.wrapper>.right {
    float: left;
    width: 70%;
}

footer>.wrapper>.right>.left {
    float: left;
    width: 40%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 30px;
}

footer>.wrapper>.right>.left>.box {
    float: left;
    width: 100%;
}

footer>.wrapper>.right>.left>.box>h4 {
    font-size: 24px;
    color: #8D8D8D;
    font-weight: 700;
    float: left;
    width: 100%;
    margin-bottom: 15px;
}

footer>.wrapper>.right>.left>.box>ul {
    float: left;
    width: 100%;
}

footer>.wrapper>.right>.left>.box>ul>li {
    float: left;
    width: 100%;
}

footer>.wrapper>.right>.left>.box>ul>li>a {
    float: left;
    width: 100%;
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    float: left;
    width: 100%;
    margin-bottom: 15px;
}

footer>.wrapper>.right>.right {
    float: right;
    width: 50%;
    background-color: #fff;
    border-top: 5px solid #FFC825;
    padding: 30px;
    box-sizing: border-box;
    position: relative;
}

footer>.wrapper>.right>.right:after {
    content: '';
    border-color: transparent black black transparent;
    border-style: solid;
    border-width: 20px;
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    right: 0;
}

footer>.wrapper>.right>.right>h4 {
    font-size: 24px;
    color: #ED1C24;
    font-weight: 700;
    float: left;
    width: 100%;
    margin-bottom: 15px;
}


footer>.wrapper>.right>.right>ul {
    float: left;
    width: 100%;
}

footer>.wrapper>.right>.right>ul>li {
    float: left;
    width: 100%;
}

footer>.wrapper>.right>.right>ul>li>a,
footer>.wrapper>.right>.right>ul>li>p {
    float: left;
    width: 100%;
    font-size: 20px;
    color: #000;
    font-weight: 400;
    float: left;
    width: 100%;
    margin-bottom: 10px;
    line-height: 30px;
}

footer>.wrapper>.right>.right>.map {
    float: left;
    width: 100%;
    font-size: 18px;
    color: #ED1C24;
    font-weight: 600;
    float: left;
    width: 100%;
    margin-top: 5px;
}

footer>.wrapper>.right>.right>.map>i {
    margin-left: 6px;
}

.copyright {
    float: left;
    width: 100%;
    padding: 25px 0px;
    box-sizing: border-box;
}

.copyright>.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright>.wrapper>p {
    font-size: 20px;
    color: #000000;
    font-weight: 400;
}

.copyright>.wrapper>.atamedya {
    float: left;
    width: 120px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url('../img/atamedya.svg');
}

.catalog-title {
    float: left;
    width: 100%;
    padding: 80px 0px;
    box-sizing: border-box;
}

.catalog-title>.wrapper>p {
    font-size: 25px;
    color: #4A4A4A;
    font-weight: 400;
    float: left;
    width: 100%;
    text-align: center;
    line-height: 40px;
}

.catalog-title>.wrapper>p>a {
    color: #ED1C24;
}

.catalog-container {
    float: left;
    width: 100%;
    padding-bottom: 80px;
    box-sizing: border-box;
}

.catalog-container>.wrapper>.catalog-item {
    float: left;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    row-gap: 30px;
    column-gap: 30px;
}

.catalog-container>.wrapper>.catalog-item>.row {
    float: left;
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 12px;
}

.catalog-container>.wrapper>.catalog-item>.row>.icon {
    text-align: center;
    color: #000000;
    margin-bottom: 20px;
}

.catalog-container>.wrapper>.catalog-item>.row>h4 {
    text-align: center;
    color: #000000;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.catalog-container>.wrapper>.catalog-item>.row>a {
    text-align: center;
    color: #ED1C24;
    font-size: 18px;
    font-weight: 500;
    float: left;
    width: 100%;
}

.hamburger {
    float: right;
    display: none;
    font-size: 20px;
    background-color: transparent;
    border: 0;
    outline: 0;
}

.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: -100%;
    background-color: #90000d;
    overflow-x: hidden;
    transition: .5s;
    margin-top: 100px;
}

div.overlay-content {
    width: 100%;
    float: right
}

div.overlay-content li {
    float: left;
    width: 100%;
    border-bottom: 1px solid #a50f1c
}

div.overlay-content li a {
    float: left;
    padding: 20px;
    box-sizing: border-box;
    color: #fff;
    font-weight: 400;
    font-size: 16px
}

div.overlay-content li ul {
    float: left;
    width: 100%;
    padding: 0px 20px;
    box-sizing: border-box;
}

div.overlay-content li ul li {
    float: left;
    width: 100%;
    border-top: 1px solid #a50f1c
}

div.overlay-content li ul li {
    border-bottom: 0;
}

div.overlay-content li ul li a {
    float: left;
    padding: 15px;
    box-sizing: border-box;
    color: #fff;
    font-weight: 400;
    font-size: 15px;
    width: 100%;
}

div#myNav {
    width: 100%;
    height: 100%;
    float: right;
    overflow: hidden
}

div#myNav.active {
    right: 0
}

div.overlay-content div.m_social {
    float: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: 30px;
    padding-left: 20px;
    box-sizing: border-box
}

div.overlay-content div.m_social div.item {
    float: left;
    width: 100%
}

div.overlay-content div.m_social div.item a.siparis {
    float: left;
    width: calc(50% - 15px);
    height: 30px;
    background-color: #fff;
    color: #B10000;
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-bottom: 15px
}

div.overlay-content div.m_social div.item a.tel {
    float: left;
    width: 185px;
    height: 30px;
    color: #B10000;
    background-color: #fff;
    font-size: 14px;
    font-weight: 400;
    border-radius: 100px;
    display: flex;
    align-items: center
}

div.overlay-content div.m_social div.item a.tel:before {
    content: "";
    float: left;
    width: 24px;
    height: 24px;
    background-image: url(../images/telephone.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-right: 10px;
    margin-left: 4px
}

div.page .products-menu {
    width: 100%;
    float: left;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-bottom: 50px;
}

div.page .products-menu .products-menu-links {
    float: left;
    width: 100%;
    background-color: #F4F4F4;
    padding: 20px;
    box-sizing: border-box;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    border: 0;
    cursor: pointer;
    transition: 0.3s;
}

div.page .products-menu .products-menu-links:hover,
div.page .products-menu .products-menu-links.active {
    color: #fff;
    background-color: #ED1C24;
}

div.page div.products {
    width: 100%;
    float: left;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
}

div.page div.products-title {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

div.page div.products-title h3 {
    float: left;
    width: 100%;
    font-size: 44px;
    color: #000000;
    font-weight: 700;
}

div.page div.products .item {
    float: left;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #DDDDDD;
}

div.page div.products .item div.image {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
}

div.page div.products .item div.image:before {
    width: 100%;
    float: left;
    padding-top: 80%;
    content: '';
}

div.page div.products .item h4 {
    width: 100%;
    float: left;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: #000;
}

div.page div.products .item p {
    width: 100%;
    float: left;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #4A4A4A;
    margin: 20px 0px 30px 0px;
}

div.page div.products .item a {
    float: left;
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
    background-color: #000;
    font-size: 22;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

div.page .information-table {
    float: left;
    width: 100%;
    overflow: auto;
}

div.page table {
    border-collapse: separate;
    width: 100%;
    margin-bottom: 80px;
    border-spacing: 10px;
}

div.page td,
div.page th {
    border: 1px solid #dddddd;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    background-color: #F4F4F4;
}

div.page th {
    background-color: #565656 !important;
    color: #fff !important;
}

div.page .products-text {
    float: left;
    width: 100%;
    margin-bottom: 60px;
}

div.page .products-text>p {
    float: left;
    width: 100%;
    font-size: 25px;
    font-weight: 400;
    color: #4A4A4A;
    line-height: 40px;
    margin-bottom: 20px;
}

div.page div.product {
    width: 100%;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
}

div.page div.product div.image {
    width: 45%;
    float: left;
}

div.page div.product div.image img {
    width: 100%;
}

div.page div.product div.right {
    width: 50%;
    float: right;
}

div.page div.product div.right h3 {
    width: 100%;
    float: left;
    font-size: 44px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

div.page div.product div.right p {
    width: 100%;
    float: left;
    font-size: 25px;
    line-height: 40px;
    font-weight: 400;
    color: #4A4A4A;
    margin-bottom: 20px;
}


.openBtn {
    background: #f1f1f1;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
}

.openBtn:hover {
    background: #bbb;
}

.search-overlay {
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    padding: 100px;
    box-sizing: border-box;
}

.overlay-container {
    float: left;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-container form {
    float: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: #fff;
}

.search-overlay input[type=text] {
    padding: 15px;
    font-size: 17px;
    border: none;
    float: left;
    width: 80%;
    background: #fff;
}

.search-overlay button {
    float: left;
    width: 20%;
    padding: 15px;
    background: #ED1C24;
    font-size: 17px;
    border: none;
    cursor: pointer;
    color: #fff;
}

@media screen and (max-width:1200px) {
    .wrapper {
        padding: 0px 20px;
        box-sizing: border-box;
    }

    div.page div.contact div.info {
        width: 100%;
        margin-bottom: 30px;
    }

    div.page div.contact div.form {
        float: left;
        width: 100%;
    }

    .page>.wrapper>.contact>.info>.row>.item {
        display: block;
    }
}

@media screen and (max-width:1150px) {
    footer>.wrapper>.left {
        width: 100%;
        margin-top: 50px;
    }

    footer>.wrapper>.right {
        width: 100%;
        margin-top: 50px;
    }

    footer>.wrapper>.left>.social-media>.item {
        margin: 0 !important;
        margin-right: 15px !important;
    }
}

@media screen and (max-width:1050px) {
    .clear {
        float: left;
        width: 100%;
        height: 100px;
    }

    header {
        background-color: #fff;
    }

    header div.right {
        display: none;
    }

    .hamburger {
        display: block;
    }

    header a.logo {
        background-image: url('../img/logo-dark.png');
    }
}

@media screen and (max-width:767px) {
    footer>.wrapper>.right>.left {
        width: 100%;
        margin-bottom: 30px;
    }

    footer>.wrapper>.right>.right {
        width: 100%;
        float: left;
    }


    div.home-slider div.items div.item div.right div.image {
        display: none !important;
    }

    div.home-slider div.items div.item div.right img {
        float: left;
        width: 100%;
        display: block !important;
        height: 350px;
        object-fit: cover;
        object-position: center;
        margin-bottom: 30px;
    }

    div.home-slider div.items div.item div.right {
        width: 100%;
    }

    div.home-products div.items,
    div.page div.certificates div.items,
    .catalog-container>.wrapper>.catalog-item,
    div.page .products-menu,
    div.page div.products,
    div.page div.blogs{
        grid-template-columns: repeat(1, 1fr);
    }

    div.home-products div.items a.item div.image:before,
    div.page div.products .item div.image:before {
        padding-top: 70%;
    }

    div.slider div.items div.item div.content {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
    }

    div.page div.corporate div.image,
    div.page div.product div.image,
        div.page div.blog div.image {
        width: 100%;
        margin-bottom: 30px;
    }

    div.page div.corporate div.image img,
    div.page div.product div.image img,
        div.page div.blog div.image img {
        height: 450px;
    }

    div.page div.corporate div.right,
    div.page div.product div.image img,
        div.page div.blog div.right {
        width: 100%;
    }

    div.page-banner {
        padding: 100px 0px;
    }

    .navigation {
        margin-top: 15px;
        float: left;
        width: 100%;
    }

    div.page-banner h1 {
        font-size: 52px;
    }

    div.page-banner a {
        font-size: 18px;
    }

    .page>.wrapper>.contact>.info>.row>.item>.left {
        width: 100%;
        margin-bottom: 15px;
    }

    .page>.wrapper>.contact>.info>.row>.item>.right {
        width: 100%;
        margin-bottom: 15px;
    }
}

@media screen and (max-width:550px) {
    .copyright>.wrapper {
        display: block;
    }

    .copyright>.wrapper>p {
        float: left;
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .copyright>.wrapper>.atamedya {
        width: 100%;
        float: left;
        height: 15px;
    }

    div.slider div.items div.item div.content h2 {
        font-size: 52px;
    }

    div.slider div.items div.item div.content div.text {
        font-size: 26px;
    }

    div.page div.corporate div.image img,
    div.page div.product div.image img,
        div.page div.blog div.image img {
        height: 350px;
    }

    div.page div.contact div.form div.row div.g-recaptcha {
        overflow: hidden;
        width: 100%;
    }

    div.page div.contact div.form div.row button {
        float: left;
        width: 100%;
        margin-top: 15px;
    }

    .overlay-container {
        width: 100%;
    }

    .search-overlay{
        padding: 50px;
    }
}

@media screen and (max-width:420px) {
    footer>.wrapper>.right>.left {
        grid-template-columns: repeat(1, 1fr);
    }

    footer>.wrapper>.left>.social-media>.item {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    div.page div.corporate div.image img,
    div.page div.product div.image img,
        div.page div.blog div.image img {
        height: 300px;
    }

    div.page div.contact div.info p,
    .page>.wrapper>.contact>.info>.row>.item>.right>a {
        font-size: 20px;
    }
}