



 body {
    background: #F2F2F2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: roboto;
    font-size: 14px;
}

a {
    text-decoration: none;
}

.login button{
    display: none;
}

header {
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    margin: 0 90px;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F2F2F2;
}

#burger_menu {
    display: none;
    margin-top: 4px;
}

#burger_menu a {
    text-decoration: none;
    color: #232323;
    transition: color 0.3s ease;
}

#burger_menu a:hover {
    color: tomato;
}


#burger_menu input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: 14px;
    left: -4px;
    cursor: pointer;
    opacity: 0; /* On cache l'input */
    z-index: 2; /* on le met par dessus le bouton */
}

/* Bouton burger */
#burger_menu span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #2F80ED;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s ease,
    background 0.5s ease,
    opacity 0.55s ease;
}

/* Transformer la forme du bouton quand on clique dessus*/
#burger_menu span:first-child {
    transform-origin: 0% 0%;
}

#burger_menu span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#burger_menu input:checked ~ span {
    transform: rotate(45deg) translate(-2px, -1px);
    background: #fff;
}

#burger_menu input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#burger_menu input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

#menu_mobile {
    position: absolute;
    width: 300px;
    height: 102vh;
    margin: -60px 0 0 -87px;
    padding-left: 85px;
    padding-top: 80px;
    background: #2F80ED;
    list-style-type: none;
    transform-origin: 0% 0%;
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
}

#menu_mobile li {
    padding: 15px 0;
}

#menu_mobile li a {
    font-size: 20px;
    color: #fff;
}

/* Faire apparaitre le menu */
#burger_menu input:checked ~ ul {
    transform: none;
}

header .logo img {
    width: 200px;
}

.btn {
    position: relative;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    line-height: 1.5;
    color: white;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #2F80ED;
    border-radius: 3px;
    outline: transparent;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    transition: 0.25s;
}

.btn:hover {
    background: #2F80ED;
}

.btn-primary {
    --hue: 171;
}

.btn-ghost {
    color: #2F80ED;
    background-color: transparent;
    border-color: #2F80ED;
}

.btn-ghost:hover {
    color: #fff;
    background: #2F80ED;
}

header .login a {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    height: 50px;
}

.main {
    display: flex;
    margin: 90px 90px 230px 90px;
    min-height: 65vh;
    height: 100%;
}

.main #menu {
    min-width: 200px;
    position: fixed;
}

.main #menu ul {
    list-style: none;
}

.main #menu ul li {
    padding-bottom: 15px;
}

.main #menu ul li a {
    font-size: 16px;
    font-weight: 600;
    color: #192A3E;
}

.main #menu ul li .active_link {
    color: #109CF1;
    text-decoration: underline;
}

.main #menu ul li a:hover {
    color: #2F80ED;
    transition: .2s;
}



.black {
    position: absolute;
    bottom: -18px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.main_text_service,
.main_text_faq,
.main_text_news,
.main_text_company,
.main_text_contact,
.main_text_plant,
.main_text_flower,
.main_text_faq_news {
    margin-left: 260px;
}

.main_error {
    margin: 0 auto;
    text-align: center;
}

.main_text_news,
.main_text_company,
.main_text_contact,
.main_text_faq_news {
    max-width: 1024px;
    line-height: 1.3em;
}

.main_text_news h2,
.main_text_company h2,
.main_text_contact h2 {
    margin-bottom: 20px;
}

.line {
    width: 100%;
    height: 1px;
    background: #B5C5DC;
    margin-bottom: 15px;
}

/* стили для каталога*/

.catalog,
.service {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 15px;
    max-width: 1350px;
}

.service {
    max-width: 100%;
}

.catalog_item,
.catalog_item_contr {
    width: 200px;
    height: 45px;
    margin: 0 20px 30px 0;
    border-radius: 5px;
}

.catalog_item_contr img {
    float: left;
    margin-right: 15px;
    width: 60px;
}

.catalog_item_contr a {
    color: #109CF1;
    font-weight: bold;
}

.catalog_item_contr p {
    font-size: 16px;
    margin-top: 11px;
}

.catalog_item:hover,
.catalog_item_contr:hover {
    border: 1px solid rgba(16,156,241,0.24);
    cursor: pointer;
    position: relative;
    top: -1px;
    left: -1px;
}

.catalog_item img {
    float: left;
    margin-right: 5px;
    width: 43px;
    border-radius: 5px;
}

.catalog_item a {
    color: #109CF1;
}

.catalog .dscr_flowers p {
    margin-bottom: 10px;
    line-height: 1.3em;
}

.catalog .plant_text p {
    line-height: 1.3em;
    padding-bottom: 10px;
}

.type_flower {
    font-size: 16px;
    font-weight: 500;
}

.catalog_item p:last-child {
    margin-top: 10px;
    color: #909090;
}

.catalog .dscr_flowers a {
    font-weight: bold;
    color: #109CF1;
}

/* стили для сервисов */

.service_item {
    width: 270px;
    height: 110px;
    padding: 10px;
    margin: 10px;
    position: relative;
}

.service_item:hover {
    box-shadow: 0px 0px 16px #B9B9B9;
    border-radius: 5px;
    cursor: pointer;
}

.service_item a {
    color: #000;
}

.service_item .service_title {
    color: #109CF1;
    font-weight: bold;
    margin-bottom: 10px;
}

.service_item .service_dscr {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.service_item .service_dscr .service_icon img {
    width: 30px;
}

.service_item .service_dscr .service_icon {
    margin-right: 10px;
}

.service_item .service_dscr_footer {
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: #90A0B7;
}

.main_text_news p,
.main_text_company p {
    margin-bottom: 10px;
}

.main_text_news a,
.main_text_company a {
    font-size: 15px;
    font-weight: bold;
    color: #109CF1;
}

.main_text_service ul li,
.main_text_faq ul li {
    line-height: 1.5em;
}

.main_text_faq ul li {
    margin-bottom: 10px;
}

.main_text_faq ul li a {
    color: #000;
    transition: .3s;
}

.main_text_faq ul li a:hover {
    color: #109CF1;
}

#content {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 80px;
}

#content h1 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
}

.main_text {
    width: 1366px;
    margin: 0 auto;
}

.main_text .pref,
.main_text .countries,
.main_text .info {
    display: flex;
    justify-content: space-between;
}

.main_text .pref .pref_item {
    width: 300px;
    text-align: center;
    font-size: 14px;
    line-height: 1.3em;
}

.main_text .pref .pref_item img {
    margin-bottom: 15px;
    width: 60px;
}

.main_text .bold {
    font-weight: bold;
}

.main_text .countries .countries_item {
    width: 300px;
    min-height: 235px;
    border: 1px solid #B5C5DC;
    border-radius: 5px;
    background: #F2F2F2;
    margin: 50px 0px 40px 0px;
    text-align: justify;
}

.main_text .countries .countries_item .countries_item_title {
    width: 100%;
    height: 40px;
    background: #B5C5DC;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px 5px 0 0;
}

h2 {
    font-size: 16px;
}

.main_text .countries .countries_item .countries_item_dscr {
    padding: 10px;
}

.main_text .countries .countries_item .countries_item_dscr p {
    padding-bottom: 10px;
    line-height: 1.5em;
}

.info .info_left {
    width: 300px;
}

.info .info_left .info_left_item {
    display: inline-block;
    width: 290px;
    margin-bottom: 40px;
}

.info .info_left .info_left_item img {
    width: 80px;
    float: left;
    margin-right: 10px;
}

.news h2 {
    margin-bottom: 10px;
}

.news .news_item {
    line-height: 1.3em;
    padding: 5px 0 10px 0;
    border-bottom: 1px solid #B5C5DC;
    width: 250px;
}

.news .news_item .news_date {
    color: #109CF1;
    font-weight: bold;
}

.info .info_right {
    width: 1010px;
}

.info .info_right .info_right_item {
    width: 100%;
    background: #F2F2F2;
    border-bottom: 1px solid #B5C5DC;
    margin-bottom: 40px;
}

.info .info_right .info_right_item img {
    width: 200px;
    float: left;
    margin: 0 10px 10px 0;
}

.info .info_right .info_right_item p {
    padding-bottom: 10px;
    line-height: 1.5em;
}

.info .info_right .info_right_item h2 {
    padding: 0 0 10px 0;
}

.info .info_right .info_right_item ul li {
    margin-left: 20px;
    list-style: none;
    font-weight: bold;
}

.web {
    border-bottom: 1px solid #B5C5DC;
    padding-bottom: 10px;
}

.web h4 {
    font-size: 16px;
}

.web li {
    margin-left: 15px;
    padding-top: 5px;
}

.main_text_contact .contact {
    display: flex;
    justify-content: flex-start;
}

.main_text_contact .contact .contact_our {
    margin-right: 50px;
}

.main_text_contact .contact .contact_our p {
    margin-bottom: 10px;
}

.main_text_contact .contact .contact_manager .managers {
    display: flex;
    justify-content: space-between;
}

.main_text_contact .contact .contact_manager .managers .managers_item {
    margin: 20px 10px 30px 0;
}

.main_text_contact .contact .contact_manager .managers .managers_item p {
    margin-bottom: 5px;
}

.main_text_contact .contact .contact_manager .managers .managers_item img {
    margin-bottom: -5px;
    margin-right: 5px;
}

footer {
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    background: #F2F2F2;
}

.title {
    flex: 1;
    margin-left: 90px;
}

.title h3 {
    line-height: 1;
    font-style: normal;
    font-size: 148px;
    /* identical to box height */
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px #525252;
}

.title h2 {
    margin: 0;
    font-size: 25.6px;
    text-transform: uppercase;
    letter-spacing: 3.4px;
    color: #2F80ED;
}

.title p {
    font-size: 19px;
    letter-spacing: normal;
    opacity: .6;
    margin-bottom: 24px;
}



.title_app a {
    margin-right: 60px;
    display: none;
}

.contact {
    flex: .4;
    margin-right: 90px;
    margin-top: 15px;
    font-size: 16px;
}

.contact a {
    text-decoration: none;
    color: #2F80ED;
}

.contact h3 {
    text-transform: uppercase;
    color: #2F80ED;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
}

.contact_mail {
    width: 100%;
    margin-bottom: 6px;
}

.contact_mail a img {
    width: 18px;
    margin-bottom: -1px;
    margin-right: 5px;
}

.contact_all {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.contact_item a {
    display: block;
    margin-bottom: 6px;
}

.contact_item a img {
    width: 18px;
    margin-bottom: -3px;
    margin-right: 5px;
}


.contact .clock {
    height: 50px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.contact .clock .clock_item p {
    margin: 0;
    font-size: 14px;
    text-align: center;
}

.contact .clock .clock_item .city {
    color: #2F80ED;
    font-size: 16px;
}

.contact .app {
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 4000px) {
    .info .info_left {
        width: 300px;
    }

    .info .info_right {
        width: 1010px;
    }

    .news .news_item {
        width: 290px;
    }
}

@media only screen and (max-width: 1860px) {
    .main_text .pref .pref_item {
        width: 250px;
        margin: 10px;
    }
    .main_text .pref, .main_text .countries, .main_text .info {
        justify-content: center;
    }

    .main_text .countries .countries_item {
        width: 250px;
        margin: 10px;
    }

    .info .info_left {
        width: 280px;
    }

    .info .info_left .info_left_item {
        width: 250px;
    }

    .info .info_right {
        width: 790px;
    }

    .news .news_item {
        width: 250px;
    }
}

@media only screen and (max-width: 1600px) {
    .main_text .pref .pref_item {
        width: 200px;
        margin: 10px;
    }
    .main_text .pref, .main_text .countries, .main_text .info {
        justify-content: center;
    }

    .main_text .countries .countries_item {
        width: 200px;
        margin: 10px;
    }

    .main_text .countries .countries_item .countries_item_title {
        text-align: center;
    }

    .info .info_left {
        width: 230px;
    }

    .info .info_left .info_left_item {
        width: 200px;
    }

    .info .info_right {
        width: 630px;
    }

    .news .news_item {
        width: 200px;
    }
}

@media only screen and (max-width: 1440px) {
    .title {
        margin-left: 30px;
        flex: .7;
    }

    .contact {
        margin-right: 30px;
    }


}

@media only screen and (max-width: 1870px) {
    .title h3 {
        margin: 0;
        font-family: sans-serif;
        font-style: normal;
        font-size: 100px;
        margin-bottom: 15px;
    }

    .title h2 {
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 20px;
    }

    .contact {
        font-size: 14px;
    }

    .title p {
        font-size: 16px;
        width: 750px;
    }

    .contact .clock {
        margin-bottom: 5px;
    }

    .contact_all {
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 1440px) {
    .main {
        margin: 90px 60px 150px 60px;
    }

    header {
        margin: 0 60px;
    }

}


@media only screen and (max-width: 1366px) {
    header {
        margin: 0 30px;
    }

    .title h3 {
        font-size: 92px;
    }

    .main {
        margin: 90px 30px 150px 30px;
    }
}

@media only screen and (max-width: 1290px) {
    .title h3 {
        font-size: 74px;
    }

    .title h2 {
        font-size: 16px;
        letter-spacing: 0.85px;
        margin-top: -5px;
    }

    .title p {
        font-size: 14px;
        width: 590px;
        letter-spacing: 1.08px;
    }

    .main_text {
        width: 940px;
    }
}

@media only screen and (max-width: 1200px) {
    header .logo img {
        width: 170px;
    }
}

@media only screen and (max-width: 1135px) {
    header .logo img {
        width: 150px;
    }

    .title {
        flex: .6;
    }

    .contact {
        flex: .5;
        margin-top: 7px;
    }

    .title h3 {
        font-size: 65px;
    }

    .title h2 {
        font-size: 14px;
        letter-spacing: 0px;
        margin-top: -20px;
    }

    .title p {
        font-size: 14px;
        width: 500px;
        letter-spacing: 1.25px;
        margin-top: 2px;
    }

    .contact .app {
        display: none;
    }

    .footer_line {
        top: 70%;
    }

    .contact_mail {
        margin-bottom: 10px;
    }

    .contact_item a  {
        margin-bottom: 10px;
    }

    .title_app a {
        display: inline-block;
    }

}

@media only screen and (max-width: 1110px) {
    #menu {
        display: none;
    }

    #burger_menu {
        display: block;
        margin-right: 20px;
    }

    .login {
        margin-left: auto;
    }

    .main h1 {
        width: 100%;
    }

    .main_text {
        width: 100%;
    }

    .main {
        margin: 90px 16px 140px 16px;;
    }

    .main_text .pref .pref_item {
        width: 230px;
    }

    .main_text .countries .countries_item {
        width: 230px;
    }

    .main_text_service,
    .main_text_faq,
    .main_text_flower,
    .main_text_plant,
    .main_text_news,
    .main_text_company,
    .main_text_contact,
    .main_text_faq_news {
        margin: 0 auto;
    }

    .catalog,
    .service {
        justify-content: center;
    }

    .main_text_contact .contact {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact_our p {
        display: inline-block;
        margin-right: 15px;
    }

    header {
        margin: 0 20px;
    }
}

@media only screen and (max-width: 900px) {
    .title h3 {
        font-size: 60px;
    }
    .title p {
        font-size: 14px;
        width: 470px;
    }
}


@media only screen and (max-width: 855px) {
    header {
        margin: 0 16px;
    }

    .main {
        margin-bottom: 180px;
    }

    .title {
        margin-left: 16px;
    }

    .contact {
        margin-right: 16px;
    }

    .title h3 {
        font-size: 51px;
    }

    .title h2 {
        margin-top: 0px;
        width: 395px;
    }

    .title p {
        font-size: 14px;
        width: 395px;
    }

    .title_app {
        width: 395px;
    }

    .title_app a {
        margin-right: 57px;
    }

    .title_app a:last-child {
        margin-right: 0;
    }

    .contact_all {
        margin-bottom: 32px;
    }
}

@media only screen and (max-width: 768px) {
    .main_text .countries {
        flex-wrap: wrap;
    }

    #content h1 {
        margin-bottom: 30px;
    }

    .main_text .countries .countries_item {
        width: 100%;
        min-height: auto;
        margin: 15px 0;
    }

    .main_text .info {
        flex-wrap: wrap;
    }

    .info .info_right {
        width: 100%;
    }

    .info .info_left {
        width: 100%;
        display: flex;
    }

    .info .info_left .info_left_item {
        display: inline-block;
        width: 100%;
    }

    .info .info_left {
        flex-wrap: wrap;
    }

    .news .news_item {
        width: 100%;
    }

    .news {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 696px) {

    .main_text .pref {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    header {
        height: 53px;
    }

    header .logo img {
        width: 130px;
    }

    .main {
        margin-top: 70px;
        margin-bottom: 0;
    }

    footer {
        position: relative;
        z-index: -1;
        flex-wrap: wrap;
    }

    .title {
        flex: 1;
    }

    .contact {
        margin-left: 16px;
        margin-top: 30px;
        flex: 1;
    }
}

@media only screen and (max-width: 531px) {
    .main_text .pref .pref_item {
        width: 100%;
    }

    .catalog_flowers_item {
        width: 100%;
        margin: 10px 0;
    }

    .type_flower {
        font-size: 18px;
    }

    .service {
        justify-content: center;
    }

    .main_text_contact .contact .contact_manager .managers {
        flex-wrap: wrap;
    }

    .main_text_contact .contact .contact_manager .managers .managers_item {
        margin-right: 30px;
    }
}

@media only screen and (max-width: 375px) {
    .title {
        margin-right: 16px;
        width: 355px;
    }

    .title h3 {
        font-size: 45px;
    }
    .title h2 {
        width: 355px;
    }
    .title p {
        width: 355px;
    }

    .title_app {
        width: 355px;
    }
    .title_app a {
        margin-right: 35px;
    }

    .contact {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 320px) {
    .login button {
        display: none;
    }
    .title h3 {
        font-size: 36px;
    }

    .title h2 {
        width: 290px;
    }

    .title p {
        width: 290px;
    }

    .title_app {
        width: 290px;
        text-align: center;
    }

    .title_app a:last-child {
        margin-top: 20px;
    }
}
::-webkit-scrollbar-button {
    background-image: url("");
    background-repeat: no-repeat;
    width: 5px;
    height: 0px;
}

::-webkit-scrollbar-track {
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    border-radius: 2px;
    background-color: #2F80ED;
}

::-webkit-resizer {
    background-image: url("");
    background-repeat: no-repeat;
    width: 4px;
    height: 0px;
}

::-webkit-scrollbar {
    width: 5px;
}

.skype {
    width: 18px;
    height: 18px;
    background: url(/img/icon/sprite.png) -265px -5px;
}
.viber {
    width: 18px;
    height: 18px;
    background: url(/img/icon/sprite.png) -303px -4px;
}
.telegram {
    width: 18px;
    height: 18px;
    background: url(/img/icon/sprite.png) -284px -4px;
}
.whatsup {
    width: 18px;
    height: 18px;
    background: url(/img/icon/sprite.png) -322px -4px;
}
.email {
    width: 18px;
    height: 16px;
    background: url(/img/icon/sprite.png) -341px -4px;
}
.android {
    width: 90px;
    height: 27px;
    background: url(/img/icon/sprite.png) -175px -0px;
}
.apple_ios {
    width: 88px;
    height: 27px;
    background: url(/img/icon/sprite.png) -0px -0px;
}
.bitcoin {
    width: 88px;
    height: 27px;
    background: url(/img/icon/sprite.png) -87px -0px;
}
.day_pref {
    width: 60px;
    height: 60px;
    background: url(/img/icon/sprite1.png) -0px -0px;
}
.hand_pref {
    width: 50px;
    height: 60px;
    background: url(/img/icon/sprite1.png) -62px -0px;
}
.quality_pref {
    width: 60px;
    height: 60px;
    background: url(/img/icon/sprite1.png) -125px -0px;
}
.surface_pref {
    width: 50px;
    height: 60px;
    background: url(/img/icon/sprite1.png) -185px -0px;
}
.big_image {
    width: 80px;
    height: 80px;
    background: url(/img/icon/sprite2.jpg) -0px -0px;
}
.big_image1 {
    width: 80px;
    height: 80px;
    background: url(/img/icon/sprite2.jpg) -81px -0px;
}
.big_image2 {
    width: 80px;
    height: 80px;
    background: url(/img/icon/sprite2.jpg) -162px -0px;
}