/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  background-color: #f6f6f6f6;
}
  

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;
}


/* inter-regular - latin */



@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Geologica';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/inter-v12-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('../fonts/inter-v12-latin-regular.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Geologica';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/inter-v12-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('../fonts/inter-v12-latin-500.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* inter-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/inter-v12-latin-900.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('../fonts/inter-v12-latin-900.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
} 
/*
html{
  box-sizing: border-box;
}
*, *:before, *:after{
  box-sizing: inherit;
}
*/

html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

body{
    font-family: 'Rubik';
  font-style: normal;
  font-size: 16px;
  line-height: 1.2;
  font-weight: normal;
  color: black;
}
body{
    padding-top: 50px;
    
}
img{
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
a {
  color: black;
  text-decoration: none;
}
.header{
  width: 100%;
  height: 90px;

   background-color: white;
   position: fixed;
   top: 0;
   left: 0;
  z-index: 3;
  margin: 0 auto;
  border-bottom: solid 1px #d71212;
}
.whreper{
 padding-top: 10px;
 max-width: max-content;
 margin: 0 auto;
}
.header_menu{
 
  display: flex;
  flex-wrap: wrap;
  align-items: center;
 

}
.burger{
  padding: 0;
  background: none;
  border: 0;
  display: none;
  margin-left: auto;
  padding-right: 30px;
}
.hamburger .line{
  width: 50px;
  height: 5px;
  background-color: #ecf0f1;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
/*
.hamburger:hover{
  cursor: pointer;
}
#hamburger-1.is-active .line:nth-child(2){
  opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1){
  -webkit-transform: translateY(13px) rotate(45deg);
  -ms-transform: translateY(13px) rotate(45deg);
  -o-transform: translateY(13px) rotate(45deg);
  transform: translateY(13px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3){
  -webkit-transform: translateY(-13px) rotate(-45deg);
  -ms-transform: translateY(-13px) rotate(-45deg);
  -o-transform: translateY(-13px) rotate(-45deg);
  transform: translateY(-13px) rotate(-45deg);
}
*/




#menuToggle
{
  display: none;
  position: absolute;
  top: 35px;
  right: 50px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #f7d85b;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 350px;
  margin: -100px 0 0 0;
  height: 800px;
  padding: 50px;
  padding-top: 125px;
  right: -100px;
  
  background: #fff6d9;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's fade it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
  opacity: 1;
  display: block;
}



.header_list{
  display: flex;
  flex-wrap: wrap;
}
.header_item {
  margin-right: 30px;
}
.header_item a:hover{
  border-bottom: solid 1px #d71212;
}
.logo_header{
  margin-right: 20px;
  padding: 10px;
  max-width: 140px;
  width: 140px;
  height: auto;
}
.basket_header{
  padding: 10px;
  max-width: 50px;
  width: 50px;
  height: auto;
}
.Main_tatle{
  text-align: center;
  margin: 0 auto;
  font-weight: 600;
  font-size: 22px;
  line-height: 21px;
  padding-top: 80px;
  margin-bottom: 40px;
}

.slogan_title{
  text-align: justify;
  margin: 0 auto;
  max-width: 1000px;
  font-weight: 200;
  font-size: 20px;
  line-height: 21px;
  padding: 20px 20px;
  padding-bottom: 40px;
}



/*
.all_input_from input{
    /* float: right; 
    height: 32px;
    line-height: 19px;
    padding: 0px 5px;
    width: 100%; 
    border: none;
    margin-bottom: 20px;
    margin-top: 10px;
}

.button_puch{
  position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    font-size: 14px;
    vertical-align: middle;
    color: rgb(255 255 255);
    text-align: center;
    background-color: #419152;
    line-height: 22px;
    height: 40px;
    padding: 0px 5px;
    box-sizing: border-box;
    border: none;
    margin: 0;
    transition: background-color 0.2s;
}
.all_input_from input[type="submit"]:hover,.all_input_from input[type="submit"]:active {
        background: #e3000f
    }
 
.reg_form{
  display: flex;
  width: 100%;
  max-width: 900px;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between
    
}

.all_input_from_about{
  height: 90px;
  line-height: 16px;
 
  width: 100%;;
  
}
.all_input_from_about textarea{
  height: 90px;
  line-height: 16px;
  font-size: 12px;
  padding: 0px 5px;
  width: 100%;;
  border: none;
  margin-top: 10px;
}
*/


.agreement{
  padding-bottom: 40px;
  background-color: #ffffff;
}
.agreement_flex_all{
    display: flex;
    flex-direction: row;
    /* max-width: 281px; */
    margin: 0 auto;
    gap: 40px;
    justify-content: center;
}
.agreement_flex{
    display: flex;
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
    gap: 40px;
    /* max-width: 1000px; */
    margin: 0 auto;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
}

.agreement_box{
  display: flex;
    /* max-width: 350px; */
  width: 350px;
  gap: 32px;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;

  
}
.agreement_title_main{
  margin: 0 auto;
    max-width: 500px;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    padding: 25px;

}
.agreement_title{
  text-align: justify;

  margin: 0 auto;
    max-width: 500px;
    font-weight: 200;
    font-size: 16px;
    line-height: 28px;
    padding-top: 20px;
    margin-bottom: 40px;
    
}

.dop_infa{
  padding-bottom: 50px;
  background-color: #343434;
  background-repeat: calc();
  text-shadow: 1px 1px black;
}
.dop_infa_title_h{
  text-align: justify;
  color: #ffffff;
  margin: 0 auto;
  max-width: 1000px;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  padding: 20px;
}
.dop_infa_title{
  text-align: justify;
  color: #ffffff;
  margin: 0 auto;
  max-width: 1000px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  padding: 20px;
}
.dop_infa_subtitle {
    color: #ffffff;
    font-size: 16px;
    max-width: 550px;
    text-align: justify;
    list-style: disc;
    font-weight: 200;
    line-height: 28px;
    padding: 0 0px 0 34px;
}
.dop_infa_h{
  margin: 0 auto;
  text-align: center;
  color: white;
  font-weight: 600;
  font-size: 22px;
  line-height: 21px;
  padding-top: 40px;
  margin-bottom: 40px;
  
}
.dop_infa_grids{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    max-width: 1070px;
    margin: 0 auto;
    align-items: start;
    justify-items: center;
    padding: 0px 30px 0px 0px;
}


.dop_infa_img{
  position: absolute;
}
.dop_infa_title{
      font-size: 18px;
  max-width: 550px;
 text-align: justify;
}
.dop_infa_img_add {
    height: 80%;
    box-shadow: 11px 15px 0px 10px #ffffff;
}

.img_why_we_out{
  width: 130px;
  height: auto;
}



.other_cards{
  width: 100%;
  height: 100%;
   margin-bottom: 100px;
}
.other_grid_cards{
  
  display: grid;  
  grid-template-columns: repeat(3, 1fr);
  
  max-width: 1060px;
  margin: 0 auto;
}

.other_grid_card{
  grid-column: span 1;
  transform: translateY(0); 
  padding: 10px;
}
.other_grid_card:hover img {
    filter: grayscale(80%);
    transition: 0.3s;
}
.activity_card-pic{
  width: 100%;
height: auto;
   
}

.activity_card-title{
  color: #ffffff;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  position: absolute;
  left: 0;
  width: 100%;
  top: 160px;
  z-index: 1;
  padding: 0 20px;
}





@media (max-width: 985px) {
  .maps_flex{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 20px
    
  }
  .maps_map {
    width: 600px;
  }
}

@media (max-width: 800px) {
  .header_menu {
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .header_item {
    display: none;
  }
  .grid_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1060px;
    margin: 0 auto;
  }
  /*
  .burger {
     padding: 0; 
    background: none;
    border: 0;
    display: block;
    margin-left: auto;
    padding-right: 0px;
    padding-left: 70px;
  }
  */
 
}
@media screen and (max-width: 768px) {

  .maps_map {
    width: 300px;
  }
  .agreement_flex {
    display: flex;
    padding: 0 20px;
    /* gap: 40px; */
    max-width: 1000px;
    margin: 0 auto;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
.agreement_box {
    display: flex;
    max-width: 350px;
    flex-direction: column;
    padding: 25px;
}
.dop_infa_grids{

    grid-template-columns: repeat(1, 1fr);

    padding: 0px 30px 0px 30px;
}

  
}

@media (max-width: 650px) {
  .icon_flex {
    display: flex;
    gap: 50px;
    align-items: center;
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
    flex-direction: column
}
.verticalLine2 {
  border-left: 2px solid white;
  height: 600px;
  position: absolute;
  left: 50%;
}
}

@media (max-width: 705px) {
  .why_we_grids {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    max-width: 500px;
    margin: 0 auto;
    padding-left: 30px;
  }

}
@media (max-width: 555px) {
  .grid_cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    max-width: 1060px;
    margin: 0 auto;
  }
}