*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html{
    scroll-behavior: smooth;
}

.font_color{
    color:rgb(160, 106, 19);
}

.background_color{
    color:rgb(153, 101, 18);
}

/* COOKIES */

.cookie_wrapper{
    position: fixed;
    bottom: 20px;
    left: 30px;
    z-index: 99;
    max-width: 365px;
    background: #fff;
    padding: 25px 25px 30px 25px;
    border-radius: 15px;
    box-shadow: 1px 7px 14px -5px rgba(0,0,0,0.15);
    text-align: center;
  }
  .cookie_wrapper.hide{
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
    transition: all 0.3s ease;
  }
  ::selection{
    color: #fff;
    background: #FCBA7F;
  }
  .cookie_wrapper img{
    max-width: 90px;
  }
  .content header{
    font-size: 25px;
    font-weight: 600;
  }
  .content{
    margin-top: 10px;
  }
  .content p{
    color: #858585;
    margin: 5px 0 20px 0;
    font-size: 15px;
    text-align: center;
  }
  .content .buttons{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .buttons button{
    padding: 10px 20px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    background: rgb(153, 101, 18);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .buttons button:hover{
    transform: scale(0.97);
  }
  .buttons .item{
    margin: 0 10px;
  }
  .buttons a{
    color: rgb(153, 101, 18);
  }


/* NAV */

nav#mobile_nav{
    display: none;
    background-color: #EEE6DB;
    padding: 0;
    position: relative;
    -webkit-box-shadow: 1px 10px 12px 1px rgba(0,0,0,0.12); 
    box-shadow: 1px 10px 12px 1px rgba(0,0,0,0.12);
}

nav#mobile_nav #logo{
    margin-left: 30px;
    margin-top: 6px;
    background-image: url('../media/logo2.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 70px;
    width: 160px;
    position: relative;
    display: inline-block;
}

nav#mobile_nav #hamburger{
    background-color: transparent;
    border: 0;
    color: black;
    font-size: 20px;
    outline: none;
    vertical-align: middle;
    float: right;
    line-height: 83px;
    margin-right: 30px;
}

nav#mobile_nav #hamburger:focus{
    outline: none;
}

nav#mobile_nav #mobile_ul{
    display: none;
}

nav#mobile_nav #mobile_ul a{
    text-decoration: none;
    color: black;
}

nav#mobile_nav #mobile_ul.show{
    display: block;
    width: 100%;
    text-align: center;
    border-top: 1px solid rgb(160, 106, 19);
    padding-top: 10px;
    padding-bottom: 10px;
}

nav#mobile_nav #mobile_ul.show li{
    margin-top: 5px;
}

nav#desktop_nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding: 0px 100px;
    background-color: #EEE6DB;
    z-index: 10;
    -webkit-box-shadow: 1px 10px 12px 1px rgba(0,0,0,0.22); 
    box-shadow: 1px 10px 12px 1px rgba(0,0,0,0.22);
}

nav#desktop_nav.sticky{
    padding: 1px 80px;
    background: #EEE6DB;
    -webkit-box-shadow: 1px 10px 12px 1px rgba(0,0,0,0.22); 
    box-shadow: 1px 10px 12px 1px rgba(0,0,0,0.22);

}

nav#desktop_nav #logo {
    background-image: url(../media/logo2.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 105px;
    width: 238px;
    position: relative;
    transition: 0.6s;
}

nav#desktop_nav ul{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav#desktop_nav ul li{
    position: relative;
    list-style: none;
}

nav#desktop_nav ul li a{
    position: relative;
    margin: 0 25px;
    text-decoration: none;
    color: black;
    letter-spacing: 2px;
    font-weight: 500;
    transition: 0.6s;
    font-size: 16px;
    text-transform: uppercase;
}

.underline{
    position: relative;
  }
  
  .underline::before{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: rgb(160, 106, 19);
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  
  @media (hover: hover) and (pointer: fine) {
    .underline:hover::before{
      left: 0;
      right: auto;
      width: 100%;
    }
  }

nav#desktop_nav ul li a:hover{
    color: rgb(160, 106, 19);
}

nav#mobile_nav{
    display: none;
}



#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: rgb(160, 106, 19);
    color: white;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    font-size: 24px;
    transition: 0.5s;
    -webkit-box-shadow: 1px 1px 12px 1px rgba(0,0,0,0.39); 
    box-shadow: 1px 1px 12px 1px rgba(0,0,0,0.39);
  }
  
  #myBtn:hover {
    background-color: #555;
  }





/* SECTION_ONE - HEADER */

#s_header {
    margin-top: 105px;
    height: 85vh;
    background: url(../media/header_seweryn.png);
    background-position: center;
    background-size: cover;
    scroll-margin: 50px 0;
}

#s_header #info_header{
    height: 100%;
    width: 55%;
    color: white;
    padding-left: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#s_header h1{
    font-size: 37px;
    letter-spacing: 1.2px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.04em;
}

#s_header h3{
    font-size: 140%;
    font-weight: 300;
    line-height: 2.5;
}


#s_header a{
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    height: 60px;
    width: 260px;
    line-height: 60px;
    color: white;
    border-radius: 7px;
    background-color: rgb(160, 106, 19);
    text-transform: uppercase;
    margin-top: 30px;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.4s;
    text-decoration: none;
    letter-spacing: 2px;
}

#s_header a:hover{
    background-color: #555;
    letter-spacing: 3px;
}

/* SECTION_TWO - ABOUT */

#about {
    width: 82%;
    margin: 5% 9%;
    display: flex;
    justify-content: center;
}

#s_about h2{
    text-align: center;
    margin-top: 2%;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
}

#s_about hr{
    margin-top: 60px;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgb(153, 101, 18, 0), rgb(160, 106, 19, 0.75), rgb(153, 101, 18, 0));
}

#s_about #about #about_img {
    background-image: url('../media/about_clinic.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    height: 1072px;
    width: 500px;
    vertical-align: top;
}

#s_about #about #about_info {
    display: inline-block;
    width: 765px;
}

#s_about #about #info_box {
    display: inline-block;
    background-color: rgb(160, 106, 19,0.81);
    height: 330px;
    width: 345px;
    border-radius: 35px;
    margin-left: 30px;
    padding-left: 30px;
    padding-right: 30px;
    vertical-align: top;
    -webkit-box-shadow: 1px 1px 12px 1px rgba(0,0,0,0.39); 
    box-shadow: 1px 1px 12px 1px rgba(0,0,0,0.39);
}

#s_about #about .box_down{
    margin-top: 5%;
}

#s_about #about #info_box i{
    margin-top: 15%;
    font-size: 200%;
    color: white;
}

#s_about #about #info_box p{
    font-size: 15px;
    margin-top: 10%;
    font-weight: 300;
    line-height: 1.8;
    color: white;
}

/* SECTION_THREE - OFFER */

#s_offer{
    margin-top: 8%;
    align-items: center;
    background-image: url('../media/offer_clinic.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: bottom;
    background-attachment: fixed;
    position: relative;
    padding-bottom: 50px;
    -webkit-box-shadow: 1px 1px 12px 1px rgba(0,0,0,0.49); 
    box-shadow: 1px 1px 12px 1px rgba(0,0,0,0.49);
    scroll-margin: 100px 0;
}

#s_offer #price_list{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

#s_offer .offer_wrapper {
    width: 40%;
    margin: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
}

#s_offer h2{
    color: white;
    text-align: center;
    padding-top: 1%;
    font-size: 220%;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
}

#s_offer hr{
    margin-top: 20px;
    position: relative;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgb(153, 101, 18, 0), rgba(255, 255, 255, 0.75), rgb(153, 101, 18, 0));
}

#s_offer::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(160, 106, 19, 0.7);
}

#s_offer #offer {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    align-content: center;
    margin: 25px 0;
    height: auto;
    position: relative;
    justify-content: space-between;
    border-bottom: 1px solid white;
    padding-bottom: 15px;
}

#s_offer #offer #subsection_wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#s_offer #offer #single_offer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 85%;
}

#s_offer #offer div#single_offer.offer_prices {
    width: 100%;
}

#s_offer #offer p.offer_with_subsections {
   margin-bottom: 10px;
}

#s_offer #offer #single_offer i {
    color: white;
    text-align: center;
    font-size: 38px;
    display: inline-block;
    position: relative;
    width: 100px;
}

#s_offer #offer p {
    position: relative;
    color: white;
    font-size: 17px;
    font-weight: 400;
    text-align: left;
    display: inline-block;
}

#s_offer #offer p#offer_subsection {
    margin-left: 40px;
    line-height: 2;
    font-size: 16px;
}

#s_offer #offer p#price{
    width: 150px;
    text-align: right;
    font-weight: 500;
}

#s_offer p#voucher{
    margin-top: 30px;
    /* margin-left: 80px; */
    position: relative;
    text-align: center;
    color:white;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
}

/* SECTION_FOUR - BENEFITS */

#s_benefits{
    background-color: whitesmoke;
    padding-top: 5%;
    padding-bottom: 5%;
    scroll-margin: 50px 0;
}

#s_benefits h2{
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
}

#s_benefits hr{
    margin-top: 50px;
    margin-bottom: 60px;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgb(153, 101, 18, 0), rgb(160, 106, 19, 0.75), rgb(153, 101, 18, 0));
}

#s_benefits #benefits_clinic_info{
    font-size: 19px;
    color: black;
    text-align: justify;
    width: 50%;
    margin: 0 auto;
    font-weight: 400;
}

#benefits{
    height: 100%;
    width: 80%;
    margin: 160px auto;
    display: flex;
    justify-content: center;
}

#benefits #benefits_img{
    background-image: url('../media/seweryn.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    height: 1000px;
    width: 700px;
    overflow: hidden;
}

#benefits #benefits_info{
    display: inline-block;
    width: 55%;
    height: 85%;
}

#benefits #benefits_info h6{
    margin-left: 13%;
    font-size: 300%;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
}

#benefits_info #benefits_wrapper{
    margin-top: 10%;
    margin-left: 13%;
}

#benefits_info #benefits_point{
    margin-top: 14%;
}


#benefits_point #benefits_circle{
    display: inline-block;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgb(160, 106, 19);
    text-align: center;
    line-height: 55px;
    color: whitesmoke;
    font-size: 38px;
    font-weight: 700;
    vertical-align: top;
}

#benefits_point #point_info{
    display: inline-block;
    margin-left: 2%;
    width: 80%;
}

#point_info h6{
    font-size: 170%;
    font-weight: 600;
}

#point_info p{
    margin-top: 2%;
    font-size: 120%;
    font-weight: 400;
}

/* SECTION_FOUR - FORM */

#s_form{
    align-items: center;
    background-image: url('../media/offer_clinic.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding-bottom: 5%;
    -webkit-box-shadow: 1px 1px 12px 1px rgba(0,0,0,0.49); 
    box-shadow: 1px 1px 12px 1px rgba(0,0,0,0.49);
    scroll-margin: 100px 0;
}

#s_form::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(160, 106, 19, 0.7);
}

#s_form #slider_mobile{
    display: none;
    width: 90%;
    margin: 90px auto 0px auto;
}

#s_form #splide{
    position: relative;
}


#s_form #slider{
    width: 90%;
    margin: 90px auto 0px auto;
}

#s_form #slider_mobile{
    width: 90%;
    margin: 90px auto 0px auto;
}

#s_form #slider_img{
    background-size: contain;
    background-repeat: no-repeat;
    height: 250px;
    width: 250px;
    margin: 0 auto;
    border-radius: 20px;
    -webkit-box-shadow: 1px 1px 12px 1px rgba(0,0,0,0.49); 
    box-shadow: 1px 1px 12px 1px rgba(0,0,0,0.49);
}

#s_form #slider_mobile #slider_img{
    background-size: contain;
    background-repeat: no-repeat;
    height: 190px;
    width: 190px;
    margin: 0 auto;
    border-radius: 20px;
    -webkit-box-shadow: 1px 1px 12px 1px rgba(0,0,0,0.49); 
    box-shadow: 1px 1px 12px 1px rgba(0,0,0,0.49);
}

#s_form #slider_img.active{
    background-image: url('../media/Wkladki/Alto\ Active-315.jpg');
}

#s_form #slider_img.hallux{
    background-image: url('../media/Wkladki/Alto\ Hallux-315.jpg');
}

#s_form #slider_img.optima{
    background-image: url('../media/Wkladki/Alto\ Optima-315.jpg');
}

#s_form #slider_img.optima_slim{
    background-image: url('../media/Wkladki/Alto\ Optima\ Slim-315.jpg');
}

#s_form #slider_img.ostroga{
    background-image: url('../media/Wkladki/Alto\ Ostroga-315.jpg');
}

#s_form #slider_img.sportowa{
    background-image: url('../media/Wkladki/Alto\ Sportowa-295.jpg');
}

#s_form #slider_img.dziecieca{
    background-image: url('../media/Wkladki/Alto\ Dziecieca.jpg');
}

#s_form #slider_img.dzieciecap{
    background-image: url('../media/Wkladki/Alto\ Dziecieca+.jpg');
}

#s_form #slider_img.szpilka{
    background-image: url('../media/Wkladki/Alto\ Szpilka-315.jpg');
}


#s_form #slider_mobile h6{
    font-size: 20px;
    color: white;
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 60px;
}

#s_form p{
    font-size: 22px;
    color: white;
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 60px;
}

#s_form h2{
    color: white;
    text-align: center;
    padding-top: 1%;
    font-size: 220%;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
}

#s_form hr{
    margin-top: 30px;
    position: relative;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgb(153, 101, 18, 0), rgba(255, 255, 255, 0.75), rgb(153, 101, 18, 0));
}

#s_form form{
    width: 40%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding-bottom: 6%;
    padding-top: 6%;
}


/* SECTION_FIVE - CONTACT */

#s_contact{
    padding-top: 5%;
    padding-bottom: 5%;
    background-color: whitesmoke;
    scroll-margin: 50px 0;
}

#s_contact #contact{
    display: flex;
    justify-content: space-between;
    width: 70%;
    margin: 0 auto;
    height: 100%;
    align-items: center;
}

#contact #contact_info h2{
    font-size: 300%;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
}

#contact #contact_info p{
    font-size: 110%;
    font-weight: 400;
}

#s_contact #covid_info {
    font-size: 20px;
    color: rgb(160, 106, 19);
    width: 50%;
    margin: 120px auto 30px auto;
    font-weight: 600;
    text-align: center;
}

#s_contact #covid_clinic_info {
    font-size: 16px;
    color: black;
    text-align: justify;
    width: 45%;
    margin: 0 auto;
    font-weight: 400;
}

/* FOOTER */

footer {
    height: 27vh;
    background-color: #EEE6DB;
}

#footer_wrapper{
    width: 35%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
}

#footer_wrapper #footer_info #logo_footer{
    background-image: url('../media/logo2.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 284px;
    height: 114px;
}

#footer_wrapper #footer_info hr{
    margin: 20px 0;
}

#footer_wrapper #footer_info p{
    text-align: left;
    margin-left: 10px;
}

#footer_wrapper #footer_contact{
    width: 35%;
    text-align: left;
}

#footer_wrapper #footer_contact p#name{
    font-size: 20px;
    margin-bottom: 20px;
}

#footer_wrapper #footer_contact hr{
    margin-top: 20px;
}

#footer_wrapper #footer_contact i{
    font-size: 55px;
    margin-top: 20px;
    text-align: center;
    color: rgb(160, 106, 19);
    cursor: pointer;
}

#footer_wrapper #footer_contact a{
    text-decoration: none;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
    vertical-align: top;
    font-size: 16px;
    line-height: 25px;
}





