@charset "UTF-8";

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Regular.ttf");
}

@font-face {
    font-family: 'MontserratBold';
    src: url("../fonts/Montserrat-SemiBold.ttf");
}

@font-face {
    font-family: 'MontserratBlack';
    src: url("../fonts/Montserrat-Black.ttf");
}

@font-face {
    font-family: 'EBGaramond';
    src: url("../fonts/EBGaramond-Regular.ttf");
}

@font-face {
    font-family: 'EBGaramondBold';
    src: url("../fonts/EBGaramond-SemiBold.ttf");
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto.ttf");
}

@font-face {
    font-family: 'TurtlesBold';
    src: url("../fonts/TurtlesBold.ttf");
}

body{
    font-family: 'OpenSans';
    background:#fff;
    margin:0;
    padding:0;
    color:#333;
    background-image: url(../img/bg1.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

::-webkit-scrollbar { width: 10px; height: 3px;}
::-webkit-scrollbar-button {  background-color: #fff; height:0; }
::-webkit-scrollbar-track {  background-color: #999;}
::-webkit-scrollbar-track-piece { background-color: #ffffff;}
::-webkit-scrollbar-thumb { height: 50px; background-color: #666; border-radius: 0;}
::-webkit-scrollbar-corner { background-color: #999;}
::-webkit-resizer { background-color: #666;}

h1{
    font-family: EBGaramondBold;
    font-style: normal;
    font-weight: bold;
    font-size: 46px;
    line-height: 56px;
    letter-spacing: 0.02em;
    color: #000;
    text-align: left;
}

h2{
    font-family: EBGaramondBold;
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 48px;
    letter-spacing: 0.02em;
    color: #231f20;
    text-align: center;
    text-transform: uppercase;
}

.container{
    width:1200px;
    margin:0 auto;
    position:relative;
}

.btn{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: "MontserratBold";
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 28px;
    width: 250px;
    height: 48px;
    background: #000;
    color: #fff;
    text-decoration: none;
    margin: 0;
    cursor: pointer;
    border: 0;
    margin-top:16px;
    margin-bottom:16px;
    transition: all 0.3s;
}

.btn:hover {
    background: #222;
}

.btn_big{
    display:block;
    width:256px;
    height:48px;
    line-height:48px;
    font-family: MontserratBold;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    color:#231f20;
    cursor:pointer;
    margin:24px auto;
    border:1px solid #231f20;
    transition: all 0.3s;
}

.btn_big:hover{
    color:#fff;
    background:#231f20;
}

.btn_big_white{
    display:block;
    width:256px;
    height:48px;
    line-height:48px;
    font-family: MontserratBold;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    color:#fff;
    margin:24px auto;
    border:1px solid #fff;
    transition: all 0.3s;
}

.btn_big_white:hover{
    color:#231f20;
    background:#fff;
}

.btn_big_green{
    cursor:pointer;
    display:block;
    height:48px;
    line-height:48px;
    font-family: MontserratBold;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    color:#fff;
    background: #000;
    border:2px solid #67d200;
    margin:24px auto 12px;
    padding:0 25px;
    transition: all 0.3s;
}

.btn_big_green:hover{
    color:#fff;
    background: #67d200;
}

.btn_big_flare{
    position: relative;
    overflow: hidden;
}

.btn_big_flare .flare {
    position: absolute;
    top: 0;
    height: 100%;
    width: 45px;
    transform: skewX(-45deg);
    left: -150%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    animation: flareAnimation 3s infinite ease-in-out;
}

@keyframes flareAnimation {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

header{
    display: flex;
    flex-direction: column;
    position:fixed;
    z-index: 20;
    top:0;
    left:0;
    width:100%;
    height:67px;
    background: #000;
    border-bottom:1px solid #000;
}

#header_pseudo{
    height:67px;
}

header .container{
    display:flex;
    justify-content: space-between;
    height:67px;
    color:#fff;
}

header .logo{
    width:185px;
}

header .nav{
    width:750px;
}

header .callback{
    width:200px;
}

header .callback2{
    width:25px;
}

header .search{
    width:25px;
}

header .basket{
    max-width: 100px;
}

header .logo{
    display:flex;
    justify-content: flex-start;
}

header .logo img{
    height:65px;
    margin:3px 0;
}

header .nav nav{
    display:flex;
    justify-content: space-around;
}

header .nav nav a{
    font-family: 'MontserratBold';
    font-style: normal;
    font-size: 14px;
    color:#fff;
    font-weight: bold;
    white-space: nowrap;
    line-height: 67px;
    text-decoration: none;
    cursor:pointer;
}

header .nav nav .nav_item{
    position:relative;
}

header .nav nav .nav_item .nav_item_item{
    display:none;
    position:absolute;
    top:67px;
    left:-24px;
    background:#000;
    padding:0 24px;
    transition: all 0.3s;
}

header .nav nav .nav_item:hover .nav_item_item{
    display:block;
}

header .nav nav .nav_item .nav_item_item a{
    line-height: 42px;
}

header .nav a i{
    color:#fff;
    font-size:16px;
    line-height: 65px;
}

header .nav a span{
    display:none;
}

header .callback{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header .call_phone{
    font-family: MontserratBold;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

header .callback .open_window_callback{
    font-family: MontserratBold;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    color: #777;
    margin: 2px 0;
    text-decoration: none;
    border: 0;
    border-bottom: 1px solid #777;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

header .callback .open_window_callback:hover{
    color: #fff;
    border-bottom: 1px solid #fff;
}

header .callback2{
    display:none;
    text-align: right;
}

header .callback2 i{
    font-size: 20px;
    line-height: 67px;
    color:#fff;
}

header .open_menu_btn{
    display:none;
    text-align: right;
}

header .open_menu_btn i{
    font-size: 20px;
    line-height: 67px;
    color:#fff;
}

header .search{
    position:relative;
    text-align: right;
    cursor: pointer;
}

header .search i{
    font-size: 20px;
    line-height: 67px;
    color:#124945;
}

header .search label[for="search"]{
    display:none;
    position:absolute;
    top:16px;
    right:-10px;
    height: 35px;
    width:300px;
}

header .search #search{
    display: block;
    position:relative;
    background: #fff;
    border: 1px solid #124945;
    font-family: Montserrat;
    color: #333;
    font-weight: normal;
    width: 300px;
    height: 35px;
    text-align: left;
    line-height: 35px;
    padding-left:15px;
    font-size:14px;
    transition: all 0.1s;
}

header .search label[for="search"] i{
    position:absolute;
    right:10px;
    top:7px;
    font-size:20px;
    line-height: 20px;
    color:#124945!important;
    cursor:pointer;
    transition: all 0.1s;
}

header .basket{
    display:flex;
    justify-content: flex-end;
}

header .basket a{
    display:flex;
    text-decoration: none;
}

header .basket .basket_count_container{
    display:block;
    position:relative;
}

header .basket .basket_count_container i{
    font-size: 20px;
    line-height: 67px;
    color:#fff;
}

header #basket_count{
    display:block;
    position:absolute;
    top:10px;
    right:-10px;
    width:20px;
    height:20px;
    border-radius: 50%;
    border:0;
    background:#cc6d69;
    color:#fff;
    line-height: 20px;
    font-size:10px;
    font-family: MontserratBold;
    text-align: center;
}

header .basket_sum_container{
    font-family: MontserratBold;
    font-size: 13px;
    line-height: 67px;
    color: #fff;
    cursor: pointer;
    margin-left:12px;
}

#shadow{
    display:none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0, 0, 0, 0.7);
    z-index:20;
}

#window_callback,
#window_login,
#window_order{
    display:none;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin:auto;
    background: #FFFFFF;
    width:352px;
    height:420px;
    padding:24px 32px;
    z-index:21;
}

#window_callback .window_callback_header,
#window_login .window_callback_header,
#window_order .window_callback_header{
    display:flex;
    justify-content: space-between;
    font-family: EBGaramondBold;
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0.02em;
    color: #000;
    margin-bottom:12px;
}

#window_callback .window_callback_header i,
#window_login .window_callback_header i,
#window_order .window_callback_header i{
    margin:10px 0;
    font-size: 24px;
    cursor: pointer;
}

#window_callback .window_order_logo,
#window_login .window_order_logo,
#window_order .window_order_logo{
    display:flex;
    justify-content: center;

}

#window_callback .window_order_logo img,
#window_login .window_order_logo img,
#window_order .window_order_logo img{
    max-width:75%;

}

#window_callback .window_callback_input label,
#window_login .window_callback_input label,
#window_order .window_callback_input label{
    position:relative;
    display:flex;
    margin:12px 0;
}

#window_callback .window_callback_input input,
#window_login .window_callback_input input,
#window_order .window_callback_input input{
    width: 100%;
    height: 48px;
    padding:0 12px;
    background: #FFFFFF;
    border: 1px solid #666;
    font-family: Montserrat;
    border-radius:0;
    box-shadow: 0;
    font-size: 14px;
}

#window_callback .window_callback_input span,
#window_login .window_callback_input span,
#window_order .window_callback_input span{
    position: absolute;
    display:block;
    left: 10px;
    top: -7px;
    font-family: MontserratBold;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 15px;
    color: #666;
    padding: 0 5px;
    background: #fff;
}

#window_callback .btn_pink,
#window_login .btn_pink,
#window_order .btn_pink{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: MontserratBold;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    width: 352px;
    height: 56px;
    background: #000;
    color:#fff;
    text-decoration: none;
    margin:18px 0;
    cursor: pointer;
    margin-top:12px;
    margin-bottom:12px;
    border:0;
    transition: all 0.3s;
}

#window_callback .btn_pink:hover,
#window_login .btn_pink:hover,
#window_order .btn_pink:hover{
    background: #222;
}

#window_callback .window_callback_note,
#window_login .window_callback_note,
#window_order .window_callback_note{
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #666;
}

#window_callback .window_callback_note a,
#window_login .window_callback_note a,
#window_order .window_callback_note a{
    color:blue;
}

#window_callback .window_callback_social,
#window_login .window_callback_social,
#window_order .window_callback_social{
    display:flex;
    justify-content: center;
}

#window_callback .window_callback_social a,
#window_login .window_callback_social a,
#window_order .window_callback_social a{
    margin:12px;
}

#window_callback .window_callback_social img,
#window_login .window_callback_social img,
#window_order .window_callback_social img{
    width:32px;
    height:32px;
}

#window_login b{
    display: block;
    text-align: center;
    font-family: MontserratBold;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 32px;
}

#window_login .window_callback_social{
    display: flex;
    justify-content: space-between;
}

#window_login .window_callback_social a{
    cursor:pointer;
    color:#000;
    font-family: MontserratBold;
    font-size: 16px;
    font-weight: bold;
    margin:16px 0;
}

#window_login .window_login_message .message{
    font-family: MontserratBold;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    background: rgba(255, 255, 255, 1);
    text-align: center;
    padding: 20px;
}

footer{
    width:100%;
    background: #000;
    padding:74px 0;
}

footer .container{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .item01{
    margin-bottom: 16px;
}

footer .item01 .logo{
    margin-bottom: 30px;
}

footer .item01 .logo img{
    height:80px;
}

footer .item01 .callback{
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 30px;
}

footer .item01 .callback .call_phone{
    font-family: MontserratBold;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

footer .item01 .callback .open_window_callback{
    font-family: MontserratBold;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    color: #777;
    margin: 2px 0;
    text-decoration: none;
    border: 0;
    border-bottom: 1px solid #777;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

footer .item01 .callback .open_window_callback:hover{
    color: #fff;
    border-bottom: 1px solid #fff;
}

footer .item01 .footer_title{
    font-family: MontserratBold;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

footer .item03 .social_container{
    display:flex;
    flex-direction: column;
}

footer .item03 .social_container img{
    width:32px;
    margin: 0 16px 16px 0;
}

footer .item03 .social_container b{
    font-family: MontserratBold;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    margin:16px 0;
    color:#fff;
}

footer .item02,
footer .item03,
footer .item04{
    display:flex;
    flex-direction: column;
}

footer .item02 a,
footer .item03 a,
footer .item04 a{
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: #777777;
    margin: 8px 0;
    text-decoration: none;
    transition: all 0.3s;
}

footer .item02 a:hover,
footer .item03 a:hover,
footer .item04 a:hover{
    color:#fff;
}

footer .item02 b,
footer .item03 b,
footer .item04 b{
    font-family: MontserratBold;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #fff;
    margin: 16px 0;
}

footer .item05{
    flex-basis: 100%;
    display: flex;
    justify-content: center;
}

footer .item05 .note{
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 15px;
    color: #fff;
    margin:36px 0;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .item05 .note div{
    display:flex;
    justify-content: center;
    align-items: center;
}

footer .item05 .note .dev{
    margin-top:16px;
}

footer .item05 .note .dev a{
    font-family: Montserrat;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    text-decoration-line: none;
    color:#777;
    transition: all 0.3s;
}

footer .item05 .note .dev:hover a{
    text-decoration-line: underline;
    color: #fff;
}

footer .item05 .note .dev i{
    font-size: 16px;
    line-height: 16px;
    padding-right:8px;
    text-decoration: none;
    color:#777;
}

footer .item05 .note .dev:hover i{
    color: #fff;
}

footer .footer_requisites{
    display:flex;
    flex-direction: column;
    margin-top:8px;
}

footer .footer_requisites span{
    display:block;
    color:#999;
    margin:4px 0;
}

footer .footer_docs{
    margin-top:12px;
}

footer .footer_docs a{
    font-family: MontserratBold;
    font-weight: bold;
    color:#ddd;
    text-decoration: none;
    transition: all 0.3s;
}

footer .footer_docs a:hover{
    color:#fff;
}

#top{
    position:fixed;
    bottom:50px;
    right:50px;
    opacity:0.6;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    text-decoration:none;
    opacity:0.7;
    z-index:888;
}

#top:hover{
    opacity:1;
}

#top i{
    color:#555;
    display:block;
    width:35px;
    height:35px;
    text-align:center;
    border:3px solid #555;
    font-size:35px;
}

/* Прелодер начало */
.preloader {
    flex-shrink: 0;
    flex-basis: 100%;
    position: relative;
    min-height: 60px;
    margin:50px auto;
}

.preloader:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .9);
    height: 100%;
    width: 100%;
    display: block !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.preloader:after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    margin-left: -15px;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    border: 4px rgba(0, 0, 0, .25) solid;
    border-top: 4px #333 solid;
    border-radius: 50%;
    -webkit-animation: preloader .6s infinite linear;
    animation: preloader .6s infinite linear;
}

@-webkit-keyframes preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
/* Прелодер конец */

/* Информационный блок начало */
.info_box{
    display:block;
    font-family: MontserratBold;
    font-size:14px;
    font-weight: bold;
    color:#124945;
    position:fixed;
    z-index:120;
    top:-200px;
    right:10px;
    width:200px;
    border:2px solid #124945;
    background: rgba(255, 255, 255, 1);
    text-align: center;
    padding:20px;
    transition: all 0.1s;
}

.info_box_error{
    border:2px solid #cc6c69;
    color:#cc6c69;
}
/* Информационный блок конец */

/* Ошибка input начало */
.input_error{
    border: 1px solid red!important;
}

@-webkit-keyframes makhmoody_shake{
    41%,8%{
        -webkit-transform:translateX(-10px);
        -moz-transform:translateX(-10px);
        -ms-transform:translateX(-10px);
        -o-transform:translateX(-10px);
        transform:translateX(-10px)
    }
    25%,58%{
        -webkit-transform:translateX(10px);
        -moz-transform:translateX(10px);
        -ms-transform:translateX(10px);
        -o-transform:translateX(10px);
        transform:translateX(10px)
    }
    75%{
        -webkit-transform:translateX(-5px);
        -moz-transform:translateX(-5px);
        -ms-transform:translateX(-5px);
        -o-transform:translateX(-5px);
        transform:translateX(-5px)
    }
    92%{
        -webkit-transform:translateX(5px);
        -moz-transform:translateX(5px);
        -ms-transform:translateX(5px);
        -o-transform:translateX(5px);
        transform:translateX(5px)
    }
    0%,100%{
        -webkit-transform:translateX(0);
        -moz-transform:translateX(0);
        -ms-transform:translateX(0);
        -o-transform:translateX(0);
        transform:translateX(0)
    }
}
@keyframes makhmoody_shake{
    41%,8%{
        -webkit-transform:translateX(-10px);
        -moz-transform:translateX(-10px);
        -ms-transform:translateX(-10px);
        -o-transform:translateX(-10px);
        transform:translateX(-10px)
    }
    25%,58%{
        -webkit-transform:translateX(10px);
        -moz-transform:translateX(10px);
        -ms-transform:translateX(10px);
        -o-transform:translateX(10px);
        transform:translateX(10px)
    }
    75%{
        -webkit-transform:translateX(-5px);
        -moz-transform:translateX(-5px);
        -ms-transform:translateX(-5px);
        -o-transform:translateX(-5px);
        transform:translateX(-5px)
    }
    92%{
        -webkit-transform:translateX(5px);
        -moz-transform:translateX(5px);
        -ms-transform:translateX(5px);
        -o-transform:translateX(5px);
        transform:translateX(5px)
    }
    0%,100%{
        -webkit-transform:translateX(0);
        -moz-transform:translateX(0);
        -ms-transform:translateX(0);
        -o-transform:translateX(0);
        transform:translateX(0)
    }
}
.makhmoody_error{
    -webkit-animation:makhmoody_shake .5s linear!important;
    -moz-animation:makhmoody_shake .5s linear!important;
    -o-animation:makhmoody_shake .5s linear!important;
    -ms-animation:makhmoody_shake .5s linear!important;
    animation:makhmoody_shake .5s linear!important
}
/* Ошибка input конец */




@media (max-width: 1199px) {
    .container {
        width: 1080px;
    }
}

@media (max-width: 1080px) {
    .container {
        width: 958px;
    }
}

@media (max-width: 958px) {
    .container {
        width: 768px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 576px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 480px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 380px;
    }
}

@media (max-width: 379px) {
    .container {
        width: 296px;
    }
}






@media (max-width: 1199px) {
    header .nav{
        width:700px;
    }
}

@media (max-width: 1080px) {
    header .callback{
        display:none;
    }

    header .callback2{
        display:flex;
    }
}

@media (max-width: 958px) {
    header .nav{
        display:none;
    }

    header .open_menu_btn{
        display:flex;
        width:20px;
    }

    .header_green{
        background: #000;
        color:#fff;
        height:100%!important;
    }

    .header_green .container{
        flex-wrap: wrap;
    }

    .header_green i{
        color:#fff!important;
    }

    .header_green .basket .basket_sum_container{
        color:#fff!important;
    }

    .header_green .nav{
        display:flex!important;
        order:10!important;
        flex-basis:100%!important;
    }

    .header_green .nav nav{
        display:flex!important;
        flex-direction: column;
        width:100%!important;
    }

    .header_green .nav nav a{
        display:flex;
        justify-content: flex-start;
        align-items: center;
        height:50px;
        width:100%;
        color:#fff;
        border-top:1px solid rgba(255, 255, 255, 0.5);
    }

    .header_green .nav nav a:first-child span{
        display:block;
    }

    .header_green .nav nav a:first-child i{
        display:none;
    }

    .header_green .nav nav .nav_item{
        display:none;
    }

    footer .item01,
    footer .item02,
    footer .item03,
    footer .item04{
        flex-basis: 30%;
    }

    footer .item01,
    footer .item02,
    footer .item03{
        order:0;
    }

    footer .item04{
        order:3;
    }

    footer .item05{
        order:5;
    }
}

@media (max-width: 768px) {
    /*h1{
        font-size: 36px;
    }*/

    footer .item01,
    footer .item03,
    footer .item04{
        flex-basis: 45%;
    }





    footer .item02{
        order:4;
        flex-basis: 100%;
    }
}

@media (max-width: 576px) {

}

@media (max-width: 480px) {
    header .basket .basket_sum_container{
        display:none;
    }

    footer .item01,
    footer .item02,
    footer .item03,
    footer .item04{
        flex-basis: 100%;
    }

    footer .item03{
        order:0;
    }

    #window_callback,
    #window_login,
    #window_order{
        width:263px;
        height:420px;
        padding:16px;
    }

    #window_callback .btn_pink,
    #window_login .btn_pink,
    #window_order .btn_pink{
        width:263px;
    }

    h1{
        font-size: 30px;
        line-height: 36px;
        /* margin: 40px 0;*/
    }

    h2{
        font-size: 28px;
        line-height: 34px;
    }
}

@media (max-width: 379px) {
    header .search label[for="search"]{
        width:250px;
    }

    header .search #search{
        width: 250px;
    }
}