/* CSS Document */
/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
	3.1 Top Bar
	3.2 Header Content
	3.3 Logo
4. Menu
5. Home
6. Boxes
7. About
8. Departments
9. Services
10. CTA
11. Footer



******************************/
/***********
1. Fonts
***********/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,300;1,400;1,600;1,700;1,900&display=swap");
@font-face {
  font-family: "BlockProVN";
  src: url(../fonts/BlockProVN.ttf);
  font-weight: 400;
}

@font-face {
  font-family: "BrushScript";
  src: url(../fonts/BrushScript.ttf);
  font-weight: 400;
}

@font-face {
  font-family: "UTMAvo";
  src: url(../fonts/UTMAvo.ttf);
  font-weight: 400;
}

@font-face {
  font-family: "UTMAvo";
  src: url(../fonts/UTMAvoBold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: "UTMAvo";
  src: url(../fonts/UTMAvoBold_Italic.ttf);
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "UTMAvo";
  src: url(../fonts/UTMAvoItalic.ttf);
  font-weight: 400;
  font-style: italic;
}

/*********************************
2. Body and some general stuff
*********************************/
* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  background: #c6c6c6;
  color: #696969;
}

div {
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  list-style: none;
  margin-bottom: 0px;
}

p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

p:last-of-type {
  margin-bottom: 0;
}

a {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

a, a:hover, a:visited, a:active, a:link {
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

a:hover {
  color: #e08738 !important;
}

::-moz-selection {
  color: #e08738;
}

::selection {
  color: #e08738;
}

h1 {
  font-size: 48px;
  font-family: "UTMAvo";
  font-weight: 700;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

.form-control {
  color: #db5246;
}

section {
  padding: 100px 0 125px;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-position: left 0 top -50px, left 0 bottom -250px;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% auto;
}

.section_title {
  text-align: center;
  overflow: visible !important;
}

.section_title h1 {
  margin-bottom: 25px;
  font-size: 45px;
  color: #0066b3;
}

@media (max-width: 420px) {
  .section_title h1 {
    margin-bottom: 15px;
    font-size: 25px;
  }
}

.section_title_light h2 {
  color: #FFFFFF;
}

.clear {
  clear: both;
}

.clearfix::before, .clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.fill_height {
  height: 100%;
}

.super_container {
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  margin-top: 90px;
}

.prlx_parent {
  overflow: hidden;
}

.prlx {
  height: 130% !important;
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

.animated-fast {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUpMenu {
  from {
    opacity: 0;
    visibility: hidden;
    /*-webkit-transform: translate3d(0, 100%, 0);
	  transform: translate3d(0, 100%, 0);*/
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    visibility: visible;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpMenu {
  from {
    opacity: 0;
    visibility: hidden;
    /*-webkit-transform: translate3d(0, 100%, 0);
	  transform: translate3d(0, 100%, 0);*/
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    visibility: visible;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpMenu {
  -webkit-animation-name: fadeInUpMenu;
  animation-name: fadeInUpMenu;
}

.nopadding {
  padding: 0px !important;
}

.button {
  display: inline-block;
  background: #0066b3;
}

.button::after {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #e08738;
  content: '';
  z-index: 0;
  -webkit-transition: all 400ms cubic-bezier(0.33, 0.68, 0.59, 0.99);
  transition: all 400ms cubic-bezier(0.33, 0.68, 0.59, 0.99);
}

.button a {
  display: block;
  position: relative;
  padding: 15px 45px 15px 39px;
  font-size: 14px;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
}

.button:hover::after {
  height: 100%;
}

.button:hover a {
  color: #FFFFFF !important;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

/*********************************
3. Header
*********************************/
.header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #0066b3;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: background ease .3s;
  transition: background ease .3s;
}

.header .container {
  position: relative;
}

.header:after, .header:before {
  content: "";
  display: table;
  clear: both;
}

.header .main-nav .main-menu a {
  text-transform: capitalize;
  text-transform: uppercase;
}

@media only screen and (max-width: 1200px) {
  .header .main-nav .main-menu a {
    font-size: 12px;
  }
}

.header .main-nav {
  text-align: center;
  padding: 0;
  float: none;
}

.header .search-form {
  display: inline-block;
}

.header.shrink {
  position: fixed;
  background-color: #0066b3;
}

.header.shrink .nav-menu-container {
  height: 80px;
}

.header.shrink .main-nav {
  padding: 15px 20px;
}

@media (min-width: 992px) {
  .header.shrink .main-nav {
    padding: 0;
  }
}

.header + * {
  margin-top: 100px;
}

.nav-menu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 90px;
  -webkit-transition: height .3s ease;
  transition: height .3s ease;
}

.header__logo {
  max-width: 230px;
  -webkit-transition: max-width .3s ease;
  transition: max-width .3s ease;
}

.header__logo img {
  width: 100%;
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header.shrink .header__logo {
  max-width: 197px;
}

.header__chooseLanguage {
  display: inline-block;
  -webkit-transition: height .3s ease;
  transition: height .3s ease;
}

.header__chooseLanguage i {
  margin: 0 5px;
}

.header__chooseLanguage a {
  display: block;
  padding: 5px 10px;
}

.header__chooseLanguage a:hover {
  color: #f39c12;
}

.header__toogleGroup {
  position: relative;
}

.header__toogleGroup::before {
  content: "";
  width: 1px;
  height: 80%;
  background: #ffffff;
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 992px) {
  .header__toogleGroup::before {
    content: none;
  }
}

.search-form__toggle:hover {
  cursor: pointer;
}

.search-form__toggle i {
  color: #fff;
}

.search-form__form {
  top: 56px;
  right: 0;
  position: absolute;
  width: 100%;
  height: 60px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.header.shrink .search-form__form {
  top: 51px;
}

@media (min-width: 576px) {
  .search-form__form {
    width: 300px;
  }
}

.search-form__form .form-search, .search-form__form .form-search > form,
.search-form__form .form-search > form > input {
  height: 100%;
  background-color: white;
}

.search-form {
  position: relative;
}

.search-form.open .search-form__form {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.header + * {
  margin-top: 0;
}

.header:not(.shrink) {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header:not(.shrink) .main-nav .main-menu > li > a {
  color: #fff;
}

.header:not(.shrink) .main-nav .main-menu .current-menu-item > a {
  color: #f39c12;
}

.header:not(.shrink) .dropdown__toggle {
  color: #ffffff;
}

.header:not(.shrink) .search-form__toggle {
  color: #ffffff;
}

.header .navbar-toggle > span {
  background-color: #fefefe;
}

.navbar-toggle {
  cursor: pointer;
}

.navbar-toggle > span {
  width: 31px;
  height: 3px;
  background-color: #1f1c2f;
  display: block;
  margin: 5px auto;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.navbar-toggle.open > span:nth-child(1), .navbar-toggle.open > span:nth-child(3) {
  width: 25px;
}

.navbar-toggle.open > span:nth-child(1) {
  -webkit-transform: translateX(-10px) rotate(-45deg);
  transform: translateX(-10px) rotate(-45deg);
}

.navbar-toggle.open > span:nth-child(3) {
  -webkit-transform: translateX(-10px) rotate(45deg);
  transform: translateX(-10px) rotate(45deg);
}

.main-nav {
  z-index: 999;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}

.main-nav li {
  position: relative;
  z-index: 9;
}

.main-nav .main-menu > li {
  padding: 15px 0;
}

.main-nav li a {
  display: block;
  position: relative;
  text-decoration: none;
}

.main-nav {
  text-align: center;
}

.main-nav li:hover > a {
  color: #f39c12;
}

.main-nav .main-menu .sub-menu {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

.main-nav .main-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.main-nav .main-menu a {
  padding: 20px 30px;
}

.main-nav .main-menu .sub-menu {
  background-color: #fff;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 0;
}

.main-nav .main-menu .sub-menu li:hover {
  border-left: 3px solid #f39c12;
}

.main-nav .main-menu .sub-menu a {
  padding: 10px 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.main-nav .main-menu .sub-menu a:after {
  right: 15px;
}

.main-nav .main-menu .sub-menu li .sub-menu {
  top: -2px;
}

.main-nav .main-menu .sub-menu li:first-child > a {
  border-top: 0;
}

.main-nav .main-menu .sub-menu li:first-child .sub-menu {
  top: -3px;
}

.main-nav .main-menu > li {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 992px) {
  .main-nav .main-menu > li {
    display: block;
  }
}

.main-nav .main-menu a {
  font-size: 14px;
  color: #ffffff;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 20px;
}

.main-nav .main-menu .sub-menu {
  display: block !important;
}

.main-nav .main-menu .sub-menu .current-menu-parent > a,
.main-nav .main-menu .sub-menu .current-menu-item > a {
  color: #f39c12;
}

.main-nav .main-menu .current-menu-parent > a,
.main-nav .main-menu .current-menu-item > a {
  color: #f39c12;
}

.main-nav .main-menu .sub-menu {
  width: 250px;
  position: absolute;
  top: 100%;
  z-index: -1;
  left: 0;
  -webkit-transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-nav .main-menu .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}

.main-nav .main-menu .sub-menu li.menu-item-has-children > a:after {
  font-family: "FontAwesome";
  content: "\F105";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.main-nav .main-menu .sub-menu li > a {
  font-size: 14px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: 300;
  text-transform: capitalize;
  height: auto;
  line-height: 1.875;
  color: #8f8f8f;
  border-bottom: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.main-nav .main-menu .sub-menu li:hover > a {
  color: #f39c12;
}

.main-nav .main-menu .sub-menu li .current-menu-parent > a,
.main-nav .main-menu .sub-menu li .current-menu-item > a {
  color: #f39c12;
}

.main-nav .navbar-toggle {
  display: none;
}

.offcanvas-menu-wrapper {
  display: none;
}

@media (max-width: 992px) {
  .header.shrink .main-nav {
    padding: 15px 10px;
  }
  .main-nav .main-menu {
    position: fixed;
    top: 0;
    will-change: transform;
  }
  .main-nav .main-menu a {
    font-size: 14px;
  }
  .main-nav .main-menu a:after {
    right: 0;
    width: 50px;
    text-align: center;
  }
  .main-nav .main-menu .sub-menu {
    display: none;
  }
  .main-nav .main-menu {
    background-color: #111;
  }
  .main-nav .main-menu a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #eee;
  }
  .main-nav .main-menu a:after {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
  .main-nav .main-menu {
    left: 0;
    width: 280px;
    background-color: #111;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
  .main-nav .active.main-menu {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .main-nav .main-menu {
    z-index: 99999;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    text-align: left;
    width: 280px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .main-nav .main-menu li {
    position: relative;
  }
  .main-nav .main-menu li.menu-item-has-children > a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    position: absolute;
    font-weight: 900;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .main-nav .main-menu a {
    padding: 12px 15px;
    font-size: 14px;
  }
  .main-nav .main-menu a:hover {
    color: #f39c12;
  }
  .main-nav .main-menu .active > a {
    color: #f39c12;
  }
  .main-nav .main-menu .current-menu-parent > a,
  .main-nav .main-menu .current-menu-item > a {
    color: #f39c12;
  }
  .main-nav .main-menu .sub-menu a {
    padding: 12px 15px 12px 35px;
  }
  .main-nav .main-menu .sub-menu .menu-item-has-children > a:hover {
    color: #f39c12;
  }
  .main-nav .main-menu .sub-menu .menu-item-has-children.active > a {
    color: #f39c12;
  }
  .main-nav .main-menu .sub-menu .menu-item-has-children.current-menu-parent > a {
    color: #f39c12;
  }
  .main-nav .main-menu .sub-menu .current-menu-item > a {
    color: #f39c12;
  }
  .main-nav .navbar-toggle {
    display: block;
  }
  .offcanvas-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    content: "";
    z-index: 98;
    -webkit-transition: all, 0.5s;
    transition: all, 0.5s;
    visibility: hidden;
  }
  .offcanvas-menu-overlay.active {
    visibility: visible;
  }
  .offcanvas-menu-wrapper {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: calc(100% + 90px);
    background: rgba(0, 0, 0, 0.7);
    padding: 90px 20px 30px 30px;
    display: block;
    z-index: 9999;
    overflow-y: auto;
    -webkit-transition: all, 0.5s;
    transition: all, 0.5s;
    opacity: 0;
  }
  .offcanvas-menu-wrapper.active {
    opacity: 1;
    left: 0;
  }
  .offcanvas__close {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 30px;
    top: 25px;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 26px;
    text-align: center;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    cursor: pointer;
  }
  .slicknav_btn {
    display: none;
  }
  .slicknav_menu {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
  }
  .slicknav_nav .slicknav_arrow {
    font-size: 16px;
    margin: 0 0 0 .4em;
    padding: 5px 10px;
  }
  .slicknav_nav .slicknav_row,
  .slicknav_nav a {
    padding: 15px 0;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .slicknav_nav a {
    white-space: nowrap;
  }
  .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent;
    color: #111111;
  }
  .slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
    color: #111111;
  }
  .slicknav_nav {
    display: block !important;
  }
  .sub-menu a {
    padding: 10px 0;
  }
  .offcanvas__logo {
    margin-bottom: 25px;
  }
}

/* 10. dropdown
--------------------------------------------------------------------------------*/
.dropdown {
  position: relative;
}

.dropdown__toggle {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.dropdown__content {
  color: #1f1c2f;
  top: 61px;
  right: 0;
  position: absolute;
  background-color: white;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  display: block !important;
  padding: 20px;
  line-height: 1.5;
  min-width: 130px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
  z-index: 99;
}

.header.shrink .dropdown__content {
  top: 56px;
}

.dropdown__content[data-position="left"] {
  left: 0;
  right: auto;
}

.dropdown__content[data-position="center"] {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.dropdown__content.open {
  display: block;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.home_slider .owl-dots {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 100%;
}

.home_slider .owl-dots .owl-dot span {
  width: 40px;
  height: 3px;
  margin: 5px 7px;
  background: #ffffff;
}

.home_slider .owl-dots .owl-dot.active span,
.home_slider .owl-dots .owl-dot:hover span {
  background: #0066b3;
}

@media (max-width: 992px) {
  .home_slider .owl-dots {
    bottom: 25px;
  }
  .home_slider .home_content h1 {
    font-size: 48px;
  }
  .home_slider .home_text {
    margin-bottom: 15px;
  }
  .home_slider .home_text p {
    line-height: 1.5;
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .home_slider .home_content h1 {
    font-size: 28px;
  }
  .home_slider .home_text p {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .header_content .header_logo {
    padding: 5px 0;
    height: 100%;
  }
}

/*********************************
4. Menu
*********************************/
.menu_container {
  position: fixed;
  top: 0;
  right: -50vw;
  width: 50vw;
  height: 100vh;
  background: #FFFFFF;
  z-index: 101;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  visibility: hidden;
  opacity: 0;
}

.menu_container.active {
  visibility: visible;
  opacity: 1;
  right: 0;
}

.menu {
  position: absolute;
  top: 150px;
  left: 0;
  padding-left: 15%;
}

.menu_inner {
  width: 100%;
  height: 100%;
}

.menu_list {
  -webkit-transform: translateY(1.5rem);
  transform: translateY(1.5rem);
  -webkit-transition: all 1000ms 400ms ease;
  transition: all 1000ms 400ms ease;
  opacity: 0;
}

.menu_container.active .menu_list {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.menu_item {
  margin-bottom: 5px;
}

.menu_item a {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #272727;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.menu_item a:hover {
  color: #ffb606;
}

.menu_close_container {
  position: absolute;
  top: 86px;
  right: 79px;
  width: 21px;
  height: 21px;
  cursor: pointer;
  z-index: 10;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu_close {
  top: 9px;
  width: 21px;
  height: 3px;
  background: #3a3a3a;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.menu_close::after {
  display: block;
  position: absolute;
  top: -9px;
  left: 9px;
  content: '';
  width: 3px;
  height: 21px;
  background: #3a3a3a;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.menu_close_container:hover .menu_close,
.menu_close_container:hover .menu_close::after {
  background: #e08738;
}

/*********************************
17. Footer
*********************************/
.footer {
  width: 100%;
}

.footer_container {
  width: 100%;
  background: #0066b3;
  padding-top: 77px;
  padding-bottom: 77px;
}

@media (max-width: 992px) {
  .footer_container {
    padding-top: 0;
  }
}

.footer_about .footer_logo {
  margin-bottom: 25px;
}

.footer_about .footer_about_text p {
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 300;
}

@media (max-width: 992px) {
  .footer_column {
    padding-top: 75px;
  }
}

.footer_about_list {
  margin-top: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid #fff;
}

.footer_about_list li:not(:last-child) {
  margin-bottom: 9px;
}

.footer_about_list .footer_about_icon {
  display: inline-block;
  width: 31px;
  height: 31px;
  text-align: center;
  vertical-align: middle;
}

.footer_about_list .footer_about_icon i {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #ffffff;
}

.footer_about_list li span {
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
  padding-left: 10px;
}

.footer_title {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
}

.footer_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer_social li a {
  color: #ffffff;
  font-size: 23px;
}

.footer_social li:not(:last-of-type) {
  margin-right: 25px;
}

.footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 25px;
}

.footer_menu li {
  -webkit-box-flex: 1;
      -ms-flex: 1 auto;
          flex: 1 auto;
}

.footer_menu li a {
  color: #fff;
  font-weight: 300;
}

@media (max-width: 992px) {
  .footer_menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer_menu li:not(:last-child) {
    margin-bottom: 25px;
  }
}

.copyright {
  width: 100%;
  background: #08548d;
}

.copyright_content {
  width: 100%;
}

.cr {
  padding: 15px 0;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

.fadeInUp {
  opacity: 0;
  overflow: hidden;
}

/*********************************
5. Home
*********************************/
.home {
  width: 100%;
}

.home_slider_container {
  position: relative;
  height: calc(100vh - 90px);
  max-height: 750px;
}

@media (max-width: 1200px) {
  .home_slider_container {
    max-height: 600px;
  }
}

@media (max-width: 992px) {
  .home_slider_container {
    max-height: 550px;
  }
}

@media (max-width: 768px) {
  .home_slider_container {
    max-height: 450px;
  }
}

.home_slider_container .item {
  position: relative;
  width: 100%;
  height: 100%;
}

.home_slider_container .home_slider_background {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home_slider_container .home_content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 100%;
}

.home_slider_container .home_title {
  position: relative;
}

.home_slider_container .home_title h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 69.24px;
  color: #ffffff;
  line-height: 1;
}

@media (max-width: 992px) {
  .home_slider_container .home_title h1 {
    font-size: 45px;
    color: #ffffff;
    line-height: 1;
    margin: 25px 0;
  }
}

.home_slider_container .home_text {
  padding-right: 20px;
  padding-left: 3px;
}

.home_slider_container .home_text p {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  line-height: 2.75;
}

@media (max-width: 992px) {
  .home_slider_container .home_text p {
    line-height: 1;
    font-size: 25px;
  }
}

.home_slider_container .go {
  width: 25px;
  stroke: #636363;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  z-index: 12;
}

.home_slider_container .go-prev, .home_slider_container .go-next {
  position: absolute;
  cursor: pointer;
  top: 50%;
  left: 5px;
}

.home_slider_container .go-next {
  left: calc(100% - 32px);
}

.home_slider_container h1 {
  width: 100%;
  font-weight: 800;
  font-size: 36px;
  margin: 0;
}

.home_slider_container nav {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: inherit;
  z-index: 100;
  visibility: hidden;
}

.home_slider_container .navDot {
  position: relative;
  width: 40px;
  height: 3px;
  margin: 5px 7px;
  background: #ffffff;
  float: left;
  cursor: pointer;
}

.home_slider_container .navDot:hover,
.home_slider_container .navDot.active {
  background: #0066b3;
}

.home_slider_container .slides-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 10;
}

.home_slider_container .slide {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: grey;
  overflow: hidden;
}

.home_slider_container #slide02 .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  height: 100px;
  overflow: hidden;
}

.home_slider_container .apple01 {
  position: absolute;
  top: 56%;
  left: 40%;
  width: 160vh;
}

.home_slider_container .apple02 {
  position: absolute;
  top: 58%;
  left: 58%;
  width: 160vh;
}

.home_slider_container .home_slider_progress {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  max-width: 100%;
  height: 2px;
  background: #0066b3;
  z-index: 1;
}

.home_slider_container .home_text p,
.home_slider_container .home_title h1 {
  position: relative;
  opacity: 0;
  top: 50px;
}

.home_slider_container .owl-item.active .home_text p,
.home_slider_container .owl-item.active .home_title h1 {
  top: 0;
  opacity: 1;
}

.home_slider_container .owl-item.active .home_text:first-of-type p {
  -webkit-transition: all 1s ease 0.4s;
  transition: all 1s ease 0.4s;
}

.home_slider_container .owl-item.active .home_text:last-of-type p {
  -webkit-transition: all 1s ease 0.8s;
  transition: all 1s ease 0.8s;
}

.home_slider_container .owl-item.active .home_title h1 {
  -webkit-transition: all 1s ease 0.6s;
  transition: all 1s ease 0.6s;
}

/*********************************
7. About
*********************************/
.about {
  width: 100%;
  background: #FFFFFF;
  overflow: hidden;
}

.about_content {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  text-align: center;
}

.about_content .about_title {
  padding: 0;
}

.about_content .about_title h1 {
  color: #fff;
  font-size: 175px;
  font-style: italic;
  font-family: 'BrushScript';
  line-height: 1;
  margin: 15px 0 35px;
  font-weight: normal;
}

.about_content .about_title h1 span {
  display: inline-block;
  opacity: 0;
}

@media (max-width: 1100px) {
  .about_content .about_title h1 {
    font-size: 125px;
  }
}

@media (max-width: 768px) {
  .about_content .about_title h1 {
    font-size: 182px;
  }
}

@media (max-width: 520px) {
  .about_content .about_title h1 {
    font-size: 125px;
  }
}

.about_content .about_text {
  overflow: visible;
}

.about_content .about_text p {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.5;
  display: block;
}

.about_content .about_text p span {
  font-size: 22px;
  line-height: 1;
}

.about_content .about_text:first-of-type p {
  font-family: "BrushScript";
  font-weight: 400;
  font-size: 42px;
}

.about_content .about_text:last-of-type p {
  margin-top: -35px;
}

.about_image {
  display: block;
  overflow: hidden;
}

.about_image img {
  width: 100%;
}

@media (max-width: 992px) {
  .about_image img {
    min-height: 350px;
  }
}

.slideInLeft, .slideInRight {
  opacity: 0;
}

/*********************************
9. Activities
*********************************/
.activities {
  width: 100%;
  background: #FFFFFF;
  padding-top: 45px;
  padding-bottom: 65px;
}

.activities .section_title {
  text-align: center;
}

.activities .section_title h1 {
  margin-bottom: 0;
}

.activities .section_title h1 span {
  font-size: 45px;
  color: #0066b3;
}

.activities_slider {
  margin-top: 35px;
}

.activities_slider .owl-dots {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 0px !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.activities_slider .owl-dots .owl-dot::after {
  content: "";
  background: #e08738;
  height: 100%;
  width: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.activities_slider .owl-dots .owl-dot:last-of-type::after {
  content: none;
}

.activities_slider .owl-dots .owl-dot.active span {
  border: 1px solid #e08738;
  background: #fff !important;
  width: 40px;
  height: 40px;
  border-radius: 100%;
}

.activities_slider .owl-dots .owl-dot.active span::after {
  content: "";
  background: #e08738;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  padding: 7px;
  z-index: 9;
  border-radius: 100%;
}

.activities_slider .owl-dots .owl-dot span {
  border: 1px solid transparent;
  background: transparent !important;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  position: relative;
  margin: 35px 7px;
}

.activities_slider .owl-dots .owl-dot span:hover {
  background: transparent;
}

.activities_slider .owl-dots .owl-dot span::after {
  content: "";
  background: #fff;
  border: 1px solid #e08738;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  padding: 7px;
  z-index: 9;
  border-radius: 100%;
}

.activities_slider .activity_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.activities_slider .activity_item .activity_image {
  width: 60%;
  height: 100%;
  padding-left: 75px;
  position: relative;
}

.activities_slider .activity_item .activity_image img {
  width: 100%;
}

.activities_slider .activity_item .activity_text {
  width: 40%;
  height: 100%;
  padding-left: 25px;
}

.activities_slider .activity_item .activity_text span.number {
  color: #cfd4da;
  font-style: italic;
  font-family: "BrushScript";
  font-size: 250px;
  line-height: 1;
  letter-spacing: 10px;
  position: relative;
  position: relative;
  opacity: 0;
  top: 50px;
}

.activities_slider .activity_item .activity_text h3.title {
  color: #0066b3;
  font-size: 37px;
  margin-bottom: 15px;
  margin-top: -35px;
  font-weight: 700;
  position: relative;
  opacity: 0;
  top: 50px;
}

.activities_slider .activity_item .activity_text p {
  color: #000;
  position: relative;
  opacity: 0;
  top: 50px;
}

@media (max-width: 992px) {
  .activities_slider .activity_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 65px;
  }
  .activities_slider .activity_item .activity_image {
    width: 100%;
    padding-left: 0;
  }
  .activities_slider .activity_item .activity_text {
    width: 100%;
  }
  .activities_slider .activity_item .activity_text span.number {
    font-size: 176px;
  }
  .activities_slider .activity_item .activity_text h3.title {
    color: #0066b3;
    font-size: 23px;
    margin-top: -25px;
  }
  .activities_slider .activity_item .activity_text p {
    font-size: 14px;
  }
}

.activities_slider .owl-item.active .activity_item .activity_text span.number {
  top: 0;
  opacity: 1;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.activities_slider .owl-item.active .activity_item .activity_text h3.title {
  top: 0;
  opacity: 1;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.activities_slider .owl-item.active .activity_item .activity_text p {
  top: 0;
  opacity: 1;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.activities_col {
  margin-bottom: 30px;
}

.activitiy_text {
  margin-top: 16px;
}

.activitiy_text p {
  color: #696969;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.activitiy_title {
  font-size: 20px;
  font-weight: 700;
  color: #232323;
  padding-top: 41px;
  margin-top: 26px;
}

/*********************************
10. Brands
*********************************/
.brands {
  width: 100%;
  background: transparent;
  padding-top: 75px;
  padding-bottom: 65px;
}

.brands .brands_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.brands .section_title {
  text-align: center;
}

.brands .section_title h1 {
  font-size: 45px;
  color: #0066b3;
  margin-bottom: 45px;
}

.brand_item {
  padding: 35px;
  position: relative;
}

.brand_item .brand_image {
  margin-bottom: 15px;
  max-width: 230px;
  margin: 0 auto 10px;
}

.brand_item .brand_image img {
  width: 100%;
}

.brand_item .brand_text {
  text-align: center;
}

.brand_item .brand_text h3, .brand_item .brand_text p {
  color: #fff;
  line-height: 1.33;
}

.brand_item .brand_text p {
  font-weight: 400;
}

@media (max-width: 768px) {
  .brand_item .brand_text h3 {
    font-size: 25px;
  }
  .brand_item .brand_text p {
    font-size: 20px;
  }
}

/*********************************
12. Invest
*********************************/
.invest {
  padding-top: 75px;
  padding-bottom: 15px;
}

.invest .invest_background {
  background-size: 1170px;
  background-position: left 0;
  background-repeat: no-repeat;
  min-height: 450px;
  width: 100%;
}

.invest .invest_background img {
  width: 100%;
}

.invest .invest_background::before {
  display: block;
  content: "";
  position: absolute;
  left: 40px;
  bottom: 0;
  background-image: url(../images/background-2_1.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 330px;
  height: 300px;
}

.invest .invest_background::after {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(../images/background-2_2.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 330px;
  height: 300px;
}

@media (max-width: 768px) {
  .invest .invest_background {
    background-size: cover;
  }
  .invest .invest_background::before, .invest .invest_background::after {
    width: 170px;
    height: 300px;
  }
}

.invest .invest_content {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  width: 100%;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .invest .invest_content {
    padding-bottom: 0;
  }
}

.invest .invest_content .invest_button {
  margin-top: 20px;
}

.invest .invest_content .invest_title h1 {
  font-size: 45px;
  color: #0066b3;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .invest .invest_content .invest_title h1 {
    font-size: 45px;
    color: #0066b3;
  }
}

.invest .invest_content .invest_text {
  color: #000;
  font-size: 14px;
  margin: 10px 0;
}

/*********************************
13. Partner
*********************************/
.partner {
  padding-top: 45px;
  padding-bottom: 0;
}

.partner .partner_content {
  text-align: center;
  margin-bottom: 25px;
}

.partner .partner_content .partner_title h1 {
  font-size: 45px;
  color: #0066b3;
  margin-bottom: 25px;
}

.partner .partner_content .partner_text p {
  color: #000;
  font-size: 14px;
}

.partner_carousel .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.partner_carousel .partner_item img {
  max-width: 100%;
  width: 100% !important;
  padding: 0 30px;
}

@media (max-width: 768px) {
  .partner_carousel .partner_item img {
    padding: 0 15px;
  }
}

.partner_logo {
  padding: 35px;
  position: relative;
}

.partner_logo .partner_image {
  margin-bottom: 15px;
  max-width: 230px;
  margin: 0 auto;
}

.partner_logo .partner_image img {
  width: 100%;
  padding: 20px;
}

.partner_logo .partner_text {
  text-align: center;
}

.partner_logo .partner_text h3, .partner_logo .partner_text p {
  color: #000000;
  line-height: 1.33;
}

.partner_logo .partner_text p {
  font-weight: 400;
}

@media (max-width: 768px) {
  .partner_logo .partner_text h3 {
    font-size: 45px;
  }
  .partner_logo .partner_text p {
    font-size: 25px;
  }
}

/*********************************
14. News
*********************************/
.news {
  padding-top: 75px;
  padding-bottom: 65px;
  background-position: bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.news .section_title h1 {
  font-size: 45px;
  margin-bottom: 45px;
}

.news .news_content_left .large_news {
  display: block;
}

@media (max-width: 992px) {
  .news .news_content_left .large_news {
    margin-bottom: 25px;
  }
}

.news .news_content_left .large_news .large_news_image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  padding-bottom: 60%;
}

.news .news_content_left .large_news .large_news_content {
  width: 100%;
  background: #fff;
  padding: 25px 20px;
}

.news .news_content_left .large_news .large_news_content .large_news_title h2 {
  font-size: 18px;
  color: #0066b3;
  font-weight: 700;
}

.news .news_content_left .large_news .large_news_content .large_news_text p {
  font-size: 14px;
  color: #000;
  font-weight: 400;
}

.news .news_content_left .large_news:hover .large_news_content {
  background: #e08738;
}

.news .news_content_left .large_news:hover .large_news_content .large_news_title h2 {
  color: #ffffff;
}

.news .news_content_left .large_news:hover .large_news_content .large_news_text p {
  color: #ffffff;
}

.news .news_content_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news .news_content_right .small_news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  height: calc((100% - 30px)/3);
}

@media (max-width: 992px) {
  .news .news_content_right .small_news {
    min-height: 170px;
    margin-bottom: 25px;
  }
}

.news .news_content_right .small_news .small_news_image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 35%;
}

.news .news_content_right .small_news .small_news_content {
  width: 65%;
  padding: 0 15px;
}

.news .news_content_right .small_news .small_news_content .small_news_title h2 {
  font-size: 20px;
  color: #0066b3;
  font-weight: 700;
}

.news .news_content_right .small_news .small_news_content .small_news_text p {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news .news_content_right .small_news:hover {
  background: #e08738;
}

.news .news_content_right .small_news:hover .small_news_content .small_news_title h2 {
  color: #ffffff;
}

.news .news_content_right .small_news:hover .small_news_content .small_news_text p {
  color: #ffffff;
}

/*********************************
15. Brands Section
*********************************/
.brands-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.brands-section .brands_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.brands-section .section_title {
  text-align: left;
}

.brands-section .section_title h1 {
  color: #fff;
  font-size: 65px;
  margin-bottom: 25px;
  font-family: "UTMAvo";
  font-weight: 400;
}

.brands-section .brands_text p {
  color: #fff;
}

.brands-section .brands_button {
  margin-top: 35px;
}

.brands-section .brands_button a {
  text-transform: inherit;
  font-weight: 300;
}

@media (max-width: 992px) {
  .brands-section .brands_button {
    display: block;
    margin: 35px auto 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

/*********************************
16. Achievement
*********************************/
@media (min-width: 1440px) {
  .achievement {
    background-repeat: no-repeat, no-repeat;
    background-size: 100% 53%, 100% 85%;
  }
}

.achievement .row:not(:last-child) {
  margin-bottom: 100px;
}

.achievement .section_title h1 {
  font-weight: 700;
}

.achievement .achievement_text {
  text-align: center;
  margin-bottom: 55px;
}

.achievement .achievement_text p {
  color: #000;
}

.achievement .achievement_slider .owl-item .achieve_item {
  position: relative;
  padding: 0 35px;
  min-height: 450px;
}

.achievement .achievement_slider .owl-item .achieve_item.archieve_bottom .archieve_wrap {
  position: absolute;
  left: 0;
  bottom: 0;
}

.achievement .achievement_slider .owl-item .achieve_item .achieve_image {
  margin-bottom: 15px;
}

.achievement .achievement_slider .owl-item .achieve_item .achieve_image img {
  margin: 0 auto;
  width: auto;
  height: 110px;
}

.achievement .achievement_slider .owl-item .achieve_item .achieve_text {
  text-align: center;
}

.achievement .achievement_slider .owl-item .achieve_item .achieve_text p {
  font-weight: 700;
  color: #0066b3;
}

.achievement .achievement_slider .owl-item .achieve_item .achieve_dots {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 30px;
  text-align: center;
}

.achievement .achievement_slider .owl-item .achieve_item .achieve_dots span {
  border: 1px solid #0066b3;
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  position: relative;
  display: inline-block;
}

.achievement .achievement_slider .owl-item .achieve_item .achieve_dots span::after {
  content: "";
  background: #0066b3;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  padding: 7px;
  z-index: 9;
  border-radius: 100%;
}

.achievement .achievement_slider .owl-item .achieve_item .achieve_dots::after {
  content: "";
  background-image: url(../images/archieve/dotted.png);
  background-position: center;
  background-size: 550px 2px;
  background-repeat: no-repeat;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}

.achievement .achievement_slider .owl-item .achieve_item.flex-column-reverse {
  position: relative;
}

.achievement .achievement_slider .owl-item .achieve_item.flex-column-reverse .achieve_item .achieve_image {
  margin-bottom: 0;
}

.achievement .achievement_slider .owl-nav {
  position: initial;
}

.achievement .achievement_slider .owl-nav .owl-prev {
  left: -5px;
}

.achievement .achievement_slider .owl-nav .owl-next {
  right: -5px;
}

.achievement .achievement_slider .owl-nav .owl-prev, .achievement .achievement_slider .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  text-align: center;
  width: 35px;
  height: 35px;
  -webkit-transform: translateY(-28px);
          transform: translateY(-28px);
  color: #fff;
  padding: 0;
  border-radius: 100%;
  -webkit-box-shadow: 2px 5px 15px #888888;
          box-shadow: 2px 5px 15px #888888;
  background: #fff;
}

.achievement .achievement_slider .owl-nav .owl-prev:hover, .achievement .achievement_slider .owl-nav .owl-next:hover {
  cursor: pointer;
  background: #0066b3;
}

.achievement .achievement_slider .owl-nav .owl-prev:hover span, .achievement .achievement_slider .owl-nav .owl-next:hover span {
  color: #ffffff;
}

.achievement .achievement_slider .owl-nav .owl-prev.disabled, .achievement .achievement_slider .owl-nav .owl-next.disabled {
  background-color: #888888;
}

.achievement .achievement_slider .owl-nav .owl-prev.disabled:hover, .achievement .achievement_slider .owl-nav .owl-next.disabled:hover {
  cursor: not-allowed;
}

.achievement .achievement_slider .owl-nav .owl-prev.disabled span, .achievement .achievement_slider .owl-nav .owl-next.disabled span {
  color: #ffffff;
}

.achievement .achievement_slider .owl-nav .owl-prev span, .achievement .achievement_slider .owl-nav .owl-next span {
  font-size: 20px;
  line-height: 35px;
  color: #0066b3;
}

@media (max-width: 768px) {
  .achievement .achievement_slider .owl-nav .owl-prev {
    left: 0;
  }
  .achievement .achievement_slider .owl-nav .owl-next {
    right: 0;
  }
}

.achievement .achievement_slider .owl-item:first-of-type .achieve_item .achieve_dots::after {
  content: "";
  width: 50% !important;
  right: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.achievement .achievement_slider .owl-item:last-of-type .achieve_item .achieve_dots::after {
  content: "";
  width: 50% !important;
  left: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*********************************
17. Story
*********************************/
.stories-section {
  padding-top: 75px;
  padding-bottom: 45px;
}

.stories-section .row {
  padding-bottom: 65px;
}

.stories-section .stories_image {
  text-align: center;
  margin-bottom: 25px;
}

.stories-section .stories_image img {
  max-width: 100%;
}

.stories-section .stories_title {
  text-align: center;
}

.stories-section .stories_title h1 {
  font-family: "UTMAvo";
  margin-bottom: 25px;
  font-size: 53px;
  color: #0066b3;
}

.stories-section .stories_text {
  text-align: center;
}

.stories-section .stories_text p {
  color: #000;
}

.stories-section .histories_title {
  text-align: center;
}

.stories-section .histories_title h1 {
  font-family: "UTMAvo";
  margin-bottom: 45px;
  font-size: 53px;
  color: #0066b3;
}

.stories-section ul.histories_content {
  list-style: none;
  background-image: url(../images/line.png);
  background-position: top 30px left 55px;
  background-size: auto 85%;
  background-repeat: no-repeat;
}

@media (max-width: 992px) {
  .stories-section ul.histories_content {
    background-position: top 65px left 50px;
  }
}

@media (max-width: 540px) {
  .stories-section ul.histories_content {
    background-position: top 74px left 50px;
  }
}

.stories-section ul.histories_content li {
  padding-left: 120px;
  margin-bottom: 35px;
  position: relative;
}

.stories-section ul.histories_content li::before {
  content: "";
  background-image: url(../images/dot.png);
  background-position: top left;
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 25px;
  width: 25px;
}

.stories-section ul.histories_content li span.year {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 18px;
  color: #0066b3;
  font-weight: 900;
  font-family: "UTMAvo";
}

.stories-section .company_title {
  text-align: center;
}

.stories-section .company_title h1 {
  font-family: "UTMAvo";
  font-size: 53px;
  margin-bottom: 45px;
  color: #0066b3;
}

.stories-section .company_system {
  padding-bottom: 0;
}

.stories-section .company_info {
  position: relative;
  border-radius: 100%;
  overflow: hidden;
}

@media (max-width: 992px) {
  .stories-section .company_info {
    margin-bottom: 30px;
  }
}

.stories-section .company_info .company_info-wrap {
  background-color: #f1f1f1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 70%;
  height: 70%;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px;
  text-align: center;
  z-index: 2;
}

.stories-section .company_info .company_info-wrap .counter {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  margin-bottom: 15px;
  font-size: 50px;
  color: #0066b3;
}

@media (max-width: 1100px) {
  .stories-section .company_info .company_info-wrap .counter {
    font-size: 38px;
  }
}

.stories-section .company_info .company_info-wrap p {
  color: #0066b3;
}

.stories-section .company_info::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.stories-section .company_info::before {
  content: "";
  background-image: url(../images/boder-image-3.png);
  background-size: 100% 100%;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/*********************************
20. Vision 
*********************************/
.vision-section {
  padding-top: 100px;
  padding-bottom: 45px;
}

.vision-section .vision_title {
  text-align: center;
  position: relative;
  padding-bottom: 45px;
}

.vision-section .vision_title h1 {
  font-family: "UTMAvo";
  font-size: 45px;
  color: #0066b3;
  margin-bottom: 25px;
}

.vision-section .vision_title::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 1px;
  width: 150px;
  background: #737373;
}

.vision-section .vision_content {
  margin-bottom: 35px;
}

.vision-section .vision_content p {
  color: #000;
  margin-bottom: 0;
  font-size: 22px;
}

.vision-section .vision_images {
  position: relative;
  height: 770px;
}

.vision-section .vision_images .image-1, .vision-section .vision_images .image-2, .vision-section .vision_images .vision-banner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.vision-section .vision_images .image-1 {
  width: 59%;
  height: 400px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.vision-section .vision_images .image-2 {
  position: absolute;
  right: 90px;
  top: 100px;
  width: 43%;
  height: 585px;
  z-index: 3;
}

.vision-section .vision_images .line {
  border: 4px solid #0c4da2;
  width: 630px;
  height: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}

@media (max-width: 992px) {
  .vision-section .vision_images .image-1 {
    width: 79%;
    height: 400px;
  }
  .vision-section .vision_images .image-2 {
    position: absolute;
    right: 90px;
    top: 100px;
    width: 50%;
    height: 485px;
  }
  .vision-section .vision_images .line {
    width: 420px;
  }
}

@media (max-width: 768px) {
  .vision-section .vision_images {
    height: 560px;
  }
  .vision-section .vision_images .image-1 {
    width: 79%;
    height: 360px;
  }
  .vision-section .vision_images .image-2 {
    position: absolute;
    right: 0;
    width: 50%;
    height: 385px;
  }
  .vision-section .vision_images .line {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .vision-section .vision_images {
    height: 520px;
  }
}

.vision-section .vision_images .vision-banner {
  position: absolute;
  left: -90px;
  bottom: 0;
  width: 70%;
  height: 500px;
  background-size: 100% auto;
}

.vision-section .mission_title h1 {
  font-family: "UTMAvo";
  font-size: 32px;
  color: #0066b3;
  margin-bottom: 20px;
}

.vision-section .mission_content {
  margin-bottom: 35px;
}

.vision-section .mission_content p {
  color: #000;
  margin-bottom: 0;
  font-size: 30px;
}

.vision-section .mission_images {
  position: relative;
}

.vision-section .mission_images .line {
  border: 4px solid #0c4da2;
  width: 80%;
  height: 95%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.vision-section .mission_images .image-1 {
  padding-top: 35px;
  padding-right: 45px;
  z-index: 2;
}

.vision-section .mission_images .image-1 img {
  width: 100%;
}

@media (max-width: 992px) {
  .vision-section .mission_images .image-1 {
    padding-top: 25px;
    padding-right: 35px;
  }
}

/*********************************
22. Nutritional Institute
*********************************/
.nutritional-section {
  padding-top: 45px;
  padding-bottom: 45px;
}

.nutritional-section .nutritional_title {
  text-align: center;
  position: relative;
  padding-bottom: 45px;
}

.nutritional-section .nutritional_title .title_icon {
  margin-bottom: 25px;
}

.nutritional-section .nutritional_title h1 {
  font-family: "UTMAvo";
  font-size: 50px;
  color: #0066b3;
  margin-bottom: 25px;
}

.nutritional-section .nutritional_title::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 2px;
  width: 200px;
  background: #737373;
}

.nutritional-section .nutritional_content {
  margin-bottom: 45px;
}

.nutritional-section .nutritional_content p {
  color: #000000;
  margin-bottom: 45px;
}

.nutritional-section .nutritional_content p:last-of-type {
  margin-bottom: 0;
}

.nutritional-section .nutritional_info {
  margin-bottom: 65px;
}

.nutritional-section .nutritional_info .nutritional_info-wrap {
  margin-bottom: 25px;
  padding: 0 55px;
}

.nutritional-section .nutritional_info .nutritional_info-wrap .nutritional_info-image::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.nutritional-section .nutritional_info .nutritional_info-wrap .nutritional_info-image::before {
  content: "";
  background-image: url(../images/boder-image-3.png);
  background-size: 100% 100%;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.nutritional-section .nutritional_info .nutritional_info-wrap .nutritional_info-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  z-index: 2;
  width: 30%;
}

.nutritional-section .nutritional_info p {
  color: #000;
  text-align: center;
}

.nutritional-section .nutritional_gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 45px;
}

.nutritional-section .nutritional_gallery .image-1, .nutritional-section .nutritional_gallery .image-2, .nutritional-section .nutritional_gallery .image-3, .nutritional-section .nutritional_gallery .image-4 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 30px;
}

.nutritional-section .nutritional_gallery .image-1 {
  width: calc(60% - 15px);
  height: 500px;
}

.nutritional-section .nutritional_gallery .image-2 {
  width: calc(40% - 15px);
  height: 500px;
  margin-top: 90px;
  margin-left: 30px;
}

.nutritional-section .nutritional_gallery .image-3 {
  width: 50%;
  height: 330px;
  margin-top: -90px;
  margin-left: calc(10% - 15px);
}

.nutritional-section .nutritional_gallery .image-4 {
  width: calc(40% - 15px);
  margin-left: 30px;
  height: 350px;
}

@media (max-width: 992px) {
  .nutritional-section .nutritional_gallery .image-1, .nutritional-section .nutritional_gallery .image-2, .nutritional-section .nutritional_gallery .image-3, .nutritional-section .nutritional_gallery .image-4 {
    width: 100%;
    margin: 0;
  }
}

.nutritional-section .nutritional_btn {
  margin-bottom: 45px;
}

.nutritional-section .nutritional_btn a {
  text-transform: inherit;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 10px;
}

/*********************************
22. Career Detail
*********************************/
.careerDetails-section {
  padding-top: 45px;
  padding-bottom: 45px;
}

.careerDetails-section .entry-title h1 {
  font-family: 'Montserrat', sans-serif;
  color: #0072bc;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.careerDetails-section .post-date {
  margin-bottom: 20px;
}

.careerDetails-section .post-date p {
  font-weight: bold;
  color: #858585;
  margin-bottom: 0;
}

.careerDetails-section .entry-content {
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #000000;
  margin-bottom: 25px;
}

.careerDetails-section .career_btn a {
  text-transform: inherit;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 10px;
}

/*********************************
22. Contact
*********************************/
.contact-section {
  padding-top: 75px;
  padding-bottom: 75px;
}

.contact-section .contact_title h1 {
  font-family: "UTMAvo";
  font-size: 40px;
  color: #0066b3;
  margin-bottom: 45px;
  text-align: center;
}

.contact-section .contact_col h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  color: #0066b3;
  margin-bottom: 25px;
  font-weight: 700;
}

@media (max-width: 992px) {
  .contact-section .contact_col {
    margin-bottom: 35px;
  }
}

.banner-section {
  overflow: hidden;
  position: relative;
  padding: 0;
}

.banner-section.contact-banner .banner-image {
  min-height: 800px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-section.contact-banner .banner-image img {
  width: 100%;
}

@media (max-width: 992px) {
  .banner-section.contact-banner .banner-image {
    height: 1098px;
  }
}

.banner-section .contact-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 100%;
}

.contact_input {
  position: relative;
  width: 100%;
  height: 34px;
  border: none;
  outline: none;
  background: #e7ebf0;
  padding-left: 25px;
}

.contact-form-container {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@media (max-width: 992px) {
  .contact-form-container {
    margin-bottom: 35px;
  }
}

.contact_form {
  padding: 60px 65px 45px;
}

.contact_form .input_container {
  margin-bottom: 13px;
}

.contact_form .input_container:last-of-type {
  margin-bottom: 25px;
}

.contact_info {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.contact_info::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 1px;
  background: #ffffff;
}

.contact_info p {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.contact_info p a, .contact_info p span {
  font-weight: 400;
  color: #fff;
}

.contact_info:last-child::after {
  content: none;
}

@media (max-width: 992px) {
  .contact_info p {
    text-align: center;
  }
}

.input_container label {
  font-weight: 700;
  color: #000;
}

.input_container::after {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: #20d34a;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.input_container:hover::after {
  visibility: visible;
  opacity: 1;
}

.contact_input::-webkit-input-placeholder {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #e7ebf0 !important;
}

.contact_input:-moz-placeholder {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #e7ebf0 !important;
}

.contact_input::-moz-placeholder {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #e7ebf0 !important;
}

.contact_input:-ms-input-placeholder {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #e7ebf0 !important;
}

.contact_input::input-placeholder {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #e7ebf0 !important;
}

.contact_text_area {
  height: 100px;
  padding-top: 13px;
}

.contact_button {
  display: block;
  position: relative;
  border: none;
  outline: none;
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  cursor: pointer;
  margin: 0 auto;
}

.contact_button a {
  padding: 10px 45px 10px 39px;
}

/*********************************
22. Certification
*********************************/
.certification-section {
  padding-top: 75px;
  padding-bottom: 75px;
  background-position: top 0 left 0;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.certification-section .certification_title h1 {
  font-family: "UTMAvo";
  color: #0066b3;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 25px;
}

.certification-section .certification_title h1::after {
  width: 150px;
  height: 2px;
  background: #737373;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.certification-section .certification_content {
  margin-bottom: 45px;
}

.certification-section .certification_content p {
  color: #000000;
  font-size: 37px;
  font-weight: 500;
  text-align: center;
}

.certification-section .btn-certification {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto 75px;
}

.certification-section .btn-certification .btn {
  border: 0;
  outline: 0;
  background: #0066b3;
  color: #fff;
  font-size: 14px;
  padding: 10px 60px 10px 60px;
  position: relative;
}

.certification-section .btn-certification .btn::after {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.certification-section .btn-certification .dropdown-menu {
  width: 100%;
}

.certification-section .certification_item {
  margin-bottom: 45px;
}

.certification-section .certification_item .certification_image {
  border: 2px solid #d7d7d7;
  padding: 2px;
}

.certification-section .certification_item .certification_image img {
  width: 100%;
}

.certification-section .certification_item p {
  margin: 15px 0;
  font-size: 18px;
  color: #0066b3;
  font-weight: 700;
  text-align: center;
}

/*********************************
22. Field Details
*********************************/
.fieldDetails-section {
  padding-top: 75px;
  padding-bottom: 75px;
  background-position: left 0 top 0, left 0 bottom 0;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% auto;
}

.fieldDetails-section.brands {
  background-position: left 0 top -100px;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.fieldDetails-section .fieldDetails_title h1 {
  font-family: "UTMAvo";
  font-size: 53px;
  color: #0066b3;
  margin-bottom: 15px;
  text-align: center;
}

.fieldDetails-section .fieldDetails_content {
  margin-bottom: 90px;
}

.fieldDetails-section .fieldDetails_content p {
  color: #000000;
  text-align: center;
}

.fieldDetails-section .fieldDetails_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1200px) {
  .fieldDetails-section .fieldDetails_item {
    margin-bottom: 35px;
  }
}

@media (max-width: 992px) {
  .fieldDetails-section .fieldDetails_item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.fieldDetails-section .fieldDetails_item .fieldDetails_logo {
  max-width: 239px;
}

.fieldDetails-section .fieldDetails_item .fieldDetails_logo img {
  width: 100%;
}

.fieldDetails-section .fieldDetails_item .fieldDetails_info {
  max-width: 297px;
  margin-left: 15px;
}

.fieldDetails-section .fieldDetails_item .fieldDetails_info h2 {
  font-size: 28px;
  color: #0066b3;
  font-weight: 700;
  margin-bottom: 10px;
}

.fieldDetails-section .fieldDetails_item .fieldDetails_info .fieldDetails_btn {
  margin-top: 15px;
}

.fieldDetails-section .fieldDetails_item .fieldDetails_info .fieldDetails_btn a {
  text-transform: inherit;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 10px;
}

/*********************************
22. Brand Details
*********************************/
.brandDetails-section {
  padding-top: 75px;
  padding-bottom: 75px;
  background-position: left 0 top -50px;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.brandDetails-section .brandDetails_title .title_logo {
  text-align: center;
  margin-bottom: 25px;
}

.brandDetails-section .brandDetails_title .title_logo img {
  max-width: 240px;
}

.brandDetails-section .brandDetails_title h1 {
  font-family: "UTMAvo";
  font-size: 53px;
  color: #0066b3;
  margin-bottom: 15px;
  text-align: center;
}

.brandDetails-section .brandDetails_content {
  margin-bottom: 90px;
}

.brandDetails-section .brandDetails_content p {
  color: #000000;
  text-align: center;
}

.brandDetails-section .brandDetails_text {
  margin-bottom: 90px;
}

.brandDetails-section .brandDetails_text h2 {
  font-family: 'Montserrat', sans-serif;
  color: #0066b3;
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 700;
}

.brandDetails-section .brandDetails_text p {
  font-family: "UTMAvo";
  font-size: 30px;
  color: #747474;
  line-height: 1.2;
}

.brandDetails-section .brandDetails_item {
  text-align: center;
  margin-bottom: 45px;
}

.brandDetails-section .brandDetails_item .brandDetails_logo {
  margin-bottom: 10px;
}

.brandDetails-section .brandDetails_item .brandDetails_logo img {
  width: 100%;
  height: auto;
}

.brandDetails-section .brandDetails_item .brandDetails_info h2 {
  color: #0066b3;
  font-size: 24px;
  font-weight: 700;
}

/*********************************
22. News
*********************************/
.news-section {
  padding: 45px 0;
}

@media (max-width: 992px) {
  .news-section {
    padding: 25px 0 45px;
  }
}

.news-section .section_title h1 {
  font-family: "UTMAvo";
  margin-bottom: 45px;
}

@media (max-width: 992px) {
  .news-section .section_title h1 {
    margin-bottom: 25px;
  }
}

.news-section .news_subtitle p {
  color: #0072bc;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 45px;
}

.news-section .post_item {
  margin-bottom: 35px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.news-section .post_item .thumbnail_image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 258px;
  width: 100%;
}

.news-section .post_item .post_info {
  padding: 15px;
}

.news-section .post_item .post_info p.post_date {
  color: #757575;
  font-size: 14px;
  margin-bottom: 10px;
}

.news-section .post_item .post_info h2 {
  color: #0072bc;
  font-size: 20px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-section .post_item .post_info p.description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.news-section .post_item:hover {
  background-color: #0072bc;
}

.news-section .post_item:hover .post_info p.post_date,
.news-section .post_item:hover .post_info h2,
.news-section .post_item:hover .post_info p.description {
  color: #ffffff;
}

.news-section .news_page_nav .pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news-section .news_page_nav .pagination .page-link {
  border: none;
}

.news-section .entry-title h1 {
  font-family: 'Montserrat', sans-serif;
  color: #0072bc;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 45px;
}

.news-section .news_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.news-section .news_info p {
  margin-bottom: 0;
  margin-right: 10px;
}

.news-section .news_info .post-date {
  font-weight: bold;
  color: #858585;
  font-size: 14px;
}

.news-section .entry-content {
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #000000;
}

.news-section .entry-bottom {
  border-bottom: 1px solid #dedede;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
}

.news-section .entry-image {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto 45px;
}

.news-section .entry-image figcaption {
  background-color: #e8e8e8;
  padding: 10px;
  width: 100%;
  font-size: 15px;
}

.news-section .related-post {
  padding-top: 45px;
}

.news-section .brand_item .brand_text h3, .news-section .brand_item .brand_text p {
  color: #000000;
}

.news-section .brand_item .brand_text h3 {
  font-weight: 700;
}

/*********************************
22. Career
*********************************/
.career-section {
  padding-top: 45px;
  padding-bottom: 75px;
}

.career-section .career_title h1 {
  text-align: center;
  color: #0072bc;
  font-size: 53px;
  margin-bottom: 45px;
}

.career-section .career_content {
  overflow-x: scroll;
}

.career-section .career_content table {
  min-width: 800px;
}

.career-section .career_content table .button a {
  padding: 8px 35px 8px 30px;
  color: #fff;
  font-weight: 700;
}

.career-section .career_content table .button a:hover {
  cursor: pointer;
}

.career-section .career_content table td, .career-section .career_content table th {
  vertical-align: middle;
  color: #000000;
}

.career-section .career_content table .thead-light th {
  font-weight: 700;
}

@media only screen and (max-width: 991px) {
  .main_nav {
    display: none;
  }
  .logo_container {
    width: 181px;
  }
  .hamburger {
    display: block;
  }
  .footer_social ul {
    margin-right: 0;
    margin-left: -5px;
    margin-top: 15px;
  }
}
/*# sourceMappingURL=main_styles.css.map */