@import url("../font/Kanit/stylesheet.css");
html, body {
  height: 100%;
  font-family: 'Kanit', sans-serif;
}

.bg-verygood {
  background-color: #00bff3;
}

.bg-good {
  background-color: #00a651;
}

.bg-moderate {
  background-color: #fff200;
}

.bg-unhealthy {
  background-color: #f26522;
}

.bg-veryunhealthy {
  background-color: red;
}

.btn.focus, .btn:focus {
  box-shadow: none;
}

#btn_contact {
  width: 45px;
  height: 45px;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 1.5rem;
  left: 3.5rem;
  cursor: pointer;
  z-index: 100;
  transform: rotate(0deg) scale(0.6);
  transition: .75s ease-in-out;
}

#btn_contact span {
  display: block;
  position: absolute;
  height: 12px;
  width: 12px;
  background: #0c364c;
  opacity: 1;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
}

#btn_contact span:nth-child(even) {
  left: 50%;
  border-radius: 50%;
}

#btn_contact span:nth-child(odd) {
  left: 0px;
  border-radius: 50%;
}

#btn_contact span:nth-child(1), #btn_contact span:nth-child(2), #btn_contact span:nth-child(3) {
  top: 0px;
}

#btn_contact span:nth-child(4), #btn_contact span:nth-child(5), #btn_contact span:nth-child(6) {
  top: 20px;
}

#btn_contact span:nth-child(7), #btn_contact span:nth-child(8), #btn_contact span:nth-child(9) {
  top: 40px;
}

#btn_contact span:nth-child(3), #btn_contact span:nth-child(6), #btn_contact span:nth-child(9) {
  left: 100%;
}

#btn_contact.open span {
  background: #ffffff;
}

#btn_contact.open span:nth-child(2) {
  top: 20px;
}

#btn_contact.open span:nth-child(5), #btn_contact.open span:nth-child(6) {
  left: 50%;
}

#btn_contact.open span:nth-child(8) {
  top: 20px;
}

#btn_contact.in_slide_btn {
  animation: in_slide_btn .5s both;
}

@keyframes in_slide_btn {
  0% {
    top: 1.5rem;
  }
  100% {
    top: 0.5rem;
  }
}

#btn_contact.out_slide_btn {
  animation: out_slide_btn .5s both;
}

@keyframes out_slide_btn {
  0% {
    top: 0.5rem;
  }
  100% {
    top: 1.5rem;
  }
}

.sk-chase {
  width: 40px;
  height: 40px;
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase:before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: transparent;
  border-radius: 100%;
  animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: #0c364c;
  border-radius: 100%;
  animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(1):before {
  animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(2):before {
  animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(3):before {
  animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(4):before {
  animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(5):before {
  animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(6):before {
  animation-delay: -0.6s;
}

@keyframes sk-chase {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot {
  80%, 100% {
    transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }
  100%, 0% {
    transform: scale(1);
  }
}

section#menu_slide {
  position: fixed;
  display: flex;
  align-items: center;
  width: 100%;
  height: 8vh;
  font-size: 14px;
  z-index: 2;
  background: #ffffff;
  transform: translateY(-11vh);
}

section#menu_slide.in_slide {
  animation: in_slide .5s both;
}

@keyframes in_slide {
  0% {
    transform: translateY(-11vh);
    box-shadow: 0px 0px 0px 0px #bdbdbd;
  }
  100% {
    transform: translateY(0);
    box-shadow: 0px 20px 20px -12px #bdbdbd;
  }
}

section#menu_slide.out_slide {
  animation: out_slide .5s both;
}

@keyframes out_slide {
  0% {
    transform: translateY(0);
    box-shadow: 0px 20px 20px -12px #bdbdbd;
  }
  100% {
    transform: translateY(-11vh);
    box-shadow: 0px 0px 0px 0px #bdbdbd;
  }
}

section#menu_slide .main_menu {
  margin: 0 auto;
}

section#menu_slide .main_menu .nav .nav-item .nav-link {
  font-weight: 600;
  color: #0c364c;
}

section#menu_slide .main_menu .nav .nav-item .nav-link:hover {
  color: #8b7454;
}

section#menu_slide .main_menu .nav .nav-item .line_active {
  width: 50%;
  border: 0.5px solid #0c364c;
  margin: 0 auto;
}

section#main {
  position: relative;
  z-index: 1;
  background: #ffffff;
  overflow-y: hidden;
}

section#main .header, section#main .main_content {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

section#main .header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 11vh;
}

section#main .header .logo img {
  width: 175px;
}

section#main .header .logo img.local {
  width: 75px;
  border-radius: 50%;
}

section#main .header .line {
  height: 0vh;
  width: 70%;
  border: 0.75px solid #0c364c;
  margin: 0 auto;
}

section#main .header .menu {
  display: flex;
  align-items: center;
  height: auto;
  margin: 1rem;
}

section#main .header .menu .main_menu {
  width: 100%;
  margin: 0 auto;
}

section#main .header .menu .main_menu .nav .nav-item .nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #0c364c;
}

section#main .header .menu .main_menu .nav .nav-item .nav-link:hover {
  color: #8b7454;
}

section#main .header .menu .main_menu .nav .nav-item .line_active {
  width: 50%;
  border: 1px solid #0c364c;
  margin: 0 auto;
}

section#main .main_content .content {
  width: 100%;
  position: relative;
  z-index: 1;
  background: #ffffff;
}

section#main .main_content .content .main_title {
  display: flex;
  align-items: center;
  height: 15vh;
  background: #0c364c;
}

section#main .main_content .content .main_title .title_on_video {
  display: flex;
  align-items: center;
  font-family: 'Kanit', sans-serif;
  color: #ffffff;
  left: 4rem;
}

section#main .main_content .content .main_detail {
  min-height: 64vh;
  margin-bottom: 3rem;
}

section#main .main_content .content .main_detail #pm25_nearby_map {
  width: 100%;
  height: 40vh;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.35);
}

section#main .main_content .content .main_detail #pm25_nearby_map .location_marker {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-family: 'kanit', sans-serif;
  font-weight: 600;
  margin: -2px;
}

section#main .main_content .content .main_detail #pm25_nearby_map path.leaflet-interactive {
  stroke: #8b7454;
  stroke-width: 2;
  fill: #8b7454;
  fill-opacity: 0.1;
}

section#main .main_content .content .main_detail #pm25_nearby_map path.leaflet-interactive:first-child, section#main .main_content .content .main_detail #pm25_nearby_map path.leaflet-interactive:nth-child(2) {
  stroke: #0c364c;
  stroke-width: 2;
  fill: #0c364c;
  fill-opacity: 0.2;
}

section#main .main_content .content .main_detail #pm25_nearby_map circle {
  fill: #0c364c !important;
}

section#main .main_content .content .main_detail #pm25_nearby_map .custom_marker {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  color: #fff;
  border-radius: 50%;
  font-family: 'kanit', sans-serif;
  font-weight: 600;
  margin: -2px;
}

section#main .main_content .content .main_detail #pm25_nearby_map .leaflet-control-locate a {
  font-size: .75rem;
}

section#main .main_content .content .main_detail .category {
  margin: 1rem 0;
}

section#main .main_content .content .main_detail .category button {
  vertical-align: middle;
  margin: .25rem .1rem;
  padding: .25rem .75rem .25rem .75rem;
  border-radius: 15px;
  font-size: .75rem;
  color: #fff;
  background-color: #0c364c82;
  border-color: #0c364c00;
}

section#main .main_content .content .main_detail .category button:hover {
  background-color: #0c364c;
  border-color: #0c364c;
}

section#main .main_content .content .main_detail .category button.active {
  background-color: #0c364c;
  border-color: #0c364c;
  font-weight: 500;
}

section#main .main_content .content .main_detail .cate_aqi {
  font-family: 'Kanit', sans-serif;
  font-size: .9rem;
  margin: 1rem 0;
}

section#main .main_content .content .main_detail .cate_aqi .btn-group {
  width: auto;
}

section#main .main_content .content .main_detail .cate_aqi .btn-group .btn {
  min-width: 5.8rem;
  color: #ffffff;
  background-color: #0c364c;
  border: none;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  border-radius: 50rem !important;
  padding: .25em .65rem .25em 1rem;
}

section#main .main_content .content .main_detail .cate_aqi .btn-group .dropdown-menu {
  min-width: 5.8rem;
  background-color: #0c364c;
  border: none;
  font-size: .75rem;
  color: #ffffff;
}

section#main .main_content .content .main_detail .cate_aqi .btn-group .dropdown-menu .dropdown-item {
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
}

section#main .main_content .content .main_detail .cate_aqi .btn-group .dropdown-menu .dropdown-item:hover {
  color: #76b7b4;
  background-color: #0c364c;
}

section#main .main_content .content .main_detail .cate_aqi .btn-group .dropdown-menu .dropdown-item.active {
  cursor: none;
  color: #76b7b4;
  background-color: #0c364c;
  pointer-events: none;
}

section#main .main_content .content .main_detail .table-responsive {
  overflow-x: hidden;
}

section#main .main_content .content .main_detail .dataTables_wrapper {
  font-size: 14px;
}

section#main .main_content .content .main_detail .dataTables_wrapper thead {
  background: #0c364c;
  color: #ffffff;
}

section#main .main_content .content .main_detail .dataTables_wrapper tbody {
  color: #0c364c;
}

section#main .main_content .content .main_detail .dataTables_wrapper tbody .dustboy_uri {
  color: #0c364c;
}

section#main .main_content .content .main_detail .dataTables_wrapper tbody .dustboy_uri:hover {
  text-decoration: none;
  color: #8b7454;
}

section#main .main_content .content .main_detail .dataTables_wrapper tbody .w-sm {
  color: #ffffff;
}

section#main .main_content .content .main_detail .dataTables_wrapper .dataTables_paginate .pagination .page-item:first-child .page-link {
  color: #0c364c;
}

section#main .main_content .content .main_detail .dataTables_wrapper .dataTables_paginate .pagination .page-item:first-child.disabled .page-link,
section#main .main_content .content .main_detail .dataTables_wrapper .dataTables_paginate .pagination .page-item:last-child.disabled .page-link {
  color: #cccccc;
}

section#main .main_content .content .main_detail .dataTables_wrapper .dataTables_paginate .pagination .page-item.active .page-link {
  background: #0c364c;
  color: #ffffff;
  border: none;
}

section#main .main_content .content .main_detail .dataTables_wrapper .dataTables_paginate .pagination .page-item.active .page-link:focus {
  box-shadow: none !important;
}

section#main .main_content .content .main_detail .dataTables_wrapper .dataTables_paginate .pagination .page-item .page-link {
  color: #0c364c;
}

section#main .main_content .content .main_detail .pm_aqi {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 14vh;
  font-size: 12px;
  padding: 1rem 0 1rem 0;
}

section#main .main_content .content .main_detail .pm_aqi .pm, section#main .main_content .content .main_detail .pm_aqi .aqi {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 100%;
  max-width: 100%;
  height: 5vh;
  border: 1px solid #fff;
}

section#main .main_content .content .main_detail .pm_aqi .pm .title_pm_aqi, section#main .main_content .content .main_detail .pm_aqi .pm .detail_pm_aqi, section#main .main_content .content .main_detail .pm_aqi .aqi .title_pm_aqi, section#main .main_content .content .main_detail .pm_aqi .aqi .detail_pm_aqi {
  display: flex;
  align-items: center;
}

section#main .main_content .content .main_detail .pm_aqi .pm .title_pm_aqi, section#main .main_content .content .main_detail .pm_aqi .aqi .title_pm_aqi {
  background: #0c364c;
  color: #ffffff;
  padding-left: 1rem;
}

section#main .main_content .content .main_detail .pm_aqi .pm .detail_pm_aqi, section#main .main_content .content .main_detail .pm_aqi .aqi .detail_pm_aqi {
  justify-content: center;
  font-weight: 600;
}

section#main .main_content .content .main_detail .pm_aqi .pm .detail_pm_aqi i, section#main .main_content .content .main_detail .pm_aqi .aqi .detail_pm_aqi i {
  border-radius: 50%;
  font-size: 2em;
}

section#main .main_content .content .main_detail .pm_aqi .pm .detail_pm_aqi img, section#main .main_content .content .main_detail .pm_aqi .aqi .detail_pm_aqi img {
  width: 2.5em;
  height: 2.5em;
}

section#contact {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  background: #8b7454;
}

section#contact .logo_contact, section#contact .menu_contact, section#contact .footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

section#contact .logo_contact {
  height: 95vh;
}

section#contact .logo_contact img {
  width: 500px;
}

section#contact .logo_contact img.local_contact {
  width: 250px;
  border-radius: 50%;
}

section#contact .menu_contact {
  height: 70vh;
}

section#contact .menu_contact .contact {
  align-self: center;
}

section#contact .menu_contact .contact .ul_contact {
  color: #ffffff;
}

section#contact .menu_contact .contact .ul_contact .li_contact {
  line-height: 2em;
}

section#contact .menu_contact .contact a {
  color: #ffffff;
}

section#contact .menu_contact .contact a:hover {
  color: #9dc02d;
  text-decoration: none;
}

section#contact .menu_contact .contact .contact_us {
  font-size: 1.5rem;
}

section#contact .menu_contact .contact .contact_us span {
  font-size: 1rem;
}

section#contact .menu_contact .contact .contact_us span a {
  transition: .5s ease-in-out;
}

section#contact .menu_contact .contact .contact_us span a:hover {
  color: #0c364c;
  text-decoration: none;
}

section#contact .menu_contact .contact .group_icon {
  display: flex;
  align-items: center;
}

section#contact .menu_contact .contact .group_icon a.icon {
  width: 50px;
  height: 50.72px;
  background: #ffffff;
  border-radius: 50%;
  padding: .75rem .75rem;
  text-align: center;
  transition: .5s ease-in-out;
}

section#contact .menu_contact .contact .group_icon a.icon svg g g {
  fill: #8b7454;
}

section#contact .menu_contact .contact .group_icon a.icon i {
  width: 26px;
  color: #8b7454;
  font-size: 26px;
}

section#contact .menu_contact .contact .group_icon a.icon:hover {
  background: #0c364c;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.35);
  transform: translateY(-0.25rem);
}

section#contact .menu_contact .contact .group_icon a.icon:hover svg g g {
  fill: #ffffff;
}

section#contact .menu_contact .contact .group_icon a.icon:hover i {
  width: 26px;
  color: #ffffff;
  font-size: 26px;
}

section#contact .menu_contact .menu_min {
  align-self: flex-start;
}

section#contact .menu_contact .menu_min .nav .nav-item .nav-link {
  font-weight: 600;
  color: #ffffff;
}

section#contact .menu_contact .menu_min .nav .nav-item .nav-link:hover {
  color: #0c364c;
}

section#contact .menu_contact .menu_min .nav .nav-item .line_active {
  width: 50%;
  border: .5px solid #ffffff;
  margin: 0 auto;
}

footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 999;
  background: #8b7454;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  padding: .5rem 4rem;
}

@media (max-width: 575.98px) {
  #btn_contact {
    position: absolute;
    top: 1.5rem;
    left: 1rem;
  }
  section#main {
    height: auto;
    padding: 0;
    overflow-x: hidden;
  }
  section#main .logo {
    height: 15vh !important;
  }
  section#main .logo img {
    width: 250px;
  }
  section#main .menu {
    height: auto;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  section#main .menu .main_menu {
    flex: 0 0 100%;
    max-width: 100%;
  }
  section#main .menu .main_menu .nav-item {
    width: 100%;
    text-align: center;
  }
  section#main .menu .main_menu .nav-item .line_active {
    width: 30% !important;
  }
  section#main .content {
    height: auto;
    padding: 0 !important;
  }
  section#main .content .main_title {
    height: 11vh !important;
  }
  section#main .content .main_title .title_on_video {
    left: 2rem !important;
  }
  section#main .content .main_detail #pm25_nearby_map {
    height: 50vh !important;
  }
  section#main .content .main_detail th {
    font-size: 10px;
  }
  section#main .content .main_detail td {
    font-size: 12px;
  }
  section#main .content .main_detail td span.pl-3 {
    padding-left: 0 !important;
  }
  section#main .content .main_detail td .w-sm {
    width: 100% !important;
  }
  section#main .content .main_detail .pm_aqi {
    font-size: 10px !important;
  }
  section#main .content .main_detail .pm_aqi .title_pm_aqi, section#main .content .main_detail .pm_aqi .detail_pm_aqi {
    padding: 0;
    padding-left: 0 !important;
    justify-content: center;
  }
  section#main .content .main_detail .pm_aqi .title_pm_aqi {
    height: 100%;
    font-size: .5em;
  }
  section#main .content .main_detail .pm_aqi .detail_pm_aqi {
    height: 100%;
    font-size: 10px;
  }
  section#contact {
    position: absolute;
    height: 100%;
  }
  section#contact .logo_contact {
    height: auto;
    margin-top: .25rem;
  }
  section#contact .logo_contact img {
    width: 150px;
  }
  section#contact .logo_contact img.local_contact {
    width: 20%;
  }
  section#contact .menu_contact {
    height: auto;
    margin-bottom: 2rem;
    font-size: .8rem;
    flex-wrap: wrap;
  }
  section#contact .menu_contact .menu_min {
    margin-top: 1rem;
  }
  section#contact .menu_contact .menu_min .nav {
    width: 100%;
    text-align: left !important;
  }
  section#contact .menu_contact .menu_min .nav .nav-item {
    text-align: center;
  }
  section#contact .menu_contact .menu_min .nav .nav-item .nav-link {
    font-weight: 600;
    color: #ffffff;
  }
  section#contact .menu_contact .menu_min .nav .nav-item .nav-link:hover {
    color: #0c364c;
  }
  section#contact .menu_contact .menu_min .nav .nav-item .nav-link.active {
    color: #0c364c;
  }
  section#contact .menu_contact .line {
    width: 100%;
    border: .5px solid #ffffff;
  }
  section#contact .menu_contact .contact {
    text-align: center;
  }
  section#contact .menu_contact .contact .contact_us {
    font-size: 24px;
  }
  section#contact .menu_contact .contact .group_icon {
    justify-content: center;
  }
  section#contact .menu_contact .contact img {
    width: 150px;
  }
  section#contact .menu_contact .contact img.local_contact {
    width: 53px;
    height: 53.72px;
    border-radius: 50%;
  }
  section#contact .footer {
    bottom: 0;
    height: auto;
  }
  footer {
    padding: .5rem;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  #btn_contact {
    position: absolute;
  }
  section#main .header {
    height: auto;
  }
  section#main .header .logo {
    height: 25vh;
  }
  section#main .main_content .content .main_title {
    height: 20vh;
  }
  section#main .main_content .content .main_detail {
    min-height: auto;
  }
  section#main .main_content .content .main_detail #pm25_nearby_map {
    height: 50vh;
  }
  section#main .main_content .content .main_detail .w-sm {
    width: 70% !important;
  }
  section#main .main_content .content .main_detail .pm_aqi {
    font-size: 11px !important;
  }
  section#main .main_content .content .main_detail .pm_aqi .title_pm_aqi, section#main .main_content .content .main_detail .pm_aqi .detail_pm_aqi {
    padding: 0;
    padding-left: 0 !important;
    justify-content: center;
  }
  section#contact {
    position: absolute;
    height: 130vh;
  }
  section#contact .logo_contact {
    height: auto;
  }
  section#contact .logo_contact img {
    width: 150px;
  }
  section#contact .logo_contact img.local_contact {
    width: 20%;
  }
  section#contact .menu_contact {
    height: auto;
    margin-bottom: 2rem;
    font-size: .8rem;
    flex-wrap: wrap;
  }
  section#contact .menu_contact .menu_min {
    margin-top: 1rem;
  }
  section#contact .menu_contact .menu_min .nav {
    width: 100%;
    text-align: left !important;
  }
  section#contact .menu_contact .menu_min .nav .nav-item {
    text-align: center;
  }
  section#contact .menu_contact .menu_min .nav .nav-item .nav-link {
    font-weight: 600;
    color: #ffffff;
  }
  section#contact .menu_contact .menu_min .nav .nav-item .nav-link:hover {
    color: #e11f13;
  }
  section#contact .menu_contact .menu_min .nav .nav-item .nav-link.active {
    color: #e11f13;
  }
  section#contact .menu_contact .line {
    width: 100%;
    border: .5px solid #ffffff;
  }
  section#contact .menu_contact .contact {
    text-align: center;
    margin-top: 1rem;
  }
  section#contact .menu_contact .contact .contact_us {
    font-size: 24px;
  }
  section#contact .menu_contact .contact .group_icon {
    justify-content: center;
  }
  section#contact .footer {
    bottom: 0;
    height: auto;
  }
  footer {
    padding: .5rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #btn_contact {
    position: absolute;
    top: .8rem;
  }
  section#main .header {
    height: auto;
  }
  section#main .main_content .content .main_title {
    height: 10vh;
  }
  section#main .main_content .content .main_detail {
    min-height: auto;
  }
  section#main .main_content .content .main_detail #pm25_nearby_map {
    height: 40vh;
  }
  section#main .main_content .content .main_detail .w-sm {
    width: 50% !important;
  }
  section#main .main_content .content .main_detail .pm_aqi {
    font-size: 11px !important;
  }
  section#main .main_content .content .main_detail .pm_aqi .title_pm_aqi, section#main .main_content .content .main_detail .pm_aqi .detail_pm_aqi {
    padding: 0;
    padding-left: 0 !important;
    justify-content: center;
  }
  section#contact .logo_contact {
    height: auto;
    padding: 2rem 0 1rem 0;
  }
  section#contact .logo_contact img {
    width: 300px;
  }
  section#contact .menu_contact {
    height: auto;
    margin-bottom: 2rem;
  }
  section#contact .menu_contact .menu_min {
    margin-top: 0rem;
  }
  section#contact .menu_contact .menu_min .nav {
    width: 23%;
    text-align: left !important;
    margin: 0 auto;
  }
  section#contact .menu_contact .menu_min .nav .nav-item .nav-link {
    font-weight: 600;
    color: #ffffff;
  }
  section#contact .menu_contact .menu_min .nav .nav-item .nav-link:hover {
    color: #0c364c;
  }
  section#contact .menu_contact .menu_min .nav .nav-item .nav-link.active {
    color: #0c364c;
  }
  section#contact .menu_contact .line {
    width: 100%;
    border: .5px solid #ffffff;
    margin-left: 4rem;
  }
  section#contact .menu_contact .ul_contact {
    margin-top: 1rem;
  }
  section#contact .menu_contact .ul_contact .li_contact {
    line-height: 2em;
  }
  section#contact .menu_contact p {
    margin-top: 1rem;
    margin-left: 2rem;
  }
  section#contact .footer {
    height: auto;
  }
}

@media (min-width: 1920px) {
  #btn_contact.in_slide_btn {
    animation: in_slide_btn .5s both;
  }
  @keyframes in_slide_btn {
    0% {
      top: 1.5rem;
    }
    100% {
      top: 0.75rem;
    }
  }
  #btn_contact.out_slide_btn {
    animation: out_slide_btn .5s both;
  }
  @keyframes out_slide_btn {
    0% {
      top: 0.75rem;
    }
    100% {
      top: 1.5rem;
    }
  }
}

.anime_delay025 {
  animation-delay: .25s !important;
}

.anime_delay05 {
  animation-delay: .5s !important;
}

.anime_delay075 {
  animation-delay: .75s !important;
}

.anime_delay1 {
  animation-delay: 1s !important;
}

.anime_delay125 {
  animation-delay: 1.25s !important;
}

.anime_delay15 {
  animation-delay: 1.5s !important;
}

.anime_delay175 {
  animation-delay: 1.75s !important;
}

.anime_delay2 {
  animation-delay: 2s !important;
}

.anime_delay3 {
  animation-delay: 3s !important;
}

.anime_delay4 {
  animation-delay: 4s !important;
}

.anime_delay5 {
  animation-delay: 5s !important;
}

.fade_in {
  animation: fade_in 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade_out {
  animation: fade_out 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade_in_ture {
  animation: fade_in_ture 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade_out_ture {
  animation: fade_out_ture 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.slide_in_left {
  animation: slide_in_left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slide_in_right {
  animation: slide_in_right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slit_in_vertical {
  animation: slit_in_vertical_marker 0.5s ease-out both;
}

.slit_in_vertical_table {
  animation: slit_in_vertical_table 2s ease-out both;
}

.slit_out_vertical {
  animation: slit_out_vertical 0.5s ease-out both;
}

.shadow-drop-bottom {
  animation: shadow-drop-bottom 0.6s both;
}

.swing-in-top-fwd {
  animation: swing-in-top-fwd 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes fade_in {
  0% {
    opacity: 0;
    z-index: 0;
  }
  100% {
    opacity: 1;
    z-index: 1;
  }
}

@keyframes fade_out {
  0% {
    opacity: 1;
    z-index: 1;
  }
  100% {
    opacity: 0;
    z-index: 0;
  }
}

@keyframes fade_in_ture {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade_out_ture {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes slide_in_left {
  0% {
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide_in_right {
  0% {
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slit_in_vertical_marker {
  0% {
    box-shadow: 0px 0px 0px 0px #afafaf;
    transform: translateZ(-800px) rotateY(90deg);
    opacity: 0;
    z-index: 0;
  }
  54% {
    box-shadow: 0px 0px 0px 0px #afafaf;
    transform: translateZ(-160px) rotateY(87deg);
    opacity: 1;
    z-index: 1;
  }
  100% {
    box-shadow: 0px 0px 5px 0px #858585;
    transform: translateZ(0) rotateY(0);
  }
}

@keyframes slit_in_vertical_table {
  0% {
    box-shadow: 0px 0px 0px 0px #00000030;
    transform: translateZ(-800px) rotateY(90deg);
    opacity: 0;
  }
  44% {
    box-shadow: 0px 0px 0px 0px #00000030;
    transform: translateZ(-160px) rotateY(87deg);
    opacity: 1;
  }
  65% {
    box-shadow: 0px 0px 0px 0px #00000030;
    transform: translateZ(0) rotateY(0);
  }
  100% {
    box-shadow: 0px 4px 8px 0px #00000030;
    transform: translateY(-1px);
  }
}

@keyframes slit_out_vertical {
  0% {
    transform: translateZ(0) rotateY(0);
    opacity: 1;
    z-index: 1;
  }
  54% {
    transform: translateZ(-160px) rotateY(87deg);
    opacity: 1;
    z-index: 1;
  }
  100% {
    transform: translateZ(-800px) rotateY(90deg);
    opacity: 0;
    z-index: 0;
  }
}

@keyframes shadow-drop-bottom {
  0% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
  }
}

@keyframes swing-in-top-fwd {
  0% {
    transform: rotateX(-100deg);
    transform-origin: top;
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    transform-origin: top;
    opacity: 1;
  }
}
/*# sourceMappingURL=style2.min.css.map */