html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html {
	height: 100%;
}
body {
	line-height: 1;
	font-family: 'Gilroy';
    font-weight: normal;
    font-style: normal;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main{
    flex-grow: 1;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.container{
    max-width: 1200px;
    padding: 0 20px;
    width: calc(100% - 40px);
    margin: 0 auto;
}
img{
    max-width: 100%;
}

.logo{
    width: 30vw;
    display: inline-block;
    max-width: 220px;
    margin: -13px 0 0 0;

}
header  .container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
 nav{
    margin: 0 0px 0 auto;
    display: flex;
    border-bottom: 1px solid #9c27b036;
 }
 nav ul{
         display: flex;
 }
  nav ul li{

  }
  nav ul li a{
    color: #333;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    display: inline-block;
    position: relative;
  }
   .city{
        padding: 0px;
        color: #a592a5;
        font-weight: bold;
        cursor: pointer;
        width: 100%;
        text-align: right;
   }
   .phone{
   padding: 10px 0 10px 10px;
        font-weight: bold;
        font-size: 21px;
        color: #8f3b8c;
   }
   header{
        padding: 5px 0 0 0;
   }
  .bg_search_form{
        background-image: url(../../temp/img/ocean.jpg);
        min-height: 40vh;
        background-size: cover;
        position: relative;
        background-position: bottom;
        padding: 50px 0;
  }
  .index-title{
        color: #fff;
        font-size: 30px;
        font-weight: bold;
        padding: 14vh 0 0;
        text-shadow: 5px 1px 23px #22988d;
  }
  .wr_search_form{
        padding: 30px 0;
  }
  h1{
      font-size: 30px;
    font-weight: bold;
    padding: 60px 0 30px 0;
  }

  .wr_search_form input{
        padding: 15px;
        width: calc(100% - 30px);
        border: 1px solid #fff;
        border-radius: 43px;
  }
  .bg_search_form img{
        position: absolute;
        top: 0;
        z-index: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
  }
  .bg_search_form .container{
       position: relative;
       z-index: 1;
  }
  .touch_menu, .clouse{
        display: none;
  }
  .touch_menu span {
        display: block;
        background: #ffffff;
        height: 4px;
        width: 34px;
        margin: 5px 0 0px 0;
        border: 1px solid #9c27b0;
        border-radius: 4px;
        transition: all .4s;
        margin-left: auto;
    }
    
    .country-list{
        display: flex;
        
    }
    .left_col-country{
        width: calc(33% - 20px);
        margin: 20px 0;
    }
    .right_col-country{
        width: calc(67% - 20px);
        margin: 10px;
        
    }
    
    .country-1_4 {
        position: relative;
        width: calc(33% - 20px);
        margin: 10px;
        display: block;
        border-radius: 10px;
        height: 0;
        padding-bottom: 30%;
        overflow: hidden;
    }
    .country-1_4 img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .country_row{
        display: flex;
        flex-wrap: wrap;
    }
    .left_col-country .country{
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        display: block;
        height: 100%;
    }
    .left_col-country .country img{
        object-fit: cover;
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }
    .country span, .country-1_4 span{
        color: #fff;
        text-decoration: none;
        position: absolute;
        text-transform: uppercase;
        bottom: 20px;
        left: 20px;
        font-weight: 800;
        font-size: 30px;
        text-shadow: 2px 3px 3px #33333385;
    }

  
  
  
  
@media (max-width: 1100px) {
    
}

@media (max-width: 900px) {
    .country_row {
           flex-wrap: wrap;
        }
        .country-1_4 {
            width: calc(50% - 20px);
        }
        .country span, .country-1_4 span {
            font-size: 26px;
        }
    nav.open{
        position: fixed;
        display: flex;
        background: #fff;
        z-index: 10000;
        left: 0;
        height: 100vh;
        width: 100vw;
        overflow: hidden;
        flex-direction: column;
    }
    nav.open ul{
        flex-direction: column;
        height: calc(100vh - 50px);
    }
    header{
        height: 42px;
    }
    nav, .city{
        display: none;
    }
    .touch_menu{
        display: block;
        z-index: 100000;
    }
    .clouse{
        position: fixed;
        left: 0;
        top: 0;
        z-index: 1000;
        color: #333;
        display: block;
    }
    body {
        font-size: 14px;
    }
    .logo {
        width: 30vw;
        display: inline-block;
        max-width: 220px;
        margin: 2px 0 8px 0;
        min-width: 155px;
    }
    .touch_menu.open span:nth-child(2) {
        width: 28px;
        margin-left: auto; 
    }
    .touch_menu.open span:nth-child(3) {
        width: 18px;
        margin-left: auto; 
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    .country-list {
            flex-direction: column;
        }
        .left_col-country {
            width: 100%;
            margin: 0px 0;
        }
        .right_col-country {
            width: 100%;
            margin: 10px 0 0 0;
        }
        .country-1_4 {
            position: relative;
            width: 100%;
            margin: 10px 0;
            display: block;
            border-radius: 10px;
            height: 0;
            padding-bottom: 50%;
            overflow: hidden;
        }
}

@media (max-width: 500px) {
    body {
        font-size: 14px;
    }
}
@media (max-width: 400px) {
    body {
        font-size: 14px;
    }
}




