*   {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

html  {
  height: 100%;
}

body  {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Helvetica Neue", sans-serif;
  color: #284156;
}

nav  {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 12vh;
  background: #ffffff;
  position: sticky;
  top: 0px;
  z-index: 100;
}

.nav_links  {
  width: 65%;
  display: flex;
  justify-content: space-evenly;
}

.nav_links li  {
  list-style: none;
  position: relative;
}

.nav_links li::after  {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: #CC1F2F;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 225ms ease-in;
}

.nav_links li:hover::after  {
  transform: scaleX(1);
}

.nav_links a {
  text-decoration: none;
  color: #284156;
}

.nav_number {
  font-weight: 300;
}

.nav_text {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  padding-top: 3px;
}

.logo {
  margin-left: 70px;
}

.logo img {
  height: 46px;
}

.burger  {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 35px;
  height: 3px;
  background-color: #284156;
  margin: 5px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1140px) {
  .nav_links  {
    width: 70%;
  }
  .logo {
    margin-left: 56px;
  }
}

@media screen and (max-width: 1040px) {
  .nav_links  {
    width: 75%;
  }
  .logo {
    margin-left: 45px;
  }
}

@media screen and (max-width: 920px)  {
  body  {
    overflow-x: hidden;
  }
  .nav_links  {
    position: absolute;
    left: 0px;
    height: 100vh;
    top: 0vh;
    background-color: #284156;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 30%;
    transform: translateX(-100%);
    transition: transform 0.6s ease-in;
  }
  .nav_links li {
    opacity: 0;
  }
  .nav_links li:nth-child(1)  {
    transition: all 1s ease 0.5s;
  }
  .nav_links li:nth-child(2)  {
    transition: all 1s ease 0.6s;
  }
  .nav_links li:nth-child(3)  {
    transition: all 1s ease 0.7s;
  }
  .nav_links li:nth-child(4)  {
    transition: all 1s ease 0.8s;
  }
  .nav_links li:nth-child(5)  {
    transition: all 1s ease 0.9s;
  }
  .nav_links li::after  {
    content: none;
  }
  li.fade  {
    opacity: 1;
  }
  .nav_number {
    color: #CC1F2F;
    font-size: 1.8rem;
  }
  .nav_text  {
    position: relative;
    color: #ffffff;
  }
  .nav_text::after  {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background: #CC1F2F;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 225ms ease-in;
  }
  .nav_text:hover::after  {
    transform: scaleX(1);
  }
  .burger {
    display: block;
    margin-right: 45px;
  }
}

@media screen and (max-width: 800px)  {
  .nav_links  {
    width: 45%;
  }
}

@media screen and (max-width: 680px)  {
  .nav_links  {
    top: 12vh;
    height: 88vh;
    width: 100%;
  }
}

.nav_active {
  transform: translateX(0%);
}

.toggle .line1  {
  transform: rotate(-45deg) translate(-5px, 6px);
  background-color: #CC1F2F;
}

.toggle .line2  {
  opacity: 0;
}

.toggle .line3  {
  transform: rotate(45deg) translate(-5px, -6px);
  background-color: #CC1F2F;
}

footer  {
  margin-top: auto;
  display: grid;
  grid-template-columns: 12% 88%;
  grid-template-rows: 25% auto 90px;
}

.foo_area1  {
  grid-column: 1/2;
  grid-row: 1/2;
}

.foo_area2  {
  grid-column: 1/2;
  grid-row: 2/4;
  background-color: #8996a2;
  position: relative;
}

.footer_logo  {
  position: absolute;
  top: 120px;
  margin-left: 10px
}

.footer_logo img  {
  height: 65px;
  transform: rotate(270deg);
}

.foo_area3  {
  grid-column: 2/3;
  grid-row: 1/3;
  background-color: #284156;
  color: #ffffff;
  display: inline-grid;
  grid-template-columns: 10% 50% 25% 15%;
  grid-template-rows: 10% auto 10% auto 10%;
  padding-bottom: 110px;
}

.footer_text  {
  grid-column: 2/3;
  grid-row: 2/3;
  margin: 30px 0px;
  font-size: 1.85rem;
  font-weight: 300;
  line-height: 1.3;
}

.footer_items {
  grid-column: 2/4;
  grid-row: 4/5;
  display: flex;
  justify-content: space-between;
}

.footer_items li  {
  list-style: none;
  position: relative;
  margin-top: 30px;
  padding-bottom: 30px;
}

.footer_items li::before  {
  content: "";
  position: absolute;
  top: -40px;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}

.footer_items a {
  text-decoration: none;
  color: #ffffff;
  position: relative;
}

.footer_items a::after  {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 250ms ease-in;
}

.footer_items a:hover::after  {
    transform: scaleX(1);
}

.contact_items  {
  font-size: 1.3rem;
  font-weight: 200;
  display: inline-block;
  margin-bottom: 4px;
}

.contact_content  {
  font-size: 1.4rem;
  line-height: 1.35;
}

.foo_area4  {
  grid-column: 2/3;
  grid-row: 3/4;
  background-color: #8996a2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal  {
  display: inline-block;
}

.footer_links {
  display: inline-flex;
  margin-right: 50px;
}

.footer_links li  {
  list-style: none;
  margin: 0px 30px;
  position: relative;
}

.footer_links li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #284156;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 250ms ease-in;
}

.footer_links li:hover::after {
  transform: scaleX(1);
}

.footer_links a {
  text-decoration: none;
  color: #284156;
}

@media screen and (max-width: 1200px) {
  .footer_logo  {
    margin-left: -7px
  }
  .foo_area3  {
    grid-template-columns: 10% 60% 15% 15%;
  }
}

@media screen and (max-width: 1050px) {
  .footer_logo  {
    margin-left: -2px
  }
  .footer_logo img  {
    height: 55px;
  }
  .foo_area3  {
    grid-template-columns: 10% 65% 15% 10%;
  }
}

@media screen and (max-width: 930px) {
  .footer_logo  {
    margin-left: -6px
  }
  .foo_area3  {
    grid-template-columns: 9% 82% 0% 9%;
  }
}

@media screen and (max-width: 900px) {
  .foo_area2  {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .footer_logo  {
    margin-left: -9px
  }
  .foo_area4  {
    grid-column: 1/3;
    grid-row: 3/4;
  }
  .legal  {
    margin-left: 50px;
  }
}

@media screen and (max-width: 850px) {
  footer  {
    grid-template-rows: 25% auto 105px;
  }
  .foo_area1  {
    display: none;
  }
  .foo_area2  {
    display: none;
  }
  .foo_area3  {
    grid-column: 1/3;
  }
  .footer_text  {
    font-size: 1.75rem;
  }
  .contact_items  {
    font-size: 1.2rem;
  }
  .contact_content  {
    font-size: 1.3rem;
  }
  .foo_area4  {
    flex-direction: column-reverse;
    justify-content: space-around;
  }
  .legal  {
    margin-left: 0px;
    font-size: 0.95rem;
  }
  .footer_links {
    margin: 0.8em 0em 0em 0em;
  }
}

@media screen and (max-width: 750px) {
  .foo_area3  {
    grid-template-columns: 7% 86% 0% 7%;
  }
}

@media screen and (max-width: 635px) {
  .foo_area3  {
    padding-bottom: 130px;
  }
  .footer_text  {
    margin: 10px 0px;
  }
  .footer_items {
    display: inline-block;
  }
  .footer_items li::before  {
    top: -30px;
    width: 100%;
  }
}

@media screen and (max-width: 585px) {
  .footer_links {
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .footer_links li  {
    margin: 0px 15px;
  }
}

@media screen and (max-width: 480px) {
  footer  {
    grid-template-rows: 25% auto 160px;
  }
  .footer_text  {
    font-size: 1.65rem;
    margin: 0px;
  }
  .contact_items  {
    font-size: 1.1rem;
  }
  .contact_content  {
    font-size: 1.2rem;
  }
  .footer_links {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin: 0px;
  }
  .footer_links li  {
    margin: 10px 0px 0px 0px;
  }
}

@media screen and (max-width: 400px) {
  .footer_text  {
    font-size: 1.6rem;
  }
}
.center {
}
