/* ======================================
  BASIC-START
========================================= */

* {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
}

button {
  box-shadow: none;
}

button:focus {
  outline: 0 !important;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  /* min-height: 100vh;
  height: auto; */
  overflow-x: hidden;
  position: relative;
  /* background-color: rgba(64,64,64,.1); */
  transition: 300ms all ease;
}

.grey-theme {
  background-color: #8c8c8c;
}

#content {
  min-height: 80vh;
  margin-top: 100px;
}

.body-sidebar {
  display: flex;
  flex-direction: row;
}

.body-sidebar-wrap {
  position: relative;
  width: calc(100% - 250px);
  left: 250px;
  transition: all 300ms ease !important;
}

.sidebar-body {
  transition: all 300ms ease !important;
  position: relative;
}

.push-right {
  right: -250px;
}

input, textarea, select {
  border: 1px solid rgba(64,64,64,.2);
  padding: 0 10px;
}

textarea {
  padding: 10px;
}

input:focus,
select:focus,
textarea:focus,
.contact-form-btn:focus {
  outline: none;
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important; */
  box-shadow: none !important;
}

::-moz-selection {
  background-color: rgba(255, 102, 51,.9);
}

::selection {
  background-color: rgba(255, 102, 51,.9);
  color: #FFF;
}

a {
  color: #333;
}

a:hover {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

p {
  margin: 0;
}

.row {
  overflow-x: hidden;
  height: auto;
}

/* ======================================
    SCROLL-TOP-START
  ======================================= */

.top {
  position: fixed;
  right: 1%;
  bottom: 2%;
  z-index: 30;
  visibility: hidden;
  width: 30px;
  height: 30px;
  transition: 300ms all ease;
}

.top:hover {
  cursor: pointer;
}

.top:hover .up-arrow {
  border-color: #EEE;
}

.top-arrow {
  width: 100%;
  height: 100%;
  background-color: rgba(.64, .64, .64, .1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-arrow:hover {
  background-color: rgba(.64, .64, .64, .3);
}

.up-arrow {
  width: 10px;
  height: 10px;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  transform: rotate(-45deg) translate(-2px, 2px);
  background: transparent;
}


/* ======================================
    SCROLL-TOP-END
  =======================================  */

/* ======================================
    BASIC-END
  ======================================= */


/* ======================================
    BOOTSTRAP-CUSTOMIZATIONS-START
  ======================================= */

@media (min-width: 0px) {
  .container {
    max-width: 540px;
    padding: 0 10px;
  }
  .row {
    margin-left: -5px;
    margin-right: -5px;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
    padding: 0 15px;
  }
  .row {
    margin-left: 0px;
    margin-right: 0px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

@media (min-width: 1600px) {
  .container{
    max-width: 1396px;
  }
}

@media (min-width: 1920px) {
  .container{
    max-width: 1630px;
  }
}

@media (min-width: 2560px) {
  .container{
    max-width: 2170px;
  }
}

.mega-menu.container {
  padding-top: 20px;
}
