@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");

/* header */

@media only screen and (min-width: 1024px) {
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
	z-index:10;
  }
  .main-header.scroll .logo img {
    max-height: 50px;
  }
  .main-header.scroll .logo-box {
    margin: 26px 0 11px;
  }
  .main-header.scroll .header-box {
    align-items: flex-start;
  }
  #authStatus {
	  margin-top:103px;
  }
}
.main-header {
  background-color: #000;
  width: 100%;
}
.header-box,
.main-nav {
  display: flex;
}
.menu_button {
  display: none;
}

.logo-box {
  margin: 20px 0 10px;
}
.logo a {
  display: inline-block;
}
.logo img {
  transition: max-height 0.2s ease;
}
.header-box {
  justify-content: space-between;
  align-items: center;
}
.logo {
  margin: 0.4em 0;
}
.main-nav {
  margin-right: 3em;
  padding-top: 5px;
}
.main-nav a {
  position: relative;
  color: #fff;
  font-size: 13px;
  display: block;
  padding: 1.8em 0.98em;
  font-weight: 600;
  font-family: Lato, sans-serif;
  text-transform: uppercase;
}
.main-nav a:hover {
  color: #c31230;
}
.main-nav a:after {
  width: 0px;
  content: "";
  left: 1em;
  right: 1em;
  position: absolute;
  height: 2px;
  bottom: 13px;
  transition: all ease 0.3s;
}
.main-nav a:hover:after {
  width: auto;
  background-color: #c31230;
}
/* footer */
#footer {
  font-family: "Lato", sans-serif;
}
#footer p {
  margin: 0;
}
.footer-top {
  line-height: 18px;
  color: #fff;
  background-color: #000;
  padding: 6em 0 4em;
}
.footer-top a:hover,
.footer-top a {
  color: #c31230;
  font-weight: 400;
}
.cst-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1170px;
}
.ft-row {
  display: flex;
  margin: 0 -30px 0 0;
}
#footer p.ft-spacer {
  line-height: 18px;
  margin-bottom: 1.5em;
}
.ft-col {
  font-size: 14px;
  width: 20%;
  position: relative;
  padding-right: 30px;
  margin-bottom: 1.5em;
}
.ft-title {
  color: #fff;
  font-size: 1.3em;
  line-height: 1.3em;
  font-weight: 400;
  margin: 0 0 1.8em;
}
.ft-col-3 {
  text-align: center;
}

.footer-bottom {
  background-color: #171a1c;
  padding: 1.45em 0;
}
.footer-bottom p {
  text-align: center;
  line-height: 1.58em;
  color: #9c9ea0;
}
.phone-no {
  color: #9c9ea0;
}
.social-nav {
  display: flex;
  margin-top: 1em;
}
.social-item {
  margin: 0 0.25em 0.25em 0;
}
#footer .social-icon {
  color: #5e6062;
  border: 2px solid #5e6062;
  width: 39px;
  height: 39px;
  line-height: 39px;
  display: block;
  text-align: center;
  border-radius: 50%;
}
.social-icon span {
  line-height: inherit;
  font-size: 0.9285em;
}
#footer .social-icon span:before {
  line-height: 38px;
}
#footer .social-icon:hover {
  color: #c31230;
  border-color: #c31230;
}
#footer .scroll_to_top {
  background-color: #c31230;
  bottom: -3em;
  position: fixed;
  width: 3em;
  height: 3em;
  line-height: 3em;
  text-align: center;
  right: 2em;
  color: #fff;
  z-index: 10;
  display: block;
  transition: bottom 1.5s;
}
#footer .scroll_to_top.show {
  bottom: 2em;
}
#footer .scroll_to_top:before {
  line-height: 48px;
}
@media only screen and (max-width: 1022px) {
	.ft-row{
		
  flex-wrap: wrap;
	}
  .main-header {
    position: relative;
  }
  .menu_button {
    display: block;
    color: #fff;
    font-size: 26px;
    line-height: 25px;
    position: absolute;
    left: 21px;
    top: 50%;
    margin-top: -13px;
  }
  body.open {
    overflow: hidden;
  }
  .header-box {
    justify-content: center;
  }
  .logo-box {
    margin: 0;
    padding: 35px 0 20px;
  }
  .logo {
    margin: 0;
  }
  .nav-box {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6);
    transform: translate(-100%);
    transition: transform 0.2s ease;
  }
  .nav-box.open {
    transform: translate(0);
  }
  .main-nav {
    background-color: #c31230;
    height: 100%;
    width: 320px;
    flex-direction: column;
  }
  .main-nav li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  }
  .main-nav a {
    display: block;
    padding: 17px 35px;
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 1439px) and (min-width: 1263px) {
  .cst-container {
    width: 1000px;
  }
}
@media (max-width: 1262px) and (min-width: 1136px) {
  .cst-container {
    width: 910px;
  }
}
@media (max-width: 1135px) and (min-width: 1024px) {
  .cst-container {
    width: 964px;
  }
}
@media (max-width: 1023px) and (min-width: 960px) {
  .cst-container {
    width: 900px;
  }
}
@media (max-width: 959px) and (min-width: 768px) {
  .ft-col {
    width: 33.333%;
  }
  .cst-container {
    width: 708px;
  }
}
@media (max-width: 767px) and (min-width: 640px) {
  .cst-container {
    width: 600px;
  }
}
@media (max-width: 767px) and (min-width: 480px) {
  .ft-row {
    margin: 0 -20px 0 0;
  }
  .ft-col {
    width: 50%;
    padding-right: 20px;
  }
  .ft-col-3,
  .ft-col-4,
  .ft-col-5 {
    padding-top: 20px;
  }
}
@media (max-width: 639px) and (min-width: 480px) {
  .cst-container {
    width: 440px;
  }
}
@media (max-width: 479px) {
  .nav-box {
    top: 115px;
  }
  .main-nav {
    width: 100%;
  }
  .menu_button {
    position: relative;
    margin-top: 0;
    left: unset;
  }
  .menu_button:before {
    margin: 0 !important;
  }
  .logo-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-container .cst-container {
    margin-left: 35px;
  }
  .ft-row {
    margin: 0 -10px 0 0;
  }
  .cst-container {
    width: 280px;
  }
  .ft-col {
    width: 100%;
    padding-right: 10px;
  }
  .ft-col:not(:first-child) {
    margin-top: 1em;
  }
  .ft-col:not(:first-child) {
    padding-top: 10px;
  }
  .footer-bottom {
    font-size: 11px;
  }
}
