/* ===================== 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 --*/
@keyframes textStroke {
  0% {
    stroke-dasharray: 0 50%;
    stroke-dashoffset: 20px;
  }
  100% {
    stroke-dasharray: 50% 0;
    stroke-dashoffset: -20px;
  }
}
@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: #131d3b;
  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 {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
  background-color: #da1c23;
  outline: 1px solid #da1c23;
}
@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;
  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;
}

section,
div,
footer {
  scroll-margin-top: 250px;
}

.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: #131d3b;
  cursor: pointer;
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  justify-content: 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;
  transition: transform 500ms ease;
}
.theme_btn_dark a .icon-container .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--icon-size);
  height: var(--icon-size);
  transition: transform 500ms ease, opacity 250ms ease;
}
.theme_btn_dark a .icon-container .icon--left {
  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;
  transition: transform 500ms ease;
}
.theme_btn_dark a:hover .text {
  color: #ffffff;
}
.theme_btn_dark a:hover::after {
  transform: translateX(70%);
}
.theme_btn_dark a:hover .icon-container {
  transform: translateX(125%);
}
.theme_btn_dark a:hover .icon-container .icon--left {
  transform: translateX(-70%);
  opacity: 1;
}
.theme_btn_dark a:hover .icon-container .icon--right {
  transform: translateX(200%);
  opacity: 0;
}

.select2-container {
  height: 70px;
  background: #eef3f7;
}
.select2-container .select2-dropdown {
  border: 0;
  border-radius: 0;
  background-color: #131d3b;
}
.select2-container .select2-dropdown .select2-results .select2-results__option {
  padding: 10px 15px;
  color: #ffffff;
}
.select2-container .select2-selection--single {
  height: 100%;
  padding: 18px 30px;
  border-radius: 0;
  border: 0;
  border: none;
  background-color: #eef3f7;
  outline: none;
  box-shadow: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  color: #000000;
  font-weight: 400;
  font-size: 14px;
  outline: none;
  box-shadow: none;
  line-height: normal;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}
.select2-container .select2-selection--single .select2-selection__arrow {
  height: 100%;
  top: 0;
  right: 30px;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #000000;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #da1c23;
  color: #ffffff;
}
.select2-container--default .select2-results__option--selected {
  background-color: #000000;
}

/*-- 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: 26px;
}
@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;
  }
}

.font36 {
  font-size: 36px;
  line-height: 1.5;
}
@media (max-width: 1399px) {
  .font36 {
    font-size: 30px;
  }
}
@media (max-width: 766px) {
  .font36 {
    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: #131d3b;
}

.base_color {
  color: #da1c23;
}

.body_color {
  color: #696969;
}

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

/* 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 {
  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;
  }
}

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

.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: flex;
  width: 100%;
  background: #fff;
  align-items: 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;
}
div.site_loder div video {
  max-width: 250px;
}

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

/* Buttons */
.more_btns {
  margin-top: 50px;
}
.more_btns_link {
  color: #2894d1;
  font-size: 15px;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.more_btns_link .icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #da1c23;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  position: relative;
  transition: all 0.3s ease;
}
.more_btns_link:hover .icon {
  background-color: #b13b05;
}
.more_btns_link:hover .icon svg {
  transform: rotate(45deg);
}

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

.header {
  position: relative;
  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: right;
  margin-right: 30px;
}
.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: #131d3b;
  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: #da1c23;
}
@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;
  transform: translateY(20px);
  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: #131d3b;
  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;
  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: #da1c23;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
  }
  .header .center .menu_bar .menu_bar_nav_item.dropdown.login-button > a:hover {
    background-color: #b13b05;
    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;
  transform: translateY(10px);
  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;
    transform: translateY(20px);
    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 {
    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: #131d3b;
  position: absolute;
  border-radius: 2px;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 2px;
  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) {
  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) {
  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: #ffffff;
  font-weight: 500;
  border: 1px solid #da1c23;
  background-color: #da1c23;
  width: 100%;
  height: 55px;
  display: flex;
  align-items: 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: #ffffff;
}
@media (max-width: 766px) {
  .header .right .login_btn_inner i {
    display: flex;
  }
}
.header .right .login_btn_inner:hover {
  border-radius: 50px;
  background-color: #131d3b;
  border-color: #131d3b;
  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: flex;
  justify-content: flex-end;
}
.header .right .user_btn .user_profile {
  display: flex;
  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: #131d3b;
}
@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: flex;
    align-items: center;
  }
}
@media (max-width: 766px) {
  .header .right {
    justify-content: flex-end;
  }
}
.header.follow {
  box-shadow: 0px 5px 30px 0px rgba(19, 29, 59, 0.15);
  background-color: #ffffff;
  position: fixed;
}
.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: #131d3b;
  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: #da1c23;
    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: #da1c23;
}
.header.follow .right .login_btn_inner {
  color: #ffffff;
  border: 1px solid #da1c23;
  background-color: #da1c23;
}
.header.follow .right .login_btn_inner:hover {
  background-color: #b13b05;
  color: #ffffff;
  border-color: #b13b05;
}
.header.follow .right .login_btn_inner i svg {
  fill: #ffffff;
}
.header.follow .right .user_btn .user_profile {
  border: 1px solid #da1c23;
}

.home-slider {
  background-image: url(../images/slider1.jpg);
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  position: relative;
  padding: 100px 0;
  z-index: 1;
}
.home-slider::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 10, 30, 0.9) 0%, rgba(10, 10, 30, 0.8) 100%);
  z-index: -1;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.home-slider .slider-before {
  position: absolute;
  content: "";
  right: 0;
  top: -70px;
  opacity: 0.35;
}
.home-slider .hero-content h1 {
  font-size: 50px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.home-slider .hero-content h1 span {
  color: #da1c23;
  display: block;
  font-size: 70px;
}
@media (max-width: 991px) {
  .home-slider .hero-content h1 span {
    font-size: 50px;
  }
}
.home-slider .hero-content p {
  font-weight: 400;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 50px;
}
.home-slider .hero-content p span {
  font-weight: 500;
}
@media (max-width: 991px) {
  .home-slider .hero-content p {
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 50px;
  }
}
@media (max-width: 766px) {
  .home-slider .hero-content p {
    max-width: 100%;
  }
}
.home-slider .hero-content .user-area {
  display: flex;
  align-items: center;
}
.home-slider .hero-content .user-area ul {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0 20px 0 0;
}
.home-slider .hero-content .user-area ul li {
  height: 46px;
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 2px 2px 4px rgba(0, 167, 172, 0.1);
  border-radius: 50%;
  margin-left: -15px;
}
.home-slider .hero-content .user-area ul li img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.home-slider .hero-content .user-area ul li .total-user {
  text-align: center;
  line-height: 1;
}
.home-slider .hero-content .user-area ul li .total-user h6 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  color: #da1c23;
}
.home-slider .hero-content .user-area ul li .total-user span {
  font-size: 11px;
  font-weight: 500;
  color: #131d3b;
  line-height: 1;
  display: inline-block;
}
.home-slider .hero-content .user-area ul li:first-child {
  margin-left: 0;
}
.home-slider .hero-content .user-area p {
  font-weight: 500;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0;
}
.home-slider .hero-img {
  width: 450px;
  height: 450px;
  border-radius: 100%;
  overflow: hidden;
  border: 5px solid #ffffff;
  position: relative;
}
.home-slider .hero-img img {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .home-slider .hero-img {
    float: right;
  }
}
@media (max-width: 575px) {
  .home-slider .hero-img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 991px) {
  .home-slider .hero-content {
    text-align: center;
  }
  .home-slider .hero-content .user-area {
    display: block;
  }
  .home-slider .hero-content .user-area ul {
    justify-content: center;
    margin: 0;
    margin-bottom: 15px;
  }
  .home-slider .hero-img {
    margin: 0 auto;
    margin-top: 50px;
  }
}
@media (max-width: 576px) {
  .home-slider .hero-content {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .home-slider .hero-content h1 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .home-slider .hero-content h1 {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .home-slider .hero-content .user-area {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}
.content_area_top {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #f9f9f9;
}

/* about style */
.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%;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .job_listing .section_title {
    text-align: center;
  }
}
.job_listing .featured-jobs .slider_item,
.job_listing .featured-jobs-listing .slider_item {
  border-radius: 15px;
  background-color: #ffffff;
  overflow: hidden;
}
.job_listing .featured-jobs .slider_item_content,
.job_listing .featured-jobs-listing .slider_item_content {
  padding: 30px;
}
.job_listing .featured-jobs .slider_item_content .badge,
.job_listing .featured-jobs-listing .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,
.job_listing .featured-jobs-listing .slider_item_content .badge.full {
  background-color: rgba(255, 82, 0, 0.15);
  color: #da1c23;
}
.job_listing .featured-jobs .slider_item_content .badge.part,
.job_listing .featured-jobs-listing .slider_item_content .badge.part {
  background-color: rgba(253, 203, 110, 0.3);
  color: #f5b743;
}
.job_listing .featured-jobs .slider_item_content .title h4,
.job_listing .featured-jobs-listing .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,
.job_listing .featured-jobs-listing .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,
.job_listing .featured-jobs-listing .slider_item_content .other_details ul {
  display: block;
}
.job_listing .featured-jobs .slider_item_content .other_details ul li,
.job_listing .featured-jobs-listing .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,
.job_listing .featured-jobs-listing .slider_item_content .other_details ul li .listing {
  display: flex;
  align-items: center;
}
.job_listing .featured-jobs .slider_item_content .other_details ul li .listing i,
.job_listing .featured-jobs-listing .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,
.job_listing .featured-jobs-listing .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,
  .job_listing .featured-jobs-listing .slider_item_content .other_details ul li {
    font-size: 12px;
  }
}
.job_listing .featured-jobs .slider_item_content .text_block,
.job_listing .featured-jobs-listing .slider_item_content .text_block {
  margin-top: 30px;
}
.job_listing .featured-jobs .slider_item_content .text_block p,
.job_listing .featured-jobs-listing .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,
.job_listing .featured-jobs-listing .slider_item_buttons {
  border-top: 1px solid rgba(154, 157, 182, 0.2);
  display: flex;
  position: relative;
}
.job_listing .featured-jobs .slider_item_buttons::before,
.job_listing .featured-jobs-listing .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 > *,
.job_listing .featured-jobs-listing .slider_item_buttons > * {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.job_listing .featured-jobs .slider_item_buttons a,
.job_listing .featured-jobs-listing .slider_item_buttons a {
  text-transform: uppercase;
  font-size: 14px;
  color: #131d3b;
  background-color: transparent;
  font-weight: 600;
}
.job_listing .featured-jobs .slider_item_buttons a:hover,
.job_listing .featured-jobs-listing .slider_item_buttons a:hover {
  background-color: #da1c23;
  color: #ffffff;
}
@media (max-width: 1399px) {
  .job_listing .featured-jobs .slider_item_buttons a,
  .job_listing .featured-jobs-listing .slider_item_buttons a {
    font-size: 13px;
  }
}
.job_listing .featured-jobs .owl-nav,
.job_listing .featured-jobs-listing .owl-nav {
  position: absolute;
  top: -98px;
  right: 0px;
  margin: 0px auto;
}
.job_listing .featured-jobs .owl-nav [class*=owl-],
.job_listing .featured-jobs-listing .owl-nav [class*=owl-] {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #da1c23;
  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,
.job_listing .featured-jobs-listing .owl-nav [class*=owl-]:last-child {
  margin-right: 0;
}
.job_listing .featured-jobs .owl-nav [class*=owl-] img,
.job_listing .featured-jobs-listing .owl-nav [class*=owl-] img {
  width: 18px;
}
.job_listing .featured-jobs .owl-nav [class*=owl-].disabled,
.job_listing .featured-jobs-listing .owl-nav [class*=owl-].disabled {
  opacity: 0.3;
}
.job_listing .featured-jobs .owl-nav [class*=owl-]:hover,
.job_listing .featured-jobs-listing .owl-nav [class*=owl-]:hover {
  background-color: #b13b05;
}
@media (max-width: 991px) {
  .job_listing .featured-jobs .owl-nav [class*=owl-],
  .job_listing .featured-jobs-listing .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,
  .job_listing .featured-jobs-listing .owl-nav [class*=owl-]:last-child {
    margin-right: 0;
  }
  .job_listing .featured-jobs .owl-nav [class*=owl-] img,
  .job_listing .featured-jobs-listing .owl-nav [class*=owl-] img {
    width: 16px;
  }
  .job_listing .featured-jobs .owl-nav [class*=owl-].owl-prev,
  .job_listing .featured-jobs-listing .owl-nav [class*=owl-].owl-prev {
    right: 0;
    left: 0;
  }
  .job_listing .featured-jobs .owl-nav [class*=owl-].owl-next,
  .job_listing .featured-jobs-listing .owl-nav [class*=owl-].owl-next {
    right: 0;
    left: 0;
    top: auto;
  }
}
@media (max-width: 991px) {
  .job_listing .featured-jobs .owl-nav,
  .job_listing .featured-jobs-listing .owl-nav {
    position: relative;
    top: auto;
    bottom: 0px;
    left: 0;
    text-align: center;
    right: 0;
    transform: initial;
    margin: 0px auto;
  }
}
.job_listing .featured-jobs .owl-dots,
.job_listing .featured-jobs-listing .owl-dots {
  text-align: right;
  margin-top: 10px;
}
.job_listing .featured-jobs .owl-dots .owl-dot,
.job_listing .featured-jobs-listing .owl-dots .owl-dot {
  outline: none;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: rgba(255, 82, 0, 0.5);
  background: transparent;
  border: 1px solid #da1c23;
  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,
.job_listing .featured-jobs-listing .owl-dots .owl-dot.active {
  background: #da1c23;
  width: 8px;
}
.job_listing .featured-jobs-listing .slider_item {
  margin-bottom: 30px;
}

.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;
}
@media (max-width: 991px) {
  .quick_contact_content p {
    margin: 0 auto;
  }
}
@media (max-width: 766px) {
  .quick_contact_content p {
    max-width: 100%;
  }
}
.quick_contact_content .form_btn {
  display: inline-block;
  margin-top: 30px;
}
.quick_contact_content .form_btn a {
  display: block;
  background-color: #131d3b;
  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: 991px) {
  .quick_contact_content {
    text-align: center;
  }
}
@media (max-width: 1399px) {
  .quick_contact {
    padding: 100px 0 110px;
  }
}
@media (max-width: 991px) {
  .quick_contact {
    padding: 60px 0 70px;
  }
}

.page_header {
  background-color: #131d3b;
  position: relative;
  padding: 100px 0;
  z-index: 9;
  overflow: hidden;
}
.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: flex;
  justify-content: flex-start;
  flex-wrap: unset;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
  padding: 0;
}
.page_header_content .breadcrumb-area .breadcrumb li {
  color: #131d3b;
  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: #da1c23;
  display: inline-block;
  box-shadow: transparent;
  font-size: 16px;
  letter-spacing: 0.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: #da1c23;
}
.page_header_quick_menu_area li a:hover {
  background-color: #b13b05;
  color: #ffffff;
}
.page_header_quick_menu_area li a:hover .icon svg {
  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;
  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);
  box-shadow: transparent;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  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: #131d3b;
  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: #da1c23;
  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;
  box-shadow: 0px 30px 60px #1b6f9f;
}
.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: flex;
  align-items: 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: #da1c23;
  z-index: -1;
  border-radius: 5px;
  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 #da1c23;
  z-index: -1;
  border-radius: 5px;
  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 {
  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 {
  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 {
  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 #da1c23;
  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: #da1c23;
  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;
  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: flex;
  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(170, 206, 229, 0.15);
  box-shadow: none;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  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: #131d3b;
  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: #da1c23;
  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;
  box-shadow: 0px 30px 60px #1b6f9f;
}
.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: flex;
  align-items: center;
  text-align: left;
}
.contact_page .contact_details a i {
  float: left;
  margin-right: 15px;
  border: 1px solid #da1c23;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background-color: #da1c23;
  text-align: center;
  display: flex;
  align-items: center;
  transition: all 400ms;
  position: relative;
}
.contact_page .contact_details a i svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  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: #da1c23;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  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: #da1c23;
  margin-bottom: 0px;
}
@media (max-width: 766px) {
  .contact_page .contact_details_left h6 {
    color: #131d3b;
  }
}
.contact_page .contact_details_left h2 {
  font-size: 30px;
  color: #131d3b;
  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;
  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;
  box-shadow: none;
}
.contact_page .contact_details_right .contact-form-out .submit .button {
  border: 1px solid #da1c23;
  background: #da1c23;
  padding: 10px 30px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  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: #b13b05;
  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;
  }
}

.faq-page {
  background-color: #fafafa;
}
.faq-page .main-title {
  text-align: center;
}
.faq-page .main-title .title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5em;
  color: #000000;
  margin-bottom: 30px;
  width: 100%;
}
.faq-page .main-title p {
  font-size: 15px;
  line-height: 2em;
  color: #131d3b;
  margin: 0;
}
@media (min-width: 992px) {
  .faq-page .main-title p {
    max-width: 50%;
    margin: 0 auto;
  }
}
.faq-page .accordion .accordion-item {
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 16px;
  border: none;
  border: 1px solid #ececec;
  background-color: #ffffff;
  padding: 0 30px;
}
.faq-page .accordion .accordion-item .accordion-header .accordion-button {
  font-size: 18px;
  padding: 20px 0px;
  outline: none;
  box-shadow: none;
  background-color: #ffffff;
  color: #000000;
}
.faq-page .accordion .accordion-item .accordion-header .accordion-button .faq-title {
  max-width: 80%;
}
.faq-page .accordion .accordion-item .accordion-header .accordion-button.collapsed {
  border-bottom: 1px solid transparent;
}
.faq-page .accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url("../images/plus.png");
}
.faq-page .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  border-bottom: 1px solid #e6e6e6;
}
.faq-page .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("../images/minus.png");
}
.faq-page .accordion .accordion-item .accordion-header .accordion-button:focus {
  outline: none;
}
.faq-page .accordion .accordion-item .accordion-header .accordion-button::after {
  width: 20px;
  height: 20px;
  background-size: 100%;
  transform: none;
}
@media (max-width: 1280px) {
  .faq-page .accordion .accordion-item .accordion-header .accordion-button {
    line-height: normal;
  }
}
@media (max-width: 575px) {
  .faq-page .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 15px;
  }
}
.faq-page .accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 30px 0px;
}
.faq-page .accordion .accordion-item .accordion-collapse .accordion-body h4 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #000000;
}
@media (max-width: 575px) {
  .faq-page .accordion .accordion-item .accordion-collapse .accordion-body h4 {
    font-size: 15px;
  }
}
.faq-page .accordion .accordion-item .accordion-collapse .accordion-body p {
  font-size: 15px;
  color: #696969;
}
.faq-page .accordion .accordion-item .accordion-collapse .accordion-body p:last-child {
  margin: 0;
}
.faq-page .accordion .accordion-item .accordion-collapse .accordion-body ul {
  display: block;
  margin: 30px 0 0;
}
.faq-page .accordion .accordion-item .accordion-collapse .accordion-body ul li {
  display: block;
  padding-left: 50px;
  position: relative;
  color: #000000;
  margin-bottom: 40px;
  font-weight: 400;
}
.faq-page .accordion .accordion-item .accordion-collapse .accordion-body ul li::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 20px;
  left: 0;
  top: 8px;
  background-image: url(../images/plus.png);
}
.faq-page .accordion .accordion-item .accordion-collapse .accordion-body ul li:last-child {
  margin-bottom: 0;
}
.faq-page .accordion .accordion-item .accordion-collapse .accordion-body .lines {
  width: 100%;
  height: 1px;
  background-color: #e6e6e6;
  margin: 50px auto;
}
@media (max-width: 991px) {
  .faq-page .accordion .accordion-item {
    padding: 0 30px;
  }
}

.gallery {
  padding: 0;
}
.gallery .gallery-wrap {
  padding: 0;
  padding-top: 100px;
  overflow: hidden;
  width: 100%;
}
.gallery .gallery-wrap .main-title {
  text-align: center;
}
.gallery .gallery-wrap .main-title .title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  width: 100%;
}
.gallery .gallery-wrap .main-title p {
  max-width: 60%;
  margin: 0 auto;
}
@media (max-width: 766px) {
  .gallery .gallery-wrap .main-title p {
    max-width: 75%;
  }
}
@media (max-width: 766px) {
  .gallery .gallery-wrap .main-title p {
    max-width: 100%;
  }
}
.gallery .gallery-wrap .row .gl-box {
  width: 20%;
  background: #000000;
  overflow: hidden;
  display: flex;
  position: relative;
  padding: 0;
}
.gallery .gallery-wrap .row .gl-box a {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery .gallery-wrap .row .gl-box a img {
  width: 100%;
  height: 100%;
  opacity: 0.4;
  transition: 400ms;
  -webkit-transition: 400ms;
  -o-transition: 400ms;
  -moz-transition: 400ms;
  -ms-transition: 400ms;
}
.gallery .gallery-wrap .row .gl-box a i {
  position: absolute;
  font-size: 14px;
  color: #ffffff;
  padding: 15px;
  border-radius: 100%;
  border: 1px solid #ffffff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(25px);
  transition: 400ms;
  -webkit-transition: 400ms;
  -o-transition: 400ms;
  -moz-transition: 400ms;
  -ms-transition: 400ms;
}
.gallery .gallery-wrap .row .gl-box a:hover img {
  opacity: 0.2;
}
.gallery .gallery-wrap .row .gl-box a:hover i {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 991px) {
  .gallery .gallery-wrap {
    padding-top: 50px;
  }
}

.form-list-page .form-out {
  display: block;
}
.form-list-page .form-out input.form-control {
  height: 70px;
  width: 100%;
  border: none;
  background-color: #eef3f7;
  outline: none;
  padding: 0 15px;
  border-radius: 0;
}
.form-list-page .form-out input.form-control:focus {
  outline: none;
  box-shadow: none;
}
.form-list-page .form-out textarea.form-control {
  width: 100%;
  min-height: 150px;
  border: none;
  background-color: #eef3f7;
  outline: none;
  padding: 15px 15px;
  border-radius: 0;
}
.form-list-page .form-out textarea.form-control:focus {
  outline: none;
  box-shadow: none;
}
.form-list-page .form-out .form-select {
  height: 70px;
  width: 100%;
  border: none;
  background-color: #eef3f7;
  outline: none;
  padding: 0 15px;
  border-radius: 0;
}
.form-list-page .form-out .form-select:focus {
  outline: none;
  box-shadow: none;
}
.form-list-page .form-out label {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 15px;
}
.form-list-page .form-out label.title {
  font-size: 15px;
  margin-bottom: 15px;
  color: #da1c23;
  font-weight: 600;
  text-transform: uppercase;
}
.form-list-page .form-out .uploader {
  border: 1px solid #da1c23;
  text-align: center;
  text-transform: uppercase;
  color: #da1c23;
  font-weight: 600;
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.form-list-page .form-out .form-check-outer {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 30px;
}
.form-list-page .form-out .form-check {
  margin: 0;
  padding: 0px;
  display: inline-flex;
  align-items: center;
}
.form-list-page .form-out .form-check .form-check-input {
  background-color: white;
  outline: none;
  box-shadow: none;
  width: 20px;
  height: 20px;
  margin: 0;
  border-radius: 0;
  border: 2px solid #cbcbcb;
}
.form-list-page .form-out .form-check .form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxNiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS43MDcxIDAuMjkyODkzQzE2LjA5NzYgMC42ODM0MTcgMTYuMDk3NiAxLjMxNjU4IDE1LjcwNzEgMS43MDcxMUw2LjA4MjExIDExLjMzMjFDNS42OTE1OCAxMS43MjI2IDUuMDU4NDIgMTEuNzIyNiA0LjY2Nzg5IDExLjMzMjFMMC4yOTI4OTMgNi45NTcxMUMtMC4wOTc2MzExIDYuNTY2NTggLTAuMDk3NjMxMSA1LjkzMzQyIDAuMjkyODkzIDUuNTQyODlDMC42ODM0MTcgNS4xNTIzNyAxLjMxNjU4IDUuMTUyMzcgMS43MDcxMSA1LjU0Mjg5TDUuMzc1IDkuMjEwNzlMMTQuMjkyOSAwLjI5Mjg5M0MxNC42ODM0IC0wLjA5NzYzMTEgMTUuMzE2NiAtMC4wOTc2MzExIDE1LjcwNzEgMC4yOTI4OTNaIiBmaWxsPSIjRkY1MjAwIi8+Cjwvc3ZnPgo=");
  background-size: 70%;
  border: 2px solid #da1c23;
}
.form-list-page .form-out .form-check .form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxNiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNS43MDcxIDAuMjkyODkzQzE2LjA5NzYgMC42ODM0MTcgMTYuMDk3NiAxLjMxNjU4IDE1LjcwNzEgMS43MDcxMUw2LjA4MjExIDExLjMzMjFDNS42OTE1OCAxMS43MjI2IDUuMDU4NDIgMTEuNzIyNiA0LjY2Nzg5IDExLjMzMjFMMC4yOTI4OTMgNi45NTcxMUMtMC4wOTc2MzExIDYuNTY2NTggLTAuMDk3NjMxMSA1LjkzMzQyIDAuMjkyODkzIDUuNTQyODlDMC42ODM0MTcgNS4xNTIzNyAxLjMxNjU4IDUuMTUyMzcgMS43MDcxMSA1LjU0Mjg5TDUuMzc1IDkuMjEwNzlMMTQuMjkyOSAwLjI5Mjg5M0MxNC42ODM0IC0wLjA5NzYzMTEgMTUuMzE2NiAtMC4wOTc2MzExIDE1LjcwNzEgMC4yOTI4OTNaIiBmaWxsPSIjRkY1MjAwIi8+Cjwvc3ZnPgo=");
  background-size: 70%;
  border: 2px solid #da1c23;
}
.form-list-page .form-out .form-check .form-check-label {
  font-weight: normal;
  line-height: normal;
  margin: 0;
}
.form-list-page .form-out .content {
  font-size: 15px;
  font-weight: 500;
}
.form-list-page .form-out table tbody td {
  align-content: space-evenly;
}
.form-list-page .form-out .ext-btn {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: #ffffff;
  background-color: #da1c23;
  font-size: 18px;
  cursor: pointer;
  margin: 0 auto;
}
.form-list-page .form-out .ext-btn.minus-btn {
  background-color: #131d3b;
}
.form-list-page .form-out .submit .button {
  border: 1px solid #da1c23;
  background: #da1c23;
  padding: 10px 30px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: all 400ms;
  width: auto;
  height: 60px;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  color: #ffffff;
}
.form-list-page .form-out .submit .button:hover {
  background: #b13b05;
  color: #ffffff;
}
@media (max-width: 575px) {
  .form-list-page .form-out .submit .button {
    height: 50px;
  }
}

.jobs-list-outer {
  padding: 100px 0;
  position: relative;
}
@media (max-width: 1100px) {
  .jobs-list-outer {
    padding: 50px 0;
  }
}
.jobs-list-outer::before {
  top: 0;
  opacity: 0.2;
}
.jobs-list-outer .jobs-list {
  margin: 15px 0;
}
.jobs-list-outer .jobs-list .slider_item {
  border-radius: 15px;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content {
  padding: 30px;
}
@media (max-width: 767px) {
  .jobs-list-outer .jobs-list .slider_item .slider_item_content {
    text-align: center;
  }
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .badge {
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  padding: 6px 15px;
  border-radius: 50px;
  margin-bottom: 15px;
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .badge.full {
  background-color: rgba(255, 82, 0, 0.15);
  color: #da1c23;
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .badge.part {
  background-color: rgba(253, 203, 110, 0.3);
  color: #f5b743;
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .title h4 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .lines {
  width: 100%;
  height: 1px;
  background-color: rgba(36, 36, 36, 0.2);
  margin: 15px auto;
  clear: both;
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 1100px) {
  .jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details {
    flex-direction: column;
  }
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details ul.det {
  display: block;
}
@media (max-width: 1100px) {
  .jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details ul.det {
    margin-bottom: 20px;
  }
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details ul.det li {
  display: inline-block;
  font-size: 14px;
  color: #242424;
  margin-right: 20px;
  padding-right: 20px;
  position: relative;
}
@media (max-width: 1100px) {
  .jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details ul.det li {
    margin: 0 10px;
  }
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details ul.det li:after {
  position: absolute;
  content: "";
  right: 0px;
  top: 0px;
  bottom: 0px;
  background: #6c757d;
  width: 1px;
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details ul.det li .listing {
  display: flex;
  align-items: center;
  line-height: normal;
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details ul.det li .listing i {
  float: left;
  margin-right: 10px;
  display: flex;
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details ul.det li .listing i img {
  width: 14px;
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details ul.det li:last-child:after {
  display: none;
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details span.details {
  font-size: 15px;
  font-weight: 500;
  position: absolute;
  right: 0;
}
@media (max-width: 767px) {
  .jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details span.details {
    position: static;
  }
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details span.details a {
  background: #dfeff8;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details .more-det {
  z-index: -9;
  visibility: hidden;
  height: 0;
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details .more-det h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details .more-det p {
  width: 90%;
}
@media (max-width: 767px) {
  .jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details .more-det p {
    width: 100%;
  }
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details .more-det ul {
  margin-top: 20px;
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details .more-det ul li {
  padding-bottom: 10px;
  padding-left: 30px;
  font-size: 14px;
  position: relative;
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details .more-det ul li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border: 1px solid #da1c23;
  border-radius: 100%;
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details .more-det ul li:after {
  position: absolute;
  content: "";
  left: 3px;
  top: 14px;
  width: 4px;
  height: 4px;
  background-color: #da1c23;
  border-radius: 100%;
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details .more-det.show {
  visibility: visible;
  height: auto;
  padding: 50px 0 0;
  z-index: 9;
  transition: all 1s;
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details .more-det .form_btn {
  display: inline-block;
  position: static;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details .more-det .form_btn {
    display: none;
  }
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details .more-det .form_btn a {
  display: block;
  background-color: #da1c23;
  border: 1px solid transparent;
  color: #ffffff;
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  transition: all 400ms;
}
@media (max-width: 1100px) {
  .jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details .more-det .form_btn a {
    font-size: 13px;
    padding: 15px;
  }
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .other_details .more-det .form_btn a:hover {
  background: none;
  border: 1px solid #da1c23;
  color: #000;
  transition: all 400ms;
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .form_btn {
  position: absolute;
  right: 30px;
  top: 30px;
}
@media (max-width: 767px) {
  .jobs-list-outer .jobs-list .slider_item .slider_item_content .form_btn {
    position: static;
    display: inline-block;
    margin-top: 30px;
  }
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .form_btn a {
  display: block;
  background-color: #da1c23;
  border: 1px solid transparent;
  color: #ffffff;
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  transition: all 400ms;
}
@media (max-width: 1100px) {
  .jobs-list-outer .jobs-list .slider_item .slider_item_content .form_btn a {
    font-size: 13px;
    padding: 15px;
  }
}
.jobs-list-outer .jobs-list .slider_item .slider_item_content .form_btn a:hover {
  background: none;
  border: 1px solid #da1c23;
  color: #000;
  transition: all 400ms;
}
.jobs-list-outer .job-btn {
  text-align: center;
}
.jobs-list-outer .job-btn .form_btn {
  display: inline-block;
  margin-top: 60px;
}
.jobs-list-outer .job-btn .form_btn a {
  display: block;
  background-color: #da1c23;
  border: 1px solid transparent;
  color: #ffffff;
  border-radius: 50px;
  padding: 20px 50px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  transition: all 400ms;
}
.jobs-list-outer .job-btn .form_btn a:hover {
  background: none;
  border: 1px solid #da1c23;
  color: #000;
  transition: all 400ms;
}

#job {
  align-items: center;
  background: #ffffff;
  height: 0;
  display: flex;
  justify-content: center;
  opacity: 0;
  position: fixed;
  transition: all 0.5s;
  width: 100vw;
  will-change: transform, opacity;
  z-index: -1;
  left: 0;
  top: 0;
  border-bottom: 1px solid #eee;
  padding: 0 50px;
}
@media (max-width: 767px) {
  #job {
    padding: 0 20px;
  }
}
#job:target {
  height: 100vh !important;
  opacity: 1;
  z-index: 999;
}
#job:target .close-btn {
  display: block;
}
#job .close-btn {
  display: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 50px;
  right: 50px;
  width: 30px;
  height: 30px;
}
@media (max-width: 767px) {
  #job .close-btn {
    top: 25px;
    right: 25px;
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 400px) {
  #job .close-btn {
    top: 18px;
  }
}
#job .close-btn svg {
  width: 30px;
  height: 30px;
  fill: #009fc1;
  display: block;
}
#job form {
  display: inline-block;
  width: 100%;
  max-width: 820px;
}
#job form h2 {
  font-size: 30px;
  color: #101643;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 25px;
  text-align: center;
  padding: 0 15%;
}
@media (max-width: 767px) {
  #job form h2 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
    padding: 0;
  }
}
@media (max-width: 400px) {
  #job form h2 {
    font-size: 15px;
  }
}
#job form input,
#job form textarea {
  height: 70px;
  width: 100%;
  border: none;
  background: #eef3f7;
  outline: none;
  padding: 0 15px;
  border-radius: 0;
  outline: none;
  box-shadow: none;
}
@media (max-width: 767px) {
  #job form input,
  #job form textarea {
    height: 50px;
  }
}
#job form input::-moz-placeholder, #job form textarea::-moz-placeholder {
  font-size: 15px;
}
#job form input::placeholder,
#job form textarea::placeholder {
  font-size: 15px;
}
#job form textarea {
  min-height: 150px;
  padding-top: 15px;
}
@media (max-width: 767px) {
  #job form textarea {
    min-height: 100px;
  }
}
#job form .input-field .inner-field {
  position: relative;
  background: #fff;
  width: 100%;
  height: 70px;
  padding-left: 20px;
  border-radius: 10px;
  outline: none;
}
#job form .input-field .inner-field #filename {
  float: left;
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 100%;
  color: #6c757d;
  position: relative;
  z-index: 99;
  font-size: 15px;
}
#job form .input-field .inner-field label[for=file-upload] {
  padding: 0.5em;
  display: inline-block;
  cursor: pointer;
}
#job form .input-field .inner-field label.custom-file-label {
  cursor: pointer;
  right: 0;
  left: 0;
  top: 0;
  position: absolute;
  border-radius: 0;
  background-color: #eef3f7;
  bottom: 0;
  margin: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  padding: 6px 12px;
}
#job form .input-field .inner-field label.custom-file-label::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url(../images/folder.svg);
  background-size: cover;
  right: 12px;
}
#job form .input-field .inner-field label input.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  float: left;
}
#job form .input-field .inner-field label input#file-upload {
  position: absolute;
  left: -9999px;
}
#job form .submit {
  text-align: center;
}
#job form .submit input {
  border: 1px solid #da1c23;
  background: #da1c23;
  padding: 10px 30px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: all 400ms;
  width: auto;
  height: 60px;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  color: #ffffff;
  outline: none;
}
#job form .submit input:hover {
  background: none;
  border: 1px solid #da1c23;
  color: #000;
  transition: all 400ms;
}

.resume h2 {
  font-size: 30px;
  color: #101643;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 25px;
  text-align: center;
  padding: 0;
}
.resume .input-field {
  margin-bottom: 22px !important;
}
.resume .input-field input,
.resume .input-field textarea {
  height: 70px;
  width: 100%;
  border: none;
  background: #eef3f7;
  outline: none;
  padding: 0 15px;
  border-radius: 0;
  outline: none;
  box-shadow: none;
}
.resume .input-field textarea {
  min-height: 150px;
  padding-top: 15px;
}
.resume .input-field .inner-field {
  position: relative;
  background: #fff;
  width: 100%;
  height: 70px;
  padding-left: 20px;
  border-radius: 10px;
  outline: none;
}
.resume .input-field .inner-field #filename {
  float: left;
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 100%;
  color: #6c757d;
  position: relative;
  z-index: 99;
  font-size: 15px;
}
.resume .input-field .inner-field label[for=file-upload] {
  padding: 0.5em;
  display: inline-block;
  cursor: pointer;
}
.resume .input-field .inner-field label.custom-file-label {
  cursor: pointer;
  right: 0;
  left: 0;
  top: 0;
  position: absolute;
  border-radius: 0;
  background-color: #eef3f7;
  bottom: 0;
  margin: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  padding: 6px 12px;
}
.resume .input-field .inner-field label.custom-file-label::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url(../images/folder.svg);
  right: 12px;
}
.resume .input-field .inner-field label input.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  float: left;
}
.resume .input-field .inner-field label input#file-upload {
  position: absolute;
  left: -9999px;
}
.resume .submit {
  text-align: center;
}
.resume .submit input {
  border: 1px solid #da1c23;
  background: #da1c23;
  padding: 10px 30px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: all 400ms;
  width: auto;
  height: 60px;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  color: #ffffff;
  outline: none;
}
.resume .submit input:hover {
  background: none;
  border: 1px solid #da1c23;
  color: #000;
  transition: all 400ms;
}

.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: #131d3b;
  color: #ffffff;
  border-radius: 100%;
}
.footer .footer-description .social-icons ul li a:hover {
  background-color: #b13b05;
  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: #da1c23;
}
@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,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(19, 29, 59, 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 */