/* ------------------ global ----------------- */
*,
* button:focus {
  outline: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
  font-size: .9em;
  overflow-x: hidden;
  position: relative;
  font-weight: 400;
  background-color: #fcfcfc;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
}

.no-mar {
  margin: 0 !important;
}

.no-pad {
  padding: 0 !important;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
  outline: 0;
}

.container-fluid {
  padding: 0 3vw;
  position: relative;
  z-index: 20;
}

.container {
  position: relative;
  z-index: 20;
}

a,
span,
img {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: inherit;
}

a:hover {
  color: #000;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

p {
  font-size: 14px;
  color: #252525;
  line-height: 1.733;
}

.text {
  font-size: 16px;
  color: #888;
  margin: 15px 0;
  line-height: 2;
}

.valign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-padding {
  padding: 80px 0;
}

.butn {
  padding: 12px 40px;
  text-align: center;
  position: relative;
  border-radius: 0;
  background: transparent;
  font-size: 12px;
  font-weight: bold;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.butn span {
  position: relative;
  z-index: 5;
}

.butn span i {
  position: relative;
  top: 3px;
  left: 5px;
}

.butn.color {
  background-color: #DB97AB;
  border: 1px solid #DB97AB;
}

.butn.color:hover {
  background-color: transparent;
}

.butn.color:hover span {
  color: #DB97AB;
}

.butn:hover span,
.butn.color span {
  color: #fff !important;
}

.butn.small {
  padding: 3px 35px 10px;
}

ul {
  margin-bottom: 0;
}

.section-head {
  position: relative;
  padding-top: 60px;
  display: inline-block;
}

.section-head::before {
  position: absolute;
  content: "";
  width: 15vw;
  height: 100px;
  right: 90%;
  top: 30px;
  background-image: url(../images/section-head.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.7;
  pointer-events: none;
}

.section-head h2 {
  font-weight: bold;
  font-size: 40px;
  color: #67737a;
  position: relative;
  z-index: 5;
}

.section-head span {
  font-weight: bold;
  font-size: 80px;
  text-align: left;
  color: #67737a;
  opacity: 0.06;
  position: absolute;
  top: 0;
  left: 50%;
  pointer-events: none;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.section-head.light h2 {
  color: #fff;
}

.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-control {
  min-height: 45px;
  font-size: 13px;
  border-radius: 5px;
  border: 1px solid transparent;
  background: #fff1;
  color: #fff;
  padding: 8px 40px;
}

.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #fff1;
  border: 1px solid #DB97AB;
  color: #fff;
}

.form-control::-webkit-input-placeholder {
  color: #d4d4d4;
}

.form-control:-ms-input-placeholder {
  color: #d4d4d4;
}

.form-control::-ms-input-placeholder {
  color: #d4d4d4;
}

.form-control::placeholder {
  color: #d4d4d4;
}

#side_menu {
  position: fixed;
  top: 0;
  left: 80px;
  z-index: 10;
  background-color: #fff;
  height: 100vh;
  width: 40%;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  pointer-events: none;
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#side_menu .pages_links {
  padding: 15px 7vw;
  max-height: 350px;
  overflow: auto;
}

#side_menu .pages_links::-webkit-scrollbar {
  height: 5px;
  width: 3px;
  background: #f1f1f1;
  border-radius: 10px;
}

#side_menu .pages_links::-webkit-scrollbar-thumb {
  background: #3A4B75;
  border-radius: 10px;
}

#side_menu .pages_links::-webkit-scrollbar-corner {
  background: #3A4B75;
  border-radius: 10px;
}

#side_menu .pages_links li {
  opacity: 0;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

#side_menu .pages_links li a {
  color: #222;
  font-size: calc(14px + 2vw);
  font-weight: bold;
  margin: 12px 0;
  position: relative;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#side_menu .pages_links li a::after {
  position: absolute;
  content: "";
  left: 110%;
  top: 60%;
  width: 0;
  height: 2px;
  background-color: #3A4B75;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#side_menu .pages_links li a:hover, #side_menu .pages_links li a.active {
  color: #3A4B75;
}

#side_menu .pages_links li a:hover::after, #side_menu .pages_links li a.active::after {
  width: 50px;
}

#side_menu .pages_links ul li {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

#side_menu .pages_links ul li:nth-of-type(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#side_menu .pages_links ul li:nth-of-type(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#side_menu .pages_links ul li:nth-of-type(3) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#side_menu .pages_links ul li:nth-of-type(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#side_menu .pages_links ul li:nth-of-type(5) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

#side_menu .pages_links ul li:nth-of-type(6) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

#side_menu .pages_links ul li:nth-of-type(7) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

#side_menu .pages_links ul li:nth-of-type(8) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

#side_menu.show {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  pointer-events: all;
  border-radius: 0;
}

#side_menu.show li {
  opacity: 1;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

/* -------------------- header style ------------------------- */
header .content {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .content .l_side {
  width: 80px;
  background-color: #3A4B75;
  padding: 30px 10px;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 20;
}

header .content .l_side .logo {
  width: 100%;
}

header .content .l_side .logo img {
  width: 70px;
  height: 110px;
}

header .content .l_side #toggle_btn {
  width: 100%;
  cursor: pointer;
}

header .content .l_side #toggle_btn span {
  background-color: #fff;
  width: 30px;
  height: 2px;
  border-radius: 4px;
  display: block;
  margin: 5px auto;
}

header .content .l_side #toggle_btn span:last-of-type {
  width: 20px;
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}

header .content .l_side #toggle_btn:hover span {
  width: 30px;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

header .content .l_side #toggle_btn.active span {
  width: 30px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

header .content .l_side #toggle_btn.active span:last-of-type {
  -webkit-transform: rotate(-45deg) translate(4.5px, -4.5px);
          transform: rotate(-45deg) translate(4.5px, -4.5px);
}

header .content .l_side #head_social {
  width: 100%;
  text-align: center;
}

header .content .l_side #head_social a {
  color: #fff;
  font-size: 12px;
  margin: 10px auto;
  display: block;
}

header .content .l_side #head_talk {
  width: 100%;
  text-align: center;
}

header .content .l_side #head_talk a span {
  color: #fff;
  font-size: 12px;
  -webkit-transform: rotate(-90deg) translateX(25px);
          transform: rotate(-90deg) translateX(25px);
}

header .content .l_side #head_talk a i {
  color: #3A4B75;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
}

header .content .slider {
  width: calc(100% - 80px);
  min-height: 100vh;
  background-image: url(../images/hero-bg.svg);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 80px;
}

header .content .slider .info p {
  font-weight: 300;
  font-size: 25px;
  color: #3a4b75;
}

header .content .slider .info h1 {
  font-family: 'Barlow', sans-serif;
  font-size: calc(3vw + 15px);
  color: #3A4B75;
  font-weight: 900;
  letter-spacing: 1px;
  text-shadow: 3px 1px 0 #fff, 4px 1px 0 #999;
}

header .content .slider .contact_inf {
  text-align: initial;
  padding: 15px 3vw;
  border-top: 1px solid #9993;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}

header .content .slider .contact_inf span {
  color: #3a4b75;
  font-size: 14px;
  font-weight: 600;
}

header .content .slider .contact_inf a {
  margin: 8px;
  font-size: 14px;
  color: #3a4b75;
  font-weight: 600;
}

.btn_home_back {
  padding: 12px 20px;
  background-color: #3E4A74;
  color: #fff;
  font-size: 12px;
  text-transform: capitalize;
  border-radius: 30px;
  width: 220px;
  margin-left: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px 5px 5px;
  border: 1px solid #3E4A74;
}

.btn_home_back:last-of-type {
  background-color: transparent;
}

.btn_home_back:last-of-type span {
  color: #3a4b75;
}

.btn_home_back:last-of-type img {
  -webkit-filter: invert(26%) sepia(17%) saturate(1366%) hue-rotate(189deg) brightness(40%) contrast(90%);
          filter: invert(26%) sepia(17%) saturate(1366%) hue-rotate(189deg) brightness(40%) contrast(90%);
}

.btn_home_back:last-of-type:hover {
  background-color: #3a4b75;
}

.btn_home_back:last-of-type:hover span {
  color: #fff;
}

.btn_home_back:last-of-type:hover img {
  -webkit-filter: none;
          filter: none;
}

.btn_home_back img {
  width: 30px;
  height: 20px;
  margin-left: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: 10px;
}

.btn_home_back:hover {
  background-color: #fff;
  border: 1px solid #3E4A74;
}

.btn_home_back:hover img {
  -webkit-filter: invert(26%) sepia(17%) saturate(1366%) hue-rotate(189deg) brightness(40%) contrast(90%);
          filter: invert(26%) sepia(17%) saturate(1366%) hue-rotate(189deg) brightness(40%) contrast(90%);
}

.btn_home_back:hover span {
  color: #3E4A74;
}

/* -------------------- responsive style ------------------------- */
/* -------------------- responsive style ------------------------- */
/* -------------------- responsive style ------------------------- */
/* -------------------- responsive style ------------------------- */
/* -------------------- responsive style ------------------------- */
/* -------------------- responsive style ------------------------- */
@media screen and (max-width: 991px) {
  .contact_inf {
    position: relative !important;
    margin-top: 30px;
  }
  .contact_inf span {
    display: block;
    margin-top: 20px;
  }
  .contact_inf a {
    display: block;
  }
  .contact_inf .text-right {
    text-align: initial !important;
  }
  header .content .slider {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .btn_home_back {
    margin: 5px;
  }
  header .content .slider .info p {
    font-size: 14px;
    font-weight: 400;
  }
  header .content .slider .info h1 {
    margin-bottom: 20px;
  }
}

/* ======== */
/* ======= */
/*# sourceMappingURL=styles.css.map */