@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Mulish', sans-serif;
}

/* width */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #919498;
}

.container {
  width: 85%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    width: 90%;
  }
}

a, button, div, span, i, b, h1, h2, h3, h4, h5, h6, p, input, ul, li, select, label {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  font-family: 'Mulish', sans-serif;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  font-family: 'Mulish', sans-serif;
}

input {
  -webkit-tap-highlight-color: transparent;
  font-family: 'Mulish', sans-serif;
}

::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
  color: transparent;
}

textarea {
  font-family: 'Mulish', sans-serif;
  resize: none;
}

main {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.shimmer {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 140;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.308);
  display: none;
}

.sidemenu {
  position: fixed;
  width: 45%;
  height: 100vh;
  background: white;
  z-index: 150;
  top: 0;
  left: -110%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media (max-width: 480px) {
  .sidemenu {
    width: 90%;
  }
}

.sidemenu .sidemenuHead {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 5%;
  height: 60px;
}

.sidemenu .sidemenuHead h1 {
  font-size: 16px;
  font-weight: 800;
}

.sidemenu .sidemenuHead .sidemenuClose {
  font-size: 18px;
  color: #071527;
}

.sidemenu .sidemenuBody {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 5% 80px 5%;
}

.sidemenu .sidemenuBody ul {
  width: 100%;
  padding: 10px 0px;
  border-bottom: 1px solid #eee;
}

.sidemenu .sidemenuBody ul li {
  list-style: none;
}

.sidemenu .sidemenuBody ul li a {
  text-decoration: none;
  font-size: 14px;
  padding: 12px 0px;
  display: block;
  color: #2c2c2c;
}

.sidemenu .sidemenuBody ul li .sidemenuLinkActive {
  color: #17479e;
  font-weight: 600;
}

.sidemenu .sidemenuBody h2 {
  font-size: 14px;
  font-weight: 800;
  color: #071527;
  margin-top: 20px;
}

.sidemenuActive {
  left: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.ContentTitle {
  margin-bottom: 15px;
}

.ContentTitle span {
  background: rgba(0, 0, 255, 0.048);
  color: #17479e;
  padding: 7px 15px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 10px;
}

.title {
  font-size: 2em;
  color: #071527;
}

@media (max-width: 480px) {
  .title {
    font-size: 1.8em;
    font-weight: 600;
  }
}

nav {
  width: 100%;
  height: 110px;
  background: white;
  z-index: 100;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: fixed;
  top: 0px;
  left: 0;
  -webkit-box-shadow: 0 0 10px #eee;
          box-shadow: 0 0 10px #eee;
}

@media (max-width: 1300px) {
  nav {
    height: 100px;
  }
}

@media (max-width: 480px) {
  nav {
    height: 110px;
  }
}

nav .navLogo {
  float: left;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1440px) {
  nav .navLogo {
    width: 180px;
  }
}

@media (max-width: 1300px) {
  nav .navLogo {
    height: 60px;
  }
}

nav .navLogo img {
  width: 95%;
  height: 95%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 1440px) {
  nav .navLogo img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 1024px) {
  nav .navLogo img {
    width: 90%;
  }
}

@media (max-width: 768px) {
  nav .navLogo img {
    width: 95%;
  }
}

nav .navLink {
  float: right;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1300px) {
  nav .navLink {
    display: none;
  }
}

nav .navLink ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .navLink ul li {
  list-style: none;
}

nav .navLink ul li a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  font-weight: 600;
  margin-left: 50px;
  padding: 10px 0px;
}

nav .navLink ul li .navLinkActive {
  color: #17479e;
  font-weight: 800;
  position: relative;
}

nav .navLink ul li .navLinkActive::before {
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: #17479e;
  bottom: 0;
  left: calc(50% - 2.5px);
}

nav .navLink ul li .dropdown {
  overflow: hidden;
}

nav .navLink ul li .dropdown:hover .dropdown-content {
  display: block;
}

nav .navLink ul li .dropdown .dropbtn {
  border: none;
  outline: none;
  color: black;
  font-size: 14px;
  font-weight: 600;
  margin-left: 40px;
  padding: 10px 0px;
  background: none;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .navLink ul li .dropdown .dropbtn i {
  margin-left: 5px;
  font-size: 18px;
}

nav .navLink ul li .dropdown .navLinkActive {
  color: #17479e;
  font-weight: 800;
  position: relative;
}

nav .navLink ul li .dropdown .navLinkActive::before {
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: #17479e;
  bottom: 0;
  left: calc(50% - 2.5px);
}

nav .navLink ul li .dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(39, 39, 39, 0.096);
          box-shadow: 0px 8px 16px 0px rgba(39, 39, 39, 0.096);
  z-index: 1;
}

nav .navLink ul li .dropdown .dropdown-content a {
  margin-left: 0;
  color: black;
  font-size: 12px;
  font-weight: 400;
  padding: 12px 16px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(238, 238, 238, 0.247);
}

nav .navLink ul li .dropdown .dropdown-content a:hover {
  background-color: #b8d2f13f;
}

nav .navLink ul li .dropdown .dropdown-content .dropdownActive {
  background-color: #17479e;
  color: white;
}

nav .navLink ul li .dropdown .dropdown-content .dropdownActive:hover {
  background-color: #17479e;
  color: white;
  opacity: 0.8;
}

nav .navBar {
  display: none;
}

@media (max-width: 1300px) {
  nav .navBar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: right;
    height: 60px;
  }
}

@media (max-width: 768px) {
  nav .navBar {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

nav .navBar .navBarBox {
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

nav .navBar .navBarBox span {
  width: 100%;
  height: 2px;
  background: black;
  margin-top: 2px;
}

nav .bookAppointment {
  float: right;
  height: 70px;
  margin-left: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1300px) {
  nav .bookAppointment {
    display: none;
  }
}

nav .bookAppointment a {
  border: 2px solid #17479e;
  color: #17479e;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

nav .bookAppointment a:hover {
  background: #17479e;
  color: white;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

nav #headerStrip {
  width: 100%;
  background: #f6f6f6;
}

nav #headerStrip .headerStripMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 480px) {
  nav #headerStrip .headerStripMain {
    height: 50px;
  }
}

nav #headerStrip .headerStripMain p {
  font-size: 14px;
  font-weight: 300;
  color: #071527;
}

@media (max-width: 480px) {
  nav #headerStrip .headerStripMain p {
    font-size: 12px;
  }
}

.scrollUp {
  -webkit-transform: translateY(-120px);
          transform: translateY(-120px);
}

@media (max-width: 768px) {
  .scrollUp {
    -webkit-transform: translateY(-110px);
            transform: translateY(-110px);
  }
}

#banner {
  width: 100%;
  position: relative;
  z-index: 0;
  margin-top: 110px;
}

@media (max-width: 1024px) {
  #banner {
    margin-top: 100px;
  }
}

@media (max-width: 480px) {
  #banner {
    padding-bottom: 50px;
  }
}

#banner .bannerMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#banner .bannerMain .bannerContent {
  width: 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 0px;
  position: relative;
}

@media (max-width: 1440px) {
  #banner .bannerMain .bannerContent {
    width: 70%;
  }
}

@media (max-width: 768px) {
  #banner .bannerMain .bannerContent {
    width: 100%;
  }
}

#banner .bannerMain .bannerContent h1 {
  font-size: 3em;
  font-weight: 400;
  line-height: 1.5;
  color: #071527;
  text-align: center;
}

@media (max-width: 768px) {
  #banner .bannerMain .bannerContent h1 {
    font-size: 2.5em;
  }
}

@media (max-width: 480px) {
  #banner .bannerMain .bannerContent h1 {
    font-size: 2em;
  }
}

#banner .bannerMain .bannerContent h1 b {
  font-weight: 900;
}

@media (max-width: 480px) {
  #banner .bannerMain .bannerContent h1 b {
    width: 100%;
    display: block;
  }
}

#banner .bannerMain .bannerContent p {
  font-size: 16px;
  margin-top: 30px;
  line-height: 1.9;
  font-weight: 500;
  text-align: center;
  color: #919498;
}

#banner .bannerMain .bannerContent p b {
  font-weight: 800;
}

#banner .bannerMain .bannerThumbnailMain {
  width: 100%;
  position: relative;
}

#banner .bannerMain .bannerThumbnailMain .bannerThumbnail {
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 34px -7px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 34px -7px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#banner .bannerMain .bannerThumbnailMain .bannerThumbnail .bannerThumbnailBox {
  width: 100%;
  height: 85vh;
}

@media (max-width: 768px) {
  #banner .bannerMain .bannerThumbnailMain .bannerThumbnail .bannerThumbnailBox {
    height: 400px;
  }
}

@media (max-width: 480px) {
  #banner .bannerMain .bannerThumbnailMain .bannerThumbnail .bannerThumbnailBox {
    height: 250px;
  }
}

#banner .bannerMain .bannerThumbnailMain .bannerThumbnail .bannerThumbnailBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#banner .bannerMain .bannerThumbnailMain .bannerThumbnail .owl-dot {
  display: none;
}

#banner .bannerMain .bannerThumbnailMain .bannerThumbnail .owl-nav {
  display: none;
}

#banner .bannerMain .bannerThumbnailMain .bannerContentBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute !important;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 20;
}

@media (max-width: 768px) {
  #banner .bannerMain .bannerThumbnailMain .bannerContentBtn {
    width: 60%;
  }
}

@media (max-width: 480px) {
  #banner .bannerMain .bannerThumbnailMain .bannerContentBtn {
    width: 90%;
    top: inherit;
    bottom: -40%;
  }
}

#banner .bannerMain .bannerThumbnailMain .bannerContentBtn .primary {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 47%;
          flex: 0 0 47%;
  padding: 15px 10px;
  background: #17479e;
  color: white;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #17479e;
  white-space: pre;
}

@media (max-width: 480px) {
  #banner .bannerMain .bannerThumbnailMain .bannerContentBtn .primary {
    padding: 12px;
  }
}

#banner .bannerMain .bannerThumbnailMain .bannerContentBtn .primary:hover {
  background: white;
  color: #17479e;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#banner .bannerMain .bannerThumbnailMain .bannerContentBtn .secondary {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 47%;
          flex: 0 0 47%;
  color: #17479e;
  background: white;
  text-decoration: none;
  letter-spacing: 0.5px;
  border-radius: 5px;
  padding: 15px 10px;
  white-space: pre;
  font-weight: 600;
  text-align: center;
  font-size: 14px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media (max-width: 480px) {
  #banner .bannerMain .bannerThumbnailMain .bannerContentBtn .secondary {
    padding: 12px;
  }
}

#banner .bannerMain .bannerThumbnailMain .bannerContentBtn .secondary:hover {
  background: #17479e;
  color: white;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#bannerLink {
  width: 100%;
  margin-top: 80px;
  padding-bottom: 50px;
}

#bannerLink .bannerLinkMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#bannerLink .bannerLinkMain a {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18%;
          flex: 0 0 18%;
  text-decoration: none;
  font-size: 16px;
  color: #071527;
  padding: 20px;
  background: white;
  border-radius: 10px;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  text-align: center;
  -webkit-box-shadow: 0px -3px 29px 3px rgba(0, 0, 0, 0.03);
          box-shadow: 0px -3px 29px 3px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  #bannerLink .bannerLinkMain a {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}

#bannerLink .bannerLinkMain a:hover {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  color: #17479e;
}

#bannerLink .bannerLinkMain a:hover .bannerLinkIcon {
  color: white;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: #17479e;
}

#bannerLink .bannerLinkMain a:hover .bannerLinkIcon i {
  -webkit-animation: rotate 0.2s;
          animation: rotate 0.2s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}

#bannerLink .bannerLinkMain a .bannerLinkIcon {
  width: 50px;
  background: #cbdaf180;
  color: #17479e;
  font-size: 20px;
  height: 50px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-bottom: 20px;
}

#bannerLink .bannerLinkMain .active {
  background: #17479e;
  color: white;
}

#bannerLink .bannerLinkMain .active:hover {
  color: white;
}

#bannerLink .bannerLinkMain .active:hover .bannerLinkIcon {
  background: #cbdaf180;
}

#bannerLink .bannerLinkMain .active .bannerLinkIcon {
  color: white;
}

#partners {
  width: 100%;
  padding: 100px 0px;
}

#partners .ContentTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

#partners h1 {
  text-align: center;
}

#partners .partnersMain {
  width: 100%;
  margin-top: 50px;
}

#partners .partnersMain .partnersBox {
  width: 100%;
  height: 100px;
}

#partners .partnersMain .partnersBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#partners .partnersMain .owl-dot {
  display: none;
}

#partners .partnersMain .owl-nav {
  display: none;
}

#about {
  width: 100%;
  padding: 100px 0px;
}

@media (max-width: 480px) {
  #about {
    padding: 50px 0px;
  }
}

#about .aboutMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#about .aboutMain .aboutThumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
}

@media (max-width: 768px) {
  #about .aboutMain .aboutThumbnail {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    height: 400px;
  }
}

@media (max-width: 480px) {
  #about .aboutMain .aboutThumbnail {
    height: 250px;
  }
}

#about .aboutMain .aboutThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

#about .aboutMain .aboutContent {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 100px 0px;
}

@media (max-width: 768px) {
  #about .aboutMain .aboutContent {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    padding: 30px 0px 0px 0px;
  }
}

#about .aboutMain .aboutContent p {
  margin-top: 20px;
  line-height: 1.7;
  font-size: 16px;
  color: #919498;
  font-weight: 400;
}

#about .aboutMain .aboutContent a {
  text-decoration: none;
  color: #17479e;
  font-size: 14px;
  font-weight: 800;
  margin-top: 30px;
}

#service {
  width: 100%;
  padding: 100px 0px;
}

@media (max-width: 480px) {
  #service {
    padding: 50px 0px;
  }
}

#service .serviceMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

#service .serviceMain::after {
  content: '';
  height: 0;
  width: 23%;
}

@media (max-width: 768px) {
  #service .serviceMain::after {
    width: 30%;
  }
}

#service .serviceMain .serviceBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23%;
          flex: 0 0 23%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 50px;
  background: #f7f8f9;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 768px) {
  #service .serviceMain .serviceBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
}

@media (max-width: 480px) {
  #service .serviceMain .serviceBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#service .serviceMain .serviceBox .serviceBoxThumbnail {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

#service .serviceMain .serviceBox .serviceBoxThumbnail img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}

#service .serviceMain .serviceBox .serviceBoxContent {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 20px;
  background: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#service .serviceMain .serviceBox .serviceBoxContent h2 {
  font-size: 20px;
  font-weight: 700;
  color: #071527;
  text-align: center;
}

@media (max-width: 768px) {
  #service .serviceMain .serviceBox .serviceBoxContent h2 {
    font-size: 18px;
  }
}

#service .serviceMain .serviceBox .serviceBoxContent p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 10px;
  height: 45px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: center;
  color: #919498;
}

#service .serviceMain .serviceBox .serviceBoxContent a {
  text-decoration: none;
  color: #17479e;
  font-size: 14px;
  width: 150px;
  font-weight: 800;
  padding: 10px;
  text-align: center;
  margin-top: 15px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#service .serviceMain .serviceBox .serviceBoxContent a:hover {
  background: #17479e;
  color: white;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#service .serviceMain .dummyServiceBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23%;
          flex: 0 0 23%;
  height: 0;
}

@media (max-width: 768px) {
  #service .serviceMain .dummyServiceBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
}

#service .serviceMain2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 100px;
}

#service .serviceMain2 .serviceBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 47%;
          flex: 0 0 47%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
  -webkit-box-shadow: 0 0 20px rgba(2, 1, 1, 0.082);
          box-shadow: 0 0 20px rgba(2, 1, 1, 0.082);
}

#service .serviceMain2 .serviceBox .serviceBoxThumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#cbdaf1), to(#cbdaf1));
  background: linear-gradient(#cbdaf1, #cbdaf1);
}

#service .serviceMain2 .serviceBox .serviceBoxThumbnail img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}

#service .serviceMain2 .serviceBox .serviceBoxContent {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  background: white;
}

#service .serviceMain2 .serviceBox .serviceBoxContent h2 {
  font-size: 25px;
  font-weight: 700;
  color: #071527;
}

#service .serviceMain2 .serviceBox .serviceBoxContent p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 10px;
  height: 95px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

#service .serviceMain2 .serviceBox .serviceBoxContent a {
  text-decoration: none;
  border: 1px solid #17479e;
  color: #17479e;
  font-size: 14px;
  width: 150px;
  padding: 10px;
  text-align: center;
  margin-top: 15px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#service .serviceMain2 .serviceBox .serviceBoxContent a:hover {
  background: #17479e;
  color: white;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#knowMore {
  width: 100%;
  padding: 100px 0px;
  background: #f8fbff;
}

@media (max-width: 480px) {
  #knowMore {
    padding: 50px 0px;
  }
}

#knowMore .knowMoreMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#knowMore .knowMoreMain .knowMoreColumn1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  #knowMore .knowMoreMain .knowMoreColumn1 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#knowMore .knowMoreMain .knowMoreColumn1 p {
  font-size: 16px;
  margin-top: 10px;
  line-height: 1.7;
  color: #919498;
}

@media (max-width: 768px) {
  #knowMore .knowMoreMain .knowMoreColumn1 p {
    text-align: center;
  }
}

@media (max-width: 768px) {
  #knowMore .knowMoreMain .knowMoreColumn1 .title {
    text-align: center;
  }
}

#knowMore .knowMoreMain .knowMoreColumn2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 768px) {
  #knowMore .knowMoreMain .knowMoreColumn2 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  #knowMore .knowMoreMain .knowMoreColumn2 {
    margin-top: 0;
  }
}

#knowMore .knowMoreMain .knowMoreColumn2 .knowMoreBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 480px) {
  #knowMore .knowMoreMain .knowMoreColumn2 .knowMoreBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 50px;
  }
}

#knowMore .knowMoreMain .knowMoreColumn2 .knowMoreBox span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 255, 0.048);
  color: #17479e;
}

#knowMore .knowMoreMain .knowMoreColumn2 .knowMoreBox h1 {
  font-size: 2em;
  color: #071527;
  font-weight: 600;
  margin-top: 20px;
}

#knowMore .knowMoreMain .knowMoreColumn2 .knowMoreBox p {
  font-size: 12px;
  margin-top: 3px;
  font-weight: 600;
  color: #919498;
}

#projects {
  width: 100%;
  padding: 100px 0px;
  padding-left: 7.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  #projects {
    padding-left: 5%;
  }
}

#projects .projectsMain {
  width: 100%;
  margin-top: 50px;
}

#projects .projectsMain .projectsBox {
  width: 100%;
  height: 450px;
  background: #f6f6f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  overflow: hidden;
  border-radius: 10px;
}

@media (max-width: 768px) {
  #projects .projectsMain .projectsBox {
    height: 350px;
  }
}

#projects .projectsMain .projectsBox:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#projects .projectsMain .projectsBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#projects .projectsMain .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: -22%;
  position: absolute;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  right: 7.5%;
}

@media (max-width: 480px) {
  #projects .projectsMain .owl-nav {
    top: inherit;
    bottom: -20%;
    left: 0%;
    right: inherit;
  }
}

#projects .projectsMain button.owl-next {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid black;
  outline: none;
  margin-left: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 480px) {
  #projects .projectsMain button.owl-next {
    padding: 5px 10px !important;
  }
}

#projects .projectsMain button.owl-next:hover {
  background: black;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#projects .projectsMain button.owl-next:hover span {
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#projects .projectsMain button.owl-next span {
  font-size: 20px;
  color: balck;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#projects .projectsMain button.owl-prev {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid black;
  outline: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 480px) {
  #projects .projectsMain button.owl-prev {
    padding: 5px 10px !important;
  }
}

#projects .projectsMain button.owl-prev:hover {
  background: black;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#projects .projectsMain button.owl-prev:hover span {
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#projects .projectsMain button.owl-prev span {
  font-size: 20px;
  color: balck;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#projects .projectsMain .owl-dots {
  display: none;
}

#spareParts {
  width: 100%;
  padding: 100px 20px 100px 7.5%;
  position: relative;
}

@media (max-width: 768px) {
  #spareParts {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (max-width: 480px) {
  #spareParts {
    padding: 50px 5%;
  }
}

#spareParts .sparePartsContent {
  position: absolute;
}

@media (max-width: 768px) {
  #spareParts .sparePartsContent {
    position: inherit;
  }
}

#spareParts .sparePartsContent p {
  width: 40%;
  font-size: 14px;
  color: #919498;
  line-height: 1.5;
  margin-top: 20px;
}

@media (max-width: 768px) {
  #spareParts .sparePartsContent p {
    width: 100%;
  }
}

#spareParts .sparePartsContent a {
  text-decoration: none;
  color: #17479e;
  font-size: 14px;
  font-weight: 800;
  margin-top: 30px;
  width: 100px;
  display: block;
}

#spareParts .sparePartsThumbnail {
  width: 70%;
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  #spareParts .sparePartsThumbnail {
    width: 100%;
  }
}

#spareParts .sparePartsThumbnail .sparePartsThumbnailColumn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

#spareParts .sparePartsThumbnail .sparePartsThumbnailColumn .sparePartsThumbnailBox {
  width: 100%;
  height: 280px;
  background: #f6f6f6;
  border-radius: 10px;
  margin-top: 20px;
  overflow: hidden;
}

@media (max-width: 768px) {
  #spareParts .sparePartsThumbnail .sparePartsThumbnailColumn .sparePartsThumbnailBox {
    height: 200px;
  }
}

@media (max-width: 480px) {
  #spareParts .sparePartsThumbnail .sparePartsThumbnailColumn .sparePartsThumbnailBox {
    height: 150px;
    margin-top: 5px;
  }
}

#spareParts .sparePartsThumbnail .sparePartsThumbnailColumn .sparePartsThumbnailBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#contact {
  width: 100%;
  padding: 50px 0px;
}

#contact .contactMain {
  width: 100%;
  background: #f8fbff;
  padding: 50px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 480px) {
  #contact .contactMain {
    padding: 20px;
  }
}

#contact .contactMain .contactContent {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  #contact .contactMain .contactContent {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#contact .contactMain .contactContent p {
  margin-top: 20px;
  line-height: 1.7;
  color: #919498;
}

#contact .contactMain .contactContent .line {
  width: 60%;
  margin-top: 30px;
  height: 1px;
  border-top: 2px dashed #919498;
  opacity: 0.5;
}

#contact .contactMain .contactContent h3 {
  margin-top: 30px;
  font-size: 20px;
  color: #071527;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .contactMain .contactContent h4 {
  margin-top: 20px;
  font-size: 16px;
  color: #071527;
  font-weight: 600;
}

#contact .contactMain .contactContent a {
  text-decoration: none;
  font-size: 14px;
  margin-top: 10px;
  color: #919498;
}

#contact .contactMain .contactContent a:hover {
  color: #17479e;
}

#contact .contactMain .contactContent .socialLinks {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact .contactMain .contactContent .socialLinks a {
  text-decoration: none;
  font-size: 16px;
  margin-right: 20px;
}

#contact .contactMain .contactForm {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: white;
  border-radius: 10px;
  padding: 30px;
  -webkit-box-shadow: 0px -3px 29px 3px rgba(0, 0, 0, 0.01);
          box-shadow: 0px -3px 29px 3px rgba(0, 0, 0, 0.01);
}

@media (max-width: 768px) {
  #contact .contactMain .contactForm {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 50px;
  }
}

@media (max-width: 480px) {
  #contact .contactMain .contactForm {
    padding: 20px;
  }
}

#contact .contactMain .contactForm h3 {
  font-size: 20px;
  color: #071527;
  font-weight: 700;
  margin-bottom: 15px;
}

#contact .contactMain .contactForm form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#contact .contactMain .contactForm form .formGroup {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}

@media (max-width: 480px) {
  #contact .contactMain .contactForm form .formGroup {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#contact .contactMain .contactForm form .formGroup label {
  font-size: 12px;
  font-weight: 600;
  color: #071527;
}

#contact .contactMain .contactForm form .formGroup input, #contact .contactMain .contactForm form .formGroup select {
  width: 100%;
  height: 40px;
  padding: 10px;
  border: 1px solid #d8d8d8;
  outline: none;
  margin-top: 5px;
  border-radius: 5px;
}

#contact .contactMain .contactForm form .formGroup input:hover, #contact .contactMain .contactForm form .formGroup select:hover {
  color: #919498;
}

#contact .contactMain .contactForm form .formGroupTextarea {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}

#contact .contactMain .contactForm form .formGroupTextarea label {
  font-size: 12px;
  font-weight: 600;
  color: #071527;
}

#contact .contactMain .contactForm form .formGroupTextarea textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  border: 1px solid #d8d8d8;
  outline: none;
  margin-top: 5px;
  border-radius: 5px;
}

#contact .contactMain .contactForm form .formGroupTextarea textarea:hover {
  color: #919498;
}

#contact .contactMain .contactForm form button {
  width: 100%;
  padding: 15px;
  background: #17479e;
  color: white;
  font-size: 14px;
  text-align: center;
  border: 1px solid #17479e;
  outline: none;
  cursor: pointer;
  margin-top: 30px;
  border-radius: 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#contact .contactMain .contactForm form button:hover {
  background: none;
  color: #17479e;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#locations {
  width: 100%;
  padding: 100px 0px;
}

@media (max-width: 480px) {
  #locations {
    padding: 50px 0px;
  }
}

#locations .locationsMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}

@media (max-width: 768px) {
  #locations .locationsMain {
    margin-top: 10px;
  }
}

#locations .locationsMain .locationsBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18%;
          flex: 0 0 18%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0px -3px 29px 3px rgba(0, 0, 0, 0.03);
          box-shadow: 0px -3px 29px 3px rgba(0, 0, 0, 0.03);
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  #locations .locationsMain .locationsBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  #locations .locationsMain .locationsBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  #locations .locationsMain .locationsBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#locations .locationsMain .locationsBox .locationsBoxThumbnail {
  width: 100%;
  height: 200px;
  background: #f6f6f6;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

#locations .locationsMain .locationsBox .locationsBoxThumbnail iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#locations .locationsMain .locationsBox .locationsBoxContent {
  width: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

#locations .locationsMain .locationsBox .locationsBoxContent h2 {
  font-size: 18px;
  font-weight: 700;
}

#locations .locationsMain .locationsBox .locationsBoxContent a {
  text-decoration: none;
  font-size: 14px;
  color: #071527;
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#locations .locationsMain .locationsBox .locationsBoxContent a:hover {
  color: #17479e;
}

#locations .locationsMain .locationsBox .locationsBoxContent a i {
  margin-right: 10px;
}

#locations .locationsMain .locationsBox .locationsBoxContent a:nth-child(1) {
  margin-top: 0;
}

#testimonial {
  width: 100%;
  padding: 100px 0px;
  position: relative;
  z-index: 0;
}

@media (max-width: 480px) {
  #testimonial {
    padding: 50px 0px;
  }
}

#testimonial .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#testimonial .quoght {
  background: orangered;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 25px;
  margin-right: 20px;
}

@media (max-width: 480px) {
  #testimonial .quoght {
    display: none;
  }
}

#testimonial .testimonialMain {
  width: 100%;
  margin-top: 50px;
}

#testimonial .testimonialMain .testimonialBox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#testimonial .testimonialMain .testimonialBox p {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

#testimonial .testimonialMain .testimonialBox .testimonialProfile {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

#testimonial .testimonialMain .testimonialBox .testimonialProfile .testimonialProfileThumbnail {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}

#testimonial .testimonialMain .testimonialBox .testimonialProfile .testimonialProfileThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#testimonial .testimonialMain .testimonialBox .testimonialProfile .testimonialProfileName {
  width: calc(100% - 60px);
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#testimonial .testimonialMain .testimonialBox .testimonialProfile .testimonialProfileName h3 {
  font-size: 14px;
  font-weight: 700;
  color: #071527;
}

#testimonial .testimonialMain .testimonialBox .testimonialProfile .testimonialProfileName span {
  font-size: 12px;
  color: #919498;
  margin-top: 5px;
}

#testimonial .testimonialMain .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: -60%;
  position: absolute;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  right: 0;
}

@media (max-width: 480px) {
  #testimonial .testimonialMain .owl-nav {
    display: none;
  }
}

#testimonial .testimonialMain button.owl-next {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  outline: none;
  margin-left: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#testimonial .testimonialMain button.owl-next:hover {
  background: black;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#testimonial .testimonialMain button.owl-next:hover span {
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#testimonial .testimonialMain button.owl-next span {
  font-size: 25px;
  color: balck;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#testimonial .testimonialMain button.owl-prev {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  outline: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#testimonial .testimonialMain button.owl-prev:hover {
  background: black;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#testimonial .testimonialMain button.owl-prev:hover span {
  color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#testimonial .testimonialMain button.owl-prev span {
  font-size: 25px;
  color: balck;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#testimonial .testimonialMain .owl-dots {
  display: none;
}

footer {
  background: #0d2436;
  width: 100%;
  padding: 50px 0px;
}

footer .footerMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .footerMain .footerHead {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: #919498;
      flex-wrap: #919498;
}

@media (max-width: 480px) {
  footer .footerMain .footerHead {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

footer .footerMain .footerHead .footerHeadColumn1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65%;
          flex: 0 0 65%;
}

@media (max-width: 768px) {
  footer .footerMain .footerHead .footerHeadColumn1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
  }
}

@media (max-width: 480px) {
  footer .footerMain .footerHead .footerHeadColumn1 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

footer .footerMain .footerHead .footerHeadColumn1 h1 {
  font-size: 2em;
  color: white;
  font-weight: 600;
  line-height: 1.5;
}

@media (max-width: 480px) {
  footer .footerMain .footerHead .footerHeadColumn1 h1 {
    font-size: 1.8em;
  }
}

footer .footerMain .footerHead .footerHeadColumn2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  footer .footerMain .footerHead .footerHeadColumn2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
  }
}

@media (max-width: 480px) {
  footer .footerMain .footerHead .footerHeadColumn2 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 20px;
  }
}

footer .footerMain .footerHead .footerHeadColumn2 a {
  text-decoration: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  border-radius: 10px;
  border: 1px solid white;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

footer .footerMain .footerHead .footerHeadColumn2 .primaryBtn {
  background: white;
  color: black;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

footer .footerMain .footerHead .footerHeadColumn2 .primaryBtn:hover {
  background: #17479e;
  color: white;
  border: 1px solid #17479e;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

footer .footerMain .footerHead .footerHeadColumn2 .secondaryBtn {
  color: white;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

footer .footerMain .footerHead .footerHeadColumn2 .secondaryBtn:hover {
  background: #17479e;
  color: white;
  border: 1px solid #17479e;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

footer .footerMain .footerBody {
  width: 100%;
  margin-top: 50px;
  border-top: 1px solid #2d485c;
  border-bottom: 1px solid #2d485c;
  padding: 50px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

@media (max-width: 768px) {
  footer .footerMain .footerBody::after {
    content: '';
    height: 0;
    width: 30%;
  }
}

footer .footerMain .footerBody .footerBodyColumn1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 22%;
          flex: 0 0 22%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  footer .footerMain .footerBody .footerBodyColumn1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

@media (max-width: 480px) {
  footer .footerMain .footerBody .footerBodyColumn1 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

footer .footerMain .footerBody .footerBodyColumn1 .footerLogo {
  width: 60%;
}

footer .footerMain .footerBody .footerBodyColumn1 .footerLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

footer .footerMain .footerBody .footerBodyColumn1 p {
  font-size: 12px;
  color: #919498;
  margin-top: 20px;
}

footer .footerMain .footerBody .footerBodyColumn1 .footerSocialLinks {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

footer .footerMain .footerBody .footerBodyColumn1 .footerSocialLinks a {
  text-decoration: none;
  font-size: 16px;
  color: #919498;
  margin-right: 20px;
}

footer .footerMain .footerBody .footerBodyColumn1 .footerSocialLinks a:hover {
  color: white;
}

footer .footerMain .footerBody .footerBodyColumn1 .term {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}

footer .footerMain .footerBody .footerBodyColumn1 .term a {
  text-decoration: none;
  color: #919498;
  margin-top: 10px;
  font-size: 12px;
}

footer .footerMain .footerBody .footerBodyColumn1 .term a:hover {
  color: white;
}

footer .footerMain .footerBody .footerBodyColumn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15%;
          flex: 0 0 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  footer .footerMain .footerBody .footerBodyColumn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23%;
            flex: 0 0 23%;
  }
  footer .footerMain .footerBody .footerBodyColumn:nth-child(4) {
    margin-top: 50px;
  }
  footer .footerMain .footerBody .footerBodyColumn:nth-child(5) {
    margin-top: 50px;
  }
}

@media (max-width: 480px) {
  footer .footerMain .footerBody .footerBodyColumn {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 50px;
  }
}

footer .footerMain .footerBody .footerBodyColumn h2 {
  font-size: 12px;
  font-weight: 800;
  color: #919498;
}

footer .footerMain .footerBody .footerBodyColumn ul {
  margin-top: 10px;
}

footer .footerMain .footerBody .footerBodyColumn ul h2 {
  font-size: 12px;
  font-weight: 800;
  margin-top: 20px;
  color: #919498;
}

footer .footerMain .footerBody .footerBodyColumn ul h2:nth-child(1) {
  margin-top: 10px;
}

footer .footerMain .footerBody .footerBodyColumn ul li {
  list-style: none;
}

footer .footerMain .footerBody .footerBodyColumn ul li a {
  text-decoration: none;
  color: #919498;
  font-size: 12px;
  margin-top: 10px;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .footerMain .footerBody .footerBodyColumn ul li a:hover {
  color: white;
}

footer .footerMain .footerFooter {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 50px;
}

footer .footerMain .footerFooter .footerHeart {
  width: 40px;
  height: 40px;
  background: #17479e;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
}

footer .footerMain .footerFooter .footerHeart img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: bounce10 0.5s;
          animation: bounce10 0.5s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes bounce10 {
  from {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes bounce10 {
  from {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

footer .footerMain .footerFooter h4 {
  margin-top: 15px;
  font-size: 12px;
  color: #919498;
  text-align: center;
  font-weight: 300;
	display :flex;
	align-items: center;
}
footer .footerMain .footerFooter h4 i{
	font-size: 14px;
    margin: 0px 5px;
    color: white;
}

footer .footerMain .footerFooter h4 a {
  text-decoration: none;
  color: white;
}
footer .footerMain .footerFooter h4 a .footerStripLogo{
	text-decoration: none;
    color: white;
    width: 60px;
    margin-left: 5px;
    display: flex;
}
footer .footerMain .footerFooter h4 a .footerStripLogo img{
	width: 100%;
    height: 100%;
    object-fit: contain;
}

#aboutBanner {
  width: 100%;
  padding: 100px 0px;
  margin-top: 110px;
  background: #f8fbff;
}

@media (max-width: 1024px) {
  #aboutBanner {
    margin-top: 100px;
  }
}

@media (max-width: 480px) {
  #aboutBanner {
    padding: 50px 0px;
  }
}

#aboutBanner .aboutBannerMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#aboutBanner .aboutBannerMain .aboutBannerColumnChairman {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#aboutBanner .aboutBannerMain .aboutBannerColumnChairman .chairmanProfile {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}

#aboutBanner .aboutBannerMain .aboutBannerColumnChairman .chairmanProfile .chairmanThumbnail {
  width: 300px;
}

@media (max-width: 480px) {
  #aboutBanner .aboutBannerMain .aboutBannerColumnChairman .chairmanProfile .chairmanThumbnail {
    width: 100%;
  }
}

#aboutBanner .aboutBannerMain .aboutBannerColumnChairman .chairmanProfile .chairmanThumbnail img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  #aboutBanner .aboutBannerMain .aboutBannerColumnChairman .chairmanProfile .chairmanThumbnail img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

#aboutBanner .aboutBannerMain .aboutBannerColumnChairman .chairmanProfile .chairmanContent {
  width: calc(100% - 320px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  #aboutBanner .aboutBannerMain .aboutBannerColumnChairman .chairmanProfile .chairmanContent {
    width: 100%;
    margin-top: 30px;
  }
}

#aboutBanner .aboutBannerMain .aboutBannerColumnChairman .chairmanProfile .chairmanContent h1 {
  font-size: 25px;
  font-weight: 600;
}

#aboutBanner .aboutBannerMain .aboutBannerColumnChairman .chairmanProfile .chairmanContent span {
  font-size: 16px;
  color: #919498;
  margin-top: 5px;
}

#aboutBanner .aboutBannerMain .aboutBannerColumnChairman .chairmanProfile .chairmanContent p {
  font-size: 16px;
  margin-top: 20px;
  line-height: 1.7;
  width: 60%;
}

@media (max-width: 768px) {
  #aboutBanner .aboutBannerMain .aboutBannerColumnChairman .chairmanProfile .chairmanContent p {
    width: 100%;
  }
}

#aboutBanner .aboutBannerMain .aboutBannerColumn1 {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  #aboutBanner .aboutBannerMain .aboutBannerColumn1 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#aboutBanner .aboutBannerMain .aboutBannerColumn1 p {
  font-size: 16px;
  margin-top: 20px;
  line-height: 1.7;
}

#aboutBanner .aboutBannerMain .aboutBannerColumn2 {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  #aboutBanner .aboutBannerMain .aboutBannerColumn2 {
    width: 100%;
    margin-top: 30px;
  }
}

#aboutBanner .aboutBannerMain .aboutBannerColumn2 .aboutTeamMembersThumbnail {
  width: 100%;
  height: 300px;
}

#aboutBanner .aboutBannerMain .aboutBannerColumn2 .aboutTeamMembersThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#aboutBanner .aboutBannerMain .aboutBannerColumn2 .aboutBannerColumnThumbnail {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 480px) {
  #aboutBanner .aboutBannerMain .aboutBannerColumn2 .aboutBannerColumnThumbnail {
    height: 250px;
  }
}

#aboutBanner .aboutBannerMain .aboutBannerColumn2 .aboutBannerColumnThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#discriptionSection {
  width: 100%;
  padding: 50px 0px;
}

#discriptionSection .discriptionSectionMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65%;
          flex: 0 0 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  #discriptionSection .discriptionSectionMain .discriptionSectionColumn1 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 p {
  font-size: 16px;
  line-height: 1.9;
  margin-top: 30px;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .discriptionSectionThumbnail {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 50px;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .discriptionSectionThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .teamSection {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .teamSection:after {
  content: '';
  height: 0;
  width: 30%;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .teamSection .teamBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px -3px 29px 3px rgba(0, 0, 0, 0.03);
          box-shadow: 0px -3px 29px 3px rgba(0, 0, 0, 0.03);
  margin-top: 50px;
}

@media (max-width: 480px) {
  #discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .teamSection .teamBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 20px !important;
  }
  #discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .teamSection .teamBox:nth-child(1) {
    margin-top: 0 !important;
  }
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .teamSection .teamBox:nth-child(1) {
  margin-top: 0;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .teamSection .teamBox:nth-child(2) {
  margin-top: 0;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .teamSection .teamBox:nth-child(3) {
  margin-top: 0;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .teamSection .teamBox .teamThumbnail {
  width: 100%;
  height: 200px;
  background: #f6f6f6;
  display: none;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .teamSection .teamBox .teamThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .teamSection .teamBox .teamContent {
  width: 100%;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .teamSection .teamBox .teamContent .name {
  font-size: 16px;
  font-weight: 500;
  color: #071527;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .teamSection .teamBox .teamContent .designation {
  font-size: 14px;
  color: #919498;
  margin-top: 5px;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 h2 {
  font-size: 2em;
  margin-top: 50px;
  font-weight: 600;
  color: #071527;
}

@media (max-width: 480px) {
  #discriptionSection .discriptionSectionMain .discriptionSectionColumn1 h2 {
    font-size: 1.8em;
  }
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 h3 {
  font-size: 25px;
  margin-top: 50px;
  font-weight: 600;
  color: #2196f3;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .discriptionSectionThumbnail2 {
  width: 100%;
  border-radius: 10px;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .discriptionSectionThumbnail2 img {
  width: 48%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 480px) {
  #discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .discriptionSectionThumbnail2 img {
    width: 100%;
  }
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .vehicleList {
  width: 100%;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .vehicleList .vehicleListRowHead {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #eee;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #f6f6f6;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .vehicleList .vehicleListRowHead .vehicleListColumn1 {
  width: 20%;
  padding: 10px 10px;
  font-size: 16px;
  font-weight: 600;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .vehicleList .vehicleListRowHead .vehicleListColumn2 {
  width: 50%;
  padding: 10px 10px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  font-size: 16px;
  font-weight: 600;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .vehicleList .vehicleListRowHead .vehicleListColumn3 {
  width: 30%;
  padding: 10px 10px;
  font-size: 16px;
  font-weight: 600;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .vehicleList .vehicleListRow {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #eee;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .vehicleList .vehicleListRow .vehicleListColumn1 {
  width: 20%;
  padding: 15px 10px;
  font-size: 14px;
  font-weight: 400;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .vehicleList .vehicleListRow .vehicleListColumn2 {
  width: 50%;
  padding: 15px 10px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  font-size: 14px;
  font-weight: 400;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 .vehicleList .vehicleListRow .vehicleListColumn3 {
  width: 30%;
  padding: 15px 10px;
  font-size: 14px;
  font-weight: 400;
}
#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 ul {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
}

@media (max-width: 480px) {
	#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 ul li {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
  }
}
#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 ul li span {
  width: 20px;
  font-size: 16px;
  color: #17479e;
}
#discriptionSection .discriptionSectionMain .discriptionSectionColumn1 ul li p {
  font-size: 14px;
  width: calc(100% - 30px);
  color: black;
  margin-top: 0;
}


#discriptionSection .discriptionSectionMain .discriptionSectionColumn2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: white;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

@media (max-width: 768px) {
  #discriptionSection .discriptionSectionMain .discriptionSectionColumn2 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 50px;
  }
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn2 h2 {
  font-size: 25px;
  font-weight: 600;
  color: #071527;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn2 .bookSchedule {
  width: 100%;
  background: white;
  -webkit-box-shadow: 0px -3px 29px 3px rgba(0, 0, 0, 0.03);
          box-shadow: 0px -3px 29px 3px rgba(0, 0, 0, 0.03);
  padding: 20px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn2 .bookSchedule p {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.5;
  color: #919498;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn2 .bookSchedule a {
  text-decoration: none;
  padding: 15px;
  background: #17479e;
  color: white;
  font-size: 14px;
  border-radius: 10px;
  text-align: center;
  width: 100%;
  margin-top: 15px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border: 1px solid #17479e;
}

@media (max-width: 768px) {
  #discriptionSection .discriptionSectionMain .discriptionSectionColumn2 .bookSchedule a {
    width: 200px;
  }
}

@media (max-width: 480px) {
  #discriptionSection .discriptionSectionMain .discriptionSectionColumn2 .bookSchedule a {
    width: 100%;
  }
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn2 .bookSchedule a:hover {
  background: none;
  color: #17479e;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn2 .services {
  margin-top: 50px;
  width: 100%;
  background: white;
  -webkit-box-shadow: 0px -3px 29px 3px rgba(0, 0, 0, 0.03);
          box-shadow: 0px -3px 29px 3px rgba(0, 0, 0, 0.03);
  padding: 20px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn2 .services ul {
  margin-top: 5px;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn2 .services ul li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn2 .services ul li span {
  width: 20px;
  font-size: 16px;
  color: #919498;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn2 .services ul li a {
  font-size: 14px;
  width: calc(100% - 30px);
  color: #071527;
  text-decoration: none;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn2 .services ul li a:hover {
  color: #17479e;
}

#discriptionSection .discriptionSectionMain .discriptionSectionColumn2Active {
  position: fixed;
  top: 20px;
  right: 7.5%;
  width: 25.5%;
}

@media (max-width: 768px) {
  #discriptionSection .discriptionSectionMain .discriptionSectionColumn2Active {
    position: inherit;
  }
}

#projectBanner {
  width: 100%;
  padding: 100px 15% 50px 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-top: 110px;
  z-index: 0;
	display: none;
}

@media (max-width: 768px) {
  #projectBanner {
    margin-top: 100px;
    padding: 100px 5%;
  }
}

@media (max-width: 480px) {
  #projectBanner {
    padding: 50px 5%;
  }
}

#projectBanner::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  background: #f8fbff;
}

#projectBanner .ContentTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#projectBanner h1 {
  font-size: 3em;
  font-weight: 400;
  line-height: 1.5;
  color: #071527;
  text-align: center;
}

@media (max-width: 768px) {
  #projectBanner h1 {
    font-size: 2.5em;
  }
}

@media (max-width: 480px) {
  #projectBanner h1 {
    font-size: 2em;
  }
}

#projectBanner img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 50px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 480px) {
  #projectBanner img {
    height: 100%;
  }
}

#projectsList {
  width: 100%;
  padding: 0px 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  #projectsList {
    padding: 0px 5%;
  }
}

#projectsList ul {
  width: 100%;
}

#projectsList ul li {
  list-style: none;
  padding: 20px 0px;
  border-top: 1px solid rgba(238, 238, 238, 0.719);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#projectsList ul li:nth-child(1) {
  border-top: none;
}

#projectsList ul li span {
  background: #17479e;
  border-radius: 20px;
  padding: 5px 10px;
  line-height: 1.5;
  color: white;
  font-size: 10px;
}

@media (max-width: 480px) {
  #projectsList ul li span {
    height: 25px;
  }
}

#projectsList ul li p {
  font-size: 14px;
  line-height: 1.5;
  width: 100%;
  margin-left: 15px;
  color: black;
}

#projectTab{
	width: 100%;
    margin-top: 210px;
}
@media(max-width: 768px;){
    margin-top: 160px;
}
#projectTab .projectTabMain{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
#projectTab .projectTabMain .projectTabBtn{
	padding: 14px 30px;
	background: #F9F5EB;
	font-size: 16px;
	font-weight: 600;
	border-radius: 5px;
	cursor: pointer;
	transition: .3s;
}
#projectTab .projectTabMain .projectTabBtn:hover{
	transition: .3s;
	opacity: .7;
}
.projectTabBtnActive{
	background: #17479e !important;
	color: white !important;
}

#projectList{
	width: 100%;
	padding: 50px 0px 100px 0px;
}
@media(max-width:480px){
	#projectList{
		padding: 0px 0px 50px 0px;
	}
}
#projectList .projectListMain{
	width: 100%;
	display :flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}
#projectList .projectListMain::after{
	content: '';
	height: 0;
	width: 24%;
}
#projectList .projectListMain .dummyDiv{
	flex: 0 0 24%;
	height: 0;
}
@media(max-width:1024px){
	#projectList .projectListMain .dummyDiv{
		flex: 0 0 32%;
	}
}
#projectList .projectListMain .projectListBox{
	flex: 0 0 24%;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	margin-top: 50px;
}
@media(max-width:1024px){
	#projectList .projectListMain .projectListBox{
		flex: 0 0 32%;
	}
}
@media(max-width:768px){
	#projectList .projectListMain .projectListBox{
		flex: 0 0 48%;
	}
}
@media(max-width:480px){
	#projectList .projectListMain .projectListBox{
		flex: 100%;
	}
}
#projectList .projectListMain .projectListBox:hover .projectListBoxThumbnail img{
	transform: scale(.9);
	transition: .3s;
}
#projectList .projectListMain .projectListBox .projectListBoxThumbnail{
	width: 100%;
	height: 220px;
	background: #17479e;
	overflow: hidden;
}
@media(max-width:1024px){
	#projectList .projectListMain .projectListBox .projectListBoxThumbnail{
		height: 180px;
	}
}
@media(max-width:768px){
	#projectList .projectListMain .projectListBox .projectListBoxThumbnail{
		height: 200px;
	}
}
#projectList .projectListMain .projectListBox .projectListBoxThumbnail img{
 	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s;
}
#projectList .projectListMain .projectListBox .projectListBoxDetails{
	width: 100%;
	margin-top: 15px;
	display: flex;
	flex-direction: column;
}
#projectList .projectListMain .projectListBox .projectListBoxDetails h2{
	font-size: 18px;
	font-weight: 700;
	color: black;
	height: 25px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
#projectList .projectListMain .projectListBox .projectListBoxDetails span{
	font-size: 14px;
	color: #939393;
	font-weight: 500;
	margin-top :3px;
	height: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
#projectList .projectListMain .projectListBox .projectListBoxDetails span i{
	color: #17479e;
}


#innerProjectBanner{
  width: 100%;
  padding: 100px 0px 0px 0px;
  position: relative;
  margin-top: 110px;
  z-index: 0;
}

@media (max-width: 768px) {
  #innerProjectBanner {
    margin-top: 100px;
  }
}

@media (max-width: 480px) {
  #innerProjectBanner {
    padding: 50px 0% 0px 0px;
  }
}
#innerProjectBanner .innerProjectBannerMain{
	width: 100%;
	display :flex;
	flex-direction: column;
}
#innerProjectBanner .innerProjectBannerMain h1{
	font-size: 3em;
	font-weight: 700;
	line-height: 1.5;
}
@media(max-width:480px){
	#innerProjectBanner .innerProjectBannerMain h1{
		font-size: 2em;
	}
}
#innerProjectBanner .innerProjectBannerMain ul{
	width: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid #eee;
	border-radius: 10px;
	padding: 0px 20px 20px 20px;
	margin-top: 20px;
}
#innerProjectBanner .innerProjectBannerMain ul li{
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 20px;
}
#innerProjectBanner .innerProjectBannerMain ul li span{
	font-size: 14px;
	font-weight: 600;
	width: 150px;
}
@media(max-width:480px){
	#innerProjectBanner .innerProjectBannerMain ul li span{
		width:100%;
		font-size: 12px;
		opacity: .7;
	}
}
@media(max-width:480px){
	#innerProjectBanner .innerProjectBannerMain ul li b{
		display: none;
	}
}
#innerProjectBanner .innerProjectBannerMain ul li p{
	font-size: 14px;
	font-weight: 600;
	width: calc(100% - 170px);
	line-height: 1.7;
}
@media(max-width:480px){
	#innerProjectBanner .innerProjectBannerMain ul li p{
		font-size: 16px;
		width:100%;
		margin-top: 5px;
	}
}

#innerProjectImages{
	width: 100%;
	padding-bottom: 100px;
}
#innerProjectImages .innerProjectImagesMain{
	width: 100%;
	display :flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
	margin-top: 30px;
}
#innerProjectImages .innerProjectImagesMain::after{
	content: '';
	height: 0;
	width: 24%;
}
#innerProjectImages .innerProjectImagesMain .dummyDiv{
	flex: 0 0 24%;
	height: 0;
}
@media(max-width:1024px){
	#innerProjectImages .innerProjectImagesMain .dummyDiv{
		flex: 0 0 32%;
	}
}
#innerProjectImages .innerProjectImagesMain .innerProjectImagesBox{
	flex: 0 0 24%;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	margin-top: 20px;
	height: 220px;
	background: #17479e;
	overflow: hidden;
}
@media(max-width:1024px){
	#innerProjectImages .innerProjectImagesMain .innerProjectImagesBox{
		flex: 0 0 32%;
		height: 180px;
	}
}
@media(max-width:768px){
	#innerProjectImages .innerProjectImagesMain .innerProjectImagesBox{
		flex: 0 0 48%;
		height: 200px;
	}
}
@media(max-width:480px){
	#innerProjectImages .innerProjectImagesMain .innerProjectImagesBox{
		flex: 100%;
	}
}
#innerProjectImages .innerProjectImagesMain .innerProjectImagesBox:hover img{
	transform: scale(.9);
	transition: .3s;
}
#innerProjectImages .innerProjectImagesMain .innerProjectImagesBox img{
 	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s;
}

#clientsList {
  margin-top:150px;	
  width: 100%;
  padding: 0px 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

@media (max-width: 768px) {
  #clientsList {
    padding: 0px 5%;
  }
}

#clientsList::after {
  content: '';
  height: 0;
  width: 18%;
}

@media (max-width: 768px) {
  #clientsList::after {
    width: 22%;
  }
}

@media (max-width: 480px) {
  #clientsList::after {
    width: 30%;
  }
}

#clientsList .clientsListBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18%;
          flex: 0 0 18%;
  height: 150px;
  border-radius: 10px;
  margin-top: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0px -3px 29px 3px rgba(0, 0, 0, 0.03);
          box-shadow: 0px -3px 29px 3px rgba(0, 0, 0, 0.03);
}

@media (max-width: 768px) {
  #clientsList .clientsListBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 22%;
            flex: 0 0 22%;
  }
}

@media (max-width: 480px) {
  #clientsList .clientsListBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    height: 100px;
  }
}

#clientsList .clientsListBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#clientsList .dummyclientsListBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18%;
          flex: 0 0 18%;
  height: 0;
}

@media (max-width: 768px) {
  #clientsList .dummyclientsListBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 22%;
            flex: 0 0 22%;
  }
}

#gallery {
  width: 100%;
  padding: 50px 0px;
}

#gallery .galleryMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

#gallery .galleryMain::after {
  content: '';
  height: 0;
  width: 23%;
}

@media (max-width: 768px) {
  #gallery .galleryMain::after {
    width: 30%;
  }
}

#gallery .galleryMain .galleryBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23%;
          flex: 0 0 23%;
  height: 200px;
  background: #f6f6f6;
  border-radius: 10px;
  margin-top: 50px;
  overflow: hidden;
}

@media (max-width: 768px) {
  #gallery .galleryMain .galleryBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    height: 250px;
  }
}

@media (max-width: 480px) {
  #gallery .galleryMain .galleryBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
    height: 180px;
    margin-top: 20px;
  }
}

#gallery .galleryMain .galleryBox:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#gallery .galleryMain .galleryBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#gallery .galleryMain .dummygalleryBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23%;
          flex: 0 0 23%;
  height: 0;
}

#innerSpareParts {
  width: 100%;
  padding: 100px 0px;
}

@media (max-width: 480px) {
  #innerSpareParts {
    padding: 50px 0px;
  }
}

#innerSpareParts .innerSparePartsMain {
  line-height: 0;
  -webkit-column-count: 3;
  -webkit-column-gap: 30px;
  -moz-column-count: 3;
  -moz-column-gap: 30px;
  column-count: 3;
  column-gap: 30px;
  position: relative;
  margin-top: 50px;
}

@media (max-width: 480px) {
  #innerSpareParts .innerSparePartsMain {
    -webkit-column-gap: 10px;
    column-gap: 10px;
  }
}

#innerSpareParts .innerSparePartsMain::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  content: '';
  z-index: 1;
}

@media (max-width: 1200px) {
  #innerSpareParts .innerSparePartsMain {
    -webkit-column-count: 4;
    column-count: 4;
  }
}

@media (max-width: 1000px) {
  #innerSpareParts .innerSparePartsMain {
    -webkit-column-count: 3;
    column-count: 3;
  }
}

@media (max-width: 768px) {
  #innerSpareParts .innerSparePartsMain {
    -webkit-column-count: 2;
    column-count: 2;
  }
}

@media (max-width: 480px) {
  #innerSpareParts .innerSparePartsMain {
    -webkit-column-count: 2;
    column-count: 2;
  }
}

#innerSpareParts .innerSparePartsMain .innerSparePartseBox {
  text-decoration: none;
  position: relative;
  margin-top: 30px;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
}

@media (max-width: 480px) {
  #innerSpareParts .innerSparePartsMain .innerSparePartseBox {
    margin-top: 10px;
  }
}

#innerSpareParts .innerSparePartsMain .innerSparePartseBox:nth-child(1) {
  margin-top: 0;
}

#innerSpareParts .innerSparePartsMain .innerSparePartseBox:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#innerSpareParts .innerSparePartsMain .innerSparePartseBox img {
  width: 100% !important;
  height: auto !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#innerSpareParts .innerSparePartsMain .innerSparePartseBox .innerSparePartsBoxContent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 20px 30px 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 14px;
  font-weight: 600;
  color: white;
  z-index: 0;
}

#innerSpareParts .innerSparePartsMain .innerSparePartseBox .innerSparePartsBoxContent::before {
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(rgba(0, 0, 0, 0), black);
  width: 100%;
  height: 80px;
  bottom: 0;
  left: 0;
  content: '';
  z-index: -1;
}


#contact-banner{
  background: #17469e;
  padding: 50px 0;
  background-attachment: fixed;
  background-position: center;
}

#contact-banner .contact-banner{
  display: flex;
  justify-content: center;
  gap: 15rem;
}

#contact-banner .contact-banner .call-detail{
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact-banner .contact-banner .call-detail h1{
  font-size: 1.5em;
  font-weight: 500;
  color: white;
}

#contact-banner .contact-banner .call-detail .Call-number{
  display: flex;
  gap: 2rem;
  margin-top: 15px;
}

#contact-banner .contact-banner .call-detail .Call-number a{
  color: white;
  font-size: 18px;
text-decoration:none;
}

#contact-banner .contact-banner .call-detail h2{
  font-weight: 400;
  font-size: 16px;
  margin-top: 20px;
  color: white;
}

#contact-banner .contact-banner .call-detail h3{
  font-weight: 400;
  font-size: 14px;
  color: white;
  margin-top:20px;
}

#contact-banner .contact-banner .fax-detail{
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact-banner .contact-banner .fax-detail h1{
  font-size: 1.5em;
  font-weight: 500;
  color: white;
}



#contact-banner .contact-banner .fax-detail .fax {
  display: flex;
  gap: 2rem;
}

#contact-banner .contact-banner .fax-detail .fax a{
margin-top: 1rem;
color: white;
font-size: 18px;
text-decoration:none;
}

#contact-banner .contact-banner .fax-detail a{
  font-weight: 400;
  margin-top: 20px;
  font-size: 18px;
  color: white;
text-decoration:none;
}

@media (max-width:768px){
  #contact-banner .contact-banner{
  gap: 0;
  justify-content: space-between;
  }
}
@media (max-width:480px){
  #contact-banner .contact-banner{
  flex-direction: column;
  gap: 4rem;
  }
}


#Maintenance {
  width: 100%;
  padding: 100px 0px;
}

#Maintenance .MaintenanceMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#Maintenance .MaintenanceMain h2 {
  font-size: 2em;
  font-weight: 500;
  margin-top: 50px;
  color: #17479e;
}

@media (max-width: 480px) {
  #Maintenance .MaintenanceMain h2 {
    font-size: 1.8em;
  }
}

#Maintenance .MaintenanceMain p {
  font-size: 16px;
  line-height: 1.9;
  margin-top: 30px;
}

#Maintenance .MaintenanceMain ul {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#Maintenance .MaintenanceMain ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
}

@media (max-width: 480px) {
  #Maintenance .MaintenanceMain ul li {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
  }
}

#Maintenance .MaintenanceMain ul li span {
  width: 20px;
  font-size: 16px;
  color: #17479e;
}

#Maintenance .MaintenanceMain ul li p {
  font-size: 14px;
  width: calc(100% - 30px);
  color: black;
  margin-top: 0;
}
#Maintenance .MaintenanceMain ul li a {
  font-size: 14px;
  width: calc(100% - 30px);
  color: black;
  text-decoration:none;
  margin-top: 0;
}

#Maintenance .MaintenanceMain .Authorized {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}

#Maintenance .MaintenanceMain .Authorized .AuthorizedBox {
  text-decoration: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14%;
          flex: 0 0 14%;
  height: 100px;
  -webkit-box-shadow: 0px -3px 29px 3px rgba(0, 0, 0, 0.03);
          box-shadow: 0px -3px 29px 3px rgba(0, 0, 0, 0.03);
  padding: 10px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}

@media (max-width: 480px) {
  #Maintenance .MaintenanceMain .Authorized .AuthorizedBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}

#Maintenance .MaintenanceMain .Authorized .AuthorizedBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#Maintenance .serviceMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}

#Maintenance .serviceMain .serviceBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23%;
          flex: 0 0 23%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 50px;
}

@media (max-width: 480px) {
  #Maintenance .serviceMain .serviceBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#Maintenance .serviceMain .serviceBox .serviceBoxThumbnail {
  width: 100%;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px -3px 29px 3px rgba(0, 0, 0, 0.03);
          box-shadow: 0px -3px 29px 3px rgba(0, 0, 0, 0.03);
}

#Maintenance .serviceMain .serviceBox .serviceBoxThumbnail img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}

#Maintenance .serviceMain .serviceBox .serviceBoxContent {
  width: 100%;
  padding: 20px 0px;
  text-align: center;
}

#Maintenance .serviceMain .serviceBox .serviceBoxContent h2 {
  font-size: 20px;
  font-weight: 700;
  color: #071527;
  text-align: center;
}

#terms {
  width: 100%;
  padding: 100px 0px;
  margin-top: 110px;
}

@media (max-width: 1024px) {
  #terms {
    margin-top: 100px;
  }
}

@media (max-width: 480px) {
  #terms {
    padding: 50px 0px;
  }
}

#terms .termsMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#terms .termsMain p {
  font-size: 16px;
  line-height: 1.9;
  margin-top: 30px;
}

.innerContact {
  margin-top: 110px;
}

@media (max-width: 1024px) {
  .innerContact {
    margin-top: 100px;
  }
}

.innerBannerLink {
  background: #f8fbff;
  padding-top: 30px;
  margin-top: 110px !important;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .innerBannerLink {
    margin-top: 100px !important;
  }
}

@media (max-width: 768px) {
  .innerBannerLink .bannerLinkMain {
    width: 100% !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: inherit !important;
        flex-wrap: inherit !important;
    overflow-x: scroll !important;
  }
  .innerBannerLink .bannerLinkMain a {
    margin-right: 20px !important;
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    white-space: pre !important;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 40% !important;
            flex: 0 0 40% !important;
  }
}

@media (max-width: 768px) and (max-width: 480px) {
  .innerBannerLink .bannerLinkMain a {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 80% !important;
            flex: 0 0 80% !important;
  }
}

@media (max-width: 768px) {
  .innerBannerLink .bannerLinkMain a .bannerLinkIcon {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 0 !important;
    margin-right: 15px !important;
  }
  .innerBannerLink .Contracting a:nth-child(1) {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .innerBannerLink .Contracting a:nth-child(2) {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .innerBannerLink .Contracting a:nth-child(3) {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .innerBannerLink .Contracting a:nth-child(4) {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .innerBannerLink .SpareParts a:nth-child(1) {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .innerBannerLink .SpareParts a:nth-child(2) {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .innerBannerLink .SpareParts a:nth-child(3) {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .innerBannerLink .SpareParts a:nth-child(4) {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .innerBannerLink .Maintenance a:nth-child(1) {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .innerBannerLink .Maintenance a:nth-child(2) {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .innerBannerLink .Maintenance a:nth-child(3) {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .innerBannerLink .Maintenance a:nth-child(4) {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .innerBannerLink .coldRoom a:nth-child(1) {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .innerBannerLink .coldRoom a:nth-child(2) {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .innerBannerLink .coldRoom a:nth-child(3) {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .innerBannerLink .coldRoom a:nth-child(4) {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
}

@media (max-width: 480px) {
  .innerBannerLink {
    margin-top: 100px !important;
  }
}
/*# sourceMappingURL=style.css.map */


/*carLogo */

#CarLogo{
  padding: 100px 0;
}

#CarLogo h1{   
   font-size: 2em;
  color: #071527;
}
@media (max-width: 480px){
  #CarLogo h1 {
    font-size: 1.8em;
    font-weight: 600;
}
}


#CarLogo .logoHead .car-img{
  display: flex;
  align-items: center;
  margin-top: 4rem;
  height: 100px;
  width: 100%;
}

#CarLogo .logoHead .car-img img{
  overflow: visible;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#blogList {
  width: 100%;
  padding: 100px 0px;
}
@media (max-width: 480px) {
  #blogList {
    padding-top: 50px;
  }
}
#blogList h1 {
  font-size: 2.5em;
  font-weight: 600;
  line-height: 1.7;
}
@media (max-width: 1024px) {
  #blogList h1 {
    font-size: 2em;
  }
}
#blogList .blogListMain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
#blogList .blogListMain::after {
  content: "";
  height: 0;
  width: 23%;
}
@media (max-width: 1800px) {
  #blogList .blogListMain::after {
    width: 31%;
  }
}
@media (max-width: 1024px) {
  #blogList .blogListMain::after {
    width: 30%;
  }
}
#blogList .blogListMain .blogListBox {
  flex: 0 0 23%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin-top: 50px;
}
@media (max-width: 1800px) {
  #blogList .blogListMain .blogListBox {
    flex: 0 0 31%;
  }
}
@media (max-width: 1024px) {
  #blogList .blogListMain .blogListBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 768px) {
  #blogList .blogListMain .blogListBox {
    flex: 0 0 48%;
  }
}
@media (max-width: 480px) {
  #blogList .blogListMain .blogListBox {
    flex: 100%;
  }
}
#blogList .blogListMain .blogListBox:hover .blogListBoxThumbnail img {
  transform: scale(1.2);
  transition: 0.3s;
}
#blogList .blogListMain .blogListBox .blogListBoxThumbnail {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1024px) {
  #blogList .blogListMain .blogListBox .blogListBoxThumbnail {
    height: 220px;
  }
}
#blogList .blogListMain .blogListBox .blogListBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
#blogList .blogListMain .blogListBox .blogListBoxDetails {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
#blogList .blogListMain .blogListBox .blogListBoxDetails h2 {
  font-size: 16px;
  font-weight: 500;
  color: black;
  line-height: 1.7;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 1024px) {
  #blogList .blogListMain .blogListBox .blogListBoxDetails h2 {
    font-size: 16px;
    line-height: 1.3;
    max-height: 40px;
  }
}
#blogList .blogListMain .blogListBox .blogListBoxDetails p {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 10px;
  opacity: 0.7;
  color: black;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (max-width: 480px) {
  #blogList .blogListMain .blogListBox .blogListBoxDetails p {
    line-height: 1.5;
    margin-top: 10px;
  }
}
#blogList .blogListMain .dummyBlogListBox {
  flex: 0 0 23%;
  height: 0;
}
@media (max-width: 1800px) {
  #blogList .blogListMain .dummyBlogListBox {
    flex: 0 0 31%;
  }
}
@media (max-width: 1024px) {
  #blogList .blogListMain .dummyBlogListBox {
    flex: 0 0 30%;
  }
}
#innerBlogDetails {
  width: 100%;
  padding: 100px 0px;
  margin-top: 70px;
}

@media (max-width: 480px) {
  #innerBlogDetails {
    margin-top: 60px;
    padding: 50px 0px;
  }
}

#innerBlogDetails .innerBlogDetailsMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 10%;
}

@media (max-width: 1024px) {
  #innerBlogDetails .innerBlogDetailsMain {
    padding: 0px;
  }
}

#innerBlogDetails .innerBlogDetailsMain .innerBlogDetailsThumbnail {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

#innerBlogDetails .innerBlogDetailsMain .innerBlogDetailsThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#innerBlogDetails .innerBlogDetailsMain .innerBlogDetailsContent {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 50px;
}

#innerBlogDetails .innerBlogDetailsMain .innerBlogDetailsContent h1 {
  color: black;
  font-size: 4em;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 1800px) {
  #innerBlogDetails .innerBlogDetailsMain .innerBlogDetailsContent h1 {
    font-size: 3.5em;
  }
}

@media (max-width: 480px) {
  #innerBlogDetails .innerBlogDetailsMain .innerBlogDetailsContent h1 {
    font-size: 2.2em;
  }
}

#innerBlogDetails .innerBlogDetailsMain .innerBlogDetailsContent p {
  font-size: 16px;
  color: black;
  margin-top: 30px;
  line-height: 1.7;
  opacity: .8;
}