/**
* Template Name: Multi - v4.7.0
* Template URL: https://bootstrapmade.com/multi-responsive-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

html {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  color: #fff;
  max-width: 100%;
  overflow-x: hidden;
  width: calc(100% - 100px);
}

@media (max-width: 1000px) {
  body {
    width:100%;
  }
}
a {
  color: #ed502e;
  text-decoration: none;
}

a:hover {
  color: #f1775d;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  letter-spacing: 1em;
}

#fontstyle {
    font-family:'Poppins';font-size:1.5em;font-weight:700;
    letter-spacing: 0px;
}
#fontstyle_title {
    font-family:'Poppins';font-size:1.5em;font-weight:500;
    letter-spacing: 0px;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0px;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ed502e;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 12px;
  bottom: 90px;
  z-index: 996;
  background: #ed502e;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #f06f54;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  width:100%;
  display:flex;
  flex-direction:column;
  background: #fff;
  transition: all 0.5s;
  padding: 0;
  border-bottom:1px solid #ddd;
}
#header .logo{
  text-align: center;
  margin:0 auto;
  justify-content: center;
  padding:30px 0;
}
#header .logo img{
  max-height:90px;
}

@media (max-width: 1000px) {
  #header {
    position:fixed;
    top:0px;
    background:#fff;
    z-index:9999999999!important;
    box-shadow: 0px 7px 7px -2px rgba(0,0,0,0.1);
  }
  #header .logo{
    display:fixed;
    padding:15px 0 15px 20px;
    text-align:left;
  }
  #header .logo img{
    max-height:50px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  width:100%;
  background:#fff;
  box-shadow: 0px 7px 7px -2px rgba(0,0,0,0.1);
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  text-align:center;
  margin:0 auto;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
  padding: 15px 5px;;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: #000;
  white-space: nowrap;
  transition: 0.1s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #ed502e;
}
.navbar .getstarted, .navbar .getstarted:focus {
  background: #ed502e;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #ef6445;
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    position: fixed;
    top:25px;
    right:10px;
    color: #000;
    font-size: 36px;
    cursor: pointer;
    margin-right:15px;
    display: none;
    line-height: 0;
    transition: 0.3s;
  }
  .mobile-nav-toggle.bi-x {
    position: fixed;
    top:25px;
    right:10px;
    color: #ef6445;
  }
  @media (max-width: 1000px) {
    .navbar {
      display:fixed;
      background:#fff;
      box-shadow: 0px 7px 7px -2px rgba(0,0,0,0);
    }
    .mobile-nav-toggle {
      display: block;

    }
    .navbar ul {
      display: none;
    }
  }
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.9);
    transition: 0.3s;
  }
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    font-size: 36px;
    top:25px;
    right:10px;
  }
  .navbar-mobile ul {
  display: block;
  position: absolute;
  top: 70px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile li{
  border-bottom: 1px dashed #dfdfdf;
  margin:0 20px;
  box-align: center;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2a2a2a;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #ef6445;
}
.navbar-mobile > ul > li {
  white-space: nowrap;
  padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #ef6445;
  padding-left: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #ef6445;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}



/*--------------------------------------------------------------
# popup CSS
--------------------------------------------------------------*/
@media (max-width: 1000px) {
  #popup1 {
    width: 100%;
    top: 80px!important;
    z-index: 9999!important;
  }
  #popup2 {
    width:100%;
    top: 80px!important;
    left: 0px!important;
  }
}
/*--------------------------------------------------------------
# right quick CSS
--------------------------------------------------------------*/
.quick_tel {
  position:fixed;
  top:150px;
  background:#c2a87e;
  width:100px;
  height:130px;
  text-align:center;
  margin:0 auto;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.2em;
}
.quick_tel .icon {
  display:flex;
  align-items:center;
  justify-content:center;
  height:60px;
}

.quick_wechat {
  position:relative;
  opacity: 70%;
  top:280px;
  width:100px;
  height:100px;
  padding-top:30px;
  background:#202021;
  text-align:center;
  margin:0 auto;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.2em;
}
.quick_wechat .txt {
  padding:5px 0 0 0;
}
.quick_wechat:hover {
  cursor: pointer;
  opacity: 100%;
}
.quick_wechat:hover .hover_div {
    transform: scale(1);
}
.quick_wechat .hover_div {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: -85px;
  top: -52px;
  transform: scale(0);
}

.quick_weibo {
  position:fixed;
  opacity: 70%;
  top:410px;
  width:100px;
  height:130px;
  text-align:center;
  margin:0 auto;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.2em;
}
.quick_weibo:hover {
  cursor: pointer;
  opacity: 100%;
}
.quick_weibo .icon {
  display:flex;
  align-items:center;
  justify-content:center;
}
.quick_weibo .txt {
  padding:5px 0 0 0;
}

.quick_xiao {
  position:fixed;
  opacity: 70%;
  top:515px;
  width:100px;
  height:130px;
  text-align:center;
  margin:0 auto;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.2em;
}
.quick_xiao:hover {
  cursor: pointer;
  opacity: 100%;
}
.quick_xiao .icon {
  display:flex;
  align-items:center;
  justify-content:center;
}
.quick_xiao .txt {
  padding:7px 0 0 0;
}

.quick_hos {
  position:fixed;
  opacity: 70%;
  top:600px;
  width:100px;
  height:130px;
  text-align:center;
  margin:0 auto;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.2em;
}
.quick_hos:hover {
  cursor: pointer;
  opacity: 100%;
}
.quick_hos .icon {
  display:flex;
  align-items:center;
  justify-content:center;
}
.quick_hos .txt {
  padding:7px 0 0 0;
}

.quick_map {
  position:fixed;
  opacity: 70%;
  top:700px;
  width:100px;
  height:130px;
  text-align:center;
  margin:0 auto;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.2em;
}
.quick_map:hover {
  cursor: pointer;
  opacity: 100%;
}
.quick_map .icon {
  display:flex;
  align-items:center;
  justify-content:center;
}
.quick_map .txt {
  padding:7px 0 0 0;
}

.quick_mall {
  position:fixed;
  opacity: 70%;
  top:800px;
  width:100px;
  height:130px;
  text-align:center;
  margin:0 auto;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1.2em;
}
.quick_mall:hover {
  cursor: pointer;
  opacity: 100%;
}
.quick_mall .icon {
  display:flex;
  align-items:center;
  justify-content:center;
}
.quick_mall .txt {
  padding:7px 0 0 0;
}

/*--------------------------------------------------------------
# 글로벌 CSS
--------------------------------------------------------------*/
.dropdowngb {
  font-family: "Noto Sans KR", sans-serif;
  position:fixed;
  float:right;
  right:0px;
  top:0px;
  background:#202021;
  z-index:9999999999999999999999999999999999999;
}
.dropdowngb button{
  border:none;
  width:100px;
  padding: 10px 0 10px 10px;
  font-size:10px;
  color:#fff!important;
  background:#202021;
  text-align:left;
  cursor:pointer;
}
.dropdowngb button:hover{

}
.dropdowngb-options {
  display: none;
  position: absolute;
  overflow: auto;
  background-color:#fff;
  font-size:10px;

  border:1px solid #eeeeee;
  box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.1);
}
.dropdowngb:hover .dropdowngb-options {
  display: block;
}
.dropdowngb-options a {
  display: block;
  width: 108px;
  color: #000;
  padding: 0px;
  text-decoration: none;
  padding: 10px 0 10px 10px;
}
.dropdowngb-options a:hover {
  color: #000000;
  background-color: #ddd;
}

@media (max-width: 1000px) {
.dropdowngb {
  right:70px;
  top:20px;
  z-index:9999;
  }
}
/* 글로벌 css 끝 */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background-color: rgba(4, 12, 21, 0);
  overflow: hidden;
  position: relative;
}
#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hero .carousel-item::before {
  content: "";
  background-color: rgba(4, 12, 21, 0);
}
#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0px;
  left: 0px;
  right: 0px;
}
#hero h2 {
  color: #fff;
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}
#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
}
@media (min-width: 1200px) {
  #hero p {
    width: 50%;
  }
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 37px;
  height: 4px;
  /*border-radius: 0px;*/
  opacity: 0.6;
  transition: 0.3s;
  margin:3px;
}
#hero .carousel-indicators li.active {
  opacity: 1;
  margin:3px;
  background: #ed502e;
}
#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #ed502e;
  margin-top: 15px;
}
#hero .btn-get-started:hover {
  background: #ef6445;
}
@media (max-width: 1000px) {
  #hero {
    height: 90vh;
  }
  #hero .carousel-container {
    text-align: center;
    top: 15px;
  }
  #hero .carousel-indicators {
    bottom: 20px;
  }
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0px 0px;
  margin: 0px;
}

.section-bg {
  background-color: #fff;
}

.section-title {
  padding: 20px 0;
  text-align: center;
}
.section-title h2 {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #202021;
  padding:25px 0;
  font-family: "Poppins", sans-serif;
}
@media(max-width:1000px){
  .section-title { padding: 20px 0 20px 0; }
  .section-title h2 { padding:10px 0; font-size: 25px; font-weight: 400;}
}

/*
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f38b74;
  margin: 4px 10px;
}
*/
.section-title p {
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0f2f57;
}

/* 화면 크기별 이미지 표시 변경 */
@media(min-width:769px){
    #pcview{display:block;}
    #moview{display:none;}
}
@media(max-width:768px){
    #pcview{display:none;}
    #moview{display:block;}
}

/*--------------------------------------------------------------
# map
--------------------------------------------------------------*/
.map { padding:0px; margin:0px; }
.map iframe { border:1px solid #d2d2d2; }
.map .map_add { top:-5px; left: 0px; right: 0; background-color: rgba(0, 0, 0, 0.8); padding: 15px; text-align: center; font-size: 18px; color: #fff; z-index: 99; font-weight: 300; }
.map .map_add span { display: inline-block; padding: 0 10px; line-height: 1; }
.map .map_add span:first-child { border-left: 0; }
.img_map { position: relative; display: table; width: 100%; margin-bottom: 80px; }
.img_map .img, .intro__direction .img_map .direct__trans { display: table-cell; vertical-align: top; }
.img_map .direct__trans { width: 450px; }
.img_map .direct__trans .col-lg-12:first-child .wrap { border-top: 0; }
.img_map .direct__trans .wrap { border-left: 0; border-top: 1px solid #ddd; padding: 25px 0; }

@media(max-width:1000px){
  .map .map_add span { text-align: left; font-size: 15px;}
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-left: 28px;
  position: relative;
}
.about .content ul li + li {
  margin-top: 10px;
}
.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #ed502e;
  line-height: 1;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #ed502e;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ed502e;
}
.about .content .btn-learn-more:hover {
  background: #ed502e;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}
.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
}
.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #ed502e;
  float: left;
}
.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #0b2341;
  margin-left: 50px;
}
.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}
.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #164682;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}
.counts .count-box a:hover {
  color: #2169c4;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}
.why-us .content {
  padding: 60px 100px 0 100px;
}
.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #123a6d;
}
.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.why-us .content p {
  font-size: 15px;
  color: #848484;
}
.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}
.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}
.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}
.why-us .accordion-list li + li {
  margin-top: 15px;
}
.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}
.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  color: #0b2341;
  cursor: pointer;
}
.why-us .accordion-list span {
  color: #ed502e;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}
.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.why-us .accordion-list .icon-show {
  display: none;
}
.why-us .accordion-list a.collapsed {
  color: #0b2341;
}
.why-us .accordion-list a.collapsed:hover {
  color: #ed502e;
}
.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}
.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}
.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ed502e 50%, rgba(237, 80, 46, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(237, 80, 46, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.why-us .play-btn:hover::after {
  border-left: 15px solid #ed502e;
  transform: scale(20);
}
.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
@media (max-width: 1024px) {
  .why-us .content, .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .why-us .content {
    padding-top: 30px;
  }
  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services p {
  font-family: "Poppins", sans-serif;
  color: #0f2f57;
  font-size: 40px;
  font-weight: 700;
}
.services h2 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding:5px 0 0 0;
}
@media (max-width: 1000px) {
    .services p{
      font-size: 28px;
      font-weight: 700;
    }
    .services h2{
      font-size: 16px;
      font-weight: 400;
      line-height: 1.4em;
    }
  }
.services {
  padding: 80px 0px;
}
.services .icon-box {
  text-align: center;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ed502e;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}
.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}
.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #f9c6bb;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: 1;
}
.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.services .icon-box h4 a {
  color: #0b2341;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  background: #ed502e;
  border-color: #ed502e;
}
.services .icon-box:hover .icon {
  background: #fff;
}
.services .icon-box:hover .icon i {
  color: #ed502e;
}
.services .icon-box:hover .icon::before {
  background: #f1775d;
}
.services .icon-box:hover h4 a, .services .icon-box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0 0 0;
}
.testimonials p {
  font-family: "Poppins", sans-serif;
  color: #0f2f57;
  font-size: 40px;
  font-weight: 700;
}
.testimonials h2 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding:5px 0 0 0;
}
@media (max-width: 1000px) {
  .testimonials p {
    font-size: 30px;
    font-weight: 800;
  }
  .testimonials h2 {
    font-size : 18px;
    font-weight: 400;
    line-height: 1.3em;
  }
}
.testimonials p {
  }
  .testimonials h2 { .testimonial-wrap {
  }
  padding: 0px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  margin: -10px;
  /*min-height: 200px;
  box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);*/
  position: relative;
  background: #fff;
}
.testimonials .testimonial-item .testimonial-img {
  width: 150px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: 0px;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #fdedea;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ed502e;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ed502e;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 80px 0 0 0;
  background: #fff;
}
.cta p {
  font-family: "Poppins", sans-serif;
  color: #0f2f57;
  font-size: 40px;
  font-weight: 700;
}
.cta h2 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding:5px 0 0 0;
}
@media (max-width: 1000px) {
    .cta p{
      font-size: 30px;
      font-weight:800;
    }
    .cta h2{
      font-size: 18px;
      font-weight: 400;
      line-height: 1.3em;
    }
  }
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta .cta-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #ed502e;
  color: #fff;
}
.cta .cta-btn:hover {
  background: #ed502e;
  border: 2px solid #ed502e;
}



/*--------------------------------------------------------------
# contents
--------------------------------------------------------------*/
#contents .container {
    display: block;
    text-align: center;
    position: relative;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 0px 18px;
    margin: 0px auto;
    overflow-x: hidden;
}
#contents .container .center {
  display:flex;
  justify-content: center;
  text-align: center;
  margin:0 auto;
}
#contents .container .spaceall1 {
  padding:10px;
}
#contents .container .spaceall2 {
  padding:20px;
}
#contents .container .spaceall3 {
  padding:30px;
}
#contents .container .spaceall4 {
  padding:40px;
}
#contents .container .spaceall5 {
  padding:50px;
}
#contents .container .spaceall6 {
  padding:60px;
}
#contents .container .spaceall7 {
  padding:70px;
}
#contents .container .spaceall8 {
  padding:80px;
}
#contents .container .spaceall9 {
  padding:90px;
}
#contents .container .spaceall10 {
  padding:100px;
}
#contents .container .spacetopbottom1 {
  padding:10px 0;
}
#contents .container .spacetopbottom2 {
  padding:20px 0;
}
#contents .container .spacetopbottom3 {
  padding:30px 0;
}
#contents .container .spacetopbottom4 {
  padding:40px 0;
}
#contents .container .spacetopbottom5 {
  padding:50px 0;
}
#contents .container .spacetopbottom6 {
  padding:60px 0;
}
#contents .container .spacetopbottom7 {
  padding:70px 0;
}
#contents .container .spacetopbottom8 {
  padding:80px 0;
}
#contents .container .spacetopbottom9 {
  padding:90px 0;
}
#contents .container .spacetopbottom10 {
  padding:100px 0;
}
#contents .container .title {
  /*font-family: "Poppins", sans-serif;*/
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  font-weight: 600;
  line-height: 1.4em;
  color:#202021;
  padding:50px 0 20px 0;
}
#contents .parking {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4em;
  color:#202021;
  padding:15px;
}
@media (max-width: 1000px) {
  #contents .container .title {
    /*font-family: "Poppins", sans-serif;*/
    font-family: "Poppins", sans-serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.4em;
    color:#202021;
  padding:20px 0 0 0;
  }
}
#contents .container .titles {
  /*font-family: "Poppins", sans-serif;*/
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.4em;
  color:#202021;
}
@media (max-width: 1000px) {
  #contents .container .titles {
    /*font-family: "Poppins", sans-serif;*/
    font-family: "Poppins", sans-serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.4em;
    color:#202021;
    padding:50px 0;
  }
}
#contents .container .content {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.4em;
  color:#202021;
}
@media (max-width: 1000px) {
  #contents .container .content {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.4em;
    color:#202021;
    text-align:left;
  }
}
#contents .bmw {
  padding: 0 40px 40px 40px;
}
#contents .bmw_bus {
  padding: 10px 0;
}
#contents .bmw_subway {
  padding: 10px 0;
}
#contents .bmw_car {
  padding: 10px 0;
}
#contents .bus_title {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4em;
  color:#202021;
  letter-spacing: -1px;
  text-align: left;
  padding: 0 0 30px 0;
}
#contents .bus_txt {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.4em;
  color:#202021;
  text-align: left;
}
#contents .bus_txt span {
  color:#fff;
  padding: 5px;
  margin: 0 20px 0 0;
}
#contents .subway_title {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4em;
  color:#202021;
  letter-spacing: -1px;
  text-align: left;
  padding: 0 0 30px 0;
}
#contents .subway_mtxt {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4em;
  color:#ed502e;
  text-align: left;
}
#contents .subway_txt {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.4em;
  color:#202021;
  text-align: left;
}
#contents .car_title {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4em;
  color:#202021;
  letter-spacing: -1px;
  text-align: left;
  padding: 0 0 30px 0;
}
#contents .car_mtxt {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4em;
  color:#202021;
  text-align: left;
}
#contents .car_txt {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.4em;
  color:#202021;
  text-align: left;
}
.time{
  width:100%;
  background:#3d4d5c;
  padding:60px 0;
}
.time .title{
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.4em;
  letter-spacing: -1px;
  text-align: left;
  padding: 5px 0 0 0;
  color:#c2a87e;
}
.time .mtxt {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6em;
  color:#fff;
  text-align: left;
}
.time .txt {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6em;
  color:#b1beca;
  text-align: left;
}

.lp {
  padding-left:10px;
}
@media(max-width:1000px){
  .time { padding:0px;}
  .time .left { padding: 30px 40px; }
  .time .right { padding: 0 40px; }
}



/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
    padding: 80px 0px 0px 0px;
}
.portfolio p {
  font-family: "Poppins", sans-serif;
  color: #0f2f57;
  font-size: 40px;
  font-weight: 700;
}
.portfolio h2 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding:5px 0 0 0;
}
@media (max-width: 1000px) {
    .portfolio p{
      font-size: 30px;
      font-weight:800;
    }
    .portfolio h2{
      font-size: 18px;
      font-weight: 400;
      line-height: 1.3em;
    }
  }
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #0b2341;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #ed502e;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  top:0;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 100%;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.7);
  padding: 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #0b2341;
}
.portfolio .portfolio-item .portfolio-info p {
  color: #1a5298;
  font-size: 14px;
  margin-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  left:40%;
  top:20%;
  font-size: 100px;
  color: #123a6d;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ed502e;
}
.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}
.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-item .portfolio-links a:hover {
  color: #f59f8c;
}
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding: 0;
  margin: 0;
  width:100%;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ed502e;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ed502e;
}
.portfolio-details .portfolio-info {
  padding: 0px;
  box-shadow: 0px 0 0px rgba(11, 35, 65, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding: 0px;
  margin: 0px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}
.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}
.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}
.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}
.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}
.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(11, 35, 65, 0.5);
  text-align: center;
}
.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}
.team .member .social a:hover {
  color: #ed502e;
}
.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(11, 35, 65, 0.9) 0%, rgba(11, 35, 65, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}
.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}
.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}
.pricing .box {
  padding: 80px 40px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  background: #fff;
  text-align: center;
}
.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}
.pricing h4 {
  font-size: 46px;
  color: #0b2341;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}
.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}
.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}
.pricing ul li {
  padding-bottom: 12px;
}
.pricing ul i {
  color: #ed502e;
  font-size: 18px;
  padding-right: 4px;
}
.pricing ul .na {
  color: #ccc;
}
.pricing ul .na i {
  color: #ccc;
}
.pricing ul .na span {
  text-decoration: line-through;
}
.pricing .get-started-btn {
  display: inline-block;
  padding: 10px 40px 11px 40px;
  border-radius: 4px;
  color: #0b2341;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #0b2341;
  background: #fff;
}
.pricing .get-started-btn:hover {
  background: #0b2341;
  color: #fff;
}
.pricing .featured {
  z-index: 10;
  padding: 100px 40px;
  border: 4px solid #ed502e;
}
.pricing .featured .get-started-btn {
  background: #ed502e;
  color: #fff;
  border-color: #ed502e;
}
.pricing .featured .get-started-btn:hover {
  background: #ef6445;
}
@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #e9f1fb;
}
.faq .faq-item i {
  color: #669ee5;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}
.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: "Poppins", sans-serif;
}
.faq .faq-item p {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #0b2341;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}
.contact .info-box i {
  font-size: 32px;
  color: #ed502e;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fbdad2;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #ed502e;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #ed502e;
  border: 0;
  padding: 10px 30px;
  border-radius: 4px;
  color: #fff;
  transition: 0.4s;
}
.contact .php-email-form button[type=submit]:hover {
  background: #ef6445;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 40px;
  background: #f6f9fd;
  min-height: 40px;
  margin-top: 0px;
}
@media (max-width: 1000px) {
  .breadcrumbs {
    margin-top: 65px;
  }
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b2341;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #123a6d;
  content: "/";
}

/*--------------------------------------------------------------
# Direct
--------------------------------------------------------------*/
.main__direct { display:flex; padding: 70px 0 0 0; height: 500px; }
.main__direct .wrap { width:60%; height:500px; }
.main__direct .wrap iframe { width: 100% !important; height: 500px !important; }
.main__direct .txt_wrap { width:40%; top:70px; height: 500px; width: 40%; right:0px; padding-top:10px; text-align:left; font-weight: 300; background-color: rgba(97, 97, 97, 1.0); }
.main__direct .txt_wrap .main_title { text-align: left; }
.main__direct .txt_wrap .main_title .tit { font-family:'Poppins'; letter-spacing: 1px; font-size: 40px; font-weight:500; color: #fff; }
.main__direct .txt_wrap .main_title .tit:before { margin: 0; }
.main__direct .txt_wrap .txt { color: #fff; display: inline-block; min-width: 500px; padding: 60px; }
.main__direct .txt_wrap .tel { color: #c2a87e; font-size: 20px; font-weight: 600; margin-bottom: 10px; color: #c2a87e; }
.main__direct .txt_wrap .phone_call { color: #c2a87e; font-weight:700; font-size: 20px; font-weight: 600; margin-bottom: 10px; color: #c2a87e; }
.main__direct .txt_wrap .btn { font-family:'Poppins'; font-weight: 700; margin-top: 20px; width:400px; text-align: left; }
.main__direct .txt_wrap .btn a { display: block; width: 100%; line-height: 52px; border: 1px solid #c2a87e; color: #c2a87e; text-align: center; font-size: 16px; }
.main__direct .txt_wrap .btn a:hover { background-color: #c2a87e; color: #fff; }
.main__direct .txt_wrap dl { padding-left: 120px; position: relative; margin-top: 20px; }
.main__direct .txt_wrap dl dt { position: absolute; left: 0; top: 0; font-weight: 500; font-size: 16px; }
.main__direct .txt_wrap dl dd { color: #b3b3b3; }


@media (max-width: 1000px) {
  .main__direct {
    flex-direction: column;
    padding: 30px 0 0 0;
    height: 400px;
  }
  .main__direct .wrap {
    width: 100%;
    height: 450px;
  }
  .main__direct .wrap iframe {
    width: 100% !important;
    height: 450px !important;
  }
  .main__direct .txt_wrap {
    width: 100%;
    height: 450px;
  }
  .main__direct .txt_wrap .txt {
    padding: 30px 0 28px 5%;
  }
  .main__direct .txt_wrap .tel {
    padding: 0 0 5px 25px;
  }
  .main__direct .txt_wrap .btn {
    margin-top: 20px;
    width:340px;
  }
  .main__direct .txt_wrap .dot_list {
    padding: 0 0 0 40px;
  }
  .main__direct .txt_wrap dl {
    padding-left: 50px;
    position: relative;
    margin-top: 20px;
  }
  .main__direct .txt_wrap dl dt {
    padding: 3px 0 0 0;
  }
  .main__direct .txt_wrap dl dd {
    padding: 0 0 0 -10px;
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #071527;
  padding: 30px 0 15px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  margin-top:60px;
  padding: 15px 0 15px 0;
}
#footer .footer-top .footer-info {
  /*background: #05101e;
  border-top: 4px solid #ed502e;*/
  text-align: center;

}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 0 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background: #0a1e38;
}
#footer .footer-top .social-links a:hover {
  color: #fff;
  background: #ed502e;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ef6445;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #ef6445;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #ed502e;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ef6445;
}
#footer .copyright {
  /*border-top: 1px solid #0f2f57;*/
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -30px 0 30px 0;
  }
}

.social_link {
    position:fixed;
    z-index:9999999999999999;
    bottom:0px;
    width:100%;
    display:block;
    list-style-type: none;
    float: left;
}
.social_link li {
    width:33.3%;
    display:block;
    list-style-type: none;
    float: left;
    text-align: center;
}
.social_link li img {
    width:270px;
}
.social_link li:hover {
    display:inline;
    cursor: pointer;

}
