@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
/*Primary Colors*/
/*Accent Colors*/
* {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

body {
  scroll-behavior: smooth;
}

header {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0px;
  left: 0px;
  padding: 0 15px;
  background: #00274d;
}
header .header {
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header .header #logo {
  position: relative;
  z-index: 99;
}
header .header #logo img {
  display: block;
  height: 75px;
}
@media screen and (max-width: 575px) {
  header .header #logo img {
    width: 130px;
  }
}
header .header #logo p {
  margin-bottom: 0;
  display: flex;
}
header .header nav ul {
  display: flex;
  margin: 0px;
}
header .header nav ul li {
  padding: 0 0px 0 60px;
}
header .header nav ul li a {
  color: #ffffff;
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: capitalize;
  cursor: pointer;
  display: flex;
  align-items: center;
}
header .header nav ul li a:hover {
  color: #f58a1b;
  text-decoration: none;
}
header .header nav ul li a em {
  width: 10px;
  height: 8px;
  background: url("../../images/dropdown.svg") no-repeat center;
  margin-left: 5px;
  display: inline-block;
}
header .header nav ul li a.active {
  color: #f58a1b;
}
@media screen and (max-width: 991px) {
  header .header nav ul li {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  header .header nav {
    display: block;
    right: -350px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0px;
    width: 300px;
    background: #ffffff;
    height: 100vh;
    z-index: 999;
  }
  header .header nav ul {
    flex-direction: column;
    padding-top: 50px;
  }
  header .header nav ul li {
    padding: 0 20px 20px;
  }
  header .header nav ul li a {
    color: #48524d !important;
  }
  header .header nav.menu_open {
    display: block;
    right: 0px;
  }
}
header .header .header_actions {
  display: flex;
  align-items: center;
}
header .header .header_actions a {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #48524d;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header .header_actions a.freetrail {
  background: #facd00;
  border-radius: 6px;
  height: 40px;
  padding: 0 26px;
  line-height: 40px;
  margin-left: 30px;
}
header .header .header_actions a.freetrail:hover {
  text-decoration: none !important;
  background: #ebc208;
}
header .header .header_actions a:hover {
  text-decoration: none !important;
  color: #48524d;
}
@media screen and (max-width: 575px) {
  header .header .header_actions a {
    font-size: 14px;
  }
  header .header .header_actions a.freetrail {
    padding: 0 15px;
    margin-left: 10px;
    height: 35px;
    line-height: 35px;
  }
}
header.stickyheader {
  box-shadow: 0 10px 20px #0000001a;
  background: #00274d;
}
header.stickyheader .header {
  height: 100px;
}
@media screen and (max-width: 575px) {
  header.stickyheader .header {
    height: 65px;
  }
}
@media screen and (max-width: 575px) {
  header .header {
    height: 70px;
  }
}

/* dropdown */

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  background: #222733;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 15px;
}

.dropdown span {
  color: #ffffff;
  font-weight: bold;
  line-height: 70px;
}

.dropdown li ul {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.dropdown_full {
  width: 100vw;
}

.dropdown_submenu {
  border-right: 1px solid gray;
  padding: 0px 10px 0px 0px !important;
  flex: 1;
  margin: 10px 20px 10px 20px;
}
.dropdown_submenu:nth-last-child(1) {
  border-right: 0px;
}

.dropdown li ul li {
  padding: 10px 10px 10px 20px !important;
  cursor: pointer;

  width: 100%;
}
.dropdown li ul li:hover {
  border-radius: 10px;
  background: black;
}

.dropdown ul li:hover a {
  color: white !important;
}

.dropdown li ul li a {
  color: #84859a !important;
  font-size: 15px;
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: #48524d;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .scroll-top {
    display: none !important;
  }
}

.scroll-top img {
  width: 15px;
}

.home_banner {
  background: url("../../images/home_banner.webp") no-repeat right bottom;
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.home_banner .banner_sec {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 99;
  background: rgba(0, 39, 77, 0.7);
}
.home_banner .banner_sec .banner_text {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .home_banner .banner_sec .banner_text {
    width: 100%;
  }
}
.home_banner .banner_sec .banner_cnt {
  display: block;
  text-align: center;
  width: 100%;
  padding-top: 0px;
}
.home_banner .banner_sec h1 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 52px;
  line-height: 64px;
  color: #ffffff;
  margin-bottom: 30px;
}
.home_banner .banner_sec h1 span {
  color: #ffffff;
}
.home_banner .banner_sec p {
  font-size: 24px;
  color: #ffffff;
  line-height: 30px;
  margin-bottom: 40px;
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.home_banner .banner_sec ul {
  display: flex;
}
.home_banner .banner_sec ul li {
  padding-right: 30px;
  margin-bottom: 15px;
  text-align: center;
}
.home_banner .banner_sec ul li a {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.home_banner .banner_sec ul li a.freetrail {
  background: #48524d;
  font-size: 20px;
  color: #ffffff;
  border-radius: 10px;
  padding: 0 40px;
  box-shadow: 0 10px 30px #00000033;
}
.home_banner .banner_sec ul li a:hover {
  text-decoration: none !important;
}
.home_banner .banner_sec ul li label {
  color: #29a34a;
  font-size: 14px;
  font-style: italic;
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  display: block;
  padding-top: 10px;
}
.home_banner .banner_sec .banner_img {
  width: 50%;
}
.home_banner .banner_sec .banner_img figure {
  margin: 0 0 0 -35px;
}
.home_banner .banner_sec .banner_img figure img {
  display: block;
}
@media screen and (max-width: 991px) {
  .home_banner .banner_sec .banner_img figure img {
    width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .home_banner .banner_sec .banner_img {
    display: none;
  }
  .home_banner .banner_sec .banner_img figure img {
    width: 500px;
  }
}
@media screen and (max-width: 1200px) {
  .home_banner .banner_sec h1 {
    font-size: 40px;
    line-height: 46px;
  }
  .home_banner .banner_sec p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media screen and (max-width: 767px) {
  .home_banner .banner_sec {
    height: auto;
    padding: 50px 10px;
  }
  .home_banner .banner_sec h1 {
    font-size: 22px !important;
    line-height: 32px;
    margin-bottom: 10px;
  }
  .home_banner .banner_sec h1 br {
    display: none;
  }
  .home_banner .banner_sec a img {
    width: 60px;
  }
  .home_banner .banner_sec p {
    margin-bottom: 10px;
  }
  .home_banner .banner_sec p br {
    display: none;
  }
  .home_banner .banner_sec ul li {
    padding: 0 2px;
    padding-right: 0;
  }
  .home_banner .banner_sec ul li a {
    height: 40px;
  }
  .home_banner .banner_sec ul li a.freetrail {
    padding: 0 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  .home_banner .banner_sec {
    text-align: center;
  }
  .home_banner .banner_sec ul {
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .home_banner .banner_sec .banner_cnt {
    padding-top: 0px;
  }
}
.home_banner:before {
  content: "";
  width: 100%;
  height: calc(100% - 50px);
  z-index: 9;
  background: url("../../images/home_banner-bg.svg") no-repeat right top;
  position: absolute;
  top: 50px;
  right: 0px;
}
@media screen and (max-width: 767px) {
  .home_banner {
    height: auto;
  }
}
@media screen and (max-width: 575px) {
  .home_banner {
    padding-top: 70px;
  }
}
.home_banner header .header nav ul li a {
  color: #ffffff;
}
.home_banner header #logo a .homelogo {
  display: block;
}
.home_banner header #logo a .stickylogo {
  display: none;
}
.home_banner header.stickyheader #logo a .homelogo {
  display: none;
}
.home_banner header.stickyheader #logo a .stickylogo {
  display: block;
}

.subtitle {
  font-size: 36px;
  color: #48524d;
  line-height: 38px;
  margin: 0 auto 20px;
  text-align: center;
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .subtitle {
    font-size: 30px;
  }
}

.testmonial_wrap {
  width: 100%;
  padding: 100px 15px;
  background: url("../../images/lines_bg.svg") no-repeat center top;
}
.testmonial_wrap h3 {
  display: block;
  text-align: center;
  margin: 0 auto 50px;
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  line-height: 38px;
}
.testmonial_wrap .swiper-container {
  border-radius: 40px;
  overflow: hidden;
  background: #ffffff;
}
.testmonial_wrap .testimonails_content {
  max-width: 990px;
  margin: 0 auto;
  width: 100%;
  box-shadow: 0 20px 40px #0000000d;
  border-radius: 40px;
  position: relative;
}
.testmonial_wrap .testimonails_content .quote {
  margin: 0 auto 60px;
  display: block;
  text-align: center;
}
.testmonial_wrap .testimonails_content .testimonails_list {
  display: flex;
  width: 100%;
}
.testmonial_wrap .testimonails_content .testimonails_list figure {
  max-width: 400px;
  width: 100%;
  background: #f5f5f5;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testmonial_wrap
  .testimonails_content
  .testimonails_list
  .testimonails_details {
  padding: 50px;
  padding-top: 90px;
  background: url("../../images/quote.svg") no-repeat 50px 50px;
}
.testmonial_wrap
  .testimonails_content
  .testimonails_list
  .testimonails_details
  p {
  font-size: 20px;
  line-height: 28px;
  color: #48524d;
  margin-bottom: 20px;
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: italic;
}
.testmonial_wrap
  .testimonails_content
  .testimonails_list
  .testimonails_details
  label {
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  color: #29a34a;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .testmonial_wrap .testimonails_content .testimonails_list {
    flex-direction: column;
  }
  .testmonial_wrap
    .testimonails_content
    .testimonails_list
    .testimonails_details {
    background-size: 20px;
    background-position: 30px 30px;
    padding: 25px;
    padding-top: 53px;
  }
  .testmonial_wrap
    .testimonails_content
    .testimonails_list
    .testimonails_details
    p {
    font-size: 16px;
    line-height: 24px;
  }
}
.testmonial_wrap .pagination_wrap .swiper-pagination {
  position: static;
}
.testmonial_wrap .pagination_wrap .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #707070;
  background: transparent;
  margin: 0 5px;
}
.testmonial_wrap
  .pagination_wrap
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #d6cdc4;
  border: 0px;
}
.testmonial_wrap .swiper-button-next,
.testmonial_wrap .swiper-button-prev {
  width: 48px;
  height: 48px;
  background: #ffffff;
  box-shadow: 0 0 20px #0000001a;
  border-radius: 4px;
  outline: none;
}
.testmonial_wrap .swiper-button-next:after,
.testmonial_wrap .swiper-button-prev:after {
  display: none;
}
.testmonial_wrap .swiper-button-next {
  right: -98px;
}
.testmonial_wrap .swiper-button-prev {
  left: -98px;
  transform: rotate(180deg);
}
@media screen and (max-width: 1200px) {
  .testmonial_wrap .swiper-button-next {
    right: calc(50% - 50px);
    top: 100%;
    margin-top: 20px;
  }
  .testmonial_wrap .swiper-button-prev {
    left: calc(50% - 50px);
    top: 100%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .testmonial_wrap {
    padding-top: 30px;
  }
  .testmonial_wrap h3 {
    font-size: 28px;
    line-height: 32px;
    margin: 0 auto 30px;
  }
}

.footer_wrapper {
  width: 100%;
  display: block;
  padding: 50px 0 0 0;
  background: #00274d;
}
.footer_wrapper #logo {
  padding-bottom: 0px;
}
@media screen and (max-width: 991px) {
  .footer_wrapper #logo {
    margin-bottom: 20px;
  }
}
.footer_wrapper #logo img {
  max-width: 200px;
}
@media screen and (max-width: 767px) {
  .footer_wrapper #logo {
    text-align: center;
  }
}
.footer_wrapper .footer_social {
  display: flex;
}
.footer_wrapper .footer_social li {
  padding-right: 20px;
}
.footer_wrapper .footer_nav h3 {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 19px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .footer_wrapper .footer_nav ul li a {
    font-size: 14px;
  }
}
.footer_wrapper .footer_cnt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.footer_wrapper .footer_cnt ul.footer_nav {
  display: flex;
  align-items: center;
  padding: 0px;
  margin: 0;
}
.footer_wrapper .footer_cnt ul.footer_nav li {
  padding: 0 10px;
}
.footer_wrapper .footer_cnt ul.footer_nav li a {
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #ffffffcc;
}
.footer_wrapper .footer_cnt ul.footer_nav li.view_btn a {
  color: #8ac640;
  font-size: 14px;
  text-decoration: underline;
}
.footer_wrapper .footer_cnt ul.footer_nav li.call a {
  background: url("../../images/telephone-call.svg") no-repeat left center;
  padding-left: 30px;
  background-size: 17px;
  white-space: nowrap;
}
.footer_wrapper .footer_cnt ul.footer_nav li.mail a {
  background: url("../../images/envelope.svg") no-repeat left center;
  padding-left: 30px;
  background-size: 17px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .footer_wrapper .footer_cnt {
    flex-direction: column;
  }
  .footer_wrapper .footer_cnt ul.footer_nav {
    flex-flow: wrap;
    justify-content: center;
    margin-bottom: 20px;
  }
}
.footer_wrapper .copyrights {
  display: flex;
  justify-content: center;
  width: 100%;
  border-top: 1px solid rgba(164, 169, 166, 0.2);
  height: 95px;
  align-items: center;
}
.footer_wrapper .copyrights p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
  .footer_wrapper .copyrights {
    height: 60px;
  }
}

@media screen and (min-width: 767px) {
  #nav-icon1 {
    display: none;
  }
}
#nav-icon1 {
  width: 40px;
  height: 25px;
  position: relative;
  margin: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 999;
}
#nav-icon1.open span {
  background: #ddd !important;
}

#nav-icon1 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 12px;
}

#nav-icon1 span:nth-child(3) {
  top: 24px;
}

#nav-icon1.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.primary_btn {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  border: none !important;
  font-style: normal;
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
  background: #015391;
  border-radius: 4px;
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 20px;
  text-transform: uppercase;
  border: 0px;
  outline: !important;
}
.primary_btn:hover {
  text-decoration: none;
  color: #ffffff;
  background: #e98932;
}

.secondary_btn {
  border: 1px solid #48524d4d;
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  background: #ffffff;
  font-size: 12px;
  line-height: 14px;
  color: #48524d;
  border-radius: 4px;
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 20px;
  text-transform: uppercase;
}
.secondary_btn:hover {
  background: #48524d4d;
  text-decoration: none;
  color: #48524d;
}

.title {
  font-family: "Raleway", sans-serif;
  font-size: 44px;
  color: #f5891c;
  display: block;
  text-align: center;
  margin: 0 auto 40px;
  font-weight: 700;
}

.dantom_banner_wrap {
  padding: 70px 0px;
}
.dantom_banner_wrap .dantom_banner {
  padding: 0 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.dantom_banner_wrap .dantom_banner .dantom_banner_text {
  width: 50%;
  padding-right: 50px;
}
.dantom_banner_wrap .dantom_banner .dantom_banner_text h3 {
  font-family: "Raleway", sans-serif;
  font-size: 40px;
  line-height: 44px;
  color: #005694;
  display: block;
  text-align: left;
  margin: 0 auto 30px;
  font-weight: 700;
  position: relative;
}
.dantom_banner_wrap .dantom_banner .dantom_banner_text h3:after {
  content: "";
  width: 60px;
  height: 3px;
  border-radius: 10px;
  background: #f5891c;
  position: absolute;
  left: 0px;
  top: 100%;
}
.dantom_banner_wrap .dantom_banner .dantom_banner_text p {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  line-height: 35px;
  padding-bottom: 20px;
  margin: 0px;
}
.dantom_banner_wrap .dantom_banner .dantom_banner_text p strong {
  font-weight: 700;
}
.dantom_banner_wrap .dantom_banner .dantom_banner_img {
  width: 50%;
}
.dantom_banner_wrap .dantom_banner .dantom_banner_img figure {
  margin-bottom: 0px;
  display: block;
}
.dantom_banner_wrap .dantom_banner .dantom_banner_img figure img {
  display: block;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .dantom_banner_wrap .dantom_banner {
    flex-direction: column;
    padding: 0 20px;
  }
  .dantom_banner_wrap .dantom_banner .dantom_banner_text {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }
  .dantom_banner_wrap .dantom_banner .dantom_banner_text h3 {
    font-size: 24px;
    line-height: 30px;
  }
  .dantom_banner_wrap .dantom_banner .dantom_banner_text p {
    font-size: 16px;
    line-height: 24px;
  }
  .dantom_banner_wrap .dantom_banner .dantom_banner_img {
    width: 100%;
    padding-bottom: 20px;
  }
  .dantom_banner_wrap .dantom_banner .dantom_banner_img figure img {
    margin: 0 auto;
    max-width: 100%;
  }
}
.dantom_banner_wrap .dantom_banner.Objective {
  flex-direction: row-reverse;
}
.dantom_banner_wrap .dantom_banner.Objective .dantom_banner_img figure img {
  max-width: 500px;
}
@media screen and (max-width: 767px) {
  .dantom_banner_wrap .dantom_banner.Objective {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .dantom_banner_wrap {
    padding: 30px 0px;
  }
}

.dantom_products_wrap {
  background: #ededed;
  padding: 70px 20px;
  position: relative;
  z-index: 1;
}
.dantom_products_wrap h3 {
  font-family: "Raleway", sans-serif;
  font-size: 46px;
  line-height: 56px;
  color: #00274d;
  display: block;
  text-align: left;
  margin: 0 auto 30px;
  font-weight: 700;
  position: relative;
  display: block;
  text-align: center;
}
.dantom_products_wrap .dantom_products_cnt {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dantom_products_wrap .dantom_products_cnt .cnt_text {
  display: block;
  max-width: 60%;
}
.dantom_products_wrap .dantom_products_cnt .cnt_text h4 {
  font-family: "Raleway", sans-serif;
  font-size: 40px;
  line-height: 44px;
  color: #005694;
  display: block;
  text-align: left;
  margin: 0 auto 30px;
  font-weight: 700;
  position: relative;
}
.dantom_products_wrap .dantom_products_cnt .cnt_text h4:after {
  content: "";
  width: 60px;
  height: 3px;
  border-radius: 10px;
  background: #f5891c;
  position: absolute;
  left: 0px;
  top: 100%;
}
.dantom_products_wrap .dantom_products_cnt .cnt_text p {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  line-height: 38px;
  padding-bottom: 30px;
  margin: 0px;
  color: #000000;
  display: block;
  text-align: left;
  max-width: 100%;
  margin: 0 auto;
}
.dantom_products_wrap .dantom_products_cnt .cnt_text p strong {
  font-weight: 700;
}
.dantom_products_wrap .dantom_products_cnt figure {
  display: block;
  width: 30%;
}
.dantom_products_wrap .dantom_products_cnt figure img {
  max-width: 100%;
}
.dantom_products_wrap
  .dantom_products_cnt
  .dantom_products_lists
  .dantom_products_list {
  background: #ffffff;
  border-radius: 6px;
  height: 250px;
  border-left: 6px solid #facd00;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.dantom_products_wrap
  .dantom_products_cnt
  .dantom_products_lists
  .dantom_products_list
  figure {
  width: 28%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px;
}
.dantom_products_wrap
  .dantom_products_cnt
  .dantom_products_lists
  .dantom_products_list
  figure
  img {
  display: block;
}
.dantom_products_wrap
  .dantom_products_cnt
  .dantom_products_lists
  .dantom_products_list
  .dantom_product_details {
  width: 40%;
  padding-right: 5%;
}
.dantom_products_wrap
  .dantom_products_cnt
  .dantom_products_lists
  .dantom_products_list
  .dantom_product_details
  h5 {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 22px;
  padding-bottom: 10px;
  margin: 0px;
  color: #18121d;
}
.dantom_products_wrap
  .dantom_products_cnt
  .dantom_products_lists
  .dantom_products_list
  .dantom_product_details
  p {
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
  padding-bottom: 30px;
  margin: 0px;
  color: #48524d;
}
.dantom_products_wrap
  .dantom_products_cnt
  .dantom_products_lists
  .dantom_products_list
  .dantom_product_features {
  width: 27%;
}
.dantom_products_wrap
  .dantom_products_cnt
  .dantom_products_lists
  .dantom_products_list
  .dantom_product_features
  ul {
  padding: 0px;
  margin: 0px;
  width: 100%;
}
.dantom_products_wrap
  .dantom_products_cnt
  .dantom_products_lists
  .dantom_products_list
  .dantom_product_features
  ul
  li {
  background: url("../../images/checked.svg") no-repeat 0 2px;
  padding-left: 20px;
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 25px;
}
.dantom_products_wrap
  .dantom_products_cnt
  .dantom_products_lists
  .dantom_products_list
  .dantom_product_features
  ul
  li:nth-last-child(1) {
  margin-bottom: 0px;
}
.dantom_products_wrap
  .dantom_products_cnt
  .dantom_products_lists
  .dantom_products_list:nth-last-child(1) {
  margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
  .dantom_products_wrap
    .dantom_products_cnt
    .dantom_products_lists
    .dantom_products_list {
    flex-direction: column;
    height: auto;
    padding: 25px;
  }
  .dantom_products_wrap
    .dantom_products_cnt
    .dantom_products_lists
    .dantom_products_list
    figure {
    width: 100%;
    padding-bottom: 20px;
  }
  .dantom_products_wrap
    .dantom_products_cnt
    .dantom_products_lists
    .dantom_products_list
    .dantom_product_details {
    width: 100%;
    padding-bottom: 20px;
  }
  .dantom_products_wrap
    .dantom_products_cnt
    .dantom_products_lists
    .dantom_products_list
    .dantom_product_details
    p {
    padding-bottom: 10px;
  }
  .dantom_products_wrap
    .dantom_products_cnt
    .dantom_products_lists
    .dantom_products_list
    .dantom_product_features {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .dantom_products_wrap .dantom_products_cnt p {
    font-size: 16px;
    line-height: 20px;
  }
}
.dantom_products_wrap .dantom_products_cnt.technical {
  flex-direction: row-reverse;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .dantom_products_wrap {
    padding: 30px 20px;
  }
  .dantom_products_wrap h3 {
    font-size: 30px;
    line-height: 36px;
  }
  .dantom_products_wrap .dantom_products_cnt {
    flex-direction: column !important;
  }
  .dantom_products_wrap .dantom_products_cnt .cnt_text {
    max-width: 100%;
  }
  .dantom_products_wrap .dantom_products_cnt .cnt_text h4 {
    font-size: 24px;
    line-height: 30px;
  }
  .dantom_products_wrap .dantom_products_cnt .cnt_text p {
    font-size: 16px;
    line-height: 24px;
  }
  .dantom_products_wrap .dantom_products_cnt figure {
    max-width: 100%;
    width: 100%;
  }
}

.dantom_commitment {
  background: #f5f5f5;
  padding: 100px 20px;
}
.dantom_commitment .dantom_commitment_cnt {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  flex-direction: row-reverse;
}
.dantom_commitment .dantom_commitment_cnt figure {
  margin: 0px;
  padding: 0px;
}
.dantom_commitment .dantom_commitment_cnt figure img {
  display: block;
  max-width: 100%;
}
.dantom_commitment .dantom_commitment_cnt .dantom_commitment_text {
  max-width: 420px;
}
.dantom_commitment .dantom_commitment_cnt .dantom_commitment_text h4 {
  font-family: "Raleway", sans-serif;
  font-size: 40px;
  line-height: 44px;
  color: #005694;
  display: block;
  text-align: left;
  margin: 0 auto 30px;
  font-weight: 700;
  position: relative;
}
.dantom_commitment .dantom_commitment_cnt .dantom_commitment_text h4:after {
  content: "";
  width: 60px;
  height: 3px;
  border-radius: 10px;
  background: #f5891c;
  position: absolute;
  left: 0px;
  top: 100%;
}
.dantom_commitment .dantom_commitment_cnt .dantom_commitment_text p {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  padding-bottom: 25px;
  margin: 0px;
  color: #48524d;
}
@media screen and (max-width: 767px) {
  .dantom_commitment .dantom_commitment_cnt {
    flex-direction: column-reverse;
    padding: 0;
  }
  .dantom_commitment .dantom_commitment_cnt .dantom_commitment_text {
    max-width: 100%;
    padding-top: 30px;
  }
  .dantom_commitment .dantom_commitment_cnt .dantom_commitment_text h4 {
    font-size: 30px;
    line-height: 36px;
    padding-bottom: 15px;
  }
  .dantom_commitment .dantom_commitment_cnt .dantom_commitment_text p {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .dantom_commitment {
    padding: 30px 20px;
  }
}

.dantom_blogs_wrap {
  padding: 100px 0;
}
.dantom_blogs_wrap h4 {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #29a34a;
  padding-bottom: 20px;
  margin: 0px;
  text-align: center;
}
.dantom_blogs_wrap h6 {
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #48524d;
  max-width: 515px;
  padding-bottom: 50px;
  margin: 0px auto;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}
.dantom_blogs_wrap .swiper-slide {
  width: 440px !important;
}
.dantom_blogs_wrap .blog {
  background: #ffffff;
  box-shadow: 0 10px 20px #0000000d;
}
.dantom_blogs_wrap .blog figure {
  display: block;
  margin: 0px;
  position: relative;
}
.dantom_blogs_wrap .blog figure img {
  max-width: 100%;
}
.dantom_blogs_wrap .blog figure figcaption {
  min-width: 90px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #48524d;
  color: #ffffff;
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 14px;
  padding: 0 15px;
  position: absolute;
  left: 0px;
  bottom: 0px;
}
.dantom_blogs_wrap .blog .blog_details {
  padding: 30px;
}
.dantom_blogs_wrap .blog p {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 27px;
  color: #48524d;
  padding-bottom: 20px;
  margin-bottom: 0px;
}
.dantom_blogs_wrap .blog a {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 16px;
  color: #29a34a;
}
.dantom_blogs_wrap .swiper-pagination-progressbar {
  position: static;
  max-width: 800px;
  margin: 0 auto;
  height: 2px !important;
  margin-top: 80px;
  background: #48524d33 !important;
  border-radius: 10px;
  overflow: hidden;
}
.dantom_blogs_wrap
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background: #29a34a !important;
}
@media screen and (max-width: 991px) {
  .dantom_blogs_wrap .swiper-pagination-progressbar {
    max-width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .dantom_blogs_wrap {
    padding: 30px 0px;
  }
  .dantom_blogs_wrap .swiper-slide {
    width: 300px !important;
  }
  .dantom_blogs_wrap .swiper-slide .blog_details {
    padding: 20px;
  }
  .dantom_blogs_wrap .swiper-slide .blog_details p {
    font-size: 16px;
    line-height: 22px;
    padding-bottom: 10px;
  }
  .dantom_blogs_wrap .swiper-slide .blog_details a {
    font-size: 14px;
    line-height: 16px;
  }
}

/************ ABout us ********************/
.banner {
  padding-top: 110px;
}

.about_banner {
  background: transparent;
}
.about_banner .banner_sec {
  padding-top: 70px;
}
.about_banner .banner_sec .banner_cnt {
  max-width: 950px;
  margin: 0 auto;
  width: 100%;
}
.about_banner .banner_sec .banner_cnt h2 {
  color: #f58a1b;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 60px;
  line-height: 60px;
  padding-bottom: 20px;
  text-align: center;
}
.about_banner .banner_sec .banner_cnt .banner_inner {
  display: flex;
  justify-content: center;
  padding-bottom: 35px;
  text-align: center;
}
.about_banner .banner_sec .banner_cnt .banner_inner label {
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  color: #48524d;
  margin: 0px;
  padding: 0 0 0 45px;
  position: relative;
}
.about_banner .banner_sec .banner_cnt .banner_inner label::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 11px;
  width: 40px;
  height: 2px;
  background: #48524d;
}
.about_banner .banner_sec .banner_cnt .banner_inner .banner_inner_text {
  max-width: 820px;
}
.about_banner .banner_sec .banner_cnt .banner_inner .banner_inner_text p {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 0px;
  padding: 0px;
  color: #48524d;
}
@media screen and (max-width: 1400px) {
  .about_banner .banner_sec .banner_cnt h2 {
    font-size: 50px;
    max-width: 770px;
    line-height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .about_banner .banner_sec {
    padding: 0 20px;
  }
  .about_banner .banner_sec .banner_cnt {
    padding-top: 0px;
  }
  .about_banner .banner_sec .banner_cnt h2 {
    font-size: 30px;
    line-height: 38px;
    padding-bottom: 0px;
  }
  .about_banner .banner_sec .banner_cnt .banner_inner {
    flex-direction: column;
  }
  .about_banner .banner_sec .banner_cnt .banner_inner .banner_inner_text {
    width: 100%;
    padding-top: 0px;
  }
  .about_banner .banner_sec .banner_cnt .banner_inner .banner_inner_text p {
    font-size: 16px;
    line-height: 26px;
  }
}
.about_banner .banner_bottom {
  background: url("../../images/background-1.svg") no-repeat center top;
  padding-top: 110px;
}
.about_banner .banner_bottom .banner_bottom_cnt {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.about_banner .banner_bottom .banner_bottom_cnt figure {
  margin: 0px 110px 0 0;
  padding: 0px;
  display: flex;
}
.about_banner .banner_bottom .banner_bottom_cnt figure img {
  display: block;
}
.about_banner .banner_bottom .banner_bottom_cnt .dantom_commitment_text {
  max-width: 420px;
}
.about_banner .banner_bottom .banner_bottom_cnt .dantom_commitment_text h4 {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  line-height: 40px;
  color: #ffffff;
  padding-bottom: 30px;
  margin: 0px;
}
.about_banner .banner_bottom .banner_bottom_cnt .dantom_commitment_text p {
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 30px;
  padding-bottom: 0px;
  margin: 0px;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .about_banner .banner_bottom {
    background: #29a34a;
    padding: 50px 20px 0;
  }
  .about_banner .banner_bottom .banner_bottom_cnt {
    flex-direction: column-reverse;
  }
  .about_banner .banner_bottom .banner_bottom_cnt figure {
    margin: 0px;
  }
  .about_banner .banner_bottom .banner_bottom_cnt figure img {
    margin: 0 auto;
  }
  .about_banner .banner_bottom .banner_bottom_cnt .dantom_commitment_text h4 {
    font-size: 30px;
    line-height: 34px;
    padding-bottom: 20px;
  }
  .about_banner .banner_bottom .banner_bottom_cnt .dantom_commitment_text p {
    font-size: 16px;
    line-height: 24px;
  }
}

.dantom_team_wrap {
  padding: 100px 20px;
  background: transparent linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%) 0%
    0% no-repeat padding-box;
}
.dantom_team_wrap .dantom_team_cnt {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.dantom_team_wrap .dantom_team_cnt h5 {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 22px;
  color: #29a34a;
  margin-bottom: 10px;
  display: block;
}
.dantom_team_wrap .dantom_team_cnt h2 {
  font-family: museo-sans, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 40px;
  line-height: 48px;
  color: #48524d;
  margin-bottom: 30px;
}
.dantom_team_wrap .dantom_team_cnt p {
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #48524d;
  margin-bottom: 10px;
}
.dantom_team_wrap .dantom_team_cnt figure {
  margin: 0px;
}
.dantom_team_wrap .dantom_team_cnt figure img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .dantom_team_wrap {
    padding: 50px 20px;
  }
  .dantom_team_wrap .dantom_team_cnt h5 {
    font-size: 16px;
  }
  .dantom_team_wrap .dantom_team_cnt h2 {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 10px;
  }
}

.opportunities_wrap {
  background: #ffffff;
  padding: 100px 20px;
}
.opportunities_wrap .opportunities_cnt {
  max-width: 990px;
  margin: 0 auto;
}
.opportunities_wrap .opportunities_cnt h2 {
  font-family: museo-sans, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 40px;
  line-height: 48px;
  color: #48524d;
  margin-bottom: 40px;
  text-align: center;
}
.opportunities_wrap .opportunities_cnt ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.opportunities_wrap .opportunities_cnt ul li {
  width: calc(50% - 18px);
  margin-bottom: 36px;
}
.opportunities_wrap .opportunities_cnt ul li a {
  background: #ffffff;
  border: 1px solid #48524d4d;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 30px;
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  color: #48524d;
  background: url("../../images/right-arrow.svg") no-repeat calc(100% - 30px)
    center;
}
.opportunities_wrap .opportunities_cnt ul li a:hover {
  background-color: #48524d4d;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .opportunities_wrap .opportunities_cnt ul li {
    width: 100%;
  }
}
.opportunities_wrap .opportunities_cnt .primary_btn {
  margin: 0 auto;
  width: 170px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .opportunities_wrap {
    padding: 30px 20px;
  }
  .opportunities_wrap .opportunities_cnt h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .opportunities_wrap .opportunities_cnt ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .opportunities_wrap .opportunities_cnt ul li a {
    font-size: 16px;
    line-height: 24px;
    padding: 15px 20px;
    height: auto;
    background-size: 9px;
  }
}

.job_details_sec {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.job_details_sec .job_details_left {
  max-width: 600px;
}
.job_details_sec .job_details_left .job_details_head {
  padding-bottom: 0px;
  min-height: 350px;
}
.job_details_sec .job_details_left .job_details_head a {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 30px;
  color: #48524d;
  background: url(../../images/return_back.svg) no-repeat left center;
  display: inline-block;
  padding-left: 20px;
}
.job_details_sec .job_details_left .job_details_head h2 {
  font-family: museo-sans, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 48px;
  line-height: 57px;
  color: #29a34a;
  margin-bottom: 20px;
  max-width: 500px;
}
.job_details_sec .job_details_left .job_details_head span {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 19px;
  display: block;
}
@media screen and (max-width: 575px) {
  .job_details_sec .job_details_left .job_details_head {
    min-height: 250px;
  }
  .job_details_sec .job_details_left .job_details_head h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.job_details_sec .job_details_left .job_details_cnt {
  padding-bottom: 40px;
}
.job_details_sec .job_details_left .job_details_cnt h4 {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  color: #0b131c;
  margin-bottom: 10px;
}
.job_details_sec .job_details_left .job_details_cnt p {
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: rgba(72, 82, 77, 0.8);
  margin-bottom: 20px;
}
.job_details_sec .job_details_left .job_details_cnt ul {
  padding-bottom: 30px;
}
.job_details_sec .job_details_left .job_details_cnt ul li {
  color: rgba(72, 82, 77, 0.8);
  font-weight: 500;
  font-family: museo-sans, sans-serif;
  font-size: 16px;
  line-height: 36px;
}
.job_details_sec .job_details_right {
  padding-top: 0px;
  padding-bottom: 40px;
}
.job_details_sec .job_details_right .job_details_form {
  width: 450px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 20px #0000001a;
  padding: 40px;
  position: sticky;
  top: 110px;
}
.job_details_sec .job_details_right .job_details_form h4 {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  line-height: 26px;
  color: #48524d;
  max-width: 220px;
  margin-bottom: 25px;
}
.job_details_sec .job_details_right .job_details_form ul li .form-control {
  border: 0px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.3);
  border-radius: 0px;
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 0px;
  padding: 0;
  outline: none;
  box-shadow: none;
  margin-bottom: 30px;
  color: #48524d;
}
.job_details_sec
  .job_details_right
  .job_details_form
  ul
  li
  .form-control:focus {
  border-bottom: 1px solid #29a34a;
  color: #29a34a;
}
.job_details_sec .job_details_right .job_details_form ul li textarea {
  width: 100%;
  border: 0px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.3);
  border-radius: 0px;
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 0px;
  padding: 0;
  outline: none;
  box-shadow: none;
  margin-bottom: 20px;
  color: #48524d;
  resize: none;
  height: 100px;
}
@media screen and (max-width: 767px) {
  .job_details_sec {
    padding: 0 20px;
    flex-direction: column;
  }
  .job_details_sec .job_details_right {
    padding-top: 0;
  }
  .job_details_sec .job_details_right .job_details_form {
    max-width: 100%;
    padding: 20px;
  }
}

.job_details_banner {
  background: url("../../images/background-2.svg") no-repeat center top;
  padding-top: 175px;
}
@media screen and (max-width: 767px) {
  .job_details_banner {
    padding-top: 140px;
    background-size: 100% 590px;
  }
}

.blogs_banner {
  background: url("../../images/products_banner.svg") no-repeat right top;
  padding-top: 185px;
  padding-bottom: 40px;
}
.blogs_banner h2 {
  font-family: museo-sans, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 60px;
  text-align: center;
  margin: 0 auto;
  line-height: 70px;
  color: #48524d;
  margin-bottom: 50px;
  max-width: 750px;
}
.blogs_banner .blogs_banner_cnt {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0 20px 40px #0000001a;
  background: #ffffff;
}
.blogs_banner .blogs_banner_cnt figure {
  margin: 0px;
}
.blogs_banner .blogs_banner_cnt figure img {
  display: block;
}
.blogs_banner .blogs_banner_cnt .blogs_banner_text {
  padding: 0 75px 0 50px;
}
.blogs_banner .blogs_banner_cnt .blogs_banner_text span {
  background: #8ac64033;
  margin-bottom: 20px;
  border-radius: 4px;
  padding: 0 15px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 14px;
  color: #48524d;
}
.blogs_banner .blogs_banner_cnt .blogs_banner_text h4 {
  font-family: museo-sans, sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 20px;
  color: #48524d;
}
.blogs_banner .blogs_banner_cnt .blogs_banner_text p {
  font-family: museo-sans, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0px;
  color: #48524d;
}
@media screen and (max-width: 991px) and (min-width: 767px) {
  .blogs_banner .blogs_banner_cnt figure {
    width: 50%;
  }
  .blogs_banner .blogs_banner_cnt figure img {
    max-width: 100%;
  }
  .blogs_banner .blogs_banner_cnt .blogs_banner_text {
    padding: 0 30px 0 30px;
    width: 50%;
  }
  .blogs_banner .blogs_banner_cnt .blogs_banner_text span {
    margin-bottom: 15px;
  }
  .blogs_banner .blogs_banner_cnt .blogs_banner_text h4 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  .blogs_banner .blogs_banner_cnt .blogs_banner_text p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .blogs_banner .blogs_banner_cnt {
    flex-direction: column;
  }
  .blogs_banner .blogs_banner_cnt figure {
    border-radius: 12px;
    overflow: hidden;
  }
  .blogs_banner .blogs_banner_cnt figure img {
    max-width: 100%;
  }
  .blogs_banner .blogs_banner_cnt .blogs_banner_text {
    padding: 20px;
  }
  .blogs_banner .blogs_banner_cnt .blogs_banner_text h4 {
    font-size: 22px;
    line-height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .blogs_banner {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 100px;
    background-position: center top;
  }
  .blogs_banner h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}

.tabs_wrap .nav-tabs_wrap {
  position: sticky;
  top: 100px;
  z-index: 9;
  background: #ffffff;
}
.tabs_wrap .nav-tabs_wrap .tabs_head {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .tabs_wrap .nav-tabs_wrap .tabs_head {
    max-width: 960px;
  }
}
@media screen and (max-width: 991px) {
  .tabs_wrap .nav-tabs_wrap .tabs_head {
    max-width: 720px;
  }
  .tabs_wrap .nav-tabs_wrap .tabs_head ul li a {
    font-size: 12px;
    height: 38px;
    padding: 0 10px;
  }
}
.tabs_wrap .nav-tabs_wrap .blog_search {
  width: 235px;
  border: 1px solid #48524d4d;
  border-radius: 30px;
  height: 45px;
  background: url("../../images/search.svg") no-repeat calc(100% - 22px) center
    #ffffff;
  padding: 8px 0 0 10px;
}
.tabs_wrap .nav-tabs_wrap .blog_search input {
  width: 180px;
  border: 0px !important;
  outline: none !important;
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #48524d;
}
@media screen and (max-width: 767px) {
  .tabs_wrap .nav-tabs_wrap {
    top: 65px;
  }
  .tabs_wrap .nav-tabs_wrap .tabs_head {
    flex-direction: column;
    padding: 0 20px 4px;
    align-items: flex-start;
  }
  .tabs_wrap .nav-tabs_wrap .tabs_head ul {
    flex-wrap: nowrap;
    overflow: auto;
    width: 100%;
  }
  .tabs_wrap .nav-tabs_wrap .tabs_head ul li a {
    font-size: 12px;
    height: 34px;
    padding: 0 15px;
  }
  .tabs_wrap .nav-tabs_wrap .tabs_head .blog_search {
    width: 100%;
  }
}
.tabs_wrap .nav.nav-tabs {
  border-bottom: 0px;
  padding: 10px 0;
}
.tabs_wrap .nav.nav-tabs li a {
  color: #48524db3;
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 24px;
  min-width: 85px;
  padding: 0 25px;
  text-transform: uppercase;
  height: 45px;
  display: flex;
  align-items: center;
  border-radius: 23px;
  justify-content: center;
}
.tabs_wrap .nav.nav-tabs li a.active {
  background: transparent linear-gradient(270deg, #8ac640 0%, #29a34a 100%) 0%
    0% no-repeat padding-box;
  color: #ffffff;
}
.tabs_wrap .nav.nav-tabs li a:hover {
  text-decoration: none;
}
.tabs_wrap .tab-content {
  padding: 40px 0 0 0;
}
.tabs_wrap .tab-content #All {
  opacity: 1;
}

.blogs_list .card-columns {
  column-gap: 0px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}
.blogs_list .card {
  border: 0px;
  padding: 0px 20px 70px;
  margin: 0px;
  width: 33.3%;
  background: transparent;
}
.blogs_list .card figure {
  margin: 0px 0 20px 0;
  box-shadow: 0 20px 40px #0000001a;
  border-radius: 23px;
  position: relative;
}
.blogs_list .card figure img {
  display: block;
}
.blogs_list .card figure figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 4px;
  height: 30px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 24px;
  color: #48524d;
}
.blogs_list .card .card-body {
  padding: 0 15px 0 0;
}
.blogs_list .card .card-body span {
  color: #8ac640;
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  line-height: 14px;
  color: #8ac640;
  margin-bottom: 10px;
  display: block;
}
.blogs_list .card .card-body h5 {
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  line-height: 29px;
  color: #48524d;
  margin-bottom: 15px;
}
.blogs_list .card .card-body p {
  font-family: museo-sans, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #48524d;
  margin-bottom: 0px;
}
.blogs_list .card:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .blogs_list .card-columns {
    margin: 0px;
  }
  .blogs_list .card {
    width: 50%;
  }
  .blogs_list .card .card-body h5 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media screen and (max-width: 565px) {
  .blogs_list {
    padding: 0px;
  }
  .blogs_list .card {
    width: 100%;
  }
}

.subscription {
  width: 100%;
  height: 349px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: url("../../images/subscribe_bg.svg") no-repeat right top;
}
.subscription h4 {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  line-height: 38px;
  color: #ffffff;
  margin-bottom: 35px;
  display: block;
}
.subscription ul {
  display: flex;
}
.subscription ul li {
  padding: 0 5px;
}
.subscription ul li input {
  width: 300px;
  background: #00000033;
  border: 1px solid #ffffff80;
  outline: none !important;
  height: 63px;
  display: flex;
  align-items: center;
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  padding: 0 30px;
}
.subscription ul li input::placeholder {
  color: #ffffff;
}
.subscription ul li .subscribe_btn {
  width: 143px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  line-height: 17px;
  color: #48524d;
  border: 0px;
  outline: none;
  cursor: pointer;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .subscription ul li .subscribe_btn {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .subscription ul {
    flex-direction: column;
  }
}

.blogs_detail_banner figure {
  margin-bottom: 0px;
}
.blogs_detail_banner figure img {
  max-width: 100%;
  display: block;
}
@media screen and (max-width: 1023px) {
  .blogs_detail_banner figure {
    height: 290px;
    position: relative;
    overflow: hidden;
  }
  .blogs_detail_banner figure img {
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    max-width: inherit;
  }
}

.blogs_detail_banner_section {
  margin-top: -90px;
}
.blogs_detail_banner_section .blogs_detail_banner_header {
  width: 100%;
  text-align: center;
  border-radius: 20px 20px 0 0;
  background: transparent linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%) 0%
    0% no-repeat padding-box;
  padding: 70px 0 80px 0;
  position: relative;
}
.blogs_detail_banner_section .blogs_detail_banner_header:after {
  content: "";
  max-width: 890px;
  margin: 0 auto;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 42px;
  height: 1px;
  background: #707070;
  opacity: 0.2;
}
.blogs_detail_banner_section .blogs_detail_banner_header h3 {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  line-height: 38px;
  color: #47514c;
  margin-bottom: 15px;
  padding: 0px;
}
.blogs_detail_banner_section .blogs_detail_banner_header p {
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 30px;
  color: #47514c;
}
.blogs_detail_banner_section .blogs_detail_banner_header p a {
  background: #8ac640;
  border-radius: 4px;
  color: #ffffff;
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-right: 20px;
  font-size: 12px;
  width: 100px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.blogs_detail_banner_section .blogs_detail_banner_header p a:hover {
  text-decoration: none;
}
.blogs_detail_banner_section .blogs_detail_banner_cnt {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 0 0;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}
.blogs_detail_banner_section .blogs_detail_banner_cnt .blogs_social {
  text-align: center;
}
.blogs_detail_banner_section
  .blogs_detail_banner_cnt
  .blogs_social
  .blogs_social_in {
  position: sticky;
  top: 110px;
  display: block;
  padding-bottom: 10px;
}
.blogs_detail_banner_section .blogs_detail_banner_cnt .blogs_social label {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 17px;
  color: #48524d;
  margin-bottom: 20px;
}
.blogs_detail_banner_section .blogs_detail_banner_cnt .blogs_social ul li {
  padding: 0 0 0px 0;
}
.blogs_detail_banner_section .blogs_detail_banner_cnt .blog_details {
  max-width: 600px;
}
.blogs_detail_banner_section .blogs_detail_banner_cnt .blog_details h5 {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 29px;
  color: #48524d;
  margin-bottom: 30px;
  padding: 0px;
}
.blogs_detail_banner_section .blogs_detail_banner_cnt .blog_details p {
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 24px;
  color: #48524d;
  margin-bottom: 40px;
  padding: 0px;
}
@media screen and (max-width: 991px) {
  .blogs_detail_banner_section {
    padding: 0 15px;
  }
  .blogs_detail_banner_section .blogs_detail_banner_header h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .blogs_detail_banner_section {
    padding: 0 15px;
  }
  .blogs_detail_banner_section .blogs_detail_banner_header {
    padding: 40px 0 0px 0;
  }
  .blogs_detail_banner_section .blogs_detail_banner_header h3 {
    font-size: 22px;
    line-height: 27px;
  }
  .blogs_detail_banner_section .blogs_detail_banner_header p {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .blogs_detail_banner_section .blogs_detail_banner_cnt .blog_details h5 {
    font-size: 21px;
    line-height: 25px;
  }
}

.related_blogs {
  background: transparent linear-gradient(180deg, #f4f4f4 0%, #ffffff 100%) 0%
    0% no-repeat padding-box;
  padding: 60px 0 0;
}
.related_blogs h4 {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  line-height: 38px;
  color: #47514c;
  margin: 0 auto 50px;
}

.contactus_sec {
  max-width: 1000px;
  margin: 0 auto;
}
.contactus_sec .job_details_right .job_details_form {
  width: 500px;
  position: relative;
  top: 0px;
  z-index: 99;
}
.contactus_sec .job_details_right .job_details_form h4 {
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .contactus_sec .job_details_right .job_details_form {
    width: 400px;
  }
}
.contactus_sec .job_details_left .job_details_head {
  padding-top: 50px;
}
.contactus_sec .job_details_left .job_details_head p {
  font-family: museo-sans, sans-serif;
  max-width: 400px;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 19px;
  color: #48524d;
  padding: 0 0 0 0px;
  margin: 0px;
}
.contactus_sec .job_details_left .contact_details {
  padding-top: 60px;
  padding-left: 35px;
  max-width: 430px;
}
.contactus_sec .job_details_left .contact_details ul li {
  display: flex;
  align-items: center;
  padding-bottom: 40px;
}
.contactus_sec .job_details_left .contact_details ul li p {
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 19px;
  color: #48524d;
  padding: 0 0 0 20px;
  margin: 0px;
}
.contactus_sec .job_details_left .contact_details ul li a {
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 19px;
  color: #29a34a;
  text-decoration: underline;
  padding: 0 0 0 20px;
  margin: 0px;
}
@media screen and (max-width: 767px) {
  .contactus_sec .job_details_left .contact_details {
    padding-left: 10px;
    padding-top: 0;
  }
  .contactus_sec .job_details_left .contact_details ul li {
    padding-bottom: 20px;
  }
  .contactus_sec .job_details_left .contact_details ul li img {
    width: 40px;
  }
  .contactus_sec .job_details_left .contact_details ul li p {
    padding: 0 0 0 15px;
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .contactus_sec {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
  .contactus_sec .job_details_right {
    padding-top: 0;
  }
  .contactus_sec .job_details_right .job_details_form {
    width: 100%;
  }
  .contactus_sec .job_details_right .job_details_form h4 {
    font-size: 16px;
    line-height: 22px;
  }
}

.contact_banner {
  background: transparent linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%) 0%
    0% no-repeat padding-box;
}
@media screen and (max-width: 575px) {
  .contact_banner {
    padding-top: 70px;
    background-size: 100% 560px !important;
  }
  .contact_banner .job_details_head {
    min-height: 240px;
  }
  .contact_banner .job_details_head h2 {
    font-size: 34px;
  }
}

.map_section {
  position: relative;
  margin-top: -30px;
}
.map_section iframe {
  width: 100%;
  display: block;
}

.megamenu {
  position: absolute;
  top: 60px;
  left: 0px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  padding-top: 40px;
}
.megamenu .mobile_menu {
  display: none;
}
.megamenu .megamenu_cnt {
  display: flex;
  box-shadow: 0px 10px 20px #0000001a;
  width: 100%;
}
.megamenu .nav-tabs {
  width: 350px;
  flex-direction: column;
  background: #f2f2f2;
  padding-top: 40px;
}
.megamenu .nav-tabs li .nav-link {
  padding: 20px;
  border-radius: 8px 0 0 8px;
  border: 0px !important;
}
.megamenu .nav-tabs li .nav-link.active {
  border: 0px;
}
.megamenu .tab-content {
  width: calc(100% - 350px);
  display: flex;
  background: #fcfcfc;
  padding: 20px 0 0 80px;
}
.megamenu .tab-content .product_details {
  display: flex;
  justify-content: space-between;
}
.megamenu .tab-content .product_description {
  max-width: 470px;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 50%;
}
.megamenu .tab-content .product_description h6 {
  font-family: museo-sans, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 29px;
  color: #48524d;
  margin-bottom: 20px;
}
.megamenu .tab-content .product_description p {
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 22px;
  color: #48524d;
  margin-bottom: 30px;
}
.megamenu .tab-content .product_description ul {
  display: block;
}
.megamenu .tab-content .product_description ul li {
  background: url("../../images/checked.svg") no-repeat 0 0;
  padding: 0 0px 20px 20px;
}
.megamenu .tab-content .product_description ul li p {
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
  color: #48524d;
  margin-bottom: 0px;
}
.megamenu .tab-content .product_img {
  width: 50%;
  display: flex;
  align-items: flex-end;
}
.megamenu .tab-content .product_img figure {
  margin-bottom: 0px;
}
.megamenu .tab-content .product_img figure img {
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .megamenu .megamenu_cnt .nav-tabs {
    width: 200px;
  }
  .megamenu .megamenu_cnt .nav-tabs li {
    padding: 0 0px 0 15px;
  }
  .megamenu .megamenu_cnt .nav-tabs li a img {
    width: 125px;
  }
  .megamenu .megamenu_cnt .tab-content {
    width: calc(100% - 200px);
    padding: 10px 0 0 35px;
  }
}
@media screen and (max-width: 767px) {
  .megamenu {
    opacity: 1;
    visibility: visible;
    position: static;
    padding-top: 20px;
  }
  .megamenu .megamenu_cnt {
    display: none;
  }
  .megamenu .mobile_menu {
    display: block;
  }
  .megamenu .mobile_menu ul {
    padding: 0px !important;
  }
  .megamenu .mobile_menu ul li {
    padding: 0px !important;
  }
  .megamenu .mobile_menu ul li a {
    padding: 5px 0;
  }
  .megamenu .mobile_menu ul li a img {
    height: 32px;
  }
}

header .header nav ul li:hover .megamenu {
  opacity: 1;
  visibility: visible;
}

.blogs_wrap {
  padding-bottom: 100px;
}
.blogs_wrap nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blogs_wrap nav .pagination .page-item {
  width: 45px;
  height: 45px;
  margin: 0 5px;
  border: 1px solid #48524d4d;
}
.blogs_wrap nav .pagination .page-item .page-link {
  font-size: 12px;
  color: #48524d;
  font-family: museo-sans, sans-serif;
  font-weight: 500;
  padding: 0;
  width: 100%;
  height: 100%;
  border: 0px;
  margin: 0;
  display: flex;
  align-items: center;
  box-shadow: none !important;
  justify-content: center;
}
.blogs_wrap nav .pagination .page-item.prev {
  border: 0px;
}
.blogs_wrap nav .pagination .page-item.prev a {
  color: #48524d;
  font-weight: 700;
  background: url("../../images/prev.svg") no-repeat left center;
  padding-left: 10px;
}
.blogs_wrap nav .pagination .page-item.next {
  border: 0px;
}
.blogs_wrap nav .pagination .page-item.next a {
  color: #48524d;
  font-weight: 700;
  background: url("../../images/next1.svg") no-repeat right center;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .blogs_wrap {
    padding-bottom: 30px;
  }
}

.upload_section {
  overflow: hidden;
}
.upload_section .wpcf7-form-control-wrap {
  display: block;
}
.upload_section .wpcf7-form-control-wrap .form-control {
  margin-left: -104px;
  width: calc(100% + 104px);
  z-index: 9;
  position: relative;
  background: transparent;
  padding-right: 107px !important;
  color: #48524d !important;
  overflow: hidden;
}
.upload_section .wpcf7-form-control-wrap:after {
  width: 100px;
  content: "Upload CV";
  height: 35px;
  border: 1px solid #707070;
  display: block;
  position: absolute;
  right: 0px;
  bottom: 3px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 6px 0 28px;
  font-size: 12px;
  font-weight: 700;
  background: url("../../images/upload.png") no-repeat 8px center;
  background-size: 15px;
}

.scrooldown {
  animation: UpDown 1s linear infinite;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  font-size: 4em;
  cursor: pointer;
  color: #715c3f;
}
@media screen and (max-width: 767px) {
  .scrooldown {
    display: none;
  }
}

@keyframes UpDown {
  0% {
    bottom: 0;
  }
  50% {
    bottom: 0.5em;
  }
  100% {
    bottom: 0;
  }
}
.services_sec {
  background: transparent;
  padding: 20px 0 20px;
}
.services_sec .services_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.services_sec .services_list .services_card {
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
  width: calc(50% - 20px);
  margin-bottom: 40px;
  box-shadow: 0px 0px 40px #0000000d;
}
.services_sec .services_list .services_card span {
  display: block;
  margin-bottom: 15px;
}
.services_sec .services_list .services_card span img {
  height: 70px;
  display: block;
}
.services_sec .services_list .services_card h4 {
  font-family: "Raleway", sans-serif;
  font-size: 30px;
  color: #00558c;
  font-weight: 700;
  padding: 0px;
  margin: 0 0 15px 0;
}
.services_sec .services_list .services_card p {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  color: #000000;
  font-weight: 400;
  padding: 0px;
  margin: 0 0 0px 0;
}
@media screen and (max-width: 575px) {
  .services_sec .services_list .services_card {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
  }
  .services_sec .services_list .services_card span img {
    height: 40px;
  }
  .services_sec .services_list .services_card h4 {
    font-size: 20px;
    margin: 0 0 10px 0;
  }
  .services_sec .services_list .services_card p {
    font-size: 16px;
  }
}

.services_cnt {
  background: transparent linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%) 0%
    0% no-repeat padding-box;
}

.page-title {
  display: block;
  text-align: center;
  padding: 60px 0 0 0;
  width: 100%;
}
.page-title h2 {
  color: #f58a1b;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 50px;
  line-height: 60px;
  padding-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-title {
    padding: 20px 0 0 0;
  }
  .page-title h2 {
    font-size: 30px;
  }
}

/*# sourceMappingURL=style.css.map */

/* asp.html */
.job_details {
  padding-top: 20px;
}
.job_details h2 {
  font-size: 57px;
  line-height: 57px;
  letter-spacing: 1px;
}
.job_details p {
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  color: #48524d;
  margin: 0px;
}

.sub-head {
  font-size: 46px;
  line-height: 46px;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 20px;
}

.sub-des {
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  margin: 0px;
  font-family: "Raleway", sans-serif;
}

.work_banner {
  background: url("../../images/work-banner.jpg") no-repeat;
  height: 100vh;
  background-size: cover;
}
.work_banner:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
}
.work_banner header {
  background: transparent;
}
.work-cnt {
  padding-right: 30px;
}
.work_banner header.stickyheader {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 20px;
  background: rgb(0, 0, 0, 0.8);
}
.work_banner > .container {
  position: relative;
  z-index: 9;
}
.pb-0 {
  padding-bottom: 0px;
}

.work-left {
  display: flex;
  align-items: center;
}
header .header nav > ul > li {
  height: 100px;
  align-items: center;
  display: flex;
}
header .header nav ul li .dropdown {
  display: none;
}
header .header nav ul li:hover .dropdown {
  display: flex;
}
.dropdown-list {
  margin: 0 auto;
  max-width: 1140px;
  width: 100%;
}
