html, body {
  overflow-x: hidden;
}

body {
  background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(0,0,0,.15) 100%), url("../img/background_img.jpg");
  background-attachment: fixed;
  background-size: cover;
}

.form-control:focus {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 128, 0, 0.6);
}

.main_img_logo {
  background-color: white;
  box-shadow: 0px 0px 20px white;
}

#hamburger {
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  padding: 4px;
  display: inline-block;
  border-radius: 48px;
  cursor: pointer
}

.navLine {
  display: block;
  height: 2px;
  background: #fff;
  margin-top: 7px;
  width: 60%;
  margin-left: 20%;
  transition: all 180ms linear
 }

#hamburger:hover .navLine:nth-child(2) {
  width: 0%;
}

#hamburger:hover .navLine:nth-child(2):after {
  opacity: 1
}

.navLine:nth-child(2):after {
  content: "МЕНЮ";
  float: right;
  color: #fff;
  font-size: 10px;
  margin-top: -6px;
  margin-right: -27px;
  opacity: 0;
}

.navbar {
  background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,.7) 75%, rgba(0,0,0,0) 100%);
}

#rtlNav {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  height: 100vh;
  background: #000;
  transition: all 180ms linear;
  z-index: 999;
  transform: translateX(100%)
}

.activeClass {
  transform: translateX(0%) !important
}


.subNavLinks {
  display: inline-block;
  text-decoration: none;
  font-size: 2em;
  font-weight: bold;
  text-transform: uppercase;
  color: #87d5ba;
}

.subNavLinks:after {
  display: block;
  content: '';
  border-bottom: solid 3px #18bf86;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
}

.subNavLinks:hover:after {
  transform: scaleX(1);
}

.subNavLinks.fromRight:after {
  transform-origin: 100% 50%;
}

.subNavLinks.fromLeft:after {
  transform-origin: 0% 50%;
}

.subNavLinks:hover {
  color: #fff
}

#closeMenu:hover {
  color : #87d5ba
}

#closeMenu {
  float: right;
  margin-right: 48px;
  margin-top: 24px;
  color: #fff;
  font-size: 2em;
  cursor: pointer
}

#linkFlexOuter {
  display: flex;
  align-items: center;
  height: 100vh;
  width: 100%;
}

#linkFlexInner {
    flex: 1
}

button.btn-block {
  background : #18bf86;
}

button.btn-outlined {
  border-color : #18bf86;
  color:#fff
}

#toTop {
border:1px solid #ccc;
background:#FFF;
text-align:center;
padding:5px;
position:fixed;
bottom:10px;
left:10px;
cursor:pointer;
display:none;
color:#000;
font-family:verdana;
font-size:12px;
opacity: 0.6;
}

#toTop:hover {
opacity: 0.9;
}

.custom-file-button input[type=file] {
  margin-left: -2px !important;
}

.custom-file-button input[type=file]::-webkit-file-upload-button {
  display: none;
}

.custom-file-button input[type=file]::file-selector-button {
  display: none;
}

.custom-file-button:hover label {
  background-color: #dde0e3;
  cursor: pointer;
}

.accordion-button:not(.collapsed) {
      background-color: transparent !important;
      color: inherit;
    }

button.accordion-button:focus{
      box-shadow: inherit;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: none !important;
}

.form-check-input:checked {
  background-color: green !important;
  border: 0;
}