body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Archivo", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  min-width: 300px;
  margin: 0 auto;
  padding: 0 15px;
}

img {
  height: auto;
  max-width: 100%;
}

#header-nav {
  position: fixed;
  top: 0;
  display: block;
  width: 100%;
  background: white;
  z-index: 505;
  transition: transform 0.7s 0.3s ease;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0px, 0px, 0px);
  box-shadow: -2px 1px 3px rgba(2, 2, 2, 0.2);
}

#header-nav.hide-nav-bar {
  transform: translate(0, -100%);
  -webkit-backface-visibility: hidden;
}

.menu-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

a.menu-link {
  float: right;
  display: block;
}

nav[role=navigation] {
  clear: right;
  transition: all 0.3s ease-out;
}

.js nav[role=navigation] {
  overflow: hidden;
  max-height: 0;
}

nav[role=navigation].active {
  max-height: 270px;
}

nav[role=navigation] ul {
  margin: 0;
  padding: 0;
  float: left;
}
nav[role=navigation] ul li {
  padding: 0 20px;
}

nav[role=navigation] li a {
  display: block;
  text-decoration: none;
  font-size: 19px;
  text-transform: capitalize;
  color: black;
  font-weight: bold;
  padding: 8px 0;
}
nav[role=navigation] li a:hover {
  color: #0168ad;
}
nav[role=navigation] li a.active {
  color: #f00;
}

.menu-link {
  height: 30px;
  width: 33px;
  cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
  margin-top: 3px;
  background: #ccc;
  width: 33px;
  height: 4px;
  position: absolute;
  transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}

.bar2 {
  margin-top: 13px;
}

.bar3 {
  margin-top: 23px;
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.brand {
  padding: 5px 0;
  width: 80px;
}
.brand h1 {
  margin: 0;
  font-size: 1.5em;
}
@media screen and (min-width: 48.25em) {
  .menu-row {
    position: relative;
  }
  a.menu-link {
    display: none;
  }
  .js nav[role=navigation] {
    max-height: none;
  }
  nav[role=navigation] ul {
    margin: 0 0 0 -0.25em;
    border: 0;
    float: right;
  }
  nav[role=navigation] li {
    display: inline-block;
    margin: 0 0.25em;
  }
  nav[role=navigation] li a {
    border: 0;
  }
}
@media screen and (max-width: 771px) {
  nav {
    position: absolute;
    right: 0;
    width: 100%;
    top: 79px;
    background: #fff;
    border-top: 1px solid #ccc;
  }
  nav ul {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-sizing: border-box;
    padding: 15px !important;
    width: 100%;
  }
  nav ul li {
    list-style: none;
    padding: 0 !important;
  }
}
.banner {
  display: flex;
  justify-content: flex-end;
  background: url(../images/banner-bg.jpg) center left no-repeat;
  position: relative;
  margin-top: 80px;
}
.banner .banner_slider {
  width: 100%;
  position: relative;
}
.banner .banner_slider::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(1, 42, 21, 0.3);
  top: 0;
}
.banner .banner_slider #s {
  width: 100%;
  height: 66vh;
  white-space: nowrap;
  font-size: 0;
  overflow: hidden;
  position: relative;
}
.banner .banner_slider #s.subpage {
  height: 300px !important;
}
.banner .banner_slider #s #slides {
  height: 100%;
  transition: transform 0.7s ease-in-out;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.banner .banner_slider #s .s-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: inline-block;
}
.banner .banner_slider .slide-nav {
  display: block;
  position: absolute;
  z-index: 10;
  bottom: 0px;
  height: 100px;
  color: #fff;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
  opacity: 0.5;
  width: 64px;
  height: 64px;
  text-align: center;
  font-size: 56px;
  line-height: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.banner .banner_slider .slide-nav.next {
  right: 0;
}
.banner .banner_slider .slide-nav .arrow {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 15px;
  box-sizing: border-box;
}
.banner .banner_slider .slide-nav .arrow img {
  display: block;
  max-width: 100%;
  height: auto;
}
.banner .banner_slider .slide-nav:before {
  content: "";
  display: block;
  position: relative;
  width: 64px;
  height: 64px;
  z-index: 9999;
}
.banner .banner_slider .slide-nav:hover {
  opacity: 1;
}
.banner .banner-row {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.banner .banner-row .container {
  height: 100%;
}
.banner .banner-row .container .banner_text {
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.banner .banner-row .container .banner_text h1 {
  font-size: 60px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
}
.banner .banner-row .container .banner_text h1 span {
  color: #f00;
  text-shadow: 1px 1px 2px rgba(251, 251, 251, 0.8);
}
.banner .banner-row .container .banner_text h1 cite {
  color: black;
  font-size: 36px;
  font-style: normal;
  width: 100%;
  text-shadow: 1px 1px 2px rgba(251, 251, 251, 0.8);
}
.banner .contact {
  background-color: #0e3a39;
  border-radius: 15px;
  padding: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
}
.banner .contact .contact_text {
  font-size: 40px;
  color: white;
  text-transform: uppercase;
  font-weight: normal;
  font-weight: 200;
}
.banner .contact .button {
  background-color: #c5982d;
  color: #fff;
  border-radius: 8px;
  text-transform: uppercase;
  padding: 14px 20px;
  font-size: 25px;
  cursor: pointer;
  text-decoration: none;
}

.about_banner {
  display: flex;
  justify-content: flex-end;
  background: url(../images/about-banner.png) top center no-repeat fixed;
  position: relative;
  margin-top: 77px;
  height: 350px;
  width: 100%;
}

.product {
  padding: 55px 0;
  overflow: hidden;
}
.product h2 {
  color: #f00;
  font-size: 22px;
  font-weight: bold;
}
.product h3 {
  color: black;
  font-size: 36px;
}

.service_box {
  width: 100%;
  padding-top: 15px;
}
.service_box .container .portfolio_slider {
  padding-top: 10px;
  flex: 1 1 0;
  gap: 30px;
  display: flex;
  overflow: hidden;
  margin-right: -34%;
}
.service_box .ProductBlock {
  position: relative;
}
.service_box .ProductBlock img {
  display: block;
}
.service_box .ProductBlock .product_disc {
  padding-top: 16px;
  text-align: left;
  position: absolute;
  z-index: 5;
  bottom: 0;
  background-color: rgba(43, 49, 52, 0.8);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: calc(100% - 30px);
}
.service_box .ProductBlock .product_disc h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.service_box .ProductBlock .product_disc p {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}
.service_box .ProductBlock .product_disc a {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 6px 10px;
  display: block;
  margin-top: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
}
.service_box .ProductBlock .product_disc a:hover {
  background: #f00;
  color: #fff;
}

.contactus.mar {
  margin: 0px 0 80px 0;
}
.contactus.aboutpdn {
  padding-top: 80px;
  padding-bottom: 80px;
}
.contactus .contact {
  background-color: #0e3a39;
  border-radius: 15px;
  padding: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contactus .contact .contact_text {
  font-size: 40px;
  color: white;
  text-transform: uppercase;
  font-weight: normal;
  font-weight: 200;
}
.contactus .contact .button {
  background-color: #c5982d;
  color: #fff;
  border-radius: 8px;
  text-transform: uppercase;
  padding: 14px 20px;
  font-size: 25px;
  cursor: pointer;
  text-decoration: none;
}

.about_section {
  width: 100%;
  position: relative;
}
.about_section::after {
  position: absolute;
  content: "";
  background: url(../images/aboutbg-right.png) right bottom no-repeat;
  width: 100%;
  height: 100%;
  right: 20px;
  bottom: 0;
}
.about_section .about {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  align-items: center;
  padding: 50px 0 0px 0;
  position: relative;
  z-index: 1;
}
.about_section .about.page {
  padding: 30px 0 100px 0;
}
.about_section .about.page .aboutus {
  width: 100%;
}
.about_section .about .aboutus {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.86);
  padding: 40px 0 0 0;
}
.about_section .about .aboutus h2 {
  color: #f00;
  font-size: 22px;
  font-weight: bold;
}
.about_section .about .aboutus h3 {
  color: black;
  font-size: 31px;
}
.about_section .about .aboutus p {
  font-size: 17px;
  line-height: 26px;
  color: black;
  padding-top: 15px;
}
.about_section .about .aboutus p.bold {
  font-weight: 700;
}
.about_section .about .aboutus .list_style {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 25px 0;
}
.about_section .about .aboutus .list_style .listbox {
  width: 45%;
}
.about_section .about .aboutus .list_style .listbox h4 {
  color: black;
  font-size: 22px;
}
.about_section .about .aboutus .list_style .listbox ul {
  padding-left: 25px;
  margin-top: 15px;
}
.about_section .about .aboutus .list_style .listbox ul li {
  padding-bottom: 5px;
  font-size: 17px;
  line-height: 26px;
  color: black;
}
.about_section .about .aboutus .product_images {
  width: 100%;
  padding: 25px 0;
}
.about_section .about .aboutus .product_images ul {
  width: 100%;
  display: flex;
  gap: 25px;
}
.about_section .about .aboutus .product_images ul li {
  list-style: none;
}

.organisation-structure-row {
  width: 100%;
  padding: 50px 0;
  background: #f3f6f9;
}
.organisation-structure-row .organisation-structure {
  width: 100%;
}

.work {
  width: 100%;
  padding: 80px 0;
  margin-top: 80px;
}
.work.mtnone {
  margin-top: 0;
  padding-top: 0;
}
.work.corevalue {
  background-color: #f3f6f9;
}
.work.corevalue .our {
  border-bottom: none;
}
.work.servwork {
  margin-top: 80px;
  padding-top: 70px;
}
.work .our {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid #d3d9df;
}
.work .our .workshop {
  width: 60%;
  display: flex;
  flex-direction: column;
}
.work .our .workshop h4 {
  font-size: 31px;
  color: black;
  text-transform: capitalize;
}
.work .our .workshop p {
  font-size: 17px;
  padding-top: 15px;
  line-height: 26px;
}
.work .our .workshop h5 {
  font-size: 23px;
  color: black;
  text-transform: capitalize;
  margin-top: 20px;
}
.work .our .workshop ul {
  display: flex;
  padding-top: 10px;
  padding-left: 30px;
  gap: 8px;
  flex-wrap: wrap;
}
.work .our .workshop ul li {
  font-size: 17px;
  padding-top: 5px;
  line-height: 26px;
}
.work .our .leadership-row {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.work .our .leadership-row h4 {
  font-size: 37px;
  color: black;
  text-transform: capitalize;
}
.work .our .leadership-row p {
  font-size: 17px;
  padding-top: 15px;
  line-height: 26px;
}
.work .our .leadership-row h5 {
  font-size: 23px;
  color: black;
  text-transform: capitalize;
  margin-top: 20px;
}
.work .our .leadership-row ul {
  display: flex;
  padding-top: 10px;
  padding-left: 30px;
  gap: 8px;
  flex-wrap: wrap;
}
.work .our .leadership-row ul li {
  font-size: 17px;
  padding-top: 5px;
  line-height: 26px;
}
.work .our .leadership-row .leadteam {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}
.work .our .leadership-row .cmd-message {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
  padding-top: 30px;
}
.work .our .leadership-row .cmd-message .cmd-img {
  width: 160px;
  height: 160px;
  overflow: hidden;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work .our .leadership-row .cmd-message .cmd-msg {
  width: calc(100% - 220px);
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
}
.work .our .leadership-row .subsidiaries {
  width: 100%;
  padding-bottom: 50px;
  padding-top: 30px;
}
.work .our .leadership-row .subsidiaries h6 {
  color: black;
  font-size: 29px;
  font-weight: bold;
  padding-bottom: 20px;
}
.work .our .leadership-row .subsidiaries ul {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
}
.work .our .leadership-row .subsidiaries ul li {
  list-style: none;
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
}
.work .force {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.work .force .workforce {
  width: 60%;
  display: flex;
  flex-direction: column;
}
.work .force .workforce h4 {
  font-size: 30px;
  color: black;
  text-transform: capitalize;
}
.work .force .workforce p {
  font-size: 17px;
  line-height: 27px;
  padding-top: 15px;
}
.work .force .workforce ul {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  padding-top: 30px;
}
.work .force .workforce ul li {
  list-style-position: inside;
  font-size: 18px;
}

.servicesection {
  width: 100%;
}
.servicesection .service {
  padding: 55px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.servicesection .service .servicelist {
  width: 100%;
}
.servicesection .service .servicelist.aboutserv {
  width: 60%;
}
.servicesection .service .servicelist h5 {
  color: #0168ad;
  font-size: 24px;
  font-weight: bold;
  text-transform: capitalize;
}
.servicesection .service .servicelist h6 {
  color: black;
  font-size: 31px;
  font-weight: bold;
  padding-bottom: 30px;
}
.servicesection .service .servicelist h2 {
  color: #f00;
  font-size: 22px;
  font-weight: bold;
}
.servicesection .service .servicelist ul {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}
.servicesection .service .servicelist ul li {
  list-style: none;
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
}
.servicesection .service .servicelist p {
  font-size: 17px;
  line-height: 27px;
  padding-top: 15px;
}
.servicesection .service .servicelist .corp {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  border-top: none;
}
.servicesection .service .servicelist .corp .corpinner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 17px 0;
  border-top: 1px solid #ccc;
}
.servicesection .service .servicelist .corp .corpinner .corpbox {
  width: 50%;
  font-size: 17px;
  padding: 0 15px;
  font-weight: 500;
}
.servicesection .affiliation {
  width: 100%;
  padding-bottom: 50px;
}
.servicesection .affiliation h6 {
  color: black;
  font-size: 29px;
  font-weight: bold;
  padding-bottom: 20px;
}
.servicesection .affiliation ul {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 15px;
}
.servicesection .affiliation ul li {
  list-style: none;
  font-size: 20px;
  line-height: 40px;
  font-weight: 500;
}
.servicesection .res__gallery {
  width: 100%;
  display: flex;
  justify-self: center;
  align-items: center;
  flex-direction: column;
  margin: 40px auto;
}
.servicesection .res__gallery ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.servicesection .res__gallery ul li {
  list-style: none;
  padding: 12px 20px;
  margin: 5px;
  letter-spacing: 1px;
  cursor: pointer;
  -ms-user-select: None;
  -moz-user-select: None;
  -webkit-user-select: None;
  user-select: None;
}
.servicesection .product {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  -ms-user-select: None;
  -moz-user-select: None;
  -webkit-user-select: None;
  user-select: None;
  gap: 30px;
  width: 100%;
}
.servicesection .product .itembox {
  position: relative;
  width: calc(33% - 30px);
  margin: 5px;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.servicesection .product .itembox:hover .fancybox img {
  opacity: 0.5;
}
.servicesection .product .itembox .details {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 1;
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  padding: 10px;
}
.servicesection .product .itembox .details h2 {
  margin: 10px 0 0;
  text-align: center;
}
.servicesection .product .itembox .details h2 span {
  color: #8f8f8f;
  font-size: 16px;
}
.servicesection .product .itembox:hover .fancybox {
  transform: translateY(-100px);
}
.servicesection .product .itembox.hide {
  display: none;
}
.servicesection .product .itembox img {
  transition: 0.5s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.servicesection .itembox {
  transition: 0.5s;
}
.servicesection a[data-fancybox] img {
  cursor: zoom-in;
}

.courses-details {
  width: 100%;
  padding: 85px 0 0 0;
}
.courses-details .our-courses-row {
  width: 100%;
  display: flex;
}
.courses-details .our-courses-row .our-courses {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.courses-details .our-courses-row .our-courses li {
  list-style: none;
  width: calc(50% - 20px);
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 25px 20px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.17);
}
.courses-details .our-courses-row .our-courses li .product_list {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  padding-top: 15px;
}
.courses-details .our-courses-row .our-courses li .product_list h5 {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}
.courses-details .our-courses-row .our-courses li .product_list .viewbtn {
  color: #000;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid #000;
  padding: 6px 10px;
  display: block;
  margin-top: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
}
.courses-details .our-courses-row .our-courses li .product_list .viewbtn:hover {
  background: #f00;
  color: #fff;
}
.courses-details .our-courses-row .our-courses li .product_list p {
  font-size: 17px;
  line-height: 24px;
  padding-top: 10px;
}

footer {
  background: #0e3a39;
}
footer .footerbox {
  display: flex;
  padding: 50px 0;
}
footer .footerbox .iconbox {
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .footerbox .iconbox .icon {
  padding-bottom: 20px;
}
footer .footerbox .iconbox p {
  color: white;
  font-size: 16px;
  padding-bottom: 5px;
  text-align: center;
}
footer .footerbox .iconbox .iconlink {
  text-decoration: none;
  color: white;
  font-size: 20px;
}
footer .footerbox .locationbox {
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .footerbox .locationbox .icon {
  padding-bottom: 20px;
}
footer .footerbox .locationbox p {
  color: white;
  font-size: 16px;
  padding-bottom: 5px;
  text-align: center;
}
footer .footerbox .locationbox .iconlink {
  text-decoration: none;
  color: white;
  font-size: 20px;
}
footer .copyright {
  border-top: 1px solid #50595c;
}
footer .copyright p {
  color: #fff;
  font-weight: normal;
  text-align: center;
  padding: 40px 0;
}
footer .copyright p span {
  color: #c5982d;
}

.contact_row {
  width: 100%;
  padding: 100px 0 20px 0;
}
.contact_row .contactsection {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contact_row .contactsection .contactbox-top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 40px;
}
.contact_row .contactsection .contactbox-top .contactbox {
  width: calc(50% - 40px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
  background: #f1f1f1;
  justify-content: center;
  border-radius: 6px;
}
.contact_row .contactsection .contactbox-top .contactbox span {
  width: 100%;
  padding-bottom: 15px;
}
.contact_row .contactsection .contactbox-top .contactbox h3 {
  font-size: 19px;
  font-weight: 600;
  margin-top: 5px;
}
.contact_row .contactsection .contactbox-top .contactbox p {
  font-size: 17px;
  font-weight: 500;
}
.contact_row .contactsection .contactbox-top .contactbox a {
  font-size: 19px;
  font-weight: 600;
  margin-top: 5px;
  color: #000;
}
.contact_row .contactsection .contactbox-top .contactbox .contactbox-bottom {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 10px;
}
.contact_row .contactsection .contactbox-top .contactbox .contactbox-bottom a {
  color: #000;
  font-size: 19px;
  text-decoration: none;
}
.contact_row .contactsection .contactbox-bottom {
  display: flex;
  width: 100%;
  padding-top: 50px;
}

@media screen and (max-width: 900px) {
  .about_section {
    background-size: 200px;
    background-position: right top;
  }
  .about_section .about.page {
    padding: 30px 0 30px 0;
  }
  .about_section .about .aboutus {
    width: 100%;
    padding: 40px 0 0px 0;
  }
  .about_section .about .aboutus h3 {
    font-size: 35px;
  }
  .about_section .about .aboutus .product_images {
    display: none;
  }
  .about_section::after {
    display: none;
  }
  .servicesection .service {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 55px 0;
  }
  .servicesection .service .servicelist {
    order: 2;
    width: 100%;
  }
  .servicesection .service .servicelist.aboutserv {
    width: 100%;
  }
  .servicesection .service .servicelist h6 {
    font-size: 30px;
    padding-bottom: 10px;
  }
  .servicesection .service .servicelist ul li {
    font-size: 17px;
    line-height: 36px;
  }
  .servicesection .service .serviceimage {
    width: 100%;
    text-align: center;
    padding-bottom: 50px;
    order: 1;
  }
  .contactus .contact {
    flex-direction: column;
    padding: 25px 15px;
  }
  .contactus .contact .contact_text {
    width: 100%;
    padding-bottom: 10px;
    text-align: center;
    font-size: 29px;
  }
  .banner .banner_slider {
    width: 100%;
  }
  .banner .banner-row .container .banner_text {
    text-align: center;
    justify-content: center;
  }
  .banner .banner-row .container .banner_text h1 {
    font-size: 60px;
  }
  .product h3 {
    font-size: 30px;
  }
  .work .our .workshop {
    width: 100%;
  }
  .work .our .workshop h4 {
    font-size: 30px;
  }
  .work .our .workshopimage {
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
  }
  .work .force {
    padding-top: 50px;
  }
  .work .force .workforceimage {
    width: 100%;
    padding-bottom: 30px;
  }
  .work .force .workforce {
    width: 100%;
  }
  .work .force .workforce h4 {
    font-size: 30px;
  }
  .servicesection .product {
    gap: 20px;
  }
  .servicesection .product .itembox {
    width: calc(50% - 20px);
  }
  footer .footerbox {
    flex-wrap: wrap;
    padding: 50px 0 20px 0;
  }
  footer .footerbox .iconbox {
    width: 50%;
  }
  footer .footerbox .locationbox {
    width: 100%;
    flex-direction: row;
    align-content: center;
    padding-top: 20px;
    border-top: 1px solid #3593d1;
    margin-top: 30px;
  }
  footer .footerbox .locationbox .icon {
    padding-bottom: 0px;
    margin-right: 15px;
  }
  footer .footerbox .locationbox p {
    text-align: left;
  }
  .contact_row .contactsection {
    flex-direction: column;
  }
  .contact_row .contactsection .contactbox {
    width: 100%;
  }
  .contact_row .contactsection .contactbox-top {
    flex-direction: column;
  }
  .contact_row .contactsection .contactbox-top .contactbox {
    width: 100%;
  }
  .courses-details .our-courses-row .our-courses li {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 800px) {
  .work .our {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .work .our .workshopimage {
    order: 1;
  }
  .work .our .workshop {
    order: 2;
  }
  .work .force {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .work .force .workforceimage {
    order: 1;
    text-align: center;
  }
  .work .force .workforce {
    order: 2;
  }
  .service_box .inner {
    position: relative;
    margin-right: 25px;
  }
  .product {
    padding: 85px 0 25px 0;
  }
  .about_section .about .aboutus h3 {
    font-size: 23px;
  }
  .about_section .about .aboutus .list_style {
    flex-direction: column;
    gap: 20px;
  }
  .about_section .about .aboutus .list_style .listbox {
    width: 100%;
  }
}
@media screen and (max-width: 660px) {
  footer .footerbox {
    padding: 20px 0 0px 0;
    flex-direction: column;
  }
  footer .footerbox .iconbox {
    width: 100%;
    padding: 30px 0;
    border-bottom: 1px solid #3593d1;
  }
  footer .footerbox .locationbox {
    width: 100%;
    padding: 30px 0;
    border-top: none;
    margin-top: 0;
  }
  .servicesection .service .servicelist .corp .corpinner {
    flex-direction: column;
  }
  .servicesection .service .servicelist .corp .corpinner .corpbox {
    width: 100%;
  }
  .servicesection .service .servicelist .corp .corpinner .corpbox:first-child {
    padding-bottom: 5px;
    color: #918f8f;
  }
}
@media screen and (max-width: 600px) {
  .service_box {
    flex-direction: column;
    align-items: center;
  }
  .product h2 {
    text-align: center;
  }
  .product h3 {
    text-align: center;
  }
  .banner .banner-row .container .banner_text h1 {
    font-size: 47px;
  }
  .work .our .leadership-row .cmd-message {
    flex-direction: column;
  }
  .work .our .leadership-row .cmd-message .cmd-msg {
    width: 100%;
  }
  .courses-details {
    padding: 15px 0 45px 0;
  }
  .courses-details .our-courses-row .our-courses {
    gap: 20px;
  }
  .courses-details .our-courses-row .our-courses li {
    width: 100%;
  }
  .contact_row .contactsection .contactbox-top .contactbox {
    padding: 13px;
  }
  .contact_row .contactsection .contactbox-top .contactbox h3 {
    font-size: 16px;
  }
  .contact_row .contactsection .contactbox-top .contactbox p {
    font-size: 16px;
  }
}
@media screen and (max-width: 450px) {
  .servicesection .product {
    gap: 20px;
  }
  .servicesection .product .itembox {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */