/* ===================== Table Content Start ======================= 

Project Name 	:  Stream Recruitment
File 			:  CSS Base
Version 		:  1.0.0
Created     	:  09/14/2022
Author 			:  Pentagon

======================== Table Content End ===================== */
/*-- 1. VARIABLES --*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap");
/*-- 2. MIXIN --*/
@-webkit-keyframes textStroke {
  0% {
    stroke-dasharray: 0 50%;
    stroke-dashoffset: 20px;
  }
  100% {
    stroke-dasharray: 50% 0;
    stroke-dashoffset: -20px;
  }
}
@keyframes textStroke {
  0% {
    stroke-dasharray: 0 50%;
    stroke-dashoffset: 20px;
  }
  100% {
    stroke-dasharray: 50% 0;
    stroke-dashoffset: -20px;
  }
}

@-webkit-keyframes move {
  0% {
    offset-distance: 0%;
  }
  100% {
    offset-distance: 100%;
  }
}

@keyframes move {
  0% {
    offset-distance: 0%;
  }
  100% {
    offset-distance: 100%;
  }
}

/*-- 3. MEDIA QUERIES --*/
/*-- 4. RESET --*/
html {
  scroll-behavior: smooth;
}

body {
  margin: auto;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 30px;
  color: #101643;
  scroll-behavior: smooth;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: #0bb7b9;
  outline: 1px solid #0bb7b9;
}

@media (max-width: 766px) {
  body {
    background-color: #f8f8fb;
  }
}

ul {
  margin: 0;
  padding: 0;
  display: block;
}

li {
  list-style: none;
}

a,
a:hover,
a:focus,
button,
button:focus {
  outline: none !important;
  text-decoration: none;
  color: inherit;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: inherit;
  line-height: inherit;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

p {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  margin-bottom: 15px;
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
  height: auto;
  border-style: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

svg {
  vertical-align: middle;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.is_relative {
  position: relative;
}

.theme_btn_dark {
  --btn-bg: #2894D1;
}

.theme_btn_dark a {
  --width: 180px;
  --height: 50px;
  border: 0;
  position: relative;
  min-width: var(--width);
  min-height: var(--height);
  border-radius: var(--height);
  color: #ffffff;
  background: #101643;
  cursor: pointer;
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 1rem;
}

.theme_btn_dark a .text,
.theme_btn_dark a .icon-container {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.theme_btn_dark a .icon-container {
  --icon-size: 20px;
  position: relative;
  width: var(--icon-size);
  height: var(--icon-size);
  margin-left: 15px;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.theme_btn_dark a .icon-container .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--icon-size);
  height: var(--icon-size);
  -webkit-transition: opacity 250ms ease, -webkit-transform 500ms ease;
  transition: opacity 250ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 250ms ease;
  transition: transform 500ms ease, opacity 250ms ease, -webkit-transform 500ms ease;
}

.theme_btn_dark a .icon-container .icon--left {
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
  opacity: 0;
}

.theme_btn_dark a .icon-container .icon svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  display: block;
}

.theme_btn_dark a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--btn-bg);
  border-radius: var(--height);
  z-index: 1;
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.theme_btn_dark a:hover .text {
  color: #ffffff;
}

.theme_btn_dark a:hover::after {
  -webkit-transform: translateX(70%);
          transform: translateX(70%);
}

.theme_btn_dark a:hover .icon-container {
  -webkit-transform: translateX(125%);
          transform: translateX(125%);
}

.theme_btn_dark a:hover .icon-container .icon--left {
  -webkit-transform: translateX(-70%);
          transform: translateX(-70%);
  opacity: 1;
}

.theme_btn_dark a:hover .icon-container .icon--right {
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
  opacity: 0;
}

/*-- 5. BASIC STYLE --*/
/* font size */
.font14 {
  font-size: 14px;
  line-height: 30px;
}

@media (max-width: 1399px) {
  .font14 {
    font-size: 13px;
    line-height: 28px;
  }
}

.font15 {
  font-size: 15px;
  line-height: 35px;
}

@media (max-width: 1399px) {
  .font15 {
    font-size: 14px;
    line-height: 30px;
  }
}

.font16 {
  font-size: 16px;
  line-height: 35px;
}

.font18 {
  font-size: 18px;
  line-height: 1.5;
}

.font20 {
  font-size: 20px;
  line-height: 1.5;
}

@media (max-width: 1399px) {
  .font20 {
    font-size: 18px;
  }
}

@media (max-width: 766px) {
  .font20 {
    font-size: 16px;
  }
}

.font22 {
  font-size: 22px;
  line-height: 1.5;
}

@media (max-width: 1399px) {
  .font22 {
    font-size: 20px;
  }
}

@media (max-width: 766px) {
  .font22 {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .font22 {
    font-size: 16px;
  }
}

.font24 {
  font-size: 24px;
  line-height: 1.5;
}

.font26 {
  font-size: 26px;
  line-height: 1.5;
}

@media (max-width: 1399px) {
  .font26 {
    font-size: 24px;
  }
}

@media (max-width: 766px) {
  .font26 {
    font-size: 20px;
  }
}

.font30 {
  font-size: 30px;
  line-height: 1.5;
}

@media (max-width: 1399px) {
  .font30 {
    font-size: 26px;
  }
}

@media (max-width: 766px) {
  .font30 {
    font-size: 22px;
  }
}

.font44 {
  font-size: 44px;
  line-height: 1.5;
}

@media (max-width: 1399px) {
  .font44 {
    font-size: 30px;
  }
}

.font50 {
  font-size: 50px;
  line-height: 1.5;
}

@media (max-width: 1399px) {
  .font50 {
    font-size: 30px;
    line-height: 1.4;
  }
}

@media (max-width: 766px) {
  .font50 {
    font-size: 25px;
    line-height: 1.4;
  }
}

.font54 {
  font-size: 54px;
  line-height: 1.5;
}

.font70 {
  font-size: 70px;
  line-height: 80px;
}

/* font waight */
.regular {
  font-weight: 400;
}

.medium {
  font-weight: 600;
}

.semi_bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

/* font color */
.color_white {
  color: #ffffff;
}

.color_dark {
  color: #101643;
}

.base_color {
  color: #0bb7b9;
}

.body_color {
  color: #696969;
}

/* background color */
.bg_blue {
  background-color: #0bb7b9;
}

/* margin */
.m_auto {
  margin: 0 auto;
}

.mb-0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb26 {
  margin-bottom: 26px;
}

.mb30 {
  margin-bottom: 30px;
}

.mt30 {
  margin-top: 30px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.vertical_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main {
  position: relative;
  z-index: 1;
}

.mainContent {
  padding: 100px 0px;
  position: relative;
}

@media (max-width: 991px) {
  .mainContent {
    padding: 70px 0;
  }
}

@media (max-width: 766px) {
  .mainContent {
    padding: 50px 0;
  }
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #E2E2E2;
}

.pt-100 {
  padding-top: 100px;
}

@media (max-width: 991px) {
  .pt-100 {
    padding-top: 50px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}

@media (max-width: 991px) {
  .pb-100 {
    padding-bottom: 50px;
  }
}

.pb-0 {
  padding-bottom: 0;
}

.is_relative {
  position: relative;
}

div.site_loder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 999999;
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}

div.site_loder.load-completed {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}

div.site_loder div {
  text-align: center;
  max-width: 250px !important;
  overflow: hidden;
}

div.site_loder div video {
  max-width: 255px !important;
}

.main_warapper {
  position: relative;
  z-index: 1;
}

/* Buttons */
.more_btns {
  margin-top: 50px;
}

.more_btns_link {
  color: #0bb7b9;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
}

.more_btns_link .icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #0bb7b9;
  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;
  margin-left: 15px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.more_btns_link:hover .icon {
  background-color: #0b8f91;
}

.more_btns_link:hover .icon svg {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.limit_text_twoline {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1280px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 30px;
  }
}

@media (max-width: 766px) {
  .container {
    padding: 0 15px;
  }
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  padding: 15px;
  background-color: transparent;
  z-index: 999;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

@media (max-width: 575px) {
  .header {
    background-color: #ffffff;
  }
}

.header::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  z-index: -1;
}

.header .col {
  padding: 0;
}

.header .left {
  max-width: 250px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.header .left .logo a {
  display: block;
}

@media (max-width: 1399px) {
  .header .left {
    max-width: 200px;
  }
}

.header .center {
  text-align: center;
}

.header .center .menu_bar .menu_bar_nav {
  display: block;
  position: relative;
}

.header .center .menu_bar .menu_bar_nav_item {
  padding: 0px 15px;
  display: inline-block;
}

.header .center .menu_bar .menu_bar_nav_item_link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 0;
  display: block;
  text-transform: uppercase;
}

@media (max-width: 1399px) {
  .header .center .menu_bar .menu_bar_nav_item_link {
    font-size: 13px;
  }
}

.header .center .menu_bar .menu_bar_nav_item_link:hover, .header .center .menu_bar .menu_bar_nav_item_link.active {
  color: #101643;
}

@media (max-width: 991px) {
  .header .center .menu_bar .menu_bar_nav_item_link {
    color: #696969;
    border-bottom: 1px solid #eeeeee;
    padding: 15px 30px;
  }
}

.header .center .menu_bar .menu_bar_nav_item.dropdown {
  position: relative;
}

.header .center .menu_bar .menu_bar_nav_item.dropdown i {
  display: none;
}

.header .center .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu {
  position: absolute;
  display: block !important;
  visibility: hidden;
  opacity: 0;
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  padding: 0;
  border-radius: 0px;
  overflow: hidden;
  margin: 0;
  min-width: 180px;
  border: 0;
}

.header .center .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item {
  display: block;
  height: 100%;
  text-align: left;
}

.header .center .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item_link {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #ffffff;
  color: #000000;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(105, 105, 105, 0.15);
  transition: all 400ms;
  -webkit-transition: all 400ms;
  -o-transition: all 400ms;
  -moz-transition: all 400ms;
  -ms-transition: all 400ms;
}

.header .center .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item_link:hover {
  background-color: #0bb7b9;
  color: #ffffff;
}

@media (max-width: 1399px) {
  .header .center .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item_link {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .header .center .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu_item_link {
    padding: 10px 30px;
  }
}

@media (max-width: 991px) {
  .header .center .menu_bar .menu_bar_nav_item.dropdown .dropdown_menu {
    position: relative;
    height: 0;
  }
}

.header .center .menu_bar .menu_bar_nav_item.dropdown:hover .dropdown_menu {
  visibility: visible;
  opacity: 1;
  height: auto;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

@media (min-width: 1281px) {
  .header .center .menu_bar .menu_bar_nav_item.dropdown.login-button {
    right: 10px;
    position: absolute;
    padding: 0;
    top: 3px;
  }
  .header .center .menu_bar .menu_bar_nav_item.dropdown.login-button > a {
    width: 100%;
    height: 55px;
    background-color: #0bb7b9;
    border-radius: 50px;
    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;
    padding: 0 30px;
  }
  .header .center .menu_bar .menu_bar_nav_item.dropdown.login-button > a:hover {
    background-color: #0b8f91;
    color: #ffffff;
  }
  .header .center .menu_bar .menu_bar_nav_item.dropdown.login-button .dropdown_menu_item {
    text-align: right;
  }
}

@media (max-width: 1399px) {
  .header .center .menu_bar .menu_bar_nav_item.dropdown.login-button > a {
    font-size: 13px;
    height: 50px;
  }
}

@media (max-width: 1280px) {
  .header .center .menu_bar .menu_bar_nav_item.dropdown.login-button > a {
    font-size: 13px;
    height: auto;
  }
}

.header .center .menu_bar .menu_bar_nav_item.dropdown.login-button .dropdown_menu {
  left: auto;
  right: 0;
}

.header .center .menu_bar .menu_bar_nav_item.dropdown.login-button:hover .dropdown_menu {
  visibility: visible;
  opacity: 1;
  height: auto;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

@media (max-width: 1399px) {
  .header .center .menu_bar .menu_bar_nav_item.dropdown.login-button {
    top: 5px;
  }
}

@media (max-width: 1280px) {
  .header .center .menu_bar .menu_bar_nav_item.dropdown.login-button {
    top: auto;
  }
}

@media (max-width: 1024px) {
  .header .center .menu_bar .menu_bar_nav_item {
    padding: 0 12px;
  }
}

@media (max-width: 991px) {
  .header .center .menu_bar .menu_bar_nav_item {
    display: block;
    text-align: left;
    padding: 0;
  }
  .header .center .menu_bar .menu_bar_nav_item:last-child .menu_bar_nav_item_link {
    border: none;
  }
}

@media (max-width: 991px) {
  .header .center .menu_bar {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 0px;
    border-top: 1px solid rgba(112, 112, 112, 0.15);
    display: block;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    transition: all 400ms ease;
    -webkit-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
  }
  .header .center .menu_bar.open-nav {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    visibility: visible;
    opacity: 1;
    overflow: visible;
  }
}

.header .right {
  max-width: 160px;
}

.header .right .nav-icon-5 {
  width: 30px;
  height: 22px;
  margin: 0px;
  margin-right: 20px;
  position: relative;
  cursor: pointer;
  display: none;
}

.header .right .nav-icon-5 span {
  background-color: #101643;
  position: absolute;
  border-radius: 2px;
  -webkit-transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 2px;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
}

.header .right .nav-icon-5 span:nth-child(1) {
  top: 0px;
  left: 0px;
}

.header .right .nav-icon-5 span:nth-child(2) {
  top: 10px;
  left: 0px;
  opacity: 1;
}

.header .right .nav-icon-5 span:nth-child(3) {
  bottom: 0px;
  left: 0px;
}

@media (max-width: 991px) {
  .header .right .nav-icon-5 {
    display: inline-block;
  }
}

.header .right .nav-icon-5.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 13px;
}

.header .right .nav-icon-5.open span:nth-child(2) {
  opacity: 0;
}

.header .right .nav-icon-5.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 13px;
}

.header .right .login_btn {
  display: block;
  width: 100%;
}

.header .right .login_btn_inner {
  text-transform: uppercase;
  font-size: 14px;
  color: #0bb7b9;
  font-weight: 500;
  border: 1px solid #0bb7b9;
  background-color: #ffffff;
  width: 100%;
  height: 55px;
  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;
  border-radius: 50px;
}

.header .right .login_btn_inner span {
  display: block;
}

@media (max-width: 766px) {
  .header .right .login_btn_inner span {
    display: none;
  }
}

.header .right .login_btn_inner i {
  display: none;
}

.header .right .login_btn_inner i svg {
  width: 20px;
  height: 20px;
  fill: #0bb7b9;
}

@media (max-width: 766px) {
  .header .right .login_btn_inner i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header .right .login_btn_inner:hover {
  background-color: rgba(11, 183, 185, 0.15);
  color: #ffffff;
  border-radius: 15px;
  border-color: #ffffff;
}

.header .right .login_btn_inner:hover {
  border-radius: 50px;
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
}

@media (max-width: 1399px) {
  .header .right .login_btn_inner {
    font-size: 13px;
    height: 50px;
  }
}

@media (max-width: 766px) {
  .header .right .login_btn_inner {
    width: 50px;
    height: 50px;
    border-radius: 100%;
  }
}

@media (max-width: 575px) {
  .header .right .login_btn_inner {
    width: 40px;
    height: 40px;
    border-radius: 100%;
  }
  .header .right .login_btn_inner i svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 766px) {
  .header .right .login_btn {
    width: auto;
  }
}

.header .right .user_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header .right .user_btn .user_profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  border-radius: 50px;
  padding-right: 30px;
}

.header .right .user_btn .user_profile .user_img {
  width: 50px;
  height: 50px;
  border: 2px solid #ffffff;
  border-radius: 100%;
  margin-right: 15px;
}

@media (max-width: 766px) {
  .header .right .user_btn .user_profile .user_img {
    margin: auto;
    width: 40px;
    height: 40px;
  }
}

.header .right .user_btn .user_profile .user_title {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #101643;
}

@media (max-width: 1280px) {
  .header .right .user_btn .user_profile .user_title {
    font-size: 11px;
  }
}

@media (max-width: 766px) {
  .header .right .user_btn .user_profile .user_title {
    display: none;
  }
}

@media (max-width: 766px) {
  .header .right .user_btn .user_profile {
    padding: 0;
  }
}

@media (max-width: 1399px) {
  .header .right {
    max-width: 140px;
  }
}

@media (max-width: 991px) {
  .header .right {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 766px) {
  .header .right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.header.follow {
  -webkit-box-shadow: 0px 5px 30px 0px rgba(16, 22, 67, 0.15);
          box-shadow: 0px 5px 30px 0px rgba(16, 22, 67, 0.15);
  background-color: #ffffff;
}

.header.follow::before {
  display: none;
}

.header.follow::after {
  height: 100%;
}

.header.follow .left {
  max-width: 200px;
}

@media (max-width: 766px) {
  .header.follow .center .menu_bar .menu_bar_nav_item.login-button {
    padding: 10px;
  }
}

.header.follow .center .menu_bar .menu_bar_nav_item.login-button a.menu_bar_nav_item_link {
  background-color: #101643;
  color: #ffffff;
}

@media (max-width: 766px) {
  .header.follow .center .menu_bar .menu_bar_nav_item.login-button a.menu_bar_nav_item_link {
    background-color: #0bb7b9;
    border-radius: 50px;
    text-align: center;
  }
}

.header.follow .center .menu_bar .menu_bar_nav_item_link {
  color: #696969;
}

.header.follow .center .menu_bar .menu_bar_nav_item_link.active, .header.follow .center .menu_bar .menu_bar_nav_item_link:hover {
  color: #0bb7b9;
}

.header.follow .right .login_btn_inner {
  color: #ffffff;
  border: 1px solid #0bb7b9;
  background-color: #0bb7b9;
}

.header.follow .right .login_btn_inner:hover {
  background-color: #0b8f91;
  color: #ffffff;
  border-color: #0b8f91;
}

.header.follow .right .login_btn_inner i svg {
  fill: #ffffff;
}

.header.follow .right .user_btn .user_profile {
  border: 1px solid #0bb7b9;
}

.home_slider {
  padding: 0;
  position: relative;
  background-color: #0bb7b9;
}

.home_slider .main_slider .slider_item {
  background-color: #F8F9FD;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0;
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .home_slider .main_slider .slider_item {
    min-height: 700px;
  }
}

.home_slider .main_slider .slider_item::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #2774BA;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(45.67%, rgba(39, 116, 186, 0)), to(rgba(162, 188, 208, 0.8)));
  background: linear-gradient(180deg, rgba(39, 116, 186, 0) 45.67%, rgba(162, 188, 208, 0.8) 100%);
  mix-blend-mode: normal;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: -1;
}

@media (max-width: 766px) {
  .home_slider .main_slider .slider_item::before {
    bottom: auto;
    top: 0;
    height: calc(100vh - 25%);
  }
}

.home_slider .main_slider .slider_item::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000810;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(16.62%, rgba(39, 116, 186, 0)), color-stop(37.9%, rgba(15, 49, 81, 0.2522)), to(rgba(0, 8, 16, 0.97)));
  background: linear-gradient(180deg, rgba(39, 116, 186, 0) 16.62%, rgba(15, 49, 81, 0.2522) 37.9%, rgba(0, 8, 16, 0.97) 100%);
  mix-blend-mode: normal;
  z-index: -1;
}

@media (max-width: 766px) {
  .home_slider .main_slider .slider_item {
    background-color: #0bb7b9;
    background-position: top;
  }
}

.home_slider .main_slider .slider_item .meta_content {
  bottom: 300px;
}

.home_slider .main_slider .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  height: 50px;
  top: 50%;
  direction: ltr;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.home_slider .main_slider .owl-nav [class*='owl-'] {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.7);
  color: #ffffff;
  position: absolute;
  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;
  transition: 400ms;
  -webkit-transition: 400ms;
  -o-transition: 400ms;
  -moz-transition: 400ms;
  -ms-transition: 400ms;
}

.home_slider .main_slider .owl-nav [class*='owl-'].owl-prev {
  left: 50px;
}

.home_slider .main_slider .owl-nav [class*='owl-'].owl-next {
  right: 50px;
}

.home_slider .main_slider .owl-nav [class*='owl-'] img {
  max-width: 13px;
  width: 100%;
}

.home_slider .main_slider .owl-nav [class*='owl-']:hover {
  background: #101643;
  border: 1px solid #101643;
}

@media screen and (min-width: 1500px) and (max-width: 1900px) {
  .home_slider .main_slider .owl-nav [class*='owl-'] {
    width: 35px;
    height: 35px;
  }
  .home_slider .main_slider .owl-nav [class*='owl-'] img {
    max-width: 10px;
  }
}

@media (max-width: 1399px) {
  .home_slider .main_slider .owl-nav [class*='owl-'] {
    width: 35px;
    height: 35px;
  }
  .home_slider .main_slider .owl-nav [class*='owl-'] img {
    max-width: 10px;
  }
}

@media (max-width: 766px) {
  .home_slider .main_slider .owl-nav [class*='owl-'] {
    width: 30px;
    height: 30px;
    position: static;
    bottom: 0;
    display: inline-block;
    margin: 0 5px;
  }
}

@media screen and (min-width: 1500px) and (max-width: 1900px) {
  .home_slider .main_slider .owl-nav {
    height: 35px;
  }
}

@media (max-width: 1399px) {
  .home_slider .main_slider .owl-nav {
    height: 35px;
  }
}

@media (max-width: 766px) {
  .home_slider .main_slider .owl-nav {
    -webkit-transform: initial;
            transform: initial;
    top: auto;
    bottom: 50px;
    text-align: center;
    height: 30px;
  }
}

.home_slider .meta_content {
  text-align: center;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100px;
  z-index: 9;
}

.home_slider .meta_content_text {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.home_slider .meta_content_text .title {
  font-weight: 700;
  margin: 0 auto;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .home_slider .meta_content_text .title {
    margin-bottom: 15px;
  }
}

.home_slider .meta_content_button {
  width: 600px;
  height: 160px;
  border-radius: 150px;
  background-color: rgba(255, 255, 255, 0.95);
  margin: 0px auto;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
}

.home_slider .meta_content_button_item {
  background-color: transparent;
  border-radius: 100px;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.home_slider .meta_content_button_item_inner {
  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;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.home_slider .meta_content_button_item_inner.active {
  color: #0bb7b9;
  z-index: 9;
}

.home_slider .meta_content_button_item span {
  display: block;
}

.home_slider .meta_content_button_item:hover {
  color: #0bb7b9;
}

@media (max-width: 1399px) {
  .home_slider .meta_content_button_item {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 575px) {
  .home_slider .meta_content_button_item {
    font-size: 14px;
    line-height: 24px;
  }
}

.home_slider .meta_content_button .hover_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #ffffff;
  z-index: -1;
  border-radius: 150px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: left 200ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: left 200ms cubic-bezier(0.77, 0, 0.175, 1);
  z-index: -1;
}

@media (max-width: 1599px) {
  .home_slider .meta_content_button {
    width: 600px;
  }
}

@media (max-width: 1399px) {
  .home_slider .meta_content_button {
    width: 500px;
    height: 140px;
  }
}

@media (max-width: 766px) {
  .home_slider .meta_content_button {
    width: 450px;
    padding: 10px;
  }
}

@media (max-width: 575px) {
  .home_slider .meta_content_button {
    width: 100%;
    height: 120px;
  }
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
  .home_slider .meta_content .meta_content_button {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 1399px) {
  .home_slider .meta_content {
    bottom: 50px;
  }
}

@media (max-width: 766px) {
  .home_slider .meta_content {
    padding: 0 30px;
    bottom: 150px;
  }
}

.content_area_top {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.content_area_top::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 25%;
  margin: 0 auto;
  width: 1666px;
  height: 1666px;
  border-radius: 100%;
  background: rgba(107, 111, 166, 0.5);
  mix-blend-mode: normal;
  opacity: 0.15;
  -webkit-filter: blur(250px);
          filter: blur(250px);
  z-index: -1;
}

.content_area_top::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0%;
  margin: 0 auto;
  width: 1666px;
  height: 1666px;
  border-radius: 100%;
  background: rgba(107, 111, 166, 0.5);
  mix-blend-mode: normal;
  opacity: 0.15;
  -webkit-filter: blur(250px);
          filter: blur(250px);
  z-index: -1;
}

.top_shadow {
  position: absolute;
  content: '';
  width: 1173px;
  height: 1173px;
  left: -247px;
  top: -732px;
  background: radial-gradient(50% 50% at 50% 50%, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  mix-blend-mode: luminosity;
  z-index: 2;
}

@media (max-width: 1399px) {
  .top_shadow {
    left: -500px;
    top: -800px;
  }
}

@media (max-width: 766px) {
  .top_shadow {
    display: none;
  }
}

/* about style */
@media (max-width: 991px) {
  .about_area .about_big_title {
    display: none;
  }
}

.about_area .about_heading {
  text-align: center;
}

.about_area .about_heading h1 {
  font-size: 200px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: normal;
}

.about_area .about_heading svg {
  width: 962px;
  height: 242px;
}

.about_area .about_heading svg text {
  font-size: 200px;
  font-weight: 800;
  font-family: 'Roboto', sans-serif;
  stroke: #2774ba;
  stroke-width: 1px;
}

.about_area .about_heading svg .about-anima {
  stroke: #0bb7b9;
  font-size: 200px;
  font-weight: 900;
  opacity: 0;
}

.about_area .about_heading svg .about-anima.stroke-anima {
  -webkit-animation: textStroke 5s alternate;
          animation: textStroke 5s alternate;
  opacity: 1;
}

.about_area .about_image_thumb {
  border-radius: 30px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .about_area .about_image {
    margin-bottom: 30px;
  }
}

.about_area .about_content_inner {
  max-width: 560px;
}

@media (max-width: 991px) {
  .about_area .about_content_inner {
    max-width: 100%;
  }
}

.job_listing {
  padding-top: 130px;
}

@media (max-width: 1399px) {
  .job_listing {
    padding-top: 100px;
  }
}

@media (max-width: 991px) {
  .job_listing {
    padding-top: 80px;
  }
}

@media (max-width: 766px) {
  .job_listing {
    padding-top: 50px;
  }
}

.job_listing .featured-jobs .slider_item {
  border-radius: 15px;
  background-color: #ffffff;
  overflow: hidden;
}

.job_listing .featured-jobs .slider_item_content {
  padding: 30px;
}

.job_listing .featured-jobs .slider_item_content .badge {
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  padding: 6px 15px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.job_listing .featured-jobs .slider_item_content .badge.full {
  background-color: rgba(11, 183, 185, 0.15);
  color: #0bb7b9;
}

.job_listing .featured-jobs .slider_item_content .badge.part {
  background-color: rgba(253, 203, 110, 0.3);
  color: #F5B743;
}

.job_listing .featured-jobs .slider_item_content .title h4 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job_listing .featured-jobs .slider_item_content .lines {
  width: 100%;
  height: 1px;
  background-color: rgba(154, 157, 182, 0.2);
  margin: 15px auto;
  clear: both;
}

.job_listing .featured-jobs .slider_item_content .other_details ul {
  display: block;
}

.job_listing .featured-jobs .slider_item_content .other_details ul li {
  display: inline-block;
  font-size: 14px;
  color: #9A9DB6;
  margin-right: 20px;
}

.job_listing .featured-jobs .slider_item_content .other_details ul li .listing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.job_listing .featured-jobs .slider_item_content .other_details ul li .listing i {
  float: left;
  margin-right: 10px;
}

.job_listing .featured-jobs .slider_item_content .other_details ul li .listing i img {
  width: 14px;
}

@media (max-width: 991px) {
  .job_listing .featured-jobs .slider_item_content .other_details ul li {
    font-size: 12px;
  }
}

.job_listing .featured-jobs .slider_item_content .text_block {
  margin-top: 30px;
}

.job_listing .featured-jobs .slider_item_content .text_block p {
  font-size: 14px;
  color: #6D7394;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job_listing .featured-jobs .slider_item_buttons {
  border-top: 1px solid rgba(154, 157, 182, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.job_listing .featured-jobs .slider_item_buttons::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  width: 1px;
  height: 100%;
  margin: 0 auto;
  background-color: rgba(154, 157, 182, 0.2);
}

.job_listing .featured-jobs .slider_item_buttons > * {
  width: 50%;
  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;
  padding: 20px;
}

.job_listing .featured-jobs .slider_item_buttons a {
  text-transform: uppercase;
  font-size: 14px;
  color: #101643;
  background-color: transparent;
  font-weight: 600;
}

.job_listing .featured-jobs .slider_item_buttons a:hover {
  background-color: #0bb7b9;
  color: #ffffff;
}

@media (max-width: 1399px) {
  .job_listing .featured-jobs .slider_item_buttons a {
    font-size: 13px;
  }
}

.job_listing .featured-jobs .owl-nav {
  position: absolute;
  top: -98px;
  right: 0px;
  margin: 0px auto;
}

.job_listing .featured-jobs .owl-nav [class*='owl-'] {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #0bb7b9;
  color: #ffffff;
  font-size: 20px;
  border: none;
  transition: 400ms;
  -webkit-transition: 400ms;
  -o-transition: 400ms;
  -moz-transition: 400ms;
  -ms-transition: 400ms;
  margin-right: 15px;
}

.job_listing .featured-jobs .owl-nav [class*='owl-']:last-child {
  margin-right: 0;
}

.job_listing .featured-jobs .owl-nav [class*='owl-'] img {
  width: 18px;
}

.job_listing .featured-jobs .owl-nav [class*='owl-'].disabled {
  opacity: .30;
}

.job_listing .featured-jobs .owl-nav [class*='owl-']:hover {
  background-color: #0b8f91;
}

@media (max-width: 991px) {
  .job_listing .featured-jobs .owl-nav [class*='owl-'] {
    position: relative;
    margin-right: 15px;
    margin-top: 30px;
    width: 40px;
    height: 40px;
  }
  .job_listing .featured-jobs .owl-nav [class*='owl-']:last-child {
    margin-right: 0;
  }
  .job_listing .featured-jobs .owl-nav [class*='owl-'] img {
    width: 16px;
  }
  .job_listing .featured-jobs .owl-nav [class*='owl-'].owl-prev {
    right: 0;
    left: 0;
  }
  .job_listing .featured-jobs .owl-nav [class*='owl-'].owl-next {
    right: 0;
    left: 0;
    top: auto;
  }
}

@media (max-width: 991px) {
  .job_listing .featured-jobs .owl-nav {
    position: relative;
    top: auto;
    bottom: 0px;
    left: 0;
    text-align: center;
    right: 0;
    -webkit-transform: initial;
            transform: initial;
    margin: 0px auto;
  }
}

.job_listing .featured-jobs .owl-dots {
  text-align: right;
  margin-top: 10px;
}

.job_listing .featured-jobs .owl-dots .owl-dot {
  outline: none;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: rgba(11, 183, 185, 0.5);
  background: transparent;
  border: 1px solid #0bb7b9;
  border-radius: 100%;
  transition: 400ms;
  -webkit-transition: 400ms;
  -o-transition: 400ms;
  -moz-transition: 400ms;
  -ms-transition: 400ms;
}

.job_listing .featured-jobs .owl-dots .owl-dot.active {
  background: #0bb7b9;
  width: 8px;
}

.services_listing {
  padding-bottom: 100px;
}

@media (max-width: 991px) {
  .services_listing {
    padding-bottom: 50px;
  }
}

.services_listing_box_items_inner {
  border-radius: 30px;
  background-color: #ffffff;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  padding: 50px 50px;
  margin-bottom: 20px;
  cursor: pointer;
  z-index: 9;
  position: relative;
  overflow: hidden;
}

.services_listing_box_items_inner_icon {
  width: 110px;
  height: 110px;
  border-radius: 100%;
  background-color: rgba(170, 206, 229, 0.15);
  -webkit-box-shadow: transparent;
          box-shadow: transparent;
  margin-bottom: 30px;
  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-shadow: none;
          box-shadow: none;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
}

.services_listing_box_items_inner_icon img {
  max-width: 50px;
}

@media (max-width: 1399px) {
  .services_listing_box_items_inner_icon {
    width: 90px;
    height: 90px;
  }
  .services_listing_box_items_inner_icon img {
    max-width: 40px;
  }
}

.services_listing_box_items_inner_content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #101643;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .services_listing_box_items_inner_content h4 {
    font-size: 18px;
  }
}

.services_listing_box_items_inner_content p {
  color: #696969;
  font-size: 15px;
  line-height: 30px;
  margin: 0 auto;
}

@media (max-width: 1399px) {
  .services_listing_box_items_inner_content p {
    font-size: 14px;
  }
}

.services_listing_box_items_inner:hover {
  background-color: #0bb7b9;
  -webkit-filter: drop-shadow(0px 30px 60px rgba(40, 148, 209, 0.29));
          filter: drop-shadow(0px 30px 60px rgba(40, 148, 209, 0.29));
  z-index: 8;
}

.services_listing_box_items_inner:hover .services_listing_box_items_inner_icon {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 30px 60px #138889;
          box-shadow: 0px 30px 60px #138889;
}

.services_listing_box_items_inner:hover .services_listing_box_items_inner_content h4,
.services_listing_box_items_inner:hover .services_listing_box_items_inner_content p {
  color: #ffffff;
}

@media (max-width: 1399px) {
  .services_listing_box_items_inner {
    padding: 30px;
  }
}

.services_listing .more_btns {
  position: absolute;
  right: 0;
  top: -2px;
  margin: 0;
}

@media (max-width: 1399px) {
  .services_listing .more_btns {
    top: -6px;
  }
}

@media (max-width: 766px) {
  .services_listing .more_btns {
    position: static;
    margin-top: 30px;
  }
  .services_listing .more_btns a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 766px) {
  .clients_listing h3 {
    text-align: center;
  }
}

.clients_listing .clients_slider .slider_item .image_box {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border: 1px solid #F0F1F6;
}

.clients_listing .clients_slider .owl-nav {
  position: absolute;
  top: -98px;
  right: 0px;
  margin: 0px auto;
}

.clients_listing .clients_slider .owl-nav [class*='owl-'] {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #0bb7b9;
  color: #ffffff;
  font-size: 20px;
  border: none;
  transition: 400ms;
  -webkit-transition: 400ms;
  -o-transition: 400ms;
  -moz-transition: 400ms;
  -ms-transition: 400ms;
  margin-right: 15px;
}

.clients_listing .clients_slider .owl-nav [class*='owl-']:last-child {
  margin-right: 0;
}

.clients_listing .clients_slider .owl-nav [class*='owl-'] img {
  width: 18px;
}

.clients_listing .clients_slider .owl-nav [class*='owl-'].disabled {
  opacity: .30;
}

.clients_listing .clients_slider .owl-nav [class*='owl-']:hover {
  background-color: #0b8f91;
}

@media (max-width: 991px) {
  .clients_listing .clients_slider .owl-nav [class*='owl-'] {
    position: relative;
    margin-right: 15px;
    margin-top: 30px;
    width: 40px;
    height: 40px;
  }
  .clients_listing .clients_slider .owl-nav [class*='owl-']:last-child {
    margin-right: 0;
  }
  .clients_listing .clients_slider .owl-nav [class*='owl-'] img {
    width: 16px;
  }
  .clients_listing .clients_slider .owl-nav [class*='owl-'].owl-prev {
    right: 0;
    left: 0;
  }
  .clients_listing .clients_slider .owl-nav [class*='owl-'].owl-next {
    right: 0;
    left: 0;
    top: auto;
  }
}

@media (max-width: 991px) {
  .clients_listing .clients_slider .owl-nav {
    position: relative;
    top: auto;
    bottom: 0px;
    left: 0;
    text-align: center;
    right: 0;
    -webkit-transform: initial;
            transform: initial;
    margin: 0px auto;
  }
}

.clients_listing .clients_slider .owl-dots {
  text-align: right;
  margin-top: 10px;
}

.clients_listing .clients_slider .owl-dots .owl-dot {
  outline: none;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: rgba(11, 183, 185, 0.5);
  background: transparent;
  border: 1px solid #0bb7b9;
  border-radius: 100%;
  transition: 400ms;
  -webkit-transition: 400ms;
  -o-transition: 400ms;
  -moz-transition: 400ms;
  -ms-transition: 400ms;
}

.clients_listing .clients_slider .owl-dots .owl-dot.active {
  background: #0bb7b9;
  width: 8px;
}

@media (max-width: 766px) {
  .clients_listing .clients_slider .owl-dots {
    text-align: center;
  }
}

.clients_listing .more_btns .more_btns_link {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.quick_contact {
  padding: 150px 0 160px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.quick_contact .lines {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.quick_contact_content p {
  max-width: 550px;
  line-height: 30px;
}

.quick_contact_content .form_btn {
  display: inline-block;
  margin-top: 30px;
}

.quick_contact_content .form_btn a {
  display: block;
  background-color: #0bb7b9;
  border: 1px solid transparent;
  color: #ffffff;
  border-radius: 50px;
  padding: 20px 50px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.quick_contact_content .form_btn a:hover {
  border-radius: 50px;
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
}

@media (max-width: 1399px) {
  .quick_contact_content .form_btn a {
    padding: 15px 30px;
  }
}

@media (max-width: 1399px) {
  .quick_contact {
    padding: 100px 0 110px;
  }
}

@media (max-width: 991px) {
  .quick_contact {
    padding: 60px 0 70px;
  }
}

.page_header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  position: relative;
  padding: 203px 0 114px;
  z-index: 9;
  overflow: hidden;
}

.page_header::before {
  background-color: #0bb7b9;
  content: "";
  left: 0;
  height: 100%;
  opacity: 0.55;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.page_header::after {
  position: absolute;
  content: '';
  width: 1173px;
  height: 1173px;
  left: -247px;
  top: -732px;
  background: radial-gradient(50% 50% at 50% 50%, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  mix-blend-mode: luminosity;
  z-index: -1;
  opacity: 1;
}

@media (max-width: 1399px) {
  .page_header::after {
    left: -500px;
    top: -800px;
  }
}

.page_header_content {
  text-align: center;
}

.page_header_content .title {
  color: #ffffff;
  max-width: 550px;
  line-height: 1.4;
}

.page_header_content .breadcrumb-area {
  margin-bottom: 0;
  display: none;
}

.page_header_content .breadcrumb-area .breadcrumb {
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: unset;
      flex-wrap: unset;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
  padding: 0;
}

.page_header_content .breadcrumb-area .breadcrumb li {
  color: #101643;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.4px;
  text-transform: capitalize;
}

.page_header_content .breadcrumb-area .breadcrumb li.breadcrumb-sep {
  margin: 0 7px 0 9px;
  vertical-align: 0;
}

.page_header_content .breadcrumb-area .breadcrumb li a {
  color: #ffffff;
}

.page_header_quick_menu {
  position: relative;
}

.page_header_quick_menu_area {
  text-align: center;
  display: block;
}

.page_header_quick_menu_area li {
  display: inline-block;
  padding: 0 5px;
}

.page_header_quick_menu_area li a {
  border: 1px solid white;
  background-color: #ffffff;
  padding: 15px 50px;
  border-radius: 50px;
  color: #0bb7b9;
  display: inline-block;
  -webkit-box-shadow: transparent;
          box-shadow: transparent;
  font-size: 16px;
  letter-spacing: .5px;
  font-weight: 500;
}

.page_header_quick_menu_area li a .icon {
  margin-left: 15px;
}

.page_header_quick_menu_area li a .icon svg {
  stroke: #0bb7b9;
}

.page_header_quick_menu_area li a:hover {
  background-color: #0b8f91;
  color: #ffffff;
}

.page_header_quick_menu_area li a:hover .icon svg {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  stroke: #ffffff;
}

@media (max-width: 1399px) {
  .page_header {
    padding: 160px 0 50px;
  }
}

.about_inner_page {
  position: relative;
  padding-bottom: 0;
}

.about_inner_page::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 25%;
  margin: 0 auto;
  width: 100%;
  height: 1666px;
  border-radius: 100%;
  background: rgba(107, 111, 166, 0.5);
  mix-blend-mode: normal;
  opacity: 0.15;
  -webkit-filter: blur(250px);
          filter: blur(250px);
  z-index: -1;
}

.about_inner_page .about_image {
  margin-bottom: 30px;
}

.about_inner_page .about_image_thumb {
  overflow: hidden;
}

.about_inner_page .about_image_thumb img {
  border-radius: 10px;
}

.about_inner_page .about_image_thumb .images1 {
  margin-top: 50px;
  margin-bottom: 20px;
}

.about_inner_page .about_image_thumb .images2 {
  margin-bottom: 20px;
}

.about_inner_page .about_image_thumb .images3 {
  margin-bottom: 0;
}

.about_inner_page .about_image_thumb .images4 {
  margin-bottom: 0;
}

.about_inner_page .about_content_inner {
  padding-left: 50px;
}

@media (max-width: 991px) {
  .about_inner_page .about_content_inner {
    padding: 0;
  }
}

.about_inner_content {
  margin-top: 100px;
  position: relative;
}

.about_inner_content .box_item_inner {
  border-radius: 30px;
  background-color: #ffffff;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  padding: 50px 50px;
  z-index: 9;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.about_inner_content .box_item_inner.top0 {
  margin-top: 0;
}

.about_inner_content .box_item_inner.top100 {
  margin-top: 100px;
}

@media (max-width: 991px) {
  .about_inner_content .box_item_inner.top100 {
    margin-top: 0;
  }
}

.about_inner_content .box_item_inner.top200 {
  margin-top: 200px;
}

@media (max-width: 991px) {
  .about_inner_content .box_item_inner.top200 {
    margin-top: 0;
  }
}

.about_inner_content .box_item_inner_icon {
  width: 110px;
  height: 110px;
  border-radius: 100%;
  background-color: rgba(170, 206, 229, 0.15);
  -webkit-box-shadow: transparent;
          box-shadow: transparent;
  margin-bottom: 30px;
  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-shadow: none;
          box-shadow: none;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}

.about_inner_content .box_item_inner_icon img {
  max-width: 50px;
}

@media (max-width: 1399px) {
  .about_inner_content .box_item_inner_icon {
    width: 90px;
    height: 90px;
  }
  .about_inner_content .box_item_inner_icon img {
    max-width: 40px;
  }
}

@media (max-width: 991px) {
  .about_inner_content .box_item_inner_icon {
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

.about_inner_content .box_item_inner_content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #101643;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .about_inner_content .box_item_inner_content h4 {
    font-size: 18px;
  }
}

.about_inner_content .box_item_inner_content p {
  color: #696969;
  font-size: 15px;
  line-height: 30px;
  margin: 0 auto;
}

@media (max-width: 1399px) {
  .about_inner_content .box_item_inner_content p {
    font-size: 14px;
  }
}

.about_inner_content .box_item_inner:hover {
  background-color: #0bb7b9;
  -webkit-filter: drop-shadow(0px 30px 60px rgba(40, 148, 209, 0.29));
          filter: drop-shadow(0px 30px 60px rgba(40, 148, 209, 0.29));
  z-index: 8;
}

.about_inner_content .box_item_inner:hover .box_item_inner_icon {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 30px 60px #138889;
          box-shadow: 0px 30px 60px #138889;
}

.about_inner_content .box_item_inner:hover .box_item_inner_content h4,
.about_inner_content .box_item_inner:hover .box_item_inner_content p {
  color: #ffffff;
}

@media (max-width: 1399px) {
  .about_inner_content .box_item_inner {
    padding: 30px;
  }
}

@media (max-width: 991px) {
  .about_inner_content .box_item_inner {
    margin-bottom: 20px;
    text-align: center;
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .about_inner_content {
    margin-top: 50px;
  }
}

.about_inner_why_us .why_us_title_section .left_content {
  max-width: 100%;
}

@media (max-width: 991px) {
  .about_inner_why_us .why_us_title_section .left_content {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .about_inner_why_us .why_us_title_section {
    margin-bottom: 15px;
  }
}

.about_inner_why_us .why_us_steps_content span {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  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;
  margin-left: 15px;
}

.about_inner_why_us .why_us_steps_content span::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background-color: #0bb7b9;
  z-index: -1;
  border-radius: 5px;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}

.about_inner_why_us .why_us_steps_content span::after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background-color: transparent;
  border: 1px solid #0bb7b9;
  z-index: -1;
  border-radius: 5px;
  -webkit-transform: rotate(36deg);
          transform: rotate(36deg);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}

.about_inner_why_us .why_us_steps_content span img {
  max-width: 35px;
}

@media (max-width: 991px) {
  .about_inner_why_us .why_us_steps_content span {
    width: 60px;
    height: 60px;
  }
  .about_inner_why_us .why_us_steps_content span::before, .about_inner_why_us .why_us_steps_content span::after {
    width: 60px;
    height: 60px;
  }
  .about_inner_why_us .why_us_steps_content span img {
    max-width: 30px;
  }
}

.about_inner_why_us .why_us_steps_content p {
  max-width: 319px;
  margin: 0;
}

.about_inner_why_us .why_us_steps_content:hover span::after {
  -webkit-transform: rotate(-36deg);
          transform: rotate(-36deg);
}

@media (max-width: 991px) {
  .about_inner_why_us .why_us_steps_content {
    text-align: center;
    margin-top: 50px;
  }
  .about_inner_why_us .why_us_steps_content span {
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .about_inner_why_us .why_us_steps_content p {
    max-width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 766px) {
  .about_inner_why_us .why_us_steps_content p {
    max-width: 100%;
  }
}

.services_content_inner:nth-child(odd) {
  background: rgba(188, 192, 225, 0.15);
}

.services_content_inner:nth-child(odd) .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.services_content_inner:nth-child(odd) .row .service_item_content_inner {
  padding-right: 50px;
  padding-left: 0;
}

@media (max-width: 766px) {
  .services_content_inner:nth-child(odd) .row .service_item_content_inner {
    padding: 0;
  }
}

.services_content_inner .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services_content_inner .service_item_content_inner {
  padding-left: 50px;
}

.services_content_inner .service_item_content_inner ul {
  margin: 30px 0;
}

.services_content_inner .service_item_content_inner ul li {
  padding-bottom: 10px;
  padding-left: 30px;
  font-size: 14px;
  position: relative;
}

.services_content_inner .service_item_content_inner ul li::before {
  position: absolute;
  content: '';
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border: 1px solid #0bb7b9;
  border-radius: 100%;
}

.services_content_inner .service_item_content_inner ul li::after {
  position: absolute;
  content: '';
  left: 3px;
  top: 14px;
  width: 4px;
  height: 4px;
  background-color: #0bb7b9;
  border-radius: 100%;
}

@media (max-width: 766px) {
  .services_content_inner .service_item_content_inner {
    padding: 0;
  }
}

.services_content_inner .service_item_image_img_box {
  border-radius: 15px;
  overflow: hidden;
}

@media (max-width: 766px) {
  .services_content_inner .service_item_image_img_box {
    margin-bottom: 30px;
  }
}

.services_content_inner_industries {
  position: relative;
}

.services_content_inner_industries .main_title {
  max-width: 550px;
  margin: 0 auto;
}

.services_content_inner_industries .services_listing_details {
  position: relative;
}

.services_content_inner_industries .services_listing_details::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 15%;
  margin: 0 auto;
  width: 1666px;
  height: 1666px;
  border-radius: 100%;
  background: rgba(107, 111, 166, 0.5);
  mix-blend-mode: normal;
  opacity: 0.15;
  -webkit-filter: blur(250px);
          filter: blur(250px);
  z-index: -1;
}

.services_content_inner_industries .services_listing_details .services_listing_box_items {
  margin-bottom: 20px;
}

.services_content_inner_industries .services_listing_details .services_listing_box_items .services_listing_box_items_inner {
  border-radius: 15px;
  background-color: #ffffff;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  padding: 30px;
  height: 100%;
  margin: 0;
  cursor: pointer;
  z-index: 9;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services_content_inner_industries .services_listing_details .services_listing_box_items .services_listing_box_items_inner .services_listing_box_items_inner_icon {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background-color: rgba(19, 136, 137, 0.15);
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 0px;
  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-flex: 0;
      -ms-flex: none;
          flex: none;
  box-shadow: none;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
}

.services_content_inner_industries .services_listing_details .services_listing_box_items .services_listing_box_items_inner .services_listing_box_items_inner_icon img {
  max-width: 40px;
}

.services_content_inner_industries .services_listing_details .services_listing_box_items .services_listing_box_items_inner .services_listing_box_items_inner_content {
  padding-left: 30px;
}

.services_content_inner_industries .services_listing_details .services_listing_box_items .services_listing_box_items_inner .services_listing_box_items_inner_content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #101643;
  margin-bottom: 0px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .services_content_inner_industries .services_listing_details .services_listing_box_items .services_listing_box_items_inner .services_listing_box_items_inner_content h4 {
    font-size: 16px;
  }
}

.services_content_inner_industries .services_listing_details .services_listing_box_items .services_listing_box_items_inner .services_listing_box_items_inner_content p {
  color: #696969;
  font-size: 15px;
  line-height: 30px;
  margin: 0 auto;
  display: none;
}

.services_content_inner_industries .services_listing_details .services_listing_box_items .services_listing_box_items_inner:hover {
  background-color: #0bb7b9;
  -webkit-filter: drop-shadow(0px 30px 60px rgba(40, 148, 209, 0.29));
          filter: drop-shadow(0px 30px 60px rgba(40, 148, 209, 0.29));
  z-index: 8;
}

.services_content_inner_industries .services_listing_details .services_listing_box_items .services_listing_box_items_inner:hover .services_listing_box_items_inner_icon {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 30px 60px #138889;
          box-shadow: 0px 30px 60px #138889;
}

.services_content_inner_industries .services_listing_details .services_listing_box_items .services_listing_box_items_inner:hover .services_listing_box_items_inner_content h4,
.services_content_inner_industries .services_listing_details .services_listing_box_items .services_listing_box_items_inner:hover .services_listing_box_items_inner_content p {
  color: #ffffff;
}

@media (max-width: 766px) {
  .contact_page .mb60 {
    margin-bottom: 0;
  }
}

.contact_page .contact_details {
  position: relative;
  padding-bottom: 60px;
}

.contact_page .contact_details a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}

.contact_page .contact_details a i {
  float: left;
  margin-right: 15px;
  border: 1px solid #0bb7b9;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background-color: #0bb7b9;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  position: relative;
}

.contact_page .contact_details a i svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  margin: 0px auto;
}

@media (max-width: 575px) {
  .contact_page .contact_details a i {
    width: 50px;
    height: 50px;
  }
  .contact_page .contact_details a i svg {
    width: 18px;
    height: 18px;
  }
}

.contact_page .contact_details a .cnt-details p {
  font-size: 14px;
  text-transform: uppercase;
  color: #0f0f10;
  font-weight: 600;
  margin: 0;
}

.contact_page .contact_details a .cnt-details h5 {
  color: #0bb7b9;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

@media (max-width: 1399px) {
  .contact_page .contact_details a .cnt-details h5 {
    font-size: 14px;
  }
}

.contact_page .contact_details:hover a i {
  border-radius: 20px;
}

@media (max-width: 575px) {
  .contact_page .contact_details {
    padding-bottom: 35px;
  }
}

.contact_page .contact_details_left h6 {
  font-size: 15px;
  font-weight: 600;
  color: #0bb7b9;
  margin-bottom: 0px;
}

@media (max-width: 766px) {
  .contact_page .contact_details_left h6 {
    color: #101643;
  }
}

.contact_page .contact_details_left h2 {
  font-size: 30px;
  color: #101643;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
  padding-bottom: 25px;
  display: inline-block;
}

@media (max-width: 766px) {
  .contact_page .contact_details_left h2 {
    font-size: 26px;
  }
}

.contact_page .contact_details_left p {
  font-size: 15px;
  line-height: 30px;
  font-weight: 500;
}

.contact_page .contact_details_right .contact-form-out {
  display: block;
}

.contact_page .contact_details_right .contact-form-out input {
  height: 70px;
  width: 100%;
  border: none;
  background: #eef3f7;
  outline: none;
  padding: 0 15px;
  border-radius: 0;
}

.contact_page .contact_details_right .contact-form-out input:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact_page .contact_details_right .contact-form-out textarea {
  width: 100%;
  min-height: 150px;
  border: none;
  background: #eef3f7;
  outline: none;
  padding: 15px;
  border-radius: 0;
}

.contact_page .contact_details_right .contact-form-out textarea:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact_page .contact_details_right .contact-form-out .submit .button {
  border: 1px solid #0bb7b9;
  background: #0bb7b9;
  padding: 10px 30px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  width: auto;
  height: 60px;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  color: #ffffff;
}

.contact_page .contact_details_right .contact-form-out .submit .button:hover {
  background: #0b8f91;
  color: #ffffff;
}

@media (max-width: 575px) {
  .contact_page .contact_details_right .contact-form-out .submit .button {
    height: 50px;
  }
}

.location_map {
  padding: 0;
}

.location_map iframe {
  width: 100%;
  height: 450px;
}

@media (max-width: 991px) {
  .location_map iframe {
    height: 400px;
  }
}

.footer {
  padding: 100px 15px;
}

@media (max-width: 991px) {
  .footer {
    padding: 50px 15px;
  }
}

.footer .footer-description .logo {
  display: block;
}

.footer .footer-description .logo img {
  max-width: 230px;
}

@media (max-width: 991px) {
  .footer .footer-description .logo {
    text-align: center;
  }
  .footer .footer-description .logo img {
    max-width: 180px;
  }
}

.footer .footer-description p {
  max-width: 380px;
}

@media (max-width: 991px) {
  .footer .footer-description p {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }
}

.footer .footer-description .social-icons {
  text-align: left;
  margin-top: 30px;
}

.footer .footer-description .social-icons ul {
  display: block;
}

.footer .footer-description .social-icons ul li {
  display: inline-block;
  padding: 0 5px;
}

.footer .footer-description .social-icons ul li:first-child {
  padding-left: 0;
}

.footer .footer-description .social-icons ul li a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 16px;
  text-align: center;
  background-color: #101643;
  color: #ffffff;
  border-radius: 100%;
}

.footer .footer-description .social-icons ul li a:hover {
  background-color: #0b8f91;
  color: #ffffff;
}

@media (max-width: 991px) {
  .footer .footer-description .social-icons ul li:first-child {
    padding-left: 5px;
  }
}

@media (max-width: 991px) {
  .footer .footer-description .social-icons {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .footer .footer-description {
    margin-bottom: 30px;
  }
}

.footer .footer_links {
  padding-left: 30px;
}

.footer .footer_links ul {
  margin-top: 20px;
}

.footer .footer_links ul li {
  padding-bottom: 15px;
}

.footer .footer_links ul li:last-child {
  padding-bottom: 0;
}

.footer .footer_links ul li a {
  color: #696969;
}

.footer .footer_links ul li:hover a {
  color: #0bb7b9;
}

@media (max-width: 991px) {
  .footer .footer_links ul {
    display: block;
    text-align: center;
  }
  .footer .footer_links ul li {
    display: inline-block;
    padding: 0 15px;
  }
  .footer .footer_links ul li a {
    line-height: 30px;
    display: block;
  }
}

@media (max-width: 575px) {
  .footer .footer_links ul li {
    display: block;
  }
}

@media (max-width: 991px) {
  .footer .footer_links {
    padding: 0;
    padding-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(150, 150, 150, 0.2);
  }
  .footer .footer_links h4 {
    text-align: center;
  }
}

.footer .footer_contact {
  padding-left: 100px;
}

.footer .footer_contact ul {
  margin-top: 20px;
}

.footer .footer_contact ul li {
  padding-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: #696969;
}

.footer .footer_contact ul li:last-child {
  padding-bottom: 0;
}

.footer .footer_contact ul li::before {
  position: absolute;
  content: '';
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
}

.footer .footer_contact ul li:nth-child(1)::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTciIHZpZXdCb3g9IjAgMCAxNiAxNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzE3Ml80MzkpIj4KPHBhdGggZD0iTTE0IDcuMjcwMDJDMTQgMTEuOTM2NyA4IDE1LjkzNjcgOCAxNS45MzY3QzggMTUuOTM2NyAyIDExLjkzNjcgMiA3LjI3MDAyQzIgNS42Nzg3MiAyLjYzMjE0IDQuMTUyNiAzLjc1NzM2IDMuMDI3MzhDNC44ODI1OCAxLjkwMjE2IDYuNDA4NyAxLjI3MDAyIDggMS4yNzAwMkM5LjU5MTMgMS4yNzAwMiAxMS4xMTc0IDEuOTAyMTYgMTIuMjQyNiAzLjAyNzM4QzEzLjM2NzkgNC4xNTI2IDE0IDUuNjc4NzIgMTQgNy4yNzAwMloiIHN0cm9rZT0iIzEwMTY0MyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik04IDkuMjcwMDJDOS4xMDQ1NyA5LjI3MDAyIDEwIDguMzc0NTkgMTAgNy4yNzAwMkMxMCA2LjE2NTQ1IDkuMTA0NTcgNS4yNzAwMiA4IDUuMjcwMDJDNi44OTU0MyA1LjI3MDAyIDYgNi4xNjU0NSA2IDcuMjcwMDJDNiA4LjM3NDU5IDYuODk1NDMgOS4yNzAwMiA4IDkuMjcwMDJaIiBzdHJva2U9IiMxMDE2NDMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzE3Ml80MzkiPgo8cmVjdCB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9IndoaXRlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDAuNjAzNTE2KSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=");
}

.footer .footer_contact ul li:nth-child(2)::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxOCAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjkxMDQgNC4yMTI0NkMxMS42NTg2IDQuMzY1NSAxMi4zNDYyIDQuNzQ5MTUgMTIuODg1MiA1LjMxNDI4QzEzLjQyNDIgNS44Nzk0MSAxMy43OTAxIDYuNjAwMzMgMTMuOTM2MSA3LjM4NDc2TTEwLjkxMDQgMUMxMi40NjQ4IDEuMTgxMDUgMTMuOTE0MyAxLjkxMDg3IDE1LjAyMDkgMy4wNjk2M0MxNi4xMjc1IDQuMjI4MzkgMTYuODI1NCA1Ljc0NzIyIDE3IDcuMzc2NzNNMTYuMjM0IDEzLjc4NTZWMTYuMTk0OUMxNi4yMzQ5IDE2LjQxODYgMTYuMTkxMiAxNi42NCAxNi4xMDU3IDE2Ljg0NDlDMTYuMDIwMyAxNy4wNDk5IDE1Ljg5NDkgMTcuMjMzOCAxNS43Mzc3IDE3LjM4NUMxNS41ODA1IDE3LjUzNjIgMTUuMzk0OSAxNy42NTE0IDE1LjE5MjggMTcuNzIzQzE0Ljk5MDggMTcuNzk0NyAxNC43NzY2IDE3LjgyMTMgMTQuNTY0MiAxNy44MDEyQzEyLjIwNzEgMTcuNTMyNiA5Ljk0Mjk3IDE2LjY4ODIgNy45NTM3MSAxNS4zMzU2QzYuMTAyOTUgMTQuMTAyNSA0LjUzMzg0IDEyLjQ1NzQgMy4zNTc3OSAxMC41MTY5QzIuMDYzMjYgOC40MjE3NSAxLjI1NzY1IDYuMDM2MzMgMS4wMDYyMiAzLjU1MzlDMC45ODcwNzYgMy4zMzE4MiAxLjAxMjI1IDMuMTA3OTggMS4wODAxNCAyLjg5NjY2QzEuMTQ4MDIgMi42ODUzMyAxLjI1NzEzIDIuNDkxMTMgMS40MDA1MiAyLjMyNjQ0QzEuNTQzOTEgMi4xNjE3NSAxLjcxODQzIDIuMDMwMTYgMS45MTI5OCAxLjk0MDA2QzIuMTA3NTMgMS44NDk5NiAyLjMxNzg1IDEuODAzMzIgMi41MzA1MyAxLjgwMzExSDQuODI4NDlDNS4yMDAyMiAxLjc5OTI4IDUuNTYwNjEgMS45MzczIDUuODQyNDcgMi4xOTE0NUM2LjEyNDMzIDIuNDQ1NiA2LjMwODQzIDIuNzk4NTMgNi4zNjA0NiAzLjE4NDQ3QzYuNDU3NDUgMy45NTU1MiA2LjYzNzMyIDQuNzEyNTggNi44OTY2NSA1LjQ0MTIyQzYuOTk5NzEgNS43Mjg2OCA3LjAyMjAxIDYuMDQxMDggNi45NjA5MiA2LjM0MTQyQzYuODk5ODMgNi42NDE3NiA2Ljc1NzkgNi45MTc0NCA2LjU1MTk1IDcuMTM1OEw1LjU3OTE1IDguMTU1NzVDNi42Njk1OCAxMC4xNjY0IDguMjU3MzkgMTEuODMxMiAxMC4xNzUxIDEyLjk3NDRMMTEuMTQ3OSAxMS45NTQ1QzExLjM1NjEgMTEuNzM4NiAxMS42MTkxIDExLjU4OTcgMTEuOTA1NSAxMS41MjU3QzEyLjE5MiAxMS40NjE2IDEyLjQ4OTkgMTEuNDg1IDEyLjc2NDEgMTEuNTkzMUMxMy40NTkxIDExLjg2NSAxNC4xODExIDEyLjA1MzYgMTQuOTE2NSAxMi4xNTUzQzE1LjI4ODYgMTIuMjEwMyAxNS42Mjg0IDEyLjQwNjggMTUuODcxMyAxMi43MDc0QzE2LjExNDMgMTMuMDA4IDE2LjI0MzMgMTMuMzkxNyAxNi4yMzQgMTMuNzg1NloiIHN0cm9rZT0iIzEwMTY0MyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
}

.footer .footer_contact ul li:nth-child(3)::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxOCAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzMxMF8xNSkiPgo8cGF0aCBkPSJNMTcuNDg5MSAxNC45MTk3QzE3LjYzNDcgMTQuOTE5NyAxNy43NTI3IDE0LjgwMTcgMTcuNzUyNyAxNC42NTZWNy4zMjc0M0MxNy43NTI3IDYuNjQxNSAxNy4xOTQ3IDYuMDgzNDMgMTYuNTA4NyA2LjA4MzQzSDE2LjUwODJWNS4zNzA1N0MxNi41MDgyIDQuODg1NzYgMTYuMTEzOCA0LjQ5MTM0IDE1LjYyOSA0LjQ5MTM0SDE1LjQxODFWMy4xNzc2M0MxNS40MTgxIDIuOTc4MjIgMTUuMzQ5IDIuNzg5NDYgMTUuMjIyNCAyLjYzODQ3QzE1LjIyMjIgMi42MzgxOSAxNS4yMjE5IDIuNjM3OTEgMTUuMjIxNyAyLjYzNzU5QzE1LjIwNTkgMi42MTg4MiAxNS4xODk0IDIuNjAwNTQgMTUuMTcxOCAyLjU4Mjk5TDEzLjMyODMgMC43MzkzOThDMTMuMzEwNiAwLjcyMTY4IDEzLjI5MjEgMC43MDQ5OCAxMy4yNzMxIDAuNjg5MDlDMTMuMjczMSAwLjY4OTA5IDEzLjI3MzEgMC42ODkwNTUgMTMuMjczMSAwLjY4OTAyQzEzLjEyMiAwLjU2MjMxNiAxMi45MzMyIDAuNDkzMTY0IDEyLjczMzYgMC40OTMxNjRINi43NDY1NEM2LjI4MjkgMC40OTMxNjQgNS45MDU2OCAwLjg3MDM5MSA1LjkwNTY4IDEuMzM0MDdWMi4zNTQyM0M1LjkwNTY4IDIuNDk5ODggNi4wMjM3IDIuNjE3OSA2LjE2OTM1IDIuNjE3OUM2LjMxNSAyLjYxNzkgNi40MzMwMiAyLjQ5OTg4IDYuNDMzMDIgMi4zNTQyM1YxLjMzNDA3QzYuNDMzMDIgMS4xNjExNyA2LjU3MzY4IDEuMDIwNTEgNi43NDY1NCAxLjAyMDUxSDEyLjcwOVYyLjU0MzA1QzEyLjcwOSAyLjkwNjU0IDEzLjAwNDcgMy4yMDIyMyAxMy4zNjgyIDMuMjAyMjNIMTQuODkwOFY2LjA4MzQ2SDYuNDMzMDJWMy41ODY4OEM2LjQzMzAyIDMuNDQxMjMgNi4zMTUgMy4zMjMyMSA2LjE2OTM1IDMuMzIzMjFDNi4wMjM3IDMuMzIzMjEgNS45MDU2OCAzLjQ0MTIzIDUuOTA1NjggMy41ODY4OFY0LjQ5MTM4SDUuNjk0NzRDNS4yMDk5MyA0LjQ5MTM4IDQuODE1NTIgNC44ODU4IDQuODE1NTIgNS4zNzA2VjYuMDgzNDZINC4zODcyOEM0LjI3MTY4IDUuNDQ0MDQgMy43MTEzNiA0Ljk1NzM4IDMuMDM5MTQgNC45NTczOEgxLjYxNzkxQzAuODYyMzAxIDQuOTU3MzggMC4yNDc1NTkgNS41NzIxMiAwLjI0NzU1OSA2LjMyNzczVjE3LjEyMjhDMC4yNDc1MjMgMTcuODc4NCAwLjg2MjI2NiAxOC40OTMyIDEuNjE3OTEgMTguNDkzMkgzLjAzOTE4QzMuNTIwOTIgMTguNDkzMiAzLjk0NTEyIDE4LjI0MzEgNC4xODk1MiAxNy44NjYxSDE2LjUwODdDMTcuMTk0NyAxNy44NjYxIDE3Ljc1MjcgMTcuMzA4IDE3Ljc1MjcgMTYuNjIyMVYxNS44ODg2QzE3Ljc1MjcgMTUuNzQzIDE3LjYzNDcgMTUuNjI1IDE3LjQ4OTEgMTUuNjI1QzE3LjM0MzQgMTUuNjI1IDE3LjIyNTQgMTUuNzQzIDE3LjIyNTQgMTUuODg4NlYxNi42MjIxQzE3LjIyNTQgMTcuMDE3MiAxNi45MDM5IDE3LjMzODcgMTYuNTA4NyAxNy4zMzg3SDQuMzkyMzdDNC40MDM1NSAxNy4yNjg0IDQuNDA5NTMgMTcuMTk2MyA0LjQwOTUzIDE3LjEyMjhWNi42MTA4MUgxNi41MDg3QzE2LjkwMzkgNi42MTA4MSAxNy4yMjU0IDYuOTMyMzEgMTcuMjI1NCA3LjMyNzQ3VjE0LjY1NkMxNy4yMjU0IDE0LjgwMTYgMTcuMzQzNCAxNC45MTk3IDE3LjQ4OTEgMTQuOTE5N1pNMTMuMjM2NCAyLjU0MzA1VjEuMzkzNDFMMTQuNTE3OCAyLjY3NDg5SDEzLjM2ODJDMTMuMjk1NiAyLjY3NDg5IDEzLjIzNjQgMi42MTU3MiAxMy4yMzY0IDIuNTQzMDVaTTE1LjQxODEgNS4wMTg3MkgxNS42MjlDMTUuODIzIDUuMDE4NzIgMTUuOTgwOSA1LjE3NjU3IDE1Ljk4MDkgNS4zNzA2VjYuMDgzNDZIMTUuNDE4MVY1LjAxODcyWk01LjM0Mjg5IDUuMzcwNTdDNS4zNDI4OSA1LjE3NjU0IDUuNTAwNzUgNS4wMTg2OSA1LjY5NDc3IDUuMDE4NjlINS45MDU3MVY2LjA4MzQzSDUuMzQyODlWNS4zNzA1N1pNMy4wMzkxNCAxNy45NjU4SDEuNjE3OTFDMS4xNTMwNCAxNy45NjU4IDAuNzc0OTAyIDE3LjU4NzYgMC43NzQ5MDIgMTcuMTIyOFY2LjMyNzczQzAuNzc0OTAyIDUuODYyODYgMS4xNTMwOCA1LjQ4NDcyIDEuNjE3OTEgNS40ODQ3MkgzLjAzOTE4QzMuNTA0MDUgNS40ODQ3MiAzLjg4MjE5IDUuODYyODkgMy44ODIxOSA2LjMyNzczVjE3LjEyMjhDMy44ODIxOSAxNy41ODc2IDMuNTA0MDEgMTcuOTY1OCAzLjAzOTE0IDE3Ljk2NThaIiBmaWxsPSIjMTAxNjQzIi8+CjxwYXRoIGQ9Ik0xNS4xMjE5IDcuOTM5ODVDMTUuMTIxOSA3LjY0NTkxIDE0Ljg4MjcgNy40MDY3NCAxNC41ODg4IDcuNDA2NzRINi42ODU0NUM2LjM5MTUxIDcuNDA2NzQgNi4xNTIzNCA3LjY0NTkxIDYuMTUyMzQgNy45Mzk4NVY4Ljk0NjY5QzYuMTUyMzQgOS4yNDA2MyA2LjM5MTUxIDkuNDc5OCA2LjY4NTQ1IDkuNDc5OEgxNC41ODg4QzE0Ljg4MjcgOS40Nzk4IDE1LjEyMTkgOS4yNDA2MyAxNS4xMjE5IDguOTQ2NjlWNy45Mzk4NVpNMTQuNTk0NiA4Ljk0NjY1QzE0LjU5NDYgOC45NDk4NSAxNC41OTIgOC45NTI0MiAxNC41ODg4IDguOTUyNDJINi42ODU0NUM2LjY4MjI1IDguOTUyNDIgNi42Nzk2OSA4Ljk0OTg1IDYuNjc5NjkgOC45NDY2NVY3LjkzOTgxQzYuNjc5NjkgNy45MzY1OCA2LjY4MjIyIDcuOTM0MDUgNi42ODU0NSA3LjkzNDA1SDE0LjU4ODhDMTQuNTkyIDcuOTM0MDUgMTQuNTk0NiA3LjkzNjYxIDE0LjU5NDYgNy45Mzk4MVY4Ljk0NjY1WiIgZmlsbD0iIzEwMTY0MyIvPgo8cGF0aCBkPSJNOC40MjAxNyAxMC41MjMxQzguNDIwMTcgMTAuMjA4IDguMTYzODEgOS45NTE2NiA3Ljg0ODY3IDkuOTUxNjZINi43MjM4MUM2LjQwODcgOS45NTE2NiA2LjE1MjM0IDEwLjIwOCA2LjE1MjM0IDEwLjUyMzFWMTEuMzYxMkM2LjE1MjM0IDExLjY3NjQgNi40MDg3IDExLjkzMjcgNi43MjM4MSAxMS45MzI3SDcuODQ4NjdDOC4xNjM4MSAxMS45MzI3IDguNDIwMTcgMTEuNjc2NCA4LjQyMDE3IDExLjM2MTJWMTAuNTIzMVpNNy44OTI4MiAxMS4zNjEyQzcuODkyODIgMTEuMzg1NSA3Ljg3MzAzIDExLjQwNTQgNy44NDg2NyAxMS40MDU0SDYuNzIzODFDNi42OTk0OCAxMS40MDU0IDYuNjc5NjkgMTEuMzg1NiA2LjY3OTY5IDExLjM2MTJWMTAuNTIzMUM2LjY3OTY5IDEwLjQ5ODggNi42OTk0OCAxMC40NzkgNi43MjM4MSAxMC40NzlINy44NDg2N0M3Ljg3MyAxMC40NzkgNy44OTI4MiAxMC40OTg4IDcuODkyODIgMTAuNTIzMVYxMS4zNjEyWiIgZmlsbD0iIzEwMTY0MyIvPgo8cGF0aCBkPSJNMTEuNzcwOCAxMC41MjMxQzExLjc3MDggMTAuMjA4IDExLjUxNDQgOS45NTE2NiAxMS4xOTkzIDkuOTUxNjZIMTAuMDc0NEM5Ljc1OTI5IDkuOTUxNjYgOS41MDI5MyAxMC4yMDggOS41MDI5MyAxMC41MjMxVjExLjM2MTJDOS41MDI5MyAxMS42NzY0IDkuNzU5MjkgMTEuOTMyNyAxMC4wNzQ0IDExLjkzMjdIMTEuMTk5M0MxMS41MTQ0IDExLjkzMjcgMTEuNzcwOCAxMS42NzY0IDExLjc3MDggMTEuMzYxMlYxMC41MjMxWk0xMS4yNDM0IDExLjM2MTJDMTEuMjQzNCAxMS4zODU1IDExLjIyMzYgMTEuNDA1NCAxMS4xOTkzIDExLjQwNTRIMTAuMDc0NEMxMC4wNTAxIDExLjQwNTQgMTAuMDMwMyAxMS4zODU2IDEwLjAzMDMgMTEuMzYxMlYxMC41MjMxQzEwLjAzMDMgMTAuNDk4OCAxMC4wNTAxIDEwLjQ3OSAxMC4wNzQ0IDEwLjQ3OUgxMS4xOTkzQzExLjIyMzYgMTAuNDc5IDExLjI0MzQgMTAuNDk4OCAxMS4yNDM0IDEwLjUyMzFWMTEuMzYxMloiIGZpbGw9IiMxMDE2NDMiLz4KPHBhdGggZD0iTTE1LjEyMTggMTAuNTIzMUMxNS4xMjE4IDEwLjIwOCAxNC44NjU1IDkuOTUxNjYgMTQuNTUwMyA5Ljk1MTY2SDEzLjQyNTVDMTMuMTEwNCA5Ljk1MTY2IDEyLjg1NCAxMC4yMDggMTIuODU0IDEwLjUyMzFWMTEuMzYxMkMxMi44NTQgMTEuNjc2NCAxMy4xMTA0IDExLjkzMjcgMTMuNDI1NSAxMS45MzI3SDE0LjU1MDNDMTQuODY1NSAxMS45MzI3IDE1LjEyMTggMTEuNjc2NCAxNS4xMjE4IDExLjM2MTJWMTAuNTIzMVpNMTQuNTk0NSAxMS4zNjEyQzE0LjU5NDUgMTEuMzg1NSAxNC41NzQ3IDExLjQwNTQgMTQuNTUwMyAxMS40MDU0SDEzLjQyNTVDMTMuNDAxMSAxMS40MDU0IDEzLjM4MTMgMTEuMzg1NiAxMy4zODEzIDExLjM2MTJWMTAuNTIzMUMxMy4zODEzIDEwLjQ5ODggMTMuNDAxMSAxMC40NzkgMTMuNDI1NSAxMC40NzlIMTQuNTUwM0MxNC41NzQ3IDEwLjQ3OSAxNC41OTQ1IDEwLjQ5ODggMTQuNTk0NSAxMC41MjMxVjExLjM2MTJaIiBmaWxsPSIjMTAxNjQzIi8+CjxwYXRoIGQ9Ik04LjQyMDE3IDEyLjY4ODJDOC40MjAxNyAxMi4zNzMxIDguMTYzODEgMTIuMTE2NyA3Ljg0ODY3IDEyLjExNjdINi43MjM4MUM2LjQwODcgMTIuMTE2NyA2LjE1MjM0IDEyLjM3MzEgNi4xNTIzNCAxMi42ODgyVjEzLjUyNjNDNi4xNTIzNCAxMy44NDE0IDYuNDA4NyAxNC4wOTc4IDYuNzIzODEgMTQuMDk3OEg3Ljg0ODY3QzguMTYzODEgMTQuMDk3OCA4LjQyMDE3IDEzLjg0MTQgOC40MjAxNyAxMy41MjYzVjEyLjY4ODJaTTcuODkyODIgMTMuNTI2M0M3Ljg5MjgyIDEzLjU1MDYgNy44NzMwMyAxMy41NzA0IDcuODQ4NjcgMTMuNTcwNEg2LjcyMzgxQzYuNjk5NDggMTMuNTcwNCA2LjY3OTY5IDEzLjU1MDcgNi42Nzk2OSAxMy41MjYzVjEyLjY4ODJDNi42Nzk2OSAxMi42NjM5IDYuNjk5NDggMTIuNjQ0IDYuNzIzODEgMTIuNjQ0SDcuODQ4NjdDNy44NzMgMTIuNjQ0IDcuODkyODIgMTIuNjYzOCA3Ljg5MjgyIDEyLjY4ODJWMTMuNTI2M1oiIGZpbGw9IiMxMDE2NDMiLz4KPHBhdGggZD0iTTExLjc3MDggMTIuNjg4MkMxMS43NzA4IDEyLjM3MzEgMTEuNTE0NCAxMi4xMTY3IDExLjE5OTMgMTIuMTE2N0gxMC4wNzQ0QzkuNzU5MjkgMTIuMTE2NyA5LjUwMjkzIDEyLjM3MzEgOS41MDI5MyAxMi42ODgyVjEzLjUyNjNDOS41MDI5MyAxMy44NDE0IDkuNzU5MjkgMTQuMDk3OCAxMC4wNzQ0IDE0LjA5NzhIMTEuMTk5M0MxMS41MTQ0IDE0LjA5NzggMTEuNzcwOCAxMy44NDE0IDExLjc3MDggMTMuNTI2M1YxMi42ODgyWk0xMS4yNDM0IDEzLjUyNjNDMTEuMjQzNCAxMy41NTA2IDExLjIyMzYgMTMuNTcwNCAxMS4xOTkzIDEzLjU3MDRIMTAuMDc0NEMxMC4wNTAxIDEzLjU3MDQgMTAuMDMwMyAxMy41NTA3IDEwLjAzMDMgMTMuNTI2M1YxMi42ODgyQzEwLjAzMDMgMTIuNjYzOSAxMC4wNTAxIDEyLjY0NCAxMC4wNzQ0IDEyLjY0NEgxMS4xOTkzQzExLjIyMzYgMTIuNjQ0IDExLjI0MzQgMTIuNjYzOCAxMS4yNDM0IDEyLjY4ODJWMTMuNTI2M1oiIGZpbGw9IiMxMDE2NDMiLz4KPHBhdGggZD0iTTE1LjEyMTggMTIuNjg4MkMxNS4xMjE4IDEyLjM3MzEgMTQuODY1NSAxMi4xMTY3IDE0LjU1MDMgMTIuMTE2N0gxMy40MjU1QzEzLjExMDQgMTIuMTE2NyAxMi44NTQgMTIuMzczMSAxMi44NTQgMTIuNjg4MlYxMy41MjYzQzEyLjg1NCAxMy44NDE0IDEzLjExMDQgMTQuMDk3OCAxMy40MjU1IDE0LjA5NzhIMTQuNTUwM0MxNC44NjU1IDE0LjA5NzggMTUuMTIxOCAxMy44NDE0IDE1LjEyMTggMTMuNTI2M1YxMi42ODgyWk0xNC41OTQ1IDEzLjUyNjNDMTQuNTk0NSAxMy41NTA2IDE0LjU3NDcgMTMuNTcwNCAxNC41NTAzIDEzLjU3MDRIMTMuNDI1NUMxMy40MDExIDEzLjU3MDQgMTMuMzgxMyAxMy41NTA3IDEzLjM4MTMgMTMuNTI2M1YxMi42ODgyQzEzLjM4MTMgMTIuNjYzOSAxMy40MDExIDEyLjY0NCAxMy40MjU1IDEyLjY0NEgxNC41NTAzQzE0LjU3NDcgMTIuNjQ0IDE0LjU5NDUgMTIuNjYzOCAxNC41OTQ1IDEyLjY4ODJWMTMuNTI2M1oiIGZpbGw9IiMxMDE2NDMiLz4KPHBhdGggZD0iTTcuODQ4NjcgMTQuMjgxN0g2LjcyMzgxQzYuNDA4NyAxNC4yODE3IDYuMTUyMzQgMTQuNTM4MSA2LjE1MjM0IDE0Ljg1MzJWMTUuNjkxM0M2LjE1MjM0IDE2LjAwNjUgNi40MDg3IDE2LjI2MjggNi43MjM4MSAxNi4yNjI4SDcuODQ4NjdDOC4xNjM4MSAxNi4yNjI4IDguNDIwMTcgMTYuMDA2NSA4LjQyMDE3IDE1LjY5MTNWMTQuODUzMkM4LjQyMDE3IDE0LjUzODEgOC4xNjM4MSAxNC4yODE3IDcuODQ4NjcgMTQuMjgxN1pNNy44OTI4MiAxNS42OTEzQzcuODkyODIgMTUuNzE1NyA3Ljg3MzAzIDE1LjczNTUgNy44NDg2NyAxNS43MzU1SDYuNzIzODFDNi42OTk0OCAxNS43MzU1IDYuNjc5NjkgMTUuNzE1NyA2LjY3OTY5IDE1LjY5MTNWMTQuODUzMkM2LjY3OTY5IDE0LjgyODkgNi42OTk0OCAxNC44MDkxIDYuNzIzODEgMTQuODA5MUg3Ljg0ODY3QzcuODczIDE0LjgwOTEgNy44OTI4MiAxNC44Mjg5IDcuODkyODIgMTQuODUzMlYxNS42OTEzWiIgZmlsbD0iIzEwMTY0MyIvPgo8cGF0aCBkPSJNMTEuMTk5MyAxNC4yODE3SDEwLjA3NDRDOS43NTkyOSAxNC4yODE3IDkuNTAyOTMgMTQuNTM4MSA5LjUwMjkzIDE0Ljg1MzJWMTUuNjkxM0M5LjUwMjkzIDE2LjAwNjUgOS43NTkyOSAxNi4yNjI4IDEwLjA3NDQgMTYuMjYyOEgxMS4xOTkzQzExLjUxNDQgMTYuMjYyOCAxMS43NzA4IDE2LjAwNjUgMTEuNzcwOCAxNS42OTEzVjE0Ljg1MzJDMTEuNzcwNyAxNC41MzgxIDExLjUxNDQgMTQuMjgxNyAxMS4xOTkzIDE0LjI4MTdaTTExLjI0MzQgMTUuNjkxM0MxMS4yNDM0IDE1LjcxNTcgMTEuMjIzNiAxNS43MzU1IDExLjE5OTIgMTUuNzM1NUgxMC4wNzQ0QzEwLjA1IDE1LjczNTUgMTAuMDMwMiAxNS43MTU3IDEwLjAzMDIgMTUuNjkxM1YxNC44NTMyQzEwLjAzMDIgMTQuODI4OSAxMC4wNSAxNC44MDkxIDEwLjA3NDQgMTQuODA5MUgxMS4xOTkyQzExLjIyMzUgMTQuODA5MSAxMS4yNDM0IDE0LjgyODkgMTEuMjQzNCAxNC44NTMyVjE1LjY5MTNaIiBmaWxsPSIjMTAxNjQzIi8+CjxwYXRoIGQ9Ik0xNC41NTAzIDE0LjI4MTdIMTMuNDI1NUMxMy4xMTA0IDE0LjI4MTcgMTIuODU0IDE0LjUzODEgMTIuODU0IDE0Ljg1MzJWMTUuNjkxM0MxMi44NTQgMTYuMDA2NSAxMy4xMTA0IDE2LjI2MjggMTMuNDI1NSAxNi4yNjI4SDE0LjU1MDNDMTQuODY1NSAxNi4yNjI4IDE1LjEyMTggMTYuMDA2NSAxNS4xMjE4IDE1LjY5MTNWMTQuODUzMkMxNS4xMjE4IDE0LjUzODEgMTQuODY1NSAxNC4yODE3IDE0LjU1MDMgMTQuMjgxN1pNMTQuNTk0NSAxNS42OTEzQzE0LjU5NDUgMTUuNzE1NyAxNC41NzQ3IDE1LjczNTUgMTQuNTUwMyAxNS43MzU1SDEzLjQyNTVDMTMuNDAxMSAxNS43MzU1IDEzLjM4MTMgMTUuNzE1NyAxMy4zODEzIDE1LjY5MTNWMTQuODUzMkMxMy4zODEzIDE0LjgyODkgMTMuNDAxMSAxNC44MDkxIDEzLjQyNTUgMTQuODA5MUgxNC41NTAzQzE0LjU3NDcgMTQuODA5MSAxNC41OTQ1IDE0LjgyODkgMTQuNTk0NSAxNC44NTMyVjE1LjY5MTNaIiBmaWxsPSIjMTAxNjQzIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfMzEwXzE1Ij4KPHJlY3Qgd2lkdGg9IjE4IiBoZWlnaHQ9IjE4IiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAwLjQ5MzE2NCkiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K");
}

.footer .footer_contact ul li:nth-child(4)::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTciIHZpZXdCb3g9IjAgMCAxNiAxNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIuNjY2ODMgMi44NTA1OUgxMy4zMzM1QzE0LjA2NjggMi44NTA1OSAxNC42NjY4IDMuNDUwNTkgMTQuNjY2OCA0LjE4MzkyVjEyLjE4MzlDMTQuNjY2OCAxMi45MTczIDE0LjA2NjggMTMuNTE3MyAxMy4zMzM1IDEzLjUxNzNIMi42NjY4M0MxLjkzMzUgMTMuNTE3MyAxLjMzMzUgMTIuOTE3MyAxLjMzMzUgMTIuMTgzOVY0LjE4MzkyQzEuMzMzNSAzLjQ1MDU5IDEuOTMzNSAyLjg1MDU5IDIuNjY2ODMgMi44NTA1OVoiIHN0cm9rZT0iIzEwMTY0MyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xNC42NjY4IDQuMTg0MDhMOC4wMDAxNiA4Ljg1MDc1TDEuMzMzNSA0LjE4NDA4IiBzdHJva2U9IiMxMDE2NDMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
}

@media (max-width: 991px) {
  .footer .footer_contact {
    padding: 0;
    border-top: 1px solid rgba(150, 150, 150, 0.2);
    padding-top: 30px;
  }
  .footer .footer_contact h4 {
    text-align: center;
  }
  .footer .footer_contact ul {
    text-align: center;
  }
  .footer .footer_contact ul li {
    padding-left: 0;
    padding-top: 80px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
    border: 1px solid rgba(16, 22, 67, 0.35);
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
  }
  .footer .footer_contact ul li::before {
    top: 30px;
    right: 0;
    margin: auto;
    width: 30px;
    height: 30px;
  }
  .footer .footer_contact ul li:last-child {
    padding-bottom: 20px;
  }
}

@media (max-width: 766px) {
  .footer .footer_contact ul li {
    font-size: 14px;
  }
}

.copy_rights {
  border-top: 1px solid rgba(150, 150, 150, 0.2);
  padding: 30px 0;
}

.copy_rights p {
  margin: 0;
  text-align: center;
}

.copy_rights ul {
  display: block;
  text-align: right;
}

.copy_rights ul li {
  display: inline-block;
  font-size: 14px;
  color: #696969;
  font-weight: 400;
  position: relative;
}

.copy_rights ul li:nth-child(1) {
  padding-right: 15px;
  margin-right: 15px;
}

.copy_rights ul li:nth-child(1)::before {
  position: absolute;
  content: '';
  width: 1px;
  height: 14px;
  background-color: #696969;
  right: -1px;
  top: 0;
  bottom: 0;
  margin: auto;
}
/*# sourceMappingURL=theme-style.css.map */