@import url(../css/fn-icon/style.css);
@import url(../css/bootstrap.min.css);
@import url(../css/animate.css);
@import url(../font-awesome/css/font-awesome.min.css);
@import url("https://fonts.googleapis.com/css?family=Nunito:200,300,400,600,700,800,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Titillium+Web&display=swap");
img {
  width: 100%;
}

@font-face {
  font-family: 'Open Sans', sans-serif;
  src: url("../fonts/open-sans/OpenSans-bold.ttf"), url("../fonts/open-sans/OpenSans-BoldItalic.ttf"), url("../fonts/open-sans/OpenSans-ExtraBoldItalic.ttf"), url("../fonts/open-sans/OpenSans-Italic.ttf"), url("../fonts/open-sans/OpenSans-Light.ttf"), url("../fonts/open-sans/OpenSans-LightItalic.ttf"), url("../fonts/open-sans/OpenSans-Regular.ttf"), url("../fonts/open-sans/OpenSans-Semibold.ttf"), url("../fonts/open-sans/OpenSans-SemiboldItalic.ttf");
}
body {
  font-family: "Titillium Web", sans-serif;
}

@media (max-width: 768px) {
  .top-address {
    display: none;
  }
}
header {
  background-color: #1b75bb;
  position: relative;
  z-index: 9;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

@media screen and (min-width: 992px) {
  header .header_fixed {
    position: fixed;
  }
}
header .header_fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation-name: fadeInDown;
  animation-duration: 200ms;
  z-index: 9;
  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

header::before {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 99;
  content: '';
  box-shadow: 0px 5px 20px red;
}

.no_resize {
  resize: none;
}

.my__tooltip {
  position: relative;
  display: inline-block;
}

.my__tooltip .tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: #f9b43e;
  color: #5a44d2;
  text-align: center;
  border-radius: 6px;
  margin: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 15px;
  box-shadow: 0px 4px 27px rgba(0, 0, 0, 0.5);
}

.my__tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border-width: 12px;
  border-style: solid;
  border-color: #f9b43e transparent transparent transparent;
}

.my__tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.particles-js-canvas-el {
  position: absolute;
}

.header__list {
  padding: 10px 15px 0 15px;
  font-family: 'Nunito', sans-serif;
}

.header__list ul {
  padding: 0;
}

.header__list ul li {
  list-style: none;
  margin-right: 15px;
  display: inline-flex;
  font-size: 14px;
}

.header__list ul li a {
  text-decoration: none;
  color: #fff;
  margin: auto;
}

@media (max-width: 768px) {
  .header__list ul li a {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .header__list ul li {
    margin-right: 10px;
  }
}
@media (min-width: 767px) {
  .header__list ul {
    display: flex;
  }

  .header__list ul li {
    display: inline-block;
    line-height: 35px;
  }
}
.header__list .top_social_icon .social_icon {
  border: 1px solid white;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 16px;
  color: white;
  border-radius: 50%;
  text-align: center;
  margin-right: 7px;
  transition: 300ms ease all;
}

@media screen and (max-width: 580px) {
  .header__list .top_social_icon .social_icon {
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
}
.header__list .top_social_icon .fb__:hover {
  background-color: white;
  border-color: #1b75bb;
}

.header__list .top_social_icon .fb__:hover a {
  color: #1b75bb;
}

.header__list .top_social_icon .tw__:hover {
  background-color: white;
  border-color: #1b75bb;
}

.header__list .top_social_icon .tw__:hover a {
  color: #00aced;
}

.header__list .top_social_icon .yt__:hover {
  background-color: #ec2129;
  border-color: #ec2129;
}

.header__list .top_social_icon .yt__:hover a {
  color: white;
}

.header__list .top_social_icon .ld__:hover {
  background-color: white;
}

.header__list .top_social_icon .ld__:hover a {
  color: #0077b5;
}

.nav__button {
  width: 45px;
  height: 35px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  float: right;
}

.nav__button .main_toggle__bar {
  width: 40px;
  background-color: #ec2129;
  height: 1px;
  position: relative;
  margin: 15px 0;
  transition: 200ms ease-in-out all;
}

.nav__button .main_toggle__bar:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  height: 1px;
  width: 100%;
  background-color: #ec2129;
  content: '';
  transition: 200ms ease-in-out all;
}

.nav__button .main_toggle__bar:before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 1px;
  width: 100%;
  background-color: #ec2129;
  content: '';
  transition: 200ms ease-in-out all;
}

.nav__button .menu__open {
  background-color: transparent;
}

.nav__button .menu__open:before {
  transform: rotate(45deg);
  top: 0;
}

.nav__button .menu__open:after {
  transform: rotate(-45deg);
  top: 0;
}

.header {
  background: #fcfbfb;
  padding: 5px 0;
}

.header ul {
  padding: 0;
  display: flex;
  align-content: center;
  margin-bottom: 0;
  width: 100%;
}

.header ul li {
  list-style: none;
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: flex-end;
}

.header ul .menu_child {
  width: 100%;
}

@media (max-width: 992px) {
  .header ul .menu_child {
    justify-content: flex-end;
    text-align: right;
  }
}
.header ul .navbar-expand-md {
  padding: 0;
}

.header ul .navbar-expand-md .nav .nav-item a {
  font-weight: 600;
  text-transform: capitalize;
  font-size: 15px;
  color: #636363;
  padding: 7px 15px;
  transition: 300ms ease all;
}

.header ul .navbar-expand-md .nav .nav-item a:hover {
  color: #fff;
  background: #1b75bb;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: scale(1.1);
  transition: 200ms;
}

.header ul .navbar-expand-md .main__menu {
  position: relative;
}

.header ul .navbar-expand-md .main__menu .dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  transition: 300ms ease all;
  display: initial;
  transform-origin: 50% 0;
  transform: scaleY(0);
}

.header ul .navbar-expand-md .main__menu .dropdown__menu .menu__wrapper {
  position: relative;
  margin-top: 15px;
  background: white;
  border-top: 5px solid #fec96d;
  width: 250px;
  flex-wrap: wrap;
  box-shadow: 0px 5px 27px #ede8f1a8;
}

.header ul .navbar-expand-md .main__menu .dropdown__menu .menu__wrapper .dropdown-item {
  padding: 15px;
  border-bottom: 1px solid #e2e3e4;
}

.header ul .navbar-expand-md .main__menu .dropdown__menu .menu__wrapper::before {
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  width: 0%;
  content: '';
  height: 5px;
  display: block;
  background-color: #007bff;
  transition: 600ms ease all;
}

.header ul .navbar-expand-md .main__menu:hover > .dropdown__menu {
  transition: 300ms ease all;
  transform: scaleY(1);
}

.header ul .navbar-expand-md .main__menu:hover > .dropdown__menu > .menu__wrapper::before {
  width: 100%;
  transition: 600ms ease all;
}

.header ul .navbar-expand-md .main__menu::after {
  position: relative;
  right: 0;
  bottom: 0;
  content: '\f107';
  display: block;
  font-family: 'FontAwesome';
  font-weight: 600;
  transition: all .25s ease;
  font-size: 15px;
  color: #007bff;
}

.header a img {
  height: 70px;
  width: auto;
}

@media (max-width: 768px) {
  .header a img {
    height: 50px;
  }
}
.menu-close {
  float: right;
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  width: 37px;
  height: 35px;
  transform: rotate(-180deg);
  display: block;
}

.menu-close::before {
  position: absolute;
  content: '';
  right: 18px;
  top: 5px;
  width: 2px;
  height: 25px;
  background-color: red;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-close::after {
  position: absolute;
  content: '';
  right: 18px;
  top: 5px;
  width: 2px;
  height: 25px;
  background-color: red;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (min-width: 992px) {
  .menu-close,
  .nav__button {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .header ul {
    padding: 0px 10px;
  }

  .header ul li .navbar-expand-md {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5;
    right: -100%;
    height: 100%;
    transition: 500ms;
    overflow-x: scroll;
    background-color: white;
    display: block;
    flex-wrap: nowrap;
    text-align: left;
  }

  .header ul li .navbar-expand-md ul {
    display: block;
    padding: 15px 0 15px 40px;
  }

  .header ul li .navbar-expand-md ul li {
    display: block;
    justify-content: start;
    align-items: start;
  }

  .header ul li .navbar-expand-md ul .main__menu::after {
    position: absolute;
    top: 0;
    padding-right: 30px;
  }

  .header ul li .navbar-expand-md ul .main__menu .dropdown__menu {
    position: relative;
  }

  .header ul li .navbar-expand-md ul .main__menu .dropdown__menu .menu__wrapper {
    width: 100%;
  }

  .header ul li .navbar-expand-md ul .main__menu .hide_me {
    display: none;
  }

  .header ul li .show__menu {
    right: 0;
    transition: 800ms;
  }
}
.search-box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 992px) {
  .search-box {
    padding-bottom: 0;
  }
}
.search-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.search-box .container {
  text-align: center;
}

.search-box .home-search {
  position: relative;
  display: inline-block;
  padding: 30px 0 0 0;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .search-box .home-search {
    padding-top: 10px;
  }
}
.search-box .home-search .search_hint {
  list-style: none;
  padding-left: 0;
  background: white;
  margin-top: 5px;
  position: absolute;
  width: 351px;
  padding: 5px;
  z-index: 2;
  display: none;
}

.search-box .home-search .search_hint a {
  font-size: 13px;
  font-weight: 600;
}

.search-box .home-search label {
  color: white;
  font-weight: 700;
}

@media (max-width: 767px) {
  .search-box .home-search {
    display: block;
    width: 100%;
  }
}
.search-box .home-search input {
  width: 350px;
  color: #424242;
}

@media (max-width: 992px) {
  .search-box .home-search input {
    margin-bottom: 10px;
    max-width: inherit;
  }
}
@media (max-width: 480px) {
  .search-box .home-search input {
    width: 300px;
  }
}
@media (max-width: 405px) {
  .search-box .home-search input {
    width: auto;
  }
}
.search-box .home-search button {
  width: 70px;
  text-align: center;
  background: #1b75bb;
  font-weight: 500;
  color: #fff;
}

.search-box .home-search input,
.search-box .home-search button {
  border: none;
  outline: none;
  padding: 10px;
  font-size: 16px;
}

@media (max-width: 480px) {
  .search-box .home-search input,
  .search-box .home-search button {
    padding: 2px 10px;
  }
}
@media (max-width: 405px) {
  .search-box .home-search input,
  .search-box .home-search button {
    width: auto;
  }
}
.home_owl_slider .owl-nav {
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.home_owl_slider .owl-nav button {
  margin: 0 5px;
  background-color: #007bff !important;
  padding: 0 5px;
}

.home_owl_slider .owl-nav button i {
  color: white;
}

.category-wrapper {
  display: block;
  width: 100%;
  padding: 40px 0px;
  position: relative;
}

@media (max-width: 480px) {
  .category-wrapper {
    padding: 10px 0;
  }
}
.category-wrapper ul {
  padding-left: 0;
}

@media (max-width: 1200px) {
  .category-wrapper ul {
    display: block;
    width: 100%;
    overflow-x: scroll;
    white-space: nowrap;
  }
}
.category-wrapper ul li {
  list-style: none;
  display: inline-block;
  width: 140px;
  height: 140px;
  margin: 0 2px;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
  transition: 300ms ease all;
  transform: scale(1);
}

.category-wrapper ul li .cat_image {
  text-align: center;
}

@media (max-width: 480px) {
  .category-wrapper ul li {
    width: 150px;
    height: 100px;
  }
}
@media (max-width: 360px) {
  .category-wrapper ul li {
    width: 130px;
    height: 120px;
  }
}
.category-wrapper ul li a {
  display: block;
  padding: 10px;
}

@media (max-width: 480px) {
  .category-wrapper ul li a {
    padding: 5px;
  }
}
.category-wrapper ul li a i {
  color: #1b75bb;
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
  transition: 300ms ease all;
}

.category-wrapper ul li a p {
  font-size: 13px;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 500;
  word-break: break-word;
  white-space: pre-wrap;
}

.category-wrapper ul li a span {
  font-size: 15px;
  color: #fff;
}

.category-wrapper ul li a:hover {
  text-decoration: none;
}

.category-wrapper ul li:hover {
  background: #1b75bb;
  transform: scale(1.1) translateY(-10px);
  position: relative;
  z-index: 2;
}

.category-wrapper ul li:hover i {
  color: #fff;
}

.flex__box {
  display: flex;
  padding: 0;
  margin: 0;
}

.flex__box li {
  list-style: none;
  padding: 5px;
}

.home__job_section {
  padding: 30px 0;
}

.home__job_section .job__wrapper {
  padding: 30px 0;
}

.home__job_section .job__wrapper .job__group__wrapper {
  margin-bottom: 15px;
  background-color: #ed3b42;
  padding: 5px 10px;
}

.home__job_section .job__wrapper .job__group__wrapper h2 {
  color: white;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  padding: 0;
  font-family: "Nunito", sans-serif, sans-serif, sans-serif;
}

.home__job_section .stop_top {
  position: fixed;
  top: 12%;
}

.home__job_section .right___section {
  background: #f2f2f2;
}

.home__job_section .right___section .top__companies img {
  width: 80px;
}

.home__job_section .right___section .latest__job {
  background: #fff;
  padding: 10px;
}

.home__job_section .right___section .latest__job h2 {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 0;
  padding-bottom: 0;
}

.home__job_section .right___section .latest__scroll {
  padding: 5px;
  max-height: 350px;
  margin-bottom: 30px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .home__job_section .right___section .latest__scroll {
    max-height: inherit;
    overflow-y: visible;
  }
}
.home__job_section .right___section .latest__scroll::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

.home__job_section .right___section .latest__scroll::-webkit-scrollbar {
  width: 2px;
  background-color: #F5F5F5;
}

.home__job_section .right___section .latest__scroll::-webkit-scrollbar-thumb {
  background-color: #f2f2f2;
}

.home__job_section .right___section .latest__scroll .sidebar-box {
  background: #fff;
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .home__job_section .right___section .latest__scroll .sidebar-box {
    display: block;
    width: 100%;
    white-space: nowrap;
  }
}
.job__box {
  padding: 5px;
  border-radius: 0;
  background: white;
  transition: 300ms ease all;
  transform: scale(1);
  box-shadow: 0px 0px 4px #a3b3be;
  position: relative;
  height: 100%;
}

@media (max-width: 1200px) {
  .job__box {
    display: block;
    width: 100%;
    overflow-x: scroll;
    white-space: nowrap;
  }
}
.job__box:before {
  background-color: #5b5bea;
  content: '';
  left: 0;
  bottom: 0;
  width: 4px;
  position: absolute;
  height: 100%;
  z-index: 1;
  transition: 2000ms ease-in-out;
}

.job__box:hover:before {
  background-color: red;
  transition: 500ms;
}

.job__box:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.job__box a {
  font-size: 14px;
  color: black !important;
  font-weight: 600;
  text-decoration: none;
}

.job__box .hot__image {
  width: 50px;
  height: 50px;
  overflow: hidden;
}

.job__box .hot__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job__box .job__title h3 {
  font-size: 14px;
  margin-bottom: 0;
  color: black;
}

.job__box .job__title .job__list ul {
  padding-left: 0;
  margin-bottom: 0;
}

.job__box .job__title .job__list ul li {
  padding: 0 0 0 15px;
  position: relative;
}

.job__box .job__title .job__list ul li p {
  white-space: pre-line;
  font-size: 13px;
}

.job__box .job__title .job__list ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: block;
  content: '\f105';
  font-weight: 900;
  transition: all .25s ease;
  font-family: 'FontAwesome';
}

.job__box .job__title .job__list ul small {
  color: red;
  font-weight: 600;
  font-size: 75%;
}

.job__box .btn-sm {
  background: #26a9e0;
  font-size: 13px;
  padding: 2px 10px;
  color: #fff;
  float: right;
  border: none;
  transition: 300ms ease all;
}

.job__box .btn-sm:hover {
  background-color: #ec2129;
  color: #fff;
}

.side-ad {
  display: block;
  margin-bottom: 30px;
}

.mb__25 {
  margin-bottom: 25px;
}

.image__section ul {
  padding: 0;
  list-style: none;
}

.image__section ul li {
  margin-bottom: 15px;
}

.image__section ul li img {
  width: 100%;
}

.intro {
  padding: 20px 0;
}

.intro h1 {
  font-size: 30px;
  color: #5a44d2;
  font-family: 'Nunito', sans-serif;
}

@media (min-width: 992px) {
  .intro h1 {
    padding-top: 90px;
    line-height: 46px;
  }
}
.intro img {
  width: 100%;
}

.intro ul {
  padding-left: 0;
  margin-bottom: 0;
}

.intro ul p {
  padding-top: 30px;
  font-size: 27px;
}

.intro ul li {
  list-style: none;
  line-height: 43px;
  text-shadow: 0px 0.5px 0.5px #705bdb;
  position: relative;
  padding-left: 15px;
}

.intro ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: '\f101';
  font-family: 'FontAwesome';
}

.scroltop {
  background-color: #ec2129;
  position: fixed;
  right: 15px;
  bottom: 50px;
  z-index: 99;
  border-radius: 50%;
  animation-name: pulse;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  display: none;
  padding: 5px 10px;
  border: 1px solid #ec2129;
}

.scroltop span {
  color: white;
  font-size: 25px;
}

.scroltop:focus {
  box-shadow: none;
  outline: none;
}

footer {
  padding: 30px 0;
  background-color: #1b75bb;
  font-family: 'Nunito', sans-serif;
}

footer .footer {
  position: relative;
}

@media (max-width: 992px) {
  footer .footer .footer-col-wrapper {
    margin-bottom: 30px;
  }
}
footer .footer .footer-col-wrapper .footer_about_us {
  text-align: justify;
  margin-top: 0;
  margin-bottom: 20px;
}

footer .footer .footer-col-wrapper .footer_about_us .wrapper {
  height: 170px;
  overflow: hidden;
}

footer .footer .footer-col-wrapper .footer_about_us p {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0;
}

footer .footer .footer-col-wrapper .footer_about_us a {
  color: white;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  padding-right: 25px;
}

footer .footer .footer-col-wrapper .footer_about_us a::after {
  content: "\f101";
  right: 0;
  bottom: -4px;
  color: #fff;
  font-family: 'FontAwesome';
  position: absolute;
  font-size: 18px;
  animation-name: shake;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

footer .footer .footer-col-wrapper .subscribe {
  margin-bottom: 30px;
}

footer .footer .footer-col-wrapper .subscribe ul {
  padding-left: 0;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  footer .footer .footer-col-wrapper .subscribe ul {
    display: block;
  }
}
footer .footer .footer-col-wrapper .subscribe ul li {
  margin-right: 5px;
  list-style: none;
  display: block;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  footer .footer .footer-col-wrapper .subscribe ul li {
    display: block;
    margin-bottom: 10px;
    text-align: center;
    margin-right: 0;
  }
}
footer .footer .footer-col-wrapper .subscribe ul li input {
  margin-bottom: 10px;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 10px;
  border-radius: 3px;
}

footer .footer .footer-col-wrapper .subscribe ul li input:active,
footer .footer .footer-col-wrapper .subscribe ul li input:focus {
  border: 1px solid #007bff;
  box-shadow: none;
  outline: none;
}

footer .footer .footer-col-wrapper .subscribe ul li button.btn__submit {
  border: 1px solid #26a9e0;
  padding: 5px 20px;
  background: transparent;
  border-radius: 3px;
  transition: 300ms ease all;
  font-weight: 600;
  text-transform: uppercase;
  color: #26a9e0;
  font-size: 14px;
}

footer .footer .footer-col-wrapper .subscribe ul li button.btn__submit:hover {
  background: #26a9e0;
  color: #fff;
}

footer .footer .footer-col-wrapper .footer-social {
  margin: 0;
  padding: 0;
}

footer .footer .footer-col-wrapper .footer-social li {
  display: inline-block;
  list-style: none;
}

footer .footer .footer-col-wrapper .footer-social li a {
  display: block;
  width: 35px;
  height: 35px;
  border: 1px solid #26a9e0;
  line-height: 35px;
  font-size: 16px;
  color: white;
  border-radius: 50%;
  text-align: center;
  margin-right: 7px;
  transition: 300ms ease all;
}

footer .footer .footer-col-wrapper .footer-social li a:hover {
  color: #fff;
  background: #26a9e0;
}

footer .footer .footer-col-wrapper .footer-link {
  margin: 0;
  padding: 0;
}

footer .footer .footer-col-wrapper .footer-link li {
  list-style: none;
  display: block;
  position: relative;
  padding-left: 20px;
  transition: 250ms ease-in-out all;
}

footer .footer .footer-col-wrapper .footer-link li::before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: block;
  content: '\f105';
  color: white;
  font-weight: 900;
  transition: all .25s ease;
  font-family: 'FontAwesome';
}

footer .footer .footer-col-wrapper .footer-link li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  margin: 5px 0;
}

footer .footer .footer-col-wrapper .footer-link li:hover {
  padding-left: 10px;
  transition: 250ms ease-in-out all;
}

footer .footer .footer-col-wrapper .footer-contact {
  margin: 0;
  padding: 0;
}

footer .footer .footer-col-wrapper .footer-contact li {
  list-style: none;
  display: flex;
  align-items: center;
}

footer .footer .footer-col-wrapper .footer-contact li .icon {
  font-size: 20px;
  color: white;
  width: 20px;
  margin-right: 10px;
}

footer .footer .footer-col-wrapper .footer-contact li a,
footer .footer .footer-col-wrapper .footer-contact li p {
  font-size: 14px;
  color: white;
  word-break: break-all;
  margin: 0;
}

footer .footer p {
  font-size: 15px;
  font-weight: 400;
  color: white;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  footer .footer p {
    margin-top: 30px;
  }
}
footer .footer .powered__by {
  float: right;
  font-size: 14px;
}

footer .footer .powered__by a {
  color: white;
  text-decoration: none;
}

footer .footer h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: white;
  margin-bottom: 20px;
}

.inner__banner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input__error {
  border: 1px solid red !important;
}

.thankyou {
  padding: 70px 0;
}

.thankyou h3 {
  font-size: 30px;
  color: #ec1d25;
}

.packege_list {
  padding-top: 40px;
}

.packege_list .package__container h3 {
  font-size: 30px;
  text-align: center;
  background: #1b75bb;
  color: white;
  box-shadow: 0px 23px 11px #ebd3d6;
  margin-bottom: 40px;
  cursor: pointer;
}

.packege_list .package__container .button__buy {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.packege_list .package__container .button__buy .btn__package_detail {
  font-size: 14px;
  padding: 5px 15px;
  background-color: #ec2129;
  color: white;
  box-shadow: 0 1px 3px 0 #1b75bb, 0 1px 2px 0 #1b75bb;
  text-decoration: none;
}

.packege_list .package__container .button__buy .buy__package_btn {
  margin-left: 5px;
  padding: 5px 20px;
  background-color: #1b75bb;
  color: white;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 1px 3px 0 #1b75bb, 0 1px 2px 0 #1b75bb;
  border: none;
}

.packege_list .package__container .package__box {
  margin-bottom: 25px;
  box-shadow: 0px 7px 24px #dacdcd;
  transition: 200ms ease-in-out;
  position: relative;
  overflow: hidden;
  background-color: white;
  transition: 300ms;
}

.packege_list .package__container .package__box:before {
  content: '';
  left: 0;
  right: 0;
  bottom: 0px;
  height: 5px;
  width: 0%;
  position: absolute;
  z-index: 2;
}

.packege_list .package__container .package__box:hover {
  z-index: 111;
  transform: scale(1.1);
  cursor: pointer;
  transition: 200ms ease-in-out;
}

.packege_list .package__container .package__box:hover:before {
  background-color: #1b75bb;
  transition: 1000ms;
  width: 100%;
}

.packege_list .package__container .package__box .package_content {
  padding: 15px;
}

.packege_list .package__container .package__box h2 {
  background: #ec2129;
  text-align: center;
  color: white;
  font-size: 25px;
}

.packege_list .package__container .package__box .job_package_summary {
  display: block;
  font-size: 14px;
}

.packege_list .package__container .package__box .job_package_summary li {
  width: 100% !important;
  line-height: 35px;
  border-bottom: 1px solid #d0d5d9;
}

.packege_list .package__container .package__box .job_package_summary span {
  padding-right: 15px;
  font-weight: 800;
}

.packege_list .job_package_description ul {
  margin-top: 25px;
  display: block !important;
  font-size: 14px;
}

.packege_list .job_package_description ul li {
  width: 100% !important;
  line-height: 35px;
  display: block;
}

.packege_list .job_package_description ul span {
  padding-right: 15px;
  font-weight: 800;
}

.action_list {
  display: flex;
  margin-bottom: 0;
}

.action_list li {
  width: auto !important;
  margin-right: 4px !important;
}

.action_list li .btn__cancel {
  background-color: #ec2129;
  border-radius: 0;
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  box-shadow: 0px 0px 2px #691619;
}

.apploader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  animation-delay: 1s;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.67);
}

.item-1 {
  width: 20px;
  height: 20px;
  background: #f583a1;
  border-radius: 50%;
  background-color: #eed968;
  margin: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%,
    75% {
    transform: scale(2.5);
  }
  78%,
    100% {
    opacity: 0;
  }
}
.item-1:before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #eed968;
  opacity: 0.7;
  animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  animation-delay: 200ms;
  transition: 0.5s all ease;
  transform: scale(1);
}

.item-2 {
  width: 20px;
  height: 20px;
  background: #f583a1;
  border-radius: 50%;
  background-color: #eece68;
  margin: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%,
    75% {
    transform: scale(2.5);
  }
  78%,
    100% {
    opacity: 0;
  }
}
.item-2:before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #eece68;
  opacity: 0.7;
  animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  animation-delay: 400ms;
  transition: 0.5s all ease;
  transform: scale(1);
}

.item-3 {
  width: 20px;
  height: 20px;
  background: #f583a1;
  border-radius: 50%;
  background-color: #eec368;
  margin: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%,
    75% {
    transform: scale(2.5);
  }
  78%,
    100% {
    opacity: 0;
  }
}
.item-3:before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #eec368;
  opacity: 0.7;
  animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  animation-delay: 600ms;
  transition: 0.5s all ease;
  transform: scale(1);
}

.item-4 {
  width: 20px;
  height: 20px;
  background: #f583a1;
  border-radius: 50%;
  background-color: #eead68;
  margin: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%,
    75% {
    transform: scale(2.5);
  }
  78%,
    100% {
    opacity: 0;
  }
}
.item-4:before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #eead68;
  opacity: 0.7;
  animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  animation-delay: 800ms;
  transition: 0.5s all ease;
  transform: scale(1);
}

.item-5 {
  width: 20px;
  height: 20px;
  background: #f583a1;
  border-radius: 50%;
  background-color: #ee8c68;
  margin: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%,
    75% {
    transform: scale(2.5);
  }
  78%,
    100% {
    opacity: 0;
  }
}
.item-5:before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ee8c68;
  opacity: 0.7;
  animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  animation-delay: 1000ms;
  transition: 0.5s all ease;
  transform: scale(1);
}

.category-wrapper ul li .category__counter {
  width: 100%;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  text-align: center;
  padding-top: 30%;
}

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

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