/* ----- Active and Hover Links ----- */
/* ----- Active and Hover Links End ----- */
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap");
.crossLine {
  background: transparent;
  position: relative;
  display: inline-block;
  padding: 0px;
  width: 45px;
  height: 25px;
  cursor: pointer;
  border: inherit;
}
.crossLine:focus, .crossLine:hover {
  border: inherit;
  outline: none;
}
.crossLine .line {
  display: block;
  background: #000;
  height: 3px;
  width: 30px;
  position: absolute;
  left: 0px;
  right: 0px;
  margin: auto;
}
.crossLine .line.crossLine1 {
  top: 0px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.crossLine .line.crossLine2 {
  top: 45%;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.crossLine .line.crossLine3 {
  bottom: 0px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.crossLine.active .line.crossLine1 {
  top: 45%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.crossLine.active .line.crossLine2 {
  opacity: 0;
}
.crossLine.active .line.crossLine3 {
  bottom: 45%;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media (max-width: 991px) {
  .crossLine.active {
    background: inherit;
    padding: 25px 0;
  }
  .crossLine.active .line {
    background: #fff;
  }
  .crossLine.active .line.crossLine3 {
    bottom: 50%;
  }
}
@media (max-width: 767px) {
  .crossLine .line.crossLine2 {
    top: 44%;
  }
}

#sidebarCollapse {
  z-index: 5555;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Jost", sans-serif;
  overflow-x: hidden;
}
body.overflowhidden {
  overflow: hidden;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

p {
  font-size: 25px;
  line-height: 35px;
  color: #424242;
  font-weight: 500;
}
@media (max-width: 1699px) {
  p {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 575px) {
  p {
    font-size: 16px;
    line-height: 26px;
  }
}

ul {
  padding-left: 0px;
  margin-bottom: 0px;
  list-style-type: none;
}
ul li {
  font-size: 16px;
  line-height: 20px;
}

.font22 {
  font-size: 22px;
  line-height: 28px;
  color: #000;
  font-weight: 500;
}

.textCenter {
  text-align: center;
}

.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.comnBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 280px;
}
.comnBtn .defaultButton {
  background: #19B7B8;
  border-radius: 30px;
  text-align: center;
  padding: 16px 40px;
  color: #fff;
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
}
@media (max-width: 1699px) {
  .comnBtn .defaultButton {
    font-size: 16px;
    line-height: 16px;
    padding: 14px 32px;
  }
}
.comnBtn .roundButton {
  position: relative;
  background: #19B7B8;
  border-radius: 100px;
  height: 50px;
  width: 50px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1699px) {
  .comnBtn .roundButton {
    width: 42px;
    height: 42px;
  }
}
.comnBtn .roundButton img {
  height: 15px;
  width: 15px;
}
@media (max-width: 1699px) {
  .comnBtn .roundButton img {
    width: 12px;
    height: 12px;
    margin-bottom: 0px;
  }
}
.comnBtn .roundButton.hvrShw {
  opacity: 0;
  margin-right: -41px;
  -webkit-transform: scale3d(0.5, 0.5, 1);
          transform: scale3d(0.5, 0.5, 1);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.comnBtn .roundButton.hvrHde {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.comnBtn:hover .defaultButton {
  background: #000;
  color: #fff;
}
.comnBtn:hover .roundButton {
  background: #000;
}
.comnBtn:hover .roundButton.hvrShw {
  opacity: 1;
  margin-right: 0;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}
.comnBtn:hover .roundButton.hvrHde {
  opacity: 0;
  margin-left: -60px;
  -webkit-transform: scale3d(0.5, 0.5, 1);
          transform: scale3d(0.5, 0.5, 1);
}

button:focus:not(:focus-visible) {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (min-width: 1300px) {
  .container {
    max-width: 1250px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    max-width: 1300px;
  }
}
@media screen and (min-width: 1700px) {
  .container {
    max-width: 1720px;
  }
}
.bullets {
  list-style: none;
}
.bullets li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 20px;
}
.bullets li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 15px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #000;
}
@media (max-width: 1699px) {
  .bullets li {
    padding-left: 20px;
    margin-bottom: 15px;
  }
  .bullets li::before {
    top: 8px;
    height: 8px;
    width: 8px;
  }
}
@media (max-width: 480px) {
  .bullets li {
    padding-left: 15px;
    margin-bottom: 10px;
  }
  .bullets li::before {
    top: 10px;
    height: 6px;
    width: 6px;
  }
}

.slick-dots {
  position: relative;
  bottom: inherit;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slick-dots li {
  width: 15px;
  height: 15px;
  border: 1px solid #464646;
  border-radius: 50%;
}
.slick-dots li button {
  font-size: 0px;
  padding: 0px;
  width: 100%;
  height: inherit;
}
.slick-dots li button::before {
  display: none;
}
.slick-dots li.slick-active {
  background: #034F6E;
}
@media (max-width: 767px) {
  .slick-dots {
    margin-top: 20px;
  }
}

.sectionTitle {
  font-family: "Playfair", serif;
  font-size: 60px;
  line-height: 70px;
  color: #424242;
  font-weight: 500;
  margin-bottom: 60px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .sectionTitle {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 35px;
  }
}
@media (max-width: 1699px) {
  .sectionTitle {
    font-size: 43px;
    line-height: 55px;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .sectionTitle {
    margin-bottom: 20px;
    font-size: 35px;
    line-height: 45px;
  }
}

.sectionPadding {
  padding: 120px 0px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .sectionPadding {
    padding: 90px 0px;
  }
}
@media (max-width: 1699px) {
  .sectionPadding {
    padding: 80px 0px;
  }
}
@media (max-width: 991px) {
  .sectionPadding {
    padding: 60px 0px;
  }
}
@media (max-width: 575px) {
  .sectionPadding {
    padding: 40px 0px;
  }
}

.minhight500 {
  min-height: 500px;
}
@media (max-width: 767px) {
  .minhight500 {
    min-height: 100px;
  }
}

.mainHeader {
  position: absolute;
  z-index: 111;
  width: 98%;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  margin-top: 30px;
}
@media (max-width: 1699px) {
  .mainHeader {
    margin-top: 20px;
  }
}
.mainHeader header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100px;
  padding: 10px 60px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .mainHeader header {
    padding: 10px 45px;
  }
}
@media (max-width: 1699px) {
  .mainHeader header {
    padding: 10px 30px;
  }
}
@media (max-width: 767px) {
  .mainHeader header {
    padding: 10px 15px;
  }
}
.mainHeader header .navbarLink ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mainHeader header .navbarLink ul li {
  margin-left: 60px;
  padding: 31px 0px;
}
.mainHeader header .navbarLink ul li.dropdown .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mainHeader header .navbarLink ul li.dropdown .nav-link i {
  margin-left: 10px;
}
.mainHeader header .navbarLink ul li li {
  padding: 0px;
}
.mainHeader header .navbarLink ul li:first-child {
  margin-left: 0px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .mainHeader header .navbarLink ul li {
    margin-left: 45px;
    padding: 33px 0px;
  }
}
@media (max-width: 1699px) {
  .mainHeader header .navbarLink ul li {
    margin-left: 30px;
    padding: 25px 0px;
  }
}
@media (max-width: 1199px) {
  .mainHeader header .navbarLink ul li {
    margin-left: 20px;
    padding: 18px 0px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li {
    margin-left: 0px;
    padding: 0 0px 0px 0px;
    margin-bottom: 0px;
    border-bottom: #fff solid 1px;
    width: 100%;
    text-align: left;
  }
  .mainHeader header .navbarLink ul li:last-child {
    border-bottom: none;
  }
}
.mainHeader header .navbarLink ul li .dropdown-toggle {
  padding: 3px;
}
.mainHeader header .navbarLink ul li .dropdown-toggle::after {
  display: none;
}
.mainHeader header .navbarLink ul li a {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
  -webkit-transition: 0.4s ease-in-out all;
  transition: 0.4s ease-in-out all;
  padding: 0px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 22px;
    line-height: 22px;
  }
}
@media (max-width: 1699px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 1199px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 30px;
    line-height: 30px;
    color: #fff;
    padding: 20px 15px !important;
  }
}
@media (max-width: 480px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 24px;
    line-height: 24px;
    padding: 16px 15px !important;
  }
}
.mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
  background: none;
  border-radius: 0;
  color: #14B8BD;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
    color: #14B8BD;
    background: none;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu {
  background: transparent;
  padding: 11px 0px 0px 0px;
  margin: 0;
  min-width: 300px;
  right: 0 !important;
  -webkit-transform: inherit !important;
          transform: inherit !important;
  top: 100% !important;
  left: 0% !important;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (max-width: 1699px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    min-width: 230px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    left: inherit !important;
    margin: 0px 0 10px;
    min-width: 100%;
    background: transparent;
    border: none;
    margin-top: 0px;
    margin-bottom: 0;
    padding-top: 0px;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu .drpNav {
  position: relative;
  background: #fff;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  -webkit-box-shadow: 0px 4px 25px 5px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 4px 25px 5px rgba(0, 0, 0, 0.1019607843);
  overflow: hidden;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav {
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0px;
  }
}
@media (max-width: 480px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav {
    margin-top: 0;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li {
  margin-left: 0;
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
  border-color: #275571;
}
.mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li:first-child {
  border-radius: 2px 2px 0px 0px;
  overflow: hidden;
  border-top: #fff solid 1px;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li {
    padding: 0;
    margin-bottom: 5px;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li:last-child {
    padding-bottom: 0;
  }
}
@media (max-width: 480px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li {
    margin-bottom: 0px;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li a {
  color: #000;
  padding: 15px 30px;
  font-size: 20px;
  line-height: 18px;
  display: block;
  font-weight: 700;
  text-transform: capitalize;
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
@media (max-width: 1699px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li a {
    font-size: 17px;
    line-height: 1;
    padding: 12px 15px;
    word-wrap: break-word;
    white-space: normal;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li a {
    font-size: 20px;
    line-height: 22px;
    color: #fff;
    padding: 0 0 15px;
    font-weight: 400;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li a {
    font-size: 20px;
    line-height: 20px;
    padding: 0 0 10px;
  }
}
@media (max-width: 480px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li a {
    font-size: 18px;
    line-height: 18px;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li.active a, .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li:hover a {
  background: #003B5E;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li.active a, .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li:hover a {
    color: #14B8BD !important;
    background: transparent;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li.active:last-child, .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li:hover:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  overflow: hidden;
}
.mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li.active > a, .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li:hover > a {
  color: #fff !important;
  background: #14B8BD;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li.active > a, .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li:hover > a {
    color: #14B8BD !important;
    background: transparent;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li.submenu .dropdown-toggle {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li.submenu .subdropdown {
  left: 100%;
  top: 0 !important;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu .drpNav li.submenu .dropdown-toggle {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu li {
    text-align: center;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu li a {
    color: #fff;
    text-align: center;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu .subdropdown {
    left: 0 !important;
  }
}
.mainHeader header .navbarLink ul li:hover > .dropdown-menu li, .mainHeader header .navbarLink ul li:focus > .dropdown-menu li {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .mainHeader header .navbarLink ul li:hover > .dropdown-menu, .mainHeader header .navbarLink ul li:focus > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 10;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
  }
  .mainHeader header .navbarLink ul li:hover > .dropdown-menu li, .mainHeader header .navbarLink ul li:focus > .dropdown-menu li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.mainHeader header .navbarLink ul li.openBottom li.submenu .dropdown-toggle {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown {
  left: 0 !important;
  top: 100% !important;
  position: relative;
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown li {
  padding-left: 20px;
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown li a {
  font-size: 13px;
  padding: 0;
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown li:hover {
  background: none;
}
.mainHeader header .navbarLink ul li.openBottom .subdropdown li:hover a {
  color: #000 !important;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    position: relative !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
}
.mainHeader header .navbarLink.active {
  left: 0;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink {
    background: #003B5E;
    width: 100%;
    position: fixed;
    top: 0;
    left: -128%;
    height: 100vh;
    z-index: 999;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    overflow-y: scroll;
    text-align: center;
    padding-top: 25%;
  }
  .mainHeader header .navbarLink .navbar-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .mainHeader header .navbarLink #dismiss .d-md-none {
    display: block !important;
  }
}
@media (max-width: 991px) {
  .mainHeader .comnBtn {
    display: none;
  }
}
.mainHeader .defaultButton {
  background: #024B6A;
}
.mainHeader .roundButton {
  background: #024B6A;
}
@media (max-width: 1699px) {
  .mainHeader .logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (max-width: 991px) {
  .mainHeader .logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
    max-width: 35%;
  }
}
@media (max-width: 480px) {
  .mainHeader .logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}
.mainHeader .logo a {
  display: block;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .mainHeader .logo img {
    height: 90px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 1699px) {
  .mainHeader .logo img {
    height: 70px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 1199px) {
  .mainHeader .logo img {
    height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 767px) {
  .mainHeader .logo img {
    height: 55px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.mainHeader .headercontact {
  background: #024B6A;
  padding: 15px 25px;
  border-radius: 50px;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mainHeader .headercontact span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1699px) {
  .mainHeader .headercontact span img {
    height: 20px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.mainHeader .headercontact a {
  color: #FBFDFD;
  font-size: 20px;
  line-height: 20px;
  font-weight: 500;
  margin-left: 10px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .mainHeader .headercontact a {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 1699px) {
  .mainHeader .headercontact a {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 1199px) {
  .mainHeader .headercontact a {
    font-size: 14px;
    line-height: 14px;
  }
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .mainHeader .headercontact {
    padding: 12px 20px;
  }
}
@media (max-width: 1699px) {
  .mainHeader .headercontact {
    padding: 12px 20px;
  }
}
@media (max-width: 991px) {
  .mainHeader .headercontact {
    display: none;
  }
}
.mainHeader .headercontact:hover a {
  color: #19b7b8;
}

.homebanner {
  position: relative;
  height: inherit;
}
.homebanner .bannerImage {
  position: relative;
  height: inherit;
}
.homebanner .bannerImage img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  .homebanner .bannerImage img {
    height: 600px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 480px) {
  .homebanner .bannerImage img {
    height: 500px;
  }
}
.homebanner .bannerBox {
  display: block !important;
  text-align: center;
}
.homebanner .bannerText {
  position: absolute;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: inherit;
  bottom: 100px;
}
.homebanner .bannerText .bannerDesc {
  font-size: 90px;
  line-height: 90px;
  color: #fff;
  margin-bottom: 20px;
  font-family: "Playfair", serif;
  font-weight: 900;
  text-align: left;
}
.homebanner .bannerText .bannerDesc span {
  font-size: 60px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .homebanner .bannerText .bannerDesc {
    font-size: 70px;
    line-height: 70px;
  }
}
@media (max-width: 1699px) {
  .homebanner .bannerText .bannerDesc {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 991px) {
  .homebanner .bannerText .bannerDesc {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .homebanner .bannerText .bannerDesc {
    font-size: 50px;
    line-height: 50px;
  }
}
@media (max-width: 480px) {
  .homebanner .bannerText .bannerDesc {
    font-size: 30px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .homebanner .bannerText .comnBtn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 1199px) {
  .homebanner .bannerText {
    bottom: 110px;
  }
}
@media (max-width: 991px) {
  .homebanner .bannerText {
    bottom: 130px;
  }
}
.homebanner .slick-dots {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100px;
  width: auto;
}
.homebanner .slick-dots li {
  height: 20px;
  width: 20px;
  margin-bottom: 10px;
  border-radius: 100px;
  background: #006792;
}
.homebanner .slick-dots li.slick-active {
  height: 20px;
  width: 20px;
  background: #EF7F1A;
}
@media (max-width: 1699px) {
  .homebanner .slick-dots li.slick-active {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 1699px) {
  .homebanner .slick-dots li {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 991px) {
  .homebanner .slick-dots li {
    margin: 0px 10px;
    background: #19B7B8;
  }
}
@media (max-width: 991px) {
  .homebanner .slick-dots {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    top: inherit;
    margin-top: 0px;
    bottom: 13%;
    right: 0;
    left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.innerbanner {
  position: relative;
}
.innerbanner::before {
  content: "";
  position: absolute;
  background: linear-gradient(181.03deg, rgba(20, 184, 189, 0.1) 26.1%, #003B5E 99.44%);
  width: 100%;
  height: 100%;
}
.innerbanner img {
  width: 100%;
}
@media (max-width: 1199px) {
  .innerbanner img {
    height: 450px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 767px) {
  .innerbanner img {
    height: 350px;
  }
}
.innerbanner .bannerText {
  position: absolute;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: inherit;
  bottom: 70px;
}
.innerbanner .bannerText h1 {
  font-size: 90px;
  line-height: 90px;
  color: #fff;
  font-family: "Playfair", serif;
  font-weight: 900;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .innerbanner .bannerText h1 {
    font-size: 70px;
    line-height: 70px;
  }
}
@media (max-width: 1699px) {
  .innerbanner .bannerText h1 {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .innerbanner .bannerText h1 {
    font-size: 40px;
    line-height: 40px;
    text-align: center;
  }
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .innerbanner .bannerText {
    bottom: 60px;
  }
}
@media (max-width: 1699px) {
  .innerbanner .bannerText {
    bottom: 50px;
  }
}
@media (max-width: 991px) {
  .innerbanner .bannerText {
    bottom: 80px;
  }
}
@media (max-width: 767px) {
  .innerbanner .bannerText {
    bottom: 30px;
  }
}
@media (max-width: 575px) {
  .innerbanner .bannerText {
    text-align: center;
    margin: auto;
  }
}

.inquiryForm {
  background: #f1f1f1;
}
.inquiryForm .form-group {
  margin-bottom: 25px;
}
.inquiryForm .defaultButton a {
  color: #fff;
}

.offcanvas {
  position: relative;
  visibility: visible;
}
.offcanvas .offcanvas-start {
  top: inherit;
  left: inherit;
  width: 100%;
  border-right: 0px;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (max-width: 767px) {
  .offcanvas {
    position: fixed;
    visibility: hidden;
  }
  .offcanvas .contentMobile {
    display: none;
  }
  .offcanvas .offcanvas-start {
    top: 0;
    left: 0;
    width: 400px;
    -webkit-transform: translateX(15px);
            transform: translateX(15px);
  }
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/dropdown.svg) #002535 no-repeat;
  background-position: center right 20px;
  color: #fff;
  outline: none;
}
select option {
  color: #fff;
}

.form-control {
  color: #fff;
}

.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #002535;
  color: #fff;
}

.form-floating > label {
  color: #000;
}

.hmAboutUs {
  border-radius: 50px 50px 50px 50px;
  background: #fff;
  margin-top: -39px;
  position: relative;
}
.hmAboutUs .hmAboutContent h1 {
  background: -webkit-gradient(linear, left top, left bottom, from(#14B8BD), to(#003B5E));
  background: linear-gradient(180deg, #14B8BD 0%, #003B5E 100%);
  font-size: 69px;
  line-height: 80px;
  font-weight: 500;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 40px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .hmAboutUs .hmAboutContent h1 {
    font-size: 50px;
    line-height: 65px;
    margin-bottom: 25px;
  }
}
@media (max-width: 1699px) {
  .hmAboutUs .hmAboutContent h1 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .hmAboutUs .hmAboutContent h1 {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .hmAboutUs .hmAboutContent h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 480px) {
  .hmAboutUs .hmAboutContent h1 {
    font-size: 24px;
    line-height: 30px;
  }
}
.hmAboutUs .hmAboutContent p {
  margin-bottom: 40px;
}
@media (max-width: 1699px) {
  .hmAboutUs .hmAboutContent p {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .hmAboutUs .hmAboutContent p {
    margin-bottom: 0px;
  }
}
@media (max-width: 991px) {
  .hmAboutUs .hmAboutContent {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .hmAboutUs .hmAboutContent .comnBtn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.hmAboutUs .hmAboutContent.aboutdetail p {
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .hmAboutUs .hmAboutContent {
    margin-top: 0px;
  }
}
.hmAboutUs img {
  width: 100%;
}
@media (max-width: 1199px) {
  .hmAboutUs img {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .hmAboutUs img {
    height: 400px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 575px) {
  .hmAboutUs img {
    height: 300px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 1699px) {
  .hmAboutUs {
    border-radius: 30px 30px 30px 30px;
  }
}
@media (max-width: 1199px) {
  .hmAboutUs {
    margin-top: -74px;
  }
}
@media (max-width: 575px) {
  .hmAboutUs {
    margin-top: 0px;
  }
}
@media (max-width: 991px) {
  .hmAboutUs .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hmAboutUs .row {
    text-align: left;
  }
}

.hmProductSec {
  padding-top: 0px;
}
.hmProductSec .sectionTitle {
  text-align: center;
}
.hmProductSec .hmProductBox {
  position: relative;
  border-radius: 20px;
  margin-bottom: 30px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 0.5s ease-in-out all;
  transition: 0.5s ease-in-out all;
}
.hmProductSec .hmProductBox:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.hmProductSec .hmProductBox .hmproductImg img {
  border-radius: 20px 20px 20px 20px;
}
@media (max-width: 1199px) {
  .hmProductSec .hmProductBox .hmproductImg img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 767px) {
  .hmProductSec .hmProductBox .hmproductImg img {
    width: 100%;
    height: 350px;
  }
}
.hmProductSec .hmProductBox .hmProductName {
  background: rgba(25, 183, 184, 0.6980392157);
  backdrop-filter: blur(10px);
  position: absolute;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 30px;
  border-radius: 0px 0px 20px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hmProductSec .hmProductBox .hmProductName p {
  margin-bottom: 0px;
  font-size: 30px;
  line-height: 40px;
  color: #fff;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .hmProductSec .hmProductBox .hmProductName p {
    font-size: 25px;
    line-height: 35px;
  }
}
@media (max-width: 1699px) {
  .hmProductSec .hmProductBox .hmProductName p {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 1199px) {
  .hmProductSec .hmProductBox .hmProductName p {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 1199px) {
  .hmProductSec .hmProductBox .hmProductName {
    padding: 15px;
  }
}
.hmProductSec .comnBtn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  margin: auto;
  margin-top: 20px;
}

.hmtestimonial {
  padding-top: 0px;
}
.hmtestimonial .testimonialSec {
  background: url(../images/testimonial_bg.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-size: cover;
  position: relative;
  padding-right: 100px;
  padding: 100px;
}
.hmtestimonial .testimonialSec::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #004765;
  opacity: 0.8;
  top: 0;
  bottom: 0;
  border-radius: 50px;
  left: 0;
}
@media (max-width: 480px) {
  .hmtestimonial .testimonialSec::before {
    border-radius: 25px;
  }
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .hmtestimonial .testimonialSec {
    padding: 70px;
  }
}
@media (max-width: 1699px) {
  .hmtestimonial .testimonialSec {
    padding: 50px;
  }
}
@media (max-width: 480px) {
  .hmtestimonial .testimonialSec {
    padding: 30px 15px;
    border-radius: 25px;
  }
}
.hmtestimonial .testimonialSec .sectionTitle {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 3;
}
.hmtestimonial .testimonialSec .testimonialSlider {
  position: relative;
  z-index: 3;
}
.hmtestimonial .testimonialSec .testimonialSlider .slick-slide {
  padding: 0px 15px;
}
.hmtestimonial .testimonialSec .testimonialSlider .slick-slide div {
  text-align: center;
}
.hmtestimonial .testimonialSec .testimonialSlider .slick-slide div .testimonialBox {
  text-align: left;
}
.hmtestimonial .testimonialSec .testimonialSlider .testimonialBox {
  background: rgba(25, 183, 184, 0.4);
  backdrop-filter: blur(30px);
  border-radius: 20px;
  position: relative;
  padding: 50px;
  max-width: 770px;
}
.hmtestimonial .testimonialSec .testimonialSlider .testimonialBox::before {
  content: "";
  position: absolute;
  background: url(../images/testimonial.png);
  background-repeat: no-repeat;
  width: 100px;
  height: 80px;
  right: 6px;
  top: 5px;
}
.hmtestimonial .testimonialSec .testimonialSlider .testimonialBox p {
  font-size: 25px;
  line-height: 35px;
  color: #fff;
  font-style: italic;
  max-width: 600px;
  margin-bottom: 30px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .hmtestimonial .testimonialSec .testimonialSlider .testimonialBox p {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 1699px) {
  .hmtestimonial .testimonialSec .testimonialSlider .testimonialBox p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .hmtestimonial .testimonialSec .testimonialSlider .testimonialBox p {
    font-size: 16px;
    line-height: 26px;
  }
}
.hmtestimonial .testimonialSec .testimonialSlider .testimonialBox span {
  font-size: 25px;
  line-height: 35px;
  color: #fff;
  position: relative;
  padding-left: 20px;
}
.hmtestimonial .testimonialSec .testimonialSlider .testimonialBox span::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 5px;
  background: #fff;
  left: 0;
  top: 0px;
  bottom: 0;
  margin: auto;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .hmtestimonial .testimonialSec .testimonialSlider .testimonialBox span {
    font-size: 22px;
    line-height: 32px;
    padding-left: 15px;
  }
}
@media (max-width: 1699px) {
  .hmtestimonial .testimonialSec .testimonialSlider .testimonialBox span {
    font-size: 20px;
    line-height: 30px;
    padding-left: 15px;
  }
}
@media (max-width: 1199px) {
  .hmtestimonial .testimonialSec .testimonialSlider .testimonialBox span {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .hmtestimonial .testimonialSec .testimonialSlider .testimonialBox {
    padding: 40px;
  }
}
@media (max-width: 1699px) {
  .hmtestimonial .testimonialSec .testimonialSlider .testimonialBox {
    padding: 30px;
  }
}
.hmtestimonial.aboutTestimonial {
  background: #E3F6FF;
  padding-top: 120px;
}
.hmtestimonial.aboutTestimonial .testimonialSec {
  background: none;
  background-size: none;
  padding: 0px;
  position: inherit;
}
.hmtestimonial.aboutTestimonial .testimonialSec::before {
  display: none;
}
.hmtestimonial.aboutTestimonial .testimonialSec .slick-slide {
  margin: 20px 0px;
}
.hmtestimonial.aboutTestimonial .testimonialSec .testimonialBox {
  background: #fff;
  -webkit-box-shadow: 0px 4px 9px 5px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 4px 9px 5px rgba(0, 0, 0, 0.1490196078);
}
.hmtestimonial.aboutTestimonial .testimonialSec .testimonialBox::before {
  background: url(../images/aboutestimonial.png) no-repeat;
  right: 14px;
  top: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  background-size: 120px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .hmtestimonial.aboutTestimonial .testimonialSec .testimonialBox::before {
    background-size: 100px;
    right: 8px;
  }
}
@media (max-width: 1699px) {
  .hmtestimonial.aboutTestimonial .testimonialSec .testimonialBox::before {
    background-size: 100px;
    right: 8px;
  }
}
.hmtestimonial.aboutTestimonial .testimonialSec .testimonialBox p {
  color: #767676;
}
.hmtestimonial.aboutTestimonial .testimonialSec .testimonialBox span {
  color: #000;
  padding: 0px;
}
.hmtestimonial.aboutTestimonial .testimonialSec .testimonialBox span::before {
  display: none;
}
.hmtestimonial.aboutTestimonial .testimonialSec .sectionTitle {
  color: #424242;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .hmtestimonial.aboutTestimonial {
    padding-top: 80px;
  }
}
@media (max-width: 1699px) {
  .hmtestimonial.aboutTestimonial {
    padding-top: 80px;
  }
}
@media (max-width: 991px) {
  .hmtestimonial.aboutTestimonial {
    padding-top: 60px;
  }
}
@media (max-width: 575px) {
  .hmtestimonial.aboutTestimonial {
    padding-top: 40px;
  }
}

.clientSec {
  padding-top: 0px;
}
.clientSec .sectionTitle {
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .clientSec .sectionTitle {
    text-align: center;
    margin-bottom: 20px;
  }
}
.clientSec .desktopClientSec {
  display: block;
}
@media (max-width: 991px) {
  .clientSec .desktopClientSec {
    display: none;
  }
}
.clientSec .tabClient {
  display: none;
}
@media (max-width: 991px) {
  .clientSec .tabClient {
    display: block;
  }
}
.clientSec .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.clientSec .clientSlider .slick-slide {
  padding: 0px 15px;
  margin: 10px 0px;
}
.clientSec .clientSlider .clientBox {
  background: #fff;
  -webkit-box-shadow: 0px 4px 10px 5px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 4px 10px 5px rgba(0, 0, 0, 0.1019607843);
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 140px;
  border-radius: 20px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .clientSec .clientSlider .clientBox {
    height: 130px;
  }
}
@media (max-width: 1699px) {
  .clientSec .clientSlider .clientBox {
    height: 120px;
  }
}
@media (max-width: 1199px) {
  .clientSec .clientSlider .clientBox {
    height: 100px;
  }
}
@media (max-width: 1699px) {
  .clientSec .clientSlider .clientBox img {
    height: 68px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

footer {
  background: #00141C;
}
footer .footer80 {
  padding: 80px 0px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  footer .footer80 {
    padding: 70px 0px;
  }
}
@media (max-width: 1699px) {
  footer .footer80 {
    padding: 60px 0px;
  }
}
@media (max-width: 991px) {
  footer .footer80 {
    padding: 40px 0px;
  }
}
@media (max-width: 991px) {
  footer .footerLogo {
    text-align: center;
  }
}
@media (max-width: 767px) {
  footer .footerLogo img {
    height: 70px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
footer .socialLinks {
  margin-top: 60px;
}
footer .socialLinks ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .socialLinks ul li {
  margin-right: 30px;
}
footer .socialLinks ul li:last-child {
  margin-right: 0px;
}
footer .socialLinks ul li a {
  -webkit-transition: ease-in-out 0.2s all;
  transition: ease-in-out 0.2s all;
  display: block;
}
footer .socialLinks ul li a:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media (max-width: 1699px) {
  footer .socialLinks ul li a img {
    height: 25px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 480px) {
  footer .socialLinks ul li a img {
    height: 20px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 991px) {
  footer .socialLinks ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 991px) {
  footer .socialLinks {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  footer .socialLinks {
    margin-top: 20px;
  }
}
footer .quickConnects .sectionTitle {
  color: #fff;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 30px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  footer .quickConnects .sectionTitle {
    font-size: 28px;
    line-height: 28px;
  }
}
@media (max-width: 1699px) {
  footer .quickConnects .sectionTitle {
    font-size: 28px;
    line-height: 28px;
  }
}
@media (max-width: 1199px) {
  footer .quickConnects .sectionTitle {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  footer .quickConnects .sectionTitle {
    text-align: center;
  }
}
footer .quickConnects .location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
footer .quickConnects .location:last-child {
  margin-bottom: 0px;
}
footer .quickConnects .location .locationImg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12%;
          flex: 0 0 12%;
  max-width: 12%;
}
@media (max-width: 1699px) {
  footer .quickConnects .location .locationImg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 13%;
            flex: 0 0 13%;
    max-width: 13%;
  }
}
@media (max-width: 991px) {
  footer .quickConnects .location .locationImg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6%;
            flex: 0 0 6%;
    max-width: 6%;
  }
}
@media (max-width: 1699px) {
  footer .quickConnects .location .locationImg img {
    height: 20px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
footer .quickConnects .location .address p {
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  opacity: 0.5;
  margin-bottom: 0px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  footer .quickConnects .location .address p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1699px) {
  footer .quickConnects .location .address p {
    font-size: 14px;
    line-height: 24px;
  }
}
footer .quickConnects .location .address a {
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  opacity: 0.5;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  footer .quickConnects .location .address a {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1699px) {
  footer .quickConnects .location .address a {
    font-size: 14px;
    line-height: 26px;
  }
}
footer .quickConnects .location .address a:hover {
  color: #fff;
  opacity: 1;
}
@media (max-width: 991px) {
  footer .quickConnects .location .address {
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  footer .quickConnects .location {
    max-width: 300px;
    margin: auto;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  footer .quickConnects .location {
    -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;
    text-align: center;
  }
  footer .quickConnects .location .locationImg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  footer .quickConnects .location .address {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding: 10px 0px 0px 0px;
  }
}
footer .quickConnects .footerLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .quickConnects .footerLinks ul {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  footer .quickConnects .footerLinks ul {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
footer .quickConnects .footerLinks ul li {
  margin-bottom: 20px;
}
footer .quickConnects .footerLinks ul li:last-child {
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  footer .quickConnects .footerLinks ul li:last-child {
    margin-bottom: 10px;
  }
}
footer .quickConnects .footerLinks ul li a {
  color: #fff;
  opacity: 0.5;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  footer .quickConnects .footerLinks ul li a {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1699px) {
  footer .quickConnects .footerLinks ul li a {
    font-size: 14px;
    line-height: 14px;
  }
}
footer .quickConnects .footerLinks ul li a:hover {
  color: #fff;
  opacity: 1;
}
footer .quickConnects .footerLinks ul li.active a {
  color: #fff;
  opacity: 1;
}
@media (max-width: 991px) {
  footer .quickConnects .footerLinks ul li {
    text-align: center;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  footer .quickConnects {
    margin-top: 30px;
  }
}
footer .copyrightSec {
  border-top: 2px solid #3f3f3f;
  padding-top: 25px;
  padding-bottom: 32px;
}
footer .copyrightSec ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .copyrightSec ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .copyrightSec ul li p {
  margin-bottom: 0px;
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
}
footer .copyrightSec ul li p img {
  padding-right: 10px;
}
@media (max-width: 1699px) {
  footer .copyrightSec ul li p {
    font-size: 14px;
    line-height: 14px;
  }
}
@media (max-width: 575px) {
  footer .copyrightSec ul li p {
    text-align: center;
  }
}
footer .copyrightSec ul li a {
  margin-left: 5px;
}
@media (max-width: 575px) {
  footer .copyrightSec ul li {
    margin-bottom: 5px;
  }
}
@media (max-width: 575px) {
  footer .copyrightSec ul li:last-child {
    margin-bottom: 0px;
  }
}
@media (max-width: 767px) {
  footer .copyrightSec ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .copyrightSec ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .copyrightSec ul li:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  footer .copyrightSec ul {
    -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: 1699px) {
  footer .copyrightSec {
    padding: 20px 0px;
  }
}
@media (max-width: 991px) {
  footer .copyrightSec {
    padding: 15px 0px;
  }
}

.ourvisiongoalSec {
  background: url(../images/visionbg.jpg) no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}
@media (max-width: 1699px) {
  .ourvisiongoalSec {
    background-position: center;
  }
}
@media (max-width: 1199px) {
  .ourvisiongoalSec {
    background-position: right;
  }
}
@media (max-width: 991px) {
  .ourvisiongoalSec {
    background-position: center;
  }
}
@media (max-width: 767px) {
  .ourvisiongoalSec {
    background: none;
    background-color: #034F6E;
  }
}
.ourvisiongoalSec .visiongoalFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ourvisiongoalSec .image-section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ourvisiongoalSec .sectionTitle {
  color: #fff;
  margin-bottom: 40px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .ourvisiongoalSec .sectionTitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 1699px) {
  .ourvisiongoalSec .sectionTitle {
    margin-bottom: 20px;
  }
}
.ourvisiongoalSec .vision-goal {
  color: white;
  padding-left: 180px;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .ourvisiongoalSec .vision-goal {
    padding-left: 120px;
  }
}
@media (max-width: 1699px) {
  .ourvisiongoalSec .vision-goal {
    padding-left: 80px;
  }
}
@media (max-width: 1199px) {
  .ourvisiongoalSec .vision-goal {
    padding-left: 0px;
  }
}
@media (max-width: 991px) {
  .ourvisiongoalSec .vision-goal {
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .ourvisiongoalSec .vision-goal {
    padding-left: 0px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.ourvisiongoalSec .vision-goal p {
  margin-bottom: 30px;
  color: #fff;
}
.ourvisiongoalSec .vision-goal p:last-child {
  margin-bottom: 0px;
}
.ourvisiongoalSec.tradingSec {
  background: url(../images/tradingbg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.ourvisiongoalSec.tradingSec .vision-goal {
  padding-left: 0px;
}
@media (max-width: 991px) {
  .ourvisiongoalSec.tradingSec {
    background: none;
    background-color: #044f6e;
  }
}

.corevalueSec .sectionTitle {
  text-align: center;
}
.corevalueSec .corevalueList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.corevalueSec .corevalueList .corevaluebox {
  background: #fff;
  -webkit-box-shadow: 0px 4px 30px 5px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 4px 30px 5px rgba(0, 0, 0, 0.1490196078);
  padding: 40px 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 19%;
          flex: 0 0 19%;
  max-width: 19%;
  height: 380px;
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 20px;
}
.corevalueSec .corevalueList .corevaluebox h2 {
  font-size: 25px;
  line-height: 30px;
  color: #424242;
  margin-bottom: 10px;
  min-height: 60px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .corevalueSec .corevalueList .corevaluebox h2 {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 1699px) {
  .corevalueSec .corevalueList .corevaluebox h2 {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 480px) {
  .corevalueSec .corevalueList .corevaluebox h2 {
    min-height: auto;
  }
}
.corevalueSec .corevalueList .corevaluebox p {
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  display: none;
  -webkit-transition: ease-in-out 0.2s all;
  transition: ease-in-out 0.2s all;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .corevalueSec .corevalueList .corevaluebox p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1699px) {
  .corevalueSec .corevalueList .corevaluebox p {
    font-size: 14px;
    line-height: 24px;
  }
}
.corevalueSec .corevalueList .corevaluebox img {
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: ease-in-out 0.2s all;
  transition: ease-in-out 0.2s all;
}
.corevalueSec .corevalueList .corevaluebox .whitelogo {
  display: none;
}
.corevalueSec .corevalueList .corevaluebox:hover {
  background: #19B7B8;
}
.corevalueSec .corevalueList .corevaluebox:hover h2 {
  color: #fff;
}
.corevalueSec .corevalueList .corevaluebox:hover p {
  display: block;
  color: #fff;
}
.corevalueSec .corevalueList .corevaluebox:hover img {
  display: none;
}
.corevalueSec .corevalueList .corevaluebox:hover .whitelogo {
  display: block;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .corevalueSec .corevalueList .corevaluebox {
    padding: 30px 25px;
    height: 320px;
  }
}
@media (max-width: 1699px) {
  .corevalueSec .corevalueList .corevaluebox {
    padding: 20px 20px;
    height: 320px;
  }
}
@media (max-width: 1199px) {
  .corevalueSec .corevalueList .corevaluebox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30.33%;
            flex: 0 0 30.33%;
    max-width: 30.33%;
    margin: 0px 14px;
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .corevalueSec .corevalueList .corevaluebox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 44%;
            flex: 0 0 44%;
    max-width: 44%;
    height: 300px;
  }
}
@media (max-width: 480px) {
  .corevalueSec .corevalueList .corevaluebox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin: 0px;
    margin-bottom: 20px;
    height: 230px;
  }
}
@media (max-width: 1199px) {
  .corevalueSec .corevalueList {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .corevalueSec .corevalueList {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.whychooseSec {
  padding-top: 0px;
}
.whychooseSec .whychooseDetailSec {
  border-radius: 30px;
}
.whychooseSec .whychooseFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #034F6E;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 30px;
}
.whychooseSec .whychooseFlex .whychooseimg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}
.whychooseSec .whychooseFlex .whychooseimg img {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .whychooseSec .whychooseFlex .whychooseimg img {
    border-radius: 0px;
  }
}
@media (max-width: 991px) {
  .whychooseSec .whychooseFlex .whychooseimg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
.whychooseSec .whychooseFlex .details {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  padding-left: 40px;
  padding-right: 40px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .whychooseSec .whychooseFlex .details {
    padding: 30px 30px;
  }
}
@media (max-width: 1699px) {
  .whychooseSec .whychooseFlex .details {
    padding: 30px 30px;
  }
}
@media (max-width: 991px) {
  .whychooseSec .whychooseFlex .details {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .whychooseSec .whychooseFlex .details {
    padding: 30px 15px;
  }
}
.whychooseSec .whychooseFlex .sectionTitle {
  margin-bottom: 40px;
  color: #fff;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .whychooseSec .whychooseFlex .sectionTitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 1699px) {
  .whychooseSec .whychooseFlex .sectionTitle {
    margin-bottom: 20px;
  }
}
.whychooseSec .whychooseFlex p {
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
}
.whychooseSec .whychooseFlex p:last-child {
  margin-bottom: 0px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .whychooseSec .whychooseFlex p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1699px) {
  .whychooseSec .whychooseFlex p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
  }
}
.whychooseSec .whychooseFlex ul li {
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}
.whychooseSec .whychooseFlex ul li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #19B7B8;
  border-radius: 50px;
  left: 0;
  top: 9px;
}
@media (max-width: 1699px) {
  .whychooseSec .whychooseFlex ul li::before {
    top: 8px;
  }
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .whychooseSec .whychooseFlex ul li {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1699px) {
  .whychooseSec .whychooseFlex ul li {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
  }
}
.whychooseSec .whychooseFlex.whychooseFlexRev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.whychooseSec .whychooseFlex.whychooseFlexRev img {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
@media (max-width: 991px) {
  .whychooseSec .whychooseFlex.whychooseFlexRev img {
    border-radius: 0px;
  }
}
@media (max-width: 991px) {
  .whychooseSec .whychooseFlex.whychooseFlexRev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 0px;
  }
}
@media (max-width: 1699px) {
  .whychooseSec .whychooseFlex {
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
  }
}
@media (max-width: 991px) {
  .whychooseSec .whychooseFlex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 0px;
    margin-bottom: 30px;
  }
}

.directorSec {
  padding-top: 0px;
}
.directorSec .directorBox {
  background: #fff;
  -webkit-box-shadow: 0px 4px 30px 5px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 4px 30px 5px rgba(0, 0, 0, 0.1490196078);
  border-radius: 20px;
  padding-left: 100px;
  padding-right: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.directorSec .directorBox .directorImg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}
.directorSec .directorBox .directorImg img {
  border-radius: 20px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0px 4px 30px 5px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 4px 30px 5px rgba(0, 0, 0, 0.1490196078);
  width: 100%;
}
@media (max-width: 1199px) {
  .directorSec .directorBox .directorImg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
    max-width: 35%;
  }
}
@media (max-width: 991px) {
  .directorSec .directorBox .directorImg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.directorSec .directorBox .directorMessage {
  padding-left: 175px;
}
.directorSec .directorBox .directorMessage .sectionTitle {
  margin-bottom: 40px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .directorSec .directorBox .directorMessage .sectionTitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 1699px) {
  .directorSec .directorBox .directorMessage .sectionTitle {
    margin-bottom: 20px;
  }
}
.directorSec .directorBox .directorMessage p {
  margin-bottom: 20px;
  color: #767676;
}
.directorSec .directorBox .directorMessage p:last-child {
  margin-bottom: 30px;
}
.directorSec .directorBox .directorMessage .directorName span {
  font-size: 25px;
  line-height: 25px;
  display: block;
  position: relative;
  padding-left: 20px;
  color: #000;
  font-weight: 700;
}
.directorSec .directorBox .directorMessage .directorName span::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 2px;
  background: #000;
  left: 0;
  top: 10px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .directorSec .directorBox .directorMessage .directorName span {
    font-size: 22px;
    line-height: 22px;
  }
}
@media (max-width: 1699px) {
  .directorSec .directorBox .directorMessage .directorName span {
    font-size: 20px;
    line-height: 20px;
  }
}
.directorSec .directorBox .directorMessage .directorName p {
  font-style: italic;
  font-weight: 500;
  margin-bottom: 0px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .directorSec .directorBox .directorMessage {
    padding-left: 145px;
  }
}
@media (max-width: 1699px) {
  .directorSec .directorBox .directorMessage {
    padding-left: 130px;
  }
}
@media (max-width: 1199px) {
  .directorSec .directorBox .directorMessage {
    padding-left: 90px;
  }
}
@media (max-width: 991px) {
  .directorSec .directorBox .directorMessage {
    padding-left: 0px;
  }
}
@media (max-width: 1699px) {
  .directorSec .directorBox {
    padding: 60px;
  }
}
@media (max-width: 991px) {
  .directorSec .directorBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .directorSec .directorBox {
    padding: 15px 15px;
  }
}

.infrastructureSec .sectionTitle {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .infrastructureSec .sectionTitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 1699px) {
  .infrastructureSec .sectionTitle {
    margin-bottom: 20px;
  }
}
.infrastructureSec p {
  text-align: center;
}
@media (max-width: 767px) {
  .infrastructureSec p {
    margin-top: 15px;
  }
}
.infrastructureSec .infrastructureBox {
  -webkit-box-shadow: 0px 4px 30px 5px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 4px 30px 5px rgba(0, 0, 0, 0.1490196078);
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 40px;
}
.infrastructureSec .infrastructureBox p {
  text-align: left;
  margin-top: 30px;
  color: #424242;
  min-height: 120px;
  margin-bottom: 0px;
  min-height: 140px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .infrastructureSec .infrastructureBox p {
    min-height: 125px;
  }
}
@media (max-width: 1699px) {
  .infrastructureSec .infrastructureBox p {
    min-height: 110px;
  }
}
@media (max-width: 1199px) {
  .infrastructureSec .infrastructureBox p {
    min-height: 157px;
  }
}
@media (max-width: 991px) {
  .infrastructureSec .infrastructureBox p {
    min-height: 100px;
  }
}
@media (max-width: 767px) {
  .infrastructureSec .infrastructureBox p {
    min-height: auto;
  }
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .infrastructureSec .infrastructureBox {
    padding: 30px;
    margin-bottom: 35px;
  }
}
@media (max-width: 1699px) {
  .infrastructureSec .infrastructureBox {
    padding: 25px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .infrastructureSec .infrastructureBox {
    margin-bottom: 10px;
  }
}

.serviceSec {
  border-radius: 50px 50px 50px 50px;
  background: #fff;
  margin-top: -39px;
  position: relative;
}
.serviceSec h1 {
  background: -webkit-gradient(linear, left top, left bottom, from(#14B8BD), to(#003B5E));
  background: linear-gradient(180deg, #14B8BD 0%, #003B5E 100%);
  font-size: 69px;
  line-height: 80px;
  font-weight: 500;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 40px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .serviceSec h1 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1699px) {
  .serviceSec h1 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .serviceSec h1 {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .serviceSec h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
.serviceSec p {
  margin-bottom: 20px;
  color: #767676;
}
.serviceSec p .txtBlk {
  color: #232323;
}
.serviceSec p:last-child {
  margin-bottom: 0px;
}
.serviceSec img {
  border-radius: 20px;
}
@media (max-width: 991px) {
  .serviceSec img {
    margin-bottom: 20px;
    width: 100%;
  }
}
.serviceSec .midDt {
  margin-top: 50px;
}
.serviceSec .midDt p {
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  color: #232323;
  margin-bottom: 20px;
}
.serviceSec .midDt ul {
  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;
}
.serviceSec .midDt ul li {
  margin-right: 10px;
}
.serviceSec .midDt ul li:last-child {
  margin-right: 0;
}
.serviceSec .midDt ul li p {
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  color: #034F6E;
  padding: 10px 24px;
  border-radius: 5px;
  background: #AFE3F8;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .serviceSec .midDt {
    margin-top: 35px;
  }
  .serviceSec .midDt p {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 18px;
  }
  .serviceSec .midDt ul li p {
    font-size: 16px;
    line-height: 16px;
    padding: 10px 25px;
  }
}
@media (max-width: 1699px) {
  .serviceSec .midDt {
    margin-top: 30px;
  }
  .serviceSec .midDt p {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 15px;
  }
  .serviceSec .midDt ul li p {
    font-size: 14px;
    line-height: 14px;
    padding: 8px 20px;
  }
}
@media (max-width: 1199px) {
  .serviceSec .midDt {
    margin-top: 25px;
  }
  .serviceSec .midDt p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .serviceSec .midDt ul li p {
    font-size: 12px;
    line-height: 12px;
    padding: 7px 18px;
  }
}
@media (max-width: 480px) {
  .serviceSec .midDt {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .serviceSec .midDt p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1699px) {
  .serviceSec {
    border-radius: 30px 30px 30px 30px;
  }
}
@media (max-width: 991px) {
  .serviceSec .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (max-width: 575px) {
  .serviceSec {
    margin-top: 0px;
  }
}

.solutionSec {
  padding-top: 0px;
}
.solutionSec .sectionTitle {
  text-align: center;
}
.solutionSec .solutionlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.solutionSec .solutionlist .solutionBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 19%;
          flex: 0 0 19%;
  max-width: 19%;
  -webkit-box-shadow: 0px 4px 30px 5px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 4px 30px 5px rgba(0, 0, 0, 0.1490196078);
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  margin-bottom: 40px;
}
.solutionSec .solutionlist .solutionBox img {
  margin-bottom: 20px;
}
.solutionSec .solutionlist .solutionBox p {
  margin-bottom: 0px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .solutionSec .solutionlist .solutionBox {
    padding: 35px 25px;
    margin-bottom: 35px;
  }
}
@media (max-width: 1699px) {
  .solutionSec .solutionlist .solutionBox {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .solutionSec .solutionlist .solutionBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    max-width: 30%;
    margin: 0px 10px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .solutionSec .solutionlist .solutionBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 46%;
            flex: 0 0 46%;
    max-width: 46%;
  }
}
@media (max-width: 480px) {
  .solutionSec .solutionlist .solutionBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin: 0 auto 10px;
  }
}
@media (max-width: 991px) {
  .solutionSec .solutionlist {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.solutionSec .solutioninfo p {
  color: #767676;
}

.trainingSec p {
  color: #767676;
}
.trainingSec .sectionTitle {
  margin-bottom: 40px;
  color: #424242;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .trainingSec .sectionTitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 1699px) {
  .trainingSec .sectionTitle {
    margin-bottom: 20px;
  }
}

.btn_comman {
  border: #86C8E2 solid 0px;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: 1.1px;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  text-align: center;
  min-width: 120px;
}
.btn_comman span {
  display: block;
}
.btn_comman.btn_round {
  min-width: 1px;
  padding: 0px;
  position: relative;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  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;
  background-image: url(../images/arrow.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20px;
}
.btn_comman:hover {
  background: #000;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .btn_comman {
    padding: 14px 26px;
    font-size: 16px;
    line-height: 16px;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .btn_comman::after {
    width: 28px;
    height: 28px;
    background-size: 10px;
  }
  .btn_comman.btn_round {
    height: 40px;
    width: 40px;
    background-size: 18px;
  }
}
@media (max-width: 1699px) {
  .btn_comman {
    padding: 12px 25px;
    font-size: 16px;
    line-height: 16px;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .btn_comman::after {
    width: 28px;
    height: 28px;
    background-size: 10px;
  }
  .btn_comman.btn_round {
    height: 40px;
    width: 40px;
    background-size: 18px;
  }
}
@media (max-width: 767px) {
  .btn_comman {
    font-size: 15px;
    padding: 10px 20px;
  }
  .btn_comman::after {
    width: 25px;
    height: 25px;
    background-size: 8px;
  }
  .btn_comman.btn_round {
    height: 35px;
    width: 35px;
    background-size: 15px;
  }
}
@media (max-width: 480px) {
  .btn_comman {
    font-size: 14px;
  }
}

.btn_second {
  background: #19B7B8;
  color: #fff !important;
}
.btn_second:hover, .btn_second:focus {
  background: #00141c !important;
  color: #fff !important;
}

.two_button {
  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;
}
.two_button .btn_comman {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}
.two_button:hover .btn_comman, .two_button:focus .btn_comman {
  margin-right: 5px;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  background-color: #00141c;
}
.two_button:hover .btn_comman.btn_round, .two_button:focus .btn_comman.btn_round {
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 0px;
  background-color: #00141c;
  color: #fff !important;
}

.currentOpening {
  border-radius: 50px 50px 50px 50px;
  background: #fff;
  margin-top: -39px;
  position: relative;
}
.currentOpening .commnTitle {
  color: #B98975;
}
.currentOpening .sectionTitle {
  margin-bottom: 40px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .currentOpening .sectionTitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 1699px) {
  .currentOpening .sectionTitle {
    margin-bottom: 20px;
  }
}
.currentOpening .job-listings .card {
  border: 0px;
}
.currentOpening .job-listings .card-header {
  padding: 20px 0px;
  border-bottom: 2px solid #b9b9b9;
}
.currentOpening .job-listings .job-card .fnt35 {
  padding-bottom: 5px;
  text-align: left;
  font-size: 35px;
  line-height: 42px;
  font-weight: 600;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .currentOpening .job-listings .job-card .fnt35 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 1699px) {
  .currentOpening .job-listings .job-card .fnt35 {
    font-size: 28px;
    line-height: 38px;
  }
}
.currentOpening .job-listings .job-card .card-body {
  border-top: 1px solid #B9B9B9;
}
.currentOpening .job-listings .job-card .card-body h5 {
  margin-bottom: 15px;
}
.currentOpening .job-listings .job-card .card-body .bullet-dash {
  margin-bottom: 10px;
}
.currentOpening .job-listings .job-card .card-body .bullet-dash li {
  padding-bottom: 15px;
}
.currentOpening .job-listings .job-card .text-muted {
  font-size: 18px;
  color: #B4B4B4 !important;
  font-weight: 600;
  line-height: 20px;
  width: 100%;
  display: block;
  text-align: left;
  padding-top: 5px;
}
.currentOpening .job-listings .job-card .btn_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 15px;
}
.currentOpening .job-listings .job-card .btn_section .badge {
  margin-right: 24px;
  padding: 11px 17px;
  cursor: default;
}
.currentOpening .job-listings .job-card .btn_section .badge:last-child {
  margin-right: 0px;
}
.currentOpening .job-listings .job-card .btn_section .bg-secondary {
  background: none !important;
  color: #444444 !important;
  border: solid 1px #272727;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
}
.currentOpening .job-listings .job-card .btn_section .bg-secondary:hover {
  background: #f0f0f0 !important;
  color: #212121 !important;
}
.currentOpening .job-listings .job-card.border-top {
  border-color: #B9B9B9 !important;
}
.currentOpening .job-listings .job-card.border-top:first-child {
  border-top: none !important;
}
.currentOpening .job-listings .card-body p.marginbtm35 {
  margin-bottom: 35px;
}
.currentOpening .job-listings .card-body .fnt22 {
  font-size: 17px;
  color: #333;
}
.currentOpening .job-listings .card-body ul {
  margin: 0px 0px 35px 0px !important;
  padding: 0px;
}
.currentOpening .job-listings .card-body ul li {
  position: relative;
  padding: 0px 0px 10px 25px;
  line-height: 28px;
}
.currentOpening .job-listings .card-body ul li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 12px;
  width: 15px;
  height: 4px;
  background: #ED0000;
}
.currentOpening .job-listings .card-body ul li:last-child {
  padding-bottom: 0px;
}
@media (max-width: 1699px) {
  .currentOpening {
    border-radius: 30px 30px 30px 30px;
  }
}
@media (max-width: 1199px) {
  .currentOpening .job-listings .card-header {
    padding: 15px 0px;
  }
  .currentOpening .job-listings .job-card .text-muted {
    font-size: 16px;
  }
  .currentOpening .job-listings .job-card .fnt35 {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .currentOpening {
    text-align: center;
  }
  .currentOpening .job-listings .card-header {
    padding: 0px;
  }
  .currentOpening .job-listings .job-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
    padding: 15px 0px;
    text-align: left;
  }
  .currentOpening .job-listings .job-card.align-items-center {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .currentOpening .job-listings .job-card h5 {
    width: 100%;
  }
  .currentOpening .job-listings .job-card .text-muted {
    font-size: 16px;
  }
  .currentOpening .job-listings .job-card .fnt35 {
    font-size: 25px;
    line-height: 30px;
  }
  .currentOpening .job-listings .job-card .fnt35, .currentOpening .job-listings .job-card .postedText {
    text-align: left !important;
  }
  .currentOpening .job-listings .job-card .btn_lineblock {
    width: auto;
    margin-top: 18px;
  }
  .currentOpening .job-listings .job-card .btn_section {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .currentOpening {
    margin-top: 0px;
  }
}
@media (max-width: 480px) {
  .currentOpening .job-listings .job-card {
    padding: 12px 0px;
  }
  .currentOpening .job-listings .job-card .text-muted {
    font-size: 14px;
  }
  .currentOpening .job-listings .job-card .fnt35 {
    font-size: 20px;
    line-height: 26px;
  }
  .currentOpening .job-listings .job-card .btn_lineblock {
    margin-top: 15px;
  }
  .currentOpening .job-listings .job-card .btn_section {
    padding-bottom: 12px;
  }
  .currentOpening .job-listings .job-card .btn_section .bg-secondary {
    font-size: 14px;
  }
}

.joinourTeamSec {
  padding-top: 0px;
}
.joinourTeamSec .joinourteam {
  background: #004765;
  padding: 100px;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.joinourTeamSec .joinourteam .sectionTitle {
  color: #fff;
}
.joinourTeamSec .joinourteam .joinourTeamTitle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  max-width: 30%;
}
.joinourTeamSec .joinourteam .joinourTeamTitle .sectionTitle {
  margin-bottom: 40px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .joinourTeamSec .joinourteam .joinourTeamTitle .sectionTitle {
    margin-bottom: 30px;
  }
}
@media (max-width: 1699px) {
  .joinourTeamSec .joinourteam .joinourTeamTitle .sectionTitle {
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .joinourTeamSec .joinourteam .joinourTeamTitle {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
.joinourTeamSec .joinourteam .joinourteamform {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
  max-width: 70%;
}
@media (max-width: 1199px) {
  .joinourTeamSec .joinourteam .joinourteamform {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .joinourTeamSec .joinourteam {
    padding: 70px 50px;
  }
}
@media (max-width: 1699px) {
  .joinourTeamSec .joinourteam {
    padding: 60px 40px;
  }
}
@media (max-width: 480px) {
  .joinourTeamSec .joinourteam {
    padding: 30px 15px;
    border-radius: 25px;
  }
}

.uploadresume {
  background: transparent;
}
.uploadresume label {
  top: 100%;
}
.uploadresume i {
  font-size: 0px;
}
.uploadresume .input-group {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.uploadresume .input-group #tempfile {
  width: 100%;
}
.uploadresume .input-group .input-group-btn {
  position: absolute;
  top: 8px;
  margin: auto;
  right: 0px;
  border: none;
  z-index: 9;
  background-color: transparent;
  border-radius: 10px;
}
.uploadresume .btn-file {
  background: url(../images/icon_upload.png) no-repeat center center;
  margin: 0px 10px;
  cursor: pointer;
  background-size: 25px;
}
.uploadresume .career_btn input {
  opacity: 0;
  display: none;
}

form .form-group {
  margin-bottom: 30px;
}
form .form-group input {
  height: 60px;
  background: #002535;
  border: none;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
}
form .form-group input::-webkit-input-placeholder {
  color: #fff;
}
form .form-group input::-moz-placeholder {
  color: #fff;
}
form .form-group input:-ms-input-placeholder {
  color: #fff;
}
form .form-group input::-ms-input-placeholder {
  color: #fff;
}
form .form-group input::placeholder {
  color: #fff;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  form .form-group input {
    height: 50px;
    padding: 10px 15px;
  }
}
@media (max-width: 1699px) {
  form .form-group input {
    height: 50px;
    padding: 10px 15px;
  }
}
form .form-group select {
  height: 60px;
  border: none;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
}
form .form-group select::-webkit-input-placeholder {
  color: #fff;
}
form .form-group select::-moz-placeholder {
  color: #fff;
}
form .form-group select:-ms-input-placeholder {
  color: #fff;
}
form .form-group select::-ms-input-placeholder {
  color: #fff;
}
form .form-group select::placeholder {
  color: #fff;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  form .form-group select {
    height: 50px;
    padding: 10px 15px;
  }
}
@media (max-width: 1699px) {
  form .form-group select {
    height: 50px;
    padding: 10px 15px;
  }
}
form .form-group textarea {
  background: #002535;
  border: none;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
}
form .form-group textarea::-webkit-input-placeholder {
  color: #fff;
}
form .form-group textarea::-moz-placeholder {
  color: #fff;
}
form .form-group textarea:-ms-input-placeholder {
  color: #fff;
}
form .form-group textarea::-ms-input-placeholder {
  color: #fff;
}
form .form-group textarea::placeholder {
  color: #fff;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  form .form-group {
    margin-bottom: 30px;
  }
}
@media (max-width: 1699px) {
  form .form-group {
    margin-bottom: 20px;
  }
}

.addressSec iframe {
  width: 100%;
  border-radius: 20px;
}
.addressSec ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.addressSec ul li .locationimg {
  padding-right: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 5%;
          flex: 0 0 5%;
  max-width: 5%;
  margin-top: 5px;
}
@media (max-width: 1699px) {
  .addressSec ul li .locationimg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
            flex: 0 0 10%;
    max-width: 10%;
    padding-right: 0px;
  }
}
@media (max-width: 991px) {
  .addressSec ul li .locationimg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 7%;
            flex: 0 0 7%;
    max-width: 7%;
    padding-right: 7px;
  }
}
.addressSec ul li .addressinfo p {
  color: #767676;
  margin-bottom: 0;
}
.addressSec ul li .addressinfo a {
  color: #767676;
  font-size: 25px;
  line-height: 35px;
  font-weight: 500;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .addressSec ul li .addressinfo a {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 1699px) {
  .addressSec ul li .addressinfo a {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .addressSec ul li .addressinfo a {
    font-size: 16px;
    line-height: 26px;
  }
}
.addressSec ul li .addressinfo a:hover {
  color: #19b7b8;
}

.stickySec {
  position: fixed;
  right: 7px;
  z-index: 9;
  top: 40%;
}
.stickySec ul li {
  margin-bottom: 20px;
}
.stickySec ul li a {
  display: block;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .stickySec ul li a img {
    height: 35px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 1699px) {
  .stickySec ul li a img {
    height: 30px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .stickySec ul li {
    margin-bottom: 15px;
  }
}
@media (max-width: 1699px) {
  .stickySec ul li {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .stickySec {
    display: none;
  }
}

.prdtFlow {
  background: #034F6E;
}
.prdtFlow h3 {
  font-weight: 500;
  font-size: 32px;
  line-height: 32px;
  color: #FFFFFF;
  margin-bottom: 25px;
}
.prdtFlow p {
  font-weight: 500;
  font-size: 25px;
  line-height: 36px;
  color: #D0D0D0;
  margin-bottom: 15px;
}
.prdtFlow .mgBt30 {
  margin-bottom: 30px;
}
.prdtFlow .prdtFlowTp {
  margin-bottom: 50px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .prdtFlow h3 {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  .prdtFlow p {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 12px;
  }
  .prdtFlow .mgBt30 {
    margin-bottom: 25px;
  }
  .prdtFlow .prdtFlowTp {
    margin-bottom: 40px;
  }
}
@media (max-width: 1699px) {
  .prdtFlow h3 {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  .prdtFlow p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
  }
  .prdtFlow .mgBt30 {
    margin-bottom: 20px;
  }
  .prdtFlow .prdtFlowTp {
    margin-bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .prdtFlow h3 {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .prdtFlow p {
    font-size: 16px;
    line-height: 26px;
  }
  .prdtFlow .mgBt30 {
    margin-bottom: 15px;
  }
  .prdtFlow .prdtFlowTp {
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .prdtFlow h3 {
    font-size: 20px;
    line-height: 20px;
  }
  .prdtFlow p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .prdtFlow .mgBt30 {
    margin-bottom: 10px;
  }
  .prdtFlow .prdtFlowTp {
    margin-bottom: 20px;
  }
}

.componentSec {
  background: #034F6E;
}
.componentSec .sectionTitle {
  color: #fff;
  text-align: center;
}
.componentSec .componentSlider .slick-next, .componentSec .componentSlider .slick-prev {
  top: 45%;
}
.componentSec .componentSlider .slick-prev {
  background: url("../images/prev_icn.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.componentSec .componentSlider .slick-prev::before {
  display: none;
}
.componentSec .componentSlider .slick-next {
  background: url("../images/nxt_icn.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.componentSec .componentSlider .slick-next::before {
  display: none;
}
.componentSec .componentSlider .componentBox .componentBoxImg {
  border-radius: 20px;
  background: #D9D9D9;
  height: 300px;
  margin: 0 12px;
}
.componentSec .componentSlider .componentBox .componentBoxImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
}
.componentSec .componentSlider .componentBox p {
  margin-top: 30px;
  font-weight: 500;
  font-size: 25px;
  line-height: 25px;
  text-align: center;
  color: #FFFFFF;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .componentSec .componentSlider .slick-next, .componentSec .componentSlider .slick-prev {
    top: 42%;
  }
  .componentSec .componentSlider .componentBox .componentBoxImg {
    height: 200px;
    margin: 0 8px;
  }
  .componentSec .componentSlider .componentBox p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 1699px) {
  .componentSec .componentSlider .slick-next, .componentSec .componentSlider .slick-prev {
    top: 42%;
  }
  .componentSec .componentSlider .componentBox .componentBoxImg {
    height: 200px;
    margin: 0 8px;
  }
  .componentSec .componentSlider .componentBox p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 1199px) {
  .componentSec .componentSlider .slick-next, .componentSec .componentSlider .slick-prev {
    top: 42%;
  }
  .componentSec .componentSlider .componentBox .componentBoxImg {
    height: 180px;
  }
  .componentSec .componentSlider .componentBox p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 767px) {
  .componentSec .componentSlider .slick-dots li {
    background: transparent;
    border-color: #fff;
  }
  .componentSec .componentSlider .slick-dots li.slick-active {
    background: #fff;
  }
  .componentSec .componentSlider .componentBox .componentBoxImg {
    height: 150px;
  }
}
@media (max-width: 480px) {
  .componentSec .componentSlider .componentBox .componentBoxImg {
    height: 140px;
    max-width: 300px;
    margin: 0 auto;
  }
}

.srvsTxt {
  font-weight: 500;
  font-size: 32px;
  line-height: 32px;
  color: #232323 !important;
  margin-bottom: 30px !important;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .srvsTxt {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 25px !important;
  }
}
@media (max-width: 1699px) {
  .srvsTxt {
    font-size: 26px;
    line-height: 26px;
    margin-bottom: 20px !important;
  }
}
@media (max-width: 767px) {
  .srvsTxt {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 15px !important;
  }
}
@media (max-width: 480px) {
  .srvsTxt {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 12px !important;
  }
}

.noMgTp {
  margin-top: 0 !important;
}

.benefit {
  font-weight: 500;
  font-size: 25px;
  line-height: 25px;
  color: #232323 !important;
  margin: 30px 0;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .benefit {
    font-size: 22px;
    line-height: 22px;
    margin: 25px 0;
  }
}
@media (max-width: 1699px) {
  .benefit {
    font-size: 18px;
    line-height: 18px;
    margin: 20px 0;
  }
}
@media (max-width: 767px) {
  .benefit {
    font-size: 16px;
    line-height: 16px;
    margin: 15px 0;
  }
}
@media (max-width: 480px) {
  .benefit {
    margin: 15px 0 0;
  }
}

.flxUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flxUl li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 20px;
}
.flxUl li p {
  font-weight: 500;
  font-size: 25px;
  line-height: 25px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .flxUl li {
    margin-bottom: 17px;
  }
  .flxUl li p {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (max-width: 1699px) {
  .flxUl li {
    margin-bottom: 15px;
  }
  .flxUl li p {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 1199px) {
  .flxUl li {
    margin-bottom: 10px;
  }
  .flxUl li p {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .flxUl li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .flxUl li p {
    font-size: 14px;
    line-height: 20px;
  }
}

.domesticSlider {
  visibility: hidden;
}
.domesticSlider.slick-initialized {
  visibility: visible; /* show only after initialized */
}
.domesticSlider .domesticBox {
  padding: 15px;
  background: #F2F2F2;
  border-radius: 20px; /*height: 400px;*/
}
.domesticSlider .domesticBox img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  border-radius: 20px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .domesticSlider .domesticBox {
    padding: 15px; /*height: 330px;*/
  }
}
@media (max-width: 1699px) {
  .domesticSlider .domesticBox {
    padding: 15px; /*height: 300px;*/
  }
}
@media (max-width: 767px) {
  .domesticSlider .domesticBox {
    padding: 15px; /*height: 250px;*/
  }
}

.dskNone {
  display: none;
}
@media (max-width: 991px) {
  .dskNone {
    display: block;
  }
}

.domesticImg .domesticBox {
  padding: 36px;
  background: #F2F2F2;
  border-radius: 20px;
  height: 400px;
}
.domesticImg .domesticBox img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  border-radius: 20px;
}
@media (min-width: 1700px) and (max-width: 2500px) {
  .domesticImg .domesticBox {
    padding: 28px;
    height: auto;
  }
}
@media (max-width: 1699px) {
  .domesticImg .domesticBox {
    padding: 25px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .domesticImg .domesticBox {
    padding: 20px;
    height: auto;
  }
}

.gallerySection .galleryBlock .galleryImg {
  border-radius: 20px;
  overflow: hidden;
}
.gallerySection .galleryBlock .galleryImg a {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
  border: #ddd solid 1px;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  position: relative;
  display: block;
  overflow: hidden;
}
.gallerySection .galleryBlock .galleryImg a::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  right: 0%;
  bottom: 0%;
  height: 0%;
  margin: auto;
  width: 0%;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 1;
}
.gallerySection .galleryBlock .galleryImg a::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  background: url("../images/zoom.png") center center no-repeat;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  visibility: hidden;
  z-index: 2;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
.gallerySection .galleryBlock .galleryImg a img {
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.gallerySection .galleryBlock .galleryImg a:hover::before {
  height: 100%;
  width: 100%;
  top: 0%;
  left: 0%;
  right: 0%;
  bottom: 0%;
}
.gallerySection .galleryBlock .galleryImg a:hover::after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  visibility: visible;
}
.gallerySection .galleryBlock .galleryImg a:hover img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.gallerySection .galleryBlock .galleryImg img {
  width: 100%;
}
.gallerySection .galleryBlock .galleryImg iframe {
  margin: 0px 0px -8px 0px;
}
.gallerySection .photo_gallery .paddbtm20 {
  padding-bottom: 30px;
}
.gallerySection .photo_gallery.video_gallery .galleryImg {
  overflow: hidden;
}
.gallerySection .photo_gallery.video_gallery .galleryImg a::before {
  content: "";
  height: 100%;
  width: 100%;
  top: 0%;
  left: 0%;
  right: 0%;
  bottom: 0%;
  background: transparent;
  display: block;
  opacity: 1;
  visibility: visible;
}
.gallerySection .photo_gallery.video_gallery .galleryImg a::after {
  display: none;
}
.gallerySection .photo_gallery.video_gallery .galleryImg a iframe {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
.gallerySection .photo_gallery.video_gallery .galleryImg a:hover iframe {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 1199px) {
  .gallerySection .galleryBlock .galleryImg iframe {
    height: 150px !important;
  }
}
@media (max-width: 767px) {
  .gallerySection .photo_gallery.video_gallery .galleryImg a::before {
    content: "";
    height: 100%;
    width: 100%;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    background: transparent;
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 575px) {
  .gallerySection .galleryBlock .galleryImg iframe {
    height: 250px !important;
  }
}
@media (max-width: 480px) {
  .gallerySection .galleryBlock .galleryImg iframe {
    height: 230px !important;
  }
}/*# sourceMappingURL=style.css.map */