html{
    margin: 0px;
    padding: 0px;
    height: 100%;
}

body{
    background: white;
    margin: 0px;
    padding: 0px;
    height: 100%;
    color: rgb(255, 255, 255);
}

*{
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

.wrap_body{
    /*outline: 2px solid yellow;*/
    min-height: 100vh;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 50px 100px auto auto 150px 90px;
    grid-gap: 0px;
    grid-template-areas: 'header'
                         'nav'
                         'section_top'
                         'article'
                         'section_bottom'
                         'footer';
}

.header, .nav, .section_top, .article, .section_bottom, .footer{
    padding: 0px 15px;
    background: #303442;
    font-family: Helvetica, arial, sans-serif;
}

.header{
    grid-area: header;
    background-color: #303442;
    color: #bbbdc3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.header_wrap{
   /* outline: 2px solid red;*/
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.header_info, .header_phone{
    /*outline: 1px solid yellow;*/
    display: flex;
    flex-wrap: wrap;
    width: 50%;
}

.header_info > p > i{
    margin-right: 7px;
    color: #da273c;
}

.header_phone{
    justify-content: flex-end;
    color: white;
}

.header_phone > i{
    margin-right: 7px;
}

.header_phone > a{
    color: #da273c;
    font-size: 15px;
    font-weight: bold;
}

.header_phone > a:hover{
    color: white;
}

.header p{
    margin: 0px;
    padding: 6px 0px;
    font-size: 14px;
    font-weight: bold;
    margin-right: 25px;
}

.nav{
    grid-area: nav;
    /*outline: 2px solid blue;*/
    position: sticky;
    top: 0;
    background-color: white;
    color: black;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #303442;
    z-index: 1;
}

.menu_wrap{
    /*outline: 2px solid red;*/
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
}

.logo{
    /*outline: 1px solid yellow;*/
    cursor: pointer;
}

.logo img{
    height: 70px;
    width: auto;
}

.menu{
    /*outline: 1px solid yellow;*/
    display: flex;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.menu li{
    margin: 0px 15px;
}

.menu li a{
    text-decoration: none;
    color: #303442;
    font-size: 18px;
    font-weight: bold;
}

.menu li a:hover{
    text-shadow: #303442 0px 0px 1px;
}


.section_top{
    grid-area: section_top;
    position: relative;
    /* outline: 2px solid green; */
    background: rgb(90, 90, 90);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0px;
    height: 99.6%;
}

.article{
    grid-area: article;
    /*outline: 2px solid orange;*/
    background: rgb(110, 110, 110);
    padding: 20px;
    margin-top: -4px;
}

.article_wrap{
    /*outline: 2px solid red;*/
    max-width: 1200px;
    margin: 0 auto;
}

.article h2{
    text-align: center;
}

.section_bottom{
    grid-area: section_bottom;
   /* outline: 2px solid purple;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #303442;
    padding: 10px;
    min-height: 70px;
    height: auto;
}

.section_bottom_wrap {
    /*outline: 2px solid yellow;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section_bottom_list{
    /*outline: 1px solid red;*/
    list-style: none;
    padding: 10px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.section_bottom_list li{
    margin: 10px 15px;
    padding: 0px;
    font-size: 15px;
    font-weight: bold;
}

.section_bottom_list li a{
    text-decoration: none;
    color: #bbbdc3;
}

.section_bottom_list li a:hover{
    color: white;
    text-decoration: underline;
}

.social_media{
    /*outline: 1px solid red;*/
    padding: 10px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.social_media a{
    margin: 0px 10px;
    color: #bbbdc3;
    font-size: 26px;
}

.social_media a:hover{
    color: white;
}

.footer{
    grid-area: footer;
    /*outline: 2px solid pink;*/
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    background-color: #303442;
    border-top: 1px solid #bbbdc3;
}

.footer p{
    margin: 0px;
    padding: 0px;
    font-size: 16px;
    color: #bbbdc3;
    text-align: center;
}





/* Slideshow container */

.slideshow-container {
    width: 100%;
    position: relative;
}

.mySlides {
    display: none;
}

.prev, .next {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.text {
    color: #ffffff;
    font-size: 45px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.text p:first-child{
    font-size: 25px;
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
    display: none;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dots_container {
    position: absolute;
    bottom: 20px;
}

.active, .dot:hover {
    background-color: #ff0000;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}





/* mobile responsive */

.mobile_menu{
    display: none;
}

.overlay{
    display: none;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}