@charset "UTF-8";
/* ----- Active and Hover Links ----- */
/* ----- Active and Hover Links End ----- */
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,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;
  transition: 0.5s ease-in-out;
}
.crossLine .line.crossLine2 {
  top: 45%;
  transition: 0.5s ease-in-out;
}
.crossLine .line.crossLine3 {
  bottom: 0px;
  transition: 0.5s ease-in-out;
}
.crossLine.active .line.crossLine1 {
  top: 45%;
  transform: rotate(45deg);
}
.crossLine.active .line.crossLine2 {
  opacity: 0;
}
.crossLine.active .line.crossLine3 {
  bottom: 45%;
  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%;
  }
}
#sidebarCollapse {
  z-index: 5555;
  position: absolute;
  top: 22px;
  right: 5px;
}
#sidebarCollapse.active {
  top: 25px;
  right: 15px;
}
@media (max-width: 767px) {
  #sidebarCollapse {
    top: 17px;
  }
}
@media (max-width: 575px) {
  #sidebarCollapse {
    top: 17px;
    right: -8px;
  }
}

* {
  margin: 0;
  padding: 0;
}

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

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

p {
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  color: #232323;
  margin: 0;
}
@media (max-width: 1599px) {
  p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  p {
    font-size: 14px;
    line-height: 22px;
  }
}

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

@media screen and (min-width: 1300px) {
  .container {
    max-width: 1200px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}
@media screen and (min-width: 1800px) {
  .container {
    max-width: 1720px;
  }
}
.textCenter {
  text-align: center;
}

.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.defaultButton {
  padding: 17px 37px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0%;
  text-transform: uppercase;
  background: #39B6FF;
  color: #fff;
  transition: all 0.5s ease-in-out;
  border-radius: 60px;
  border: none;
}
.defaultButton:hover, .defaultButton:focus {
  background: #232323;
  color: #fff;
}
.defaultButton.lgtBluClr {
  background: #6CC5F9;
}
.defaultButton.lgtBluClr:hover, .defaultButton.lgtBluClr:focus {
  background: #232323;
  color: #fff;
}
.defaultButton.blkClr {
  background: #232323;
}
.defaultButton.blkClr:hover, .defaultButton.blkClr:focus {
  background: #39B6FF;
  color: #fff;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .defaultButton {
    padding: 13px 30px;
    font-size: 14px;
  }
}
@media (max-width: 1599px) {
  .defaultButton {
    padding: 13px 30px;
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .defaultButton {
    padding: 12px 28px;
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .defaultButton {
    padding: 10px 25px;
    font-size: 12px;
  }
}

.bullets {
  list-style: none;
}
.bullets li {
  padding-left: 20px;
}
.bullets li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 7px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #000;
}

.sectionTitle {
  font-weight: 400;
  font-size: 80px;
  line-height: 90px;
  color: #000000;
  margin: 0;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .sectionTitle {
    font-size: 65px;
    line-height: 75px;
  }
}
@media (max-width: 1599px) {
  .sectionTitle {
    font-size: 55px;
    line-height: 65px;
  }
}
@media (max-width: 1199px) {
  .sectionTitle {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .sectionTitle {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .sectionTitle {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .sectionTitle {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .sectionTitle {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 450px) {
  .sectionTitle {
    font-size: 25px;
    line-height: 35px;
  }
}

.mgBt50 {
  margin-bottom: 50px;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .mgBt50 {
    margin-bottom: 40px;
  }
}
@media (max-width: 1599px) {
  .mgBt50 {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .mgBt50 {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .mgBt50 {
    margin-bottom: 15px;
  }
}

.mgBt20 {
  margin-bottom: 20px;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .mgBt20 {
    margin-bottom: 15px;
  }
}
@media (max-width: 1599px) {
  .mgBt20 {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .mgBt20 {
    margin-bottom: 8px;
  }
}

.sectionPadding {
  padding: 100px 0px;
}
.sectionPadding.paddingTpZro {
  padding-top: 0;
}
@media (max-width: 1599px) {
  .sectionPadding {
    padding: 70px 0px;
  }
}
@media (max-width: 991px) {
  .sectionPadding {
    padding: 50px 0px;
  }
}
@media (max-width: 767px) {
  .sectionPadding {
    padding: 40px 0px;
  }
}

.blueBck {
  position: relative;
}
.blueBck::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url("../images/blue_bck.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.mainHeader {
  padding: 10px 0 20px;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  width: 100%;
  z-index: 1;
}
.mainHeader::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  background: #666666;
  height: 2px;
  width: 100%;
  opacity: 0.2;
}
.mainHeader header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-direction: column;
}
.mainHeader header .headerTop {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}
.mainHeader header .headerTop .logo a {
  display: block;
}
.mainHeader header .headerTop .logo a img {
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1599px) {
  .mainHeader header .headerTop .logo a img {
    height: 75px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .headerTop .logo a img {
    height: 70px;
  }
}
@media (max-width: 767px) {
  .mainHeader header .headerTop .logo a img {
    height: 60px;
  }
}
@media (max-width: 1599px) {
  .mainHeader header .headerTop {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .headerTop {
    margin-bottom: 0;
  }
}
.mainHeader header .navbarLink ul {
  align-items: center;
}
.mainHeader header .navbarLink ul li {
  margin: 0 75px;
}
@media (max-width: 1599px) {
  .mainHeader header .navbarLink ul li {
    margin: 0 50px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li {
    margin: 0;
    margin-bottom: 30px;
  }
}
.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: #232323;
  padding: 0;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 22px;
  line-height: 20px;
  transition: 0.5s ease-in-out all;
}
@media (max-width: 1599px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 16px;
    line-height: 14px;
  }
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 25px;
    line-height: 30px;
    color: #fff;
  }
  .mainHeader header .navbarLink ul li a.defaultButton {
    padding: 12px 28px;
  }
}
@media (max-width: 450px) {
  .mainHeader header .navbarLink ul li a {
    font-size: 20px;
    line-height: 25px;
  }
  .mainHeader header .navbarLink ul li a.defaultButton {
    padding: 10px 25px;
  }
}
.mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
  color: #0e9aff;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li.active a, .mainHeader header .navbarLink ul li:hover a {
    color: #0e9aff;
  }
  .mainHeader header .navbarLink ul li.active a.defaultButton, .mainHeader header .navbarLink ul li:hover a.defaultButton {
    background: #fff;
    color: #39B6FF;
  }
}
.mainHeader header .navbarLink ul li > .dropdown-menu {
  background: #000;
  padding: 0;
  margin: 0;
  min-width: 220px;
  transform: inherit !important;
  top: 100% !important;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li {
  margin-left: 0;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li a {
  color: #fff;
  padding: 10px;
  font-size: 16px;
  text-transform: capitalize;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.active, .mainHeader header .navbarLink ul li > .dropdown-menu li:hover {
  background: #fff;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.active > a, .mainHeader header .navbarLink ul li > .dropdown-menu li:hover > a {
  color: #000 !important;
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .dropdown-toggle {
  transform: rotate(-90deg);
}
.mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .subdropdown {
  left: 100%;
  top: 0 !important;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul li > .dropdown-menu li.submenu .dropdown-toggle {
    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;
    padding: 3px 5px;
  }
  .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 {
  flex-direction: column;
}
@media (min-width: 992px) and (max-width: 1100px) {
  .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;
    transition: all 0.25s ease-out;
  }
  .mainHeader header .navbarLink ul li:hover > .dropdown-menu li, .mainHeader header .navbarLink ul li:focus > .dropdown-menu li {
    flex-direction: column;
  }
}
.mainHeader header .navbarLink ul li.openBottom li.submenu .dropdown-toggle {
  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: #ff9a38 !important;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink ul {
    flex-direction: column;
    margin: 0 auto;
  }
  .mainHeader header .navbarLink ul li > .dropdown-menu {
    position: relative !important;
    transform: none !important;
  }
}
.mainHeader header .navbarLink.active {
  left: 0;
}
@media (max-width: 991px) {
  .mainHeader header .navbarLink {
    background: #000;
    width: 100%;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    z-index: 999;
    transition: all 0.3s;
    overflow-y: scroll;
    text-align: center;
    padding-top: 11%;
  }
  .mainHeader header .navbarLink .navbar-nav {
    flex-direction: column;
    width: 100%;
  }
  .mainHeader header .navbarLink #dismiss .d-md-none {
    display: block !important;
  }
}
@media (max-width: 450px) {
  .mainHeader header .navbarLink {
    padding-top: 22%;
  }
}
.mainHeader .mbShw {
  display: none;
}
@media (max-width: 991px) {
  .mainHeader .mbShw {
    display: block;
  }
}
@media (max-width: 991px) {
  .mainHeader .mobHde {
    display: none;
  }
}
@media (max-width: 1599px) {
  .mainHeader {
    padding: 5px 0 15px;
  }
  .mainHeader::before {
    bottom: 48px;
  }
}
@media (max-width: 991px) {
  .mainHeader {
    padding: 15px 0;
    position: relative;
  }
  .mainHeader::before {
    display: none;
  }
}

.homebanner {
  position: relative;
  overflow: hidden;
}
.homebanner .bannerImage {
  position: relative;
}
.homebanner .bannerImage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url("../images/banner_front.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.homebanner .bannerImage::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 45%;
  background: url("../images/banner_btm.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.homebanner .bannerImage img {
  width: 100%;
}
.homebanner .bannerBox {
  display: block !important;
}
.homebanner .bannerText {
  position: absolute;
  left: 100px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 38%;
  max-width: 70%;
}
.homebanner .bannerText .bannerDesc {
  font-weight: 600;
  font-size: 100px;
  line-height: 90px;
  color: #FFFFFF;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}
.homebanner .bannerText .bannerDesc span {
  font-weight: 300;
  font-size: 80px;
  line-height: 80px;
  color: #FFFFFF;
  display: block;
  margin-top: 40px;
}
.homebanner .bannerText p {
  font-weight: 400;
  font-size: 26px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 40px;
}
.homebanner .bannerText .homeButtons .defaultButton {
  color: #39B6FF;
  background: #fff;
}
.homebanner .bannerText .homeButtons .defaultButton:hover {
  background: #000;
  color: #fff;
}
.homebanner .bannerText .homeButtons .diffClr {
  background: #000;
  color: #fff;
  margin-left: 30px;
}
.homebanner .bannerText .homeButtons .diffClr:hover {
  background: #fff;
  color: #39B6FF;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .homebanner .bannerText {
    left: 90px;
    max-width: 60%;
  }
  .homebanner .bannerText .bannerDesc {
    font-size: 80px;
    line-height: 70px;
    margin-bottom: 35px;
  }
  .homebanner .bannerText .bannerDesc span {
    font-size: 60px;
    line-height: 60px;
    margin-top: 30px;
  }
  .homebanner .bannerText p {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px;
  }
  .homebanner .bannerText .homeButtons .diffClr {
    margin-left: 22px;
  }
}
@media (min-width: 1551px) and (max-width: 1599px) {
  .homebanner .bannerText {
    left: 190px !important;
  }
}
@media (min-width: 1501px) and (max-width: 1550px) {
  .homebanner .bannerText {
    left: 135px !important;
  }
}
@media (min-width: 1471px) and (max-width: 1500px) {
  .homebanner .bannerText {
    left: 120px !important;
  }
}
@media (min-width: 1451px) and (max-width: 1470px) {
  .homebanner .bannerText {
    left: 120px !important;
  }
}
@media (min-width: 1400px) and (max-width: 1450px) {
  .homebanner .bannerText {
    left: 100px !important;
  }
}
@media (max-width: 1599px) {
  .homebanner .bannerText {
    left: 70px;
    max-width: 60%;
  }
  .homebanner .bannerText .bannerDesc {
    font-size: 69px;
    line-height: 59px;
    margin-bottom: 30px;
  }
  .homebanner .bannerText .bannerDesc span {
    font-size: 50px;
    line-height: 50px;
    margin-top: 25px;
  }
  .homebanner .bannerText p {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 25px;
  }
  .homebanner .bannerText .homeButtons .diffClr {
    margin-left: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1268px) {
  .homebanner .bannerText {
    left: 70px;
    max-width: 100%;
    top: 40%;
  }
  .homebanner .bannerText .bannerDesc {
    font-size: 65px;
    line-height: 55px;
    margin-bottom: 25px;
  }
  .homebanner .bannerText .bannerDesc span {
    font-size: 45px;
    line-height: 45px;
    margin-top: 22px;
  }
  .homebanner .bannerText p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 22px;
    max-width: 85%;
  }
  .homebanner .bannerText .homeButtons .diffClr {
    margin-left: 20px;
  }
}
@media (max-width: 1200px) {
  .homebanner .bannerText {
    left: 70px;
    max-width: 100%;
  }
  .homebanner .bannerText .bannerDesc {
    font-size: 65px;
    line-height: 55px;
    margin-bottom: 25px;
  }
  .homebanner .bannerText .bannerDesc span {
    font-size: 45px;
    line-height: 45px;
    margin-top: 22px;
  }
  .homebanner .bannerText p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 22px;
    max-width: 85%;
  }
  .homebanner .bannerText .homeButtons .diffClr {
    margin-left: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .homebanner .bannerText {
    left: 0;
    max-width: 100%;
    top: 44%;
  }
  .homebanner .bannerText .bannerDesc {
    font-size: 55px;
    line-height: 45px;
    margin-bottom: 18px;
  }
  .homebanner .bannerText .bannerDesc span {
    font-size: 35px;
    line-height: 35px;
    margin-top: 18px;
  }
  .homebanner .bannerText p {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 18px;
  }
}
@media (max-width: 991px) {
  .homebanner .bannerText {
    left: 0;
    max-width: 100%;
    top: 0;
    bottom: 0;
  }
  .homebanner .bannerText .bannerDesc {
    font-size: 60px;
    line-height: 50px;
    margin-bottom: 20px;
  }
  .homebanner .bannerText .bannerDesc span {
    font-size: 40px;
    line-height: 40px;
    margin-top: 20px;
  }
  .homebanner .bannerText p {
    font-size: 16px;
    line-height: 22px;
    max-width: 100%;
    margin: 0 auto 20px;
  }
  .homebanner .bannerText .homeButtons .diffClr {
    margin-left: 20px;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .homebanner .bannerText {
    left: 0;
    max-width: 100%;
    top: 0;
    bottom: 0;
  }
  .homebanner .bannerText .bannerDesc {
    font-size: 48px;
    line-height: 38px;
    margin-bottom: 15px;
  }
  .homebanner .bannerText .bannerDesc span {
    font-size: 30px;
    line-height: 30px;
    margin-top: 15px;
  }
  .homebanner .bannerText p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 15px;
  }
  .homebanner .bannerText .homeButtons .diffClr {
    margin-left: 15px;
  }
}
@media (max-width: 767px) {
  .homebanner .bannerText .bannerDesc {
    font-size: 48px;
    line-height: 38px;
    margin-bottom: 15px;
  }
  .homebanner .bannerText .bannerDesc span {
    font-size: 30px;
    line-height: 30px;
    margin-top: 15px;
  }
  .homebanner .bannerText p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 15px;
  }
  .homebanner .bannerText .homeButtons .diffClr {
    margin-left: 15px;
  }
}
@media (max-width: 575px) {
  .homebanner .bannerText {
    text-align: center;
  }
  .homebanner .bannerText .bannerDesc {
    font-size: 42px;
    line-height: 32px;
    margin-bottom: 12px;
  }
  .homebanner .bannerText .bannerDesc span {
    font-size: 24px;
    line-height: 24px;
    margin-top: 12px;
  }
  .homebanner .bannerText p {
    font-size: 12px;
    line-height: 18px;
    margin: 0 auto 12px;
    max-width: 85%;
  }
  .homebanner .bannerText .homeButtons .diffClr {
    margin-left: 12px;
  }
}
@media (max-width: 450px) {
  .homebanner .bannerImage::after, .homebanner .bannerImage::before {
    display: none;
  }
  .homebanner .bannerText {
    position: relative;
    margin-top: 25px;
  }
  .homebanner .bannerText .bannerDesc {
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 15px;
    color: #39B6FF;
  }
  .homebanner .bannerText .bannerDesc span {
    font-size: 24px;
    line-height: 24px;
    margin-top: 12px;
    color: #000;
  }
  .homebanner .bannerText p {
    font-size: 14px;
    line-height: 20px;
    margin: 0 auto 15px;
    max-width: 100%;
    color: #232323;
  }
  .homebanner .bannerText .homeButtons .defaultButton {
    background: #000;
    color: #fff;
    display: block;
  }
  .homebanner .bannerText .homeButtons .defaultButton:hover {
    background: #0683CC;
    color: #fff;
  }
  .homebanner .bannerText .homeButtons .diffClr {
    margin-left: 0;
    margin-top: 15px;
    background: #0683CC;
    color: #fff;
    display: block;
  }
  .homebanner .bannerText .homeButtons .diffClr:hover {
    background: #000;
    color: #fff;
  }
}

.innerbanner {
  position: relative;
}
.innerbanner .bannerImage {
  position: relative;
  height: 750px;
}
.innerbanner .bannerImage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url("../images/banner_front.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.innerbanner .bannerImage::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 52%;
  background: url("../images/inner_up.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.innerbanner .bannerImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.innerbanner .innerBlock {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-left: 108px;
  padding-right: 99px;
}
.innerbanner .innerBlock .row {
  align-items: center;
  width: 100%;
}
.innerbanner .innerBlock .innerBlockHd {
  text-align: left;
}
.innerbanner .innerBlock .innerBlockHd h1 {
  font-weight: 400;
  font-size: 55px;
  line-height: 70px;
  color: #fff;
  margin-bottom: 0;
}
.innerbanner .innerBlock .innerBlockTxt {
  max-width: 90%;
  margin: 0 0 0 auto;
}
.innerbanner .innerBlock .innerBlockTxt p {
  font-weight: 400;
  font-size: 26px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 40px;
}
.innerbanner .innerBlock .innerBlockTxt p.mgBt0 {
  margin-bottom: 0;
}
.innerbanner .innerBlock .homeButtons .defaultButton {
  color: #39B6FF;
  background: #fff;
}
.innerbanner .innerBlock .homeButtons .defaultButton:hover {
  background: #000;
  color: #fff;
}
.innerbanner .innerBlock .homeButtons .diffClr {
  background: #000;
  color: #fff;
  margin-left: 30px;
}
.innerbanner .innerBlock .homeButtons .diffClr:hover {
  background: #fff;
  color: #39B6FF;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .innerbanner .bannerImage {
    height: 600px;
  }
  .innerbanner .innerBlock {
    bottom: 30px;
    padding-left: 90px;
    padding-right: 75px;
  }
  .innerbanner .innerBlock .innerBlockHd h1 {
    font-size: 50px;
    line-height: 65px;
  }
  .innerbanner .innerBlock .innerBlockTxt {
    max-width: 90%;
  }
  .innerbanner .innerBlock .innerBlockTxt p {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 35px;
  }
  .innerbanner .innerBlock .homeButtons .defaultButton {
    padding: 14px 25px;
    font-size: 14px;
  }
  .innerbanner .innerBlock .homeButtons .diffClr {
    margin-left: 20px;
  }
}
@media (max-width: 1599px) {
  .innerbanner .bannerImage {
    height: 550px;
  }
  .innerbanner .innerBlock {
    bottom: 30px;
    padding-left: 70px;
    padding-right: 65px;
  }
  .innerbanner .innerBlock .innerBlockHd h1 {
    font-size: 40px;
    line-height: 55px;
  }
  .innerbanner .innerBlock .innerBlockTxt {
    max-width: 95%;
  }
  .innerbanner .innerBlock .innerBlockTxt p {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 30px;
  }
  .innerbanner .innerBlock .homeButtons .defaultButton {
    padding: 12px 20px;
    font-size: 13px;
  }
  .innerbanner .innerBlock .homeButtons .diffClr {
    margin-left: 15px;
  }
}
@media (max-width: 1250px) {
  .innerbanner .bannerImage {
    height: 500px;
  }
  .innerbanner .innerBlock {
    bottom: 30px;
    padding-left: 60px;
    padding-right: 55px;
  }
  .innerbanner .innerBlock .innerBlockHd h1 {
    font-size: 35px;
    line-height: 45px;
  }
  .innerbanner .innerBlock .innerBlockTxt {
    max-width: 95%;
  }
  .innerbanner .innerBlock .innerBlockTxt p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 25px;
  }
  .innerbanner .innerBlock .homeButtons .defaultButton {
    padding: 10px 18px;
    font-size: 12px;
  }
  .innerbanner .innerBlock .homeButtons .diffClr {
    margin-left: 12px;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .innerbanner .bannerImage {
    height: 400px;
  }
  .innerbanner .innerBlock {
    bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .innerbanner .innerBlock .row {
    align-items: flex-start;
  }
  .innerbanner .innerBlock .innerBlockHd h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .innerbanner .innerBlock .innerBlockTxt {
    max-width: 95%;
  }
  .innerbanner .innerBlock .innerBlockTxt p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 25px;
  }
  .innerbanner .innerBlock .homeButtons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .innerbanner .innerBlock .homeButtons .defaultButton {
    padding: 10px 18px;
    font-size: 12px;
  }
  .innerbanner .innerBlock .homeButtons .diffClr {
    margin-left: 0;
    margin-top: 15px;
  }
}
@media (max-width: 991px) {
  .innerbanner .bannerImage {
    height: 400px;
  }
  .innerbanner .innerBlock {
    bottom: 30px;
    padding-left: 135px;
    padding-right: 135px;
  }
  .innerbanner .innerBlock .row {
    align-items: flex-start;
  }
  .innerbanner .innerBlock .innerBlockHd h1 {
    font-size: 33px;
    line-height: 43px;
  }
  .innerbanner .innerBlock .innerBlockTxt {
    max-width: 95%;
  }
  .innerbanner .innerBlock .innerBlockTxt p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 25px;
  }
  .innerbanner .innerBlock .homeButtons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .innerbanner .innerBlock .homeButtons .defaultButton {
    padding: 10px 18px;
    font-size: 12px;
  }
  .innerbanner .innerBlock .homeButtons .diffClr {
    margin-left: 0;
    margin-top: 15px;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .innerbanner .bannerImage {
    height: 350px;
  }
  .innerbanner .innerBlock {
    bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .innerbanner .innerBlock .innerBlockHd h1 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 10px;
  }
  .innerbanner .innerBlock .innerBlockTxt {
    max-width: 100%;
  }
  .innerbanner .innerBlock .innerBlockTxt p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
  }
  .innerbanner .innerBlock .homeButtons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .innerbanner .innerBlock .homeButtons .defaultButton {
    padding: 10px 18px;
    font-size: 12px;
  }
  .innerbanner .innerBlock .homeButtons .diffClr {
    margin-left: 0;
    margin-top: 12px;
  }
}
@media (max-width: 767px) {
  .innerbanner {
    background: #8fd6ff;
  }
  .innerbanner .bannerImage {
    height: 350px;
  }
  .innerbanner .bannerImage::after, .innerbanner .bannerImage::before {
    display: none;
  }
  .innerbanner .innerBlock {
    bottom: inherit;
    padding-left: 0;
    padding-right: 0;
    padding: 20px 0;
    position: relative;
  }
  .innerbanner .innerBlock .innerBlockHd h1 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 10px;
    color: #000;
    text-align: center;
  }
  .innerbanner .innerBlock .innerBlockTxt {
    max-width: 100%;
  }
  .innerbanner .innerBlock .innerBlockTxt p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
  }
  .innerbanner .innerBlock .homeButtons {
    flex-direction: column;
    align-items: center;
  }
  .innerbanner .innerBlock .homeButtons .defaultButton {
    padding: 10px 20px;
    font-size: 14px;
    background: #39B6FF;
    color: #fff;
  }
  .innerbanner .innerBlock .homeButtons .defaultButton:hover {
    background: #000;
    color: #fff;
  }
  .innerbanner .innerBlock .homeButtons .diffClr {
    margin-left: 0;
    margin-top: 15px;
    background: #000;
    color: #fff;
  }
  .innerbanner .innerBlock .homeButtons .diffClr:hover {
    background: #39B6FF;
    color: #fff;
  }
}
@media (max-width: 575px) {
  .innerbanner .bannerImage {
    height: 300px;
  }
  .innerbanner .innerBlock .innerBlockHd h1 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 10px;
  }
  .innerbanner .innerBlock .innerBlockTxt {
    max-width: 100%;
  }
  .innerbanner .innerBlock .innerBlockTxt p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
  }
}
@media (max-width: 450px) {
  .innerbanner .innerBlock .homeButtons .defaultButton {
    padding: 10px 15px;
    font-size: 12px;
  }
}

.hmAbt {
  position: relative;
}
.hmAbt::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  height: 100%;
  width: 72.5%;
  z-index: -1;
  background: url("../images/mission.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.hmAbt .hmAbtTxt p {
  margin-bottom: 30px;
}
.hmAbt .hmAbtTxt p:last-child {
  margin-bottom: 0px;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .hmAbt .hmAbtTxt p {
    margin-bottom: 25px;
  }
}
@media (max-width: 1599px) {
  .hmAbt .hmAbtTxt p {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .hmAbt .hmAbtTxt p {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .hmAbt .hmAbtTxt p {
    margin-bottom: 10px;
  }
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .hmAbt::before {
    top: -30px;
  }
}
@media (max-width: 1599px) {
  .hmAbt::before {
    top: -30px;
  }
}
@media (max-width: 767px) {
  .hmAbt .hmAbtHd .sectionTitle {
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .hmAbt::before {
    display: none;
  }
  .hmAbt {
    text-align: center;
  }
}

.hmStrngth .topSc {
  text-align: center;
  margin-bottom: 50px;
}
.hmStrngth .topSc .sectionTitle {
  margin-bottom: 20px;
}
@media (max-width: 1599px) {
  .hmStrngth .topSc {
    margin-bottom: 30px;
  }
  .hmStrngth .topSc .sectionTitle {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .hmStrngth .topSc {
    margin-bottom: 20px;
  }
  .hmStrngth .topSc .sectionTitle {
    margin-bottom: 15px;
  }
}
@media (max-width: 450px) {
  .hmStrngth.creEngSldrSc .sectionTitle {
    text-align: center;
    margin-bottom: 60px;
  }
}

.bxFlx {
  display: flex;
  flex-wrap: wrap;
}
.bxFlx li {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 0 15px;
}
.bxFlx li .strngthBx {
  position: relative;
  overflow: hidden;
  background: rgba(217, 217, 217, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 3px 5px 23px rgba(31, 38, 135, 0.05), inset 8px 5px 9px rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 40px 45px;
  min-height: 585px;
}
.bxFlx li .strngthBx::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.03));
  pointer-events: none;
}
.bxFlx li .strngthBx img {
  margin-bottom: 40px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}
.bxFlx li .strngthBx h3 {
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
  text-align: center;
  margin-bottom: 20px;
  color: #232323;
  position: relative;
  z-index: 2;
}
.bxFlx li .strngthBx p {
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  color: #232323;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.bxFlx li .strngthBx a {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  display: block;
  text-transform: uppercase;
  color: #666666;
  transition: 0.5s ease-in-out all;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
.bxFlx li .strngthBx a:hover {
  color: #000;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .bxFlx li {
    padding: 0 15px;
  }
  .bxFlx li .strngthBx {
    padding: 35px 30px;
    min-height: 490px;
  }
  .bxFlx li .strngthBx img {
    margin-bottom: 35px;
    height: 180px;
  }
  .bxFlx li .strngthBx h3 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .bxFlx li .strngthBx p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 24px;
  }
  .bxFlx li .strngthBx a {
    font-size: 14px;
    line-height: 14px;
    bottom: 30px;
  }
}
@media (max-width: 1599px) {
  .bxFlx li {
    padding: 0 15px;
  }
  .bxFlx li .strngthBx {
    padding: 30px 25px;
    min-height: 455px;
  }
  .bxFlx li .strngthBx img {
    margin-bottom: 30px;
    height: 160px;
  }
  .bxFlx li .strngthBx h3 {
    font-size: 19px;
    line-height: 23px;
    margin-bottom: 15px;
  }
  .bxFlx li .strngthBx p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .bxFlx li .strngthBx a {
    font-size: 12px;
    line-height: 12px;
    bottom: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1268px) {
  .bxFlx li {
    padding: 0 12px;
  }
  .bxFlx li .strngthBx {
    padding: 25px 20px;
    min-height: 410px;
  }
  .bxFlx li .strngthBx img {
    margin-bottom: 25px;
    height: 140px;
  }
  .bxFlx li .strngthBx h3 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 12px;
  }
  .bxFlx li .strngthBx p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 18px;
  }
  .bxFlx li .strngthBx a {
    font-size: 12px;
    line-height: 12px;
    bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .bxFlx li {
    padding: 0 12px;
  }
  .bxFlx li .strngthBx {
    padding: 25px 14px;
    min-height: 415px;
  }
  .bxFlx li .strngthBx img {
    margin-bottom: 25px;
    height: 140px;
  }
  .bxFlx li .strngthBx h3 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 12px;
  }
  .bxFlx li .strngthBx p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 18px;
  }
  .bxFlx li .strngthBx a {
    font-size: 12px;
    line-height: 12px;
    bottom: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .bxFlx {
    justify-content: center;
  }
  .bxFlx li {
    padding: 0 10px;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 20px;
  }
  .bxFlx li:last-child {
    margin-bottom: 0;
  }
  .bxFlx li .strngthBx {
    padding: 20px;
    min-height: 350px;
  }
  .bxFlx li .strngthBx img {
    margin-bottom: 20px;
    height: 160px;
  }
  .bxFlx li .strngthBx h3 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .bxFlx li .strngthBx p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
  }
  .bxFlx li .strngthBx a {
    font-size: 12px;
    line-height: 12px;
    bottom: 25px;
  }
}
@media (max-width: 991px) {
  .bxFlx {
    justify-content: center;
  }
  .bxFlx li {
    padding: 0 10px;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 20px;
  }
  .bxFlx li:last-child {
    margin-bottom: 0;
  }
  .bxFlx li .strngthBx {
    padding: 20px;
    min-height: 380px;
  }
  .bxFlx li .strngthBx img {
    margin-bottom: 20px;
    height: 140px;
  }
  .bxFlx li .strngthBx h3 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .bxFlx li .strngthBx p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
  }
  .bxFlx li .strngthBx a {
    font-size: 12px;
    line-height: 12px;
    bottom: 25px;
  }
}
@media (max-width: 767px) {
  .bxFlx li {
    padding: 0;
    flex: 0 0 100%;
    max-width: 500px;
    margin: 0 auto 20px;
  }
  .bxFlx li .strngthBx {
    padding: 20px;
    min-height: auto;
  }
  .bxFlx li .strngthBx img {
    margin-bottom: 20px;
    height: 120px;
  }
  .bxFlx li .strngthBx h3 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .bxFlx li .strngthBx p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
  }
  .bxFlx li .strngthBx a {
    font-size: 12px;
    line-height: 12px;
    bottom: inherit;
    position: relative;
  }
}

.hmLdrshp .hmLdrshpTxt {
  padding-right: 25px;
}
.hmLdrshp .hmLdrshpTxt p {
  margin-bottom: 30px;
}
.hmLdrshp .hmLdrshpTxt .defaultButton {
  margin-top: 10px;
}
.hmLdrshp .hmLdrshpImg {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-left: 100px;
}
.hmLdrshp .hmLdrshpImg.noPadd {
  padding-left: 0;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .hmLdrshp .hmLdrshpTxt {
    padding-right: 20px;
  }
  .hmLdrshp .hmLdrshpTxt p {
    margin-bottom: 25px;
  }
  .hmLdrshp .hmLdrshpImg {
    padding-left: 80px;
  }
}
@media (max-width: 1599px) {
  .hmLdrshp .hmLdrshpTxt {
    padding-right: 15px;
  }
  .hmLdrshp .hmLdrshpTxt p {
    margin-bottom: 20px;
  }
  .hmLdrshp .hmLdrshpImg {
    padding-left: 70px;
  }
}
@media (max-width: 1199px) {
  .hmLdrshp .hmLdrshpTxt p {
    margin-bottom: 15px;
  }
  .hmLdrshp .hmLdrshpImg {
    padding-left: 40px;
  }
}
@media (max-width: 991px) {
  .hmLdrshp .hmLdrshpTxt {
    margin-bottom: 30px;
    padding-right: 0;
  }
  .hmLdrshp .hmLdrshpTxt p {
    margin-bottom: 15px;
  }
  .hmLdrshp .hmLdrshpTxt .fnt26 br {
    display: none;
  }
  .hmLdrshp .hmLdrshpImg {
    padding-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .hmLdrshp .hmLdrshpTxt {
    margin-bottom: 25px;
    text-align: center;
  }
  .hmLdrshp .hmLdrshpTxt p {
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .hmLdrshp .hmLdrshpTxt {
    margin-bottom: 25px;
    text-align: center;
  }
  .hmLdrshp .hmLdrshpTxt p {
    margin-bottom: 12px;
  }
}
@media (max-width: 450px) {
  .hmLdrshp .hmLdrshpImg {
    justify-content: center;
    flex-direction: column-reverse;
    align-items: center;
  }
  .hmLdrshp .hmLdrshpImg .imgOne {
    width: 70%;
  }
  .hmLdrshp .hmLdrshpImg .imgTwo {
    width: 150px;
    margin-bottom: 20px;
  }
}

.hmCnvrsn.blueBck::before {
  background: url("../images/cnvrsn_bck.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 10px;
}
.hmCnvrsn .hmCnvrsnFlx {
  display: flex;
  flex-wrap: wrap;
}
.hmCnvrsn .hmCnvrsnFlx .hmCnvrsnLft {
  flex: 0 0 35%;
  max-width: 35%;
  position: relative;
}
.hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt {
  flex: 0 0 65%;
  max-width: 65%;
  padding-left: 40px;
}
.hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-prev, .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-next {
  opacity: 1;
}
.hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-prev {
  left: inherit;
  top: 55%;
  right: 0;
  z-index: 1;
}
.hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-prev::before {
  content: "";
  font-family: "inherit";
  background: url(../images/left_arw.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 17px;
  height: 30px;
  display: block;
  transition: 0.5s ease-in-out all;
}
.hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-prev:hover::before {
  background: url(../images/left_arw_lgt.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-next {
  top: 35%;
  right: 0;
  z-index: 1;
}
.hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-next::before {
  content: "";
  font-family: "inherit";
  background: url(../images/right_arw.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 17px;
  height: 30px;
  display: block;
  transition: 0.5s ease-in-out all;
}
.hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-next:hover::before {
  background: url(../images/right_arw_drk.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox {
  display: flex;
  flex-wrap: wrap;
}
.hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox img {
  flex: 0 0 30%;
  max-width: 30%;
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
.hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt {
  flex: 0 0 70%;
  max-width: 70%;
  padding-left: 60px;
}
.hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .bluSmTxt {
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  color: #0683CC;
  margin-bottom: 15px;
}
.hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 42px;
  color: #232323;
  max-width: 85%;
  margin-bottom: 15px;
}
.hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt p {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  color: #232323;
}
.hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .defaultButton {
  margin: 40px 0 36px;
}
.hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .shreLnk {
  display: flex;
  gap: 20px;
}
.hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .shreLnk li img {
  width: 100%;
  max-width: 100%;
  transform: scale(1);
  transition: 0.5s ease-in-out all;
}
.hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .shreLnk li:hover img {
  transform: scale(1.1);
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnLft {
    flex: 0 0 35%;
    max-width: 35%;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnLft::before {
    left: -13%;
    bottom: -22%;
    width: 670px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt {
    flex: 0 0 65%;
    max-width: 65%;
    padding-left: 30px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt {
    padding-left: 60px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .bluSmTxt {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 15px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt h3 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 15px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt p {
    font-size: 18px;
    line-height: 18px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .defaultButton {
    margin: 35px 0 28px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .shreLnk {
    gap: 18px;
  }
}
@media (max-width: 1599px) {
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnLft {
    flex: 0 0 35%;
    max-width: 35%;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnLft::before {
    left: -20%;
    bottom: -18%;
    width: 670px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt {
    flex: 0 0 65%;
    max-width: 65%;
    padding-left: 30px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt {
    padding-left: 60px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .bluSmTxt {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 10px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt h3 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt p {
    font-size: 16px;
    line-height: 16px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .defaultButton {
    margin: 30px 0 26px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .shreLnk {
    gap: 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1268px) {
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnLft {
    flex: 0 0 35%;
    max-width: 35%;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnLft::before {
    left: -11%;
    bottom: -18%;
    width: 420px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt {
    flex: 0 0 65%;
    max-width: 65%;
    padding-left: 30px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt {
    padding-left: 45px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .bluSmTxt {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 10px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt p {
    font-size: 16px;
    line-height: 16px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .defaultButton {
    margin: 30px 0 26px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .shreLnk {
    gap: 15px;
  }
}
@media (max-width: 1200px) {
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnLft {
    flex: 0 0 35%;
    max-width: 35%;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnLft::before {
    left: -12%;
    bottom: -18%;
    width: 420px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt {
    flex: 0 0 65%;
    max-width: 65%;
    padding-left: 30px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt {
    padding-left: 55px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .bluSmTxt {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 10px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt p {
    font-size: 16px;
    line-height: 16px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .defaultButton {
    margin: 30px 0 26px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .shreLnk {
    gap: 15px;
  }
}
@media (max-width: 1199px) {
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnLft::before {
    left: -37%;
    bottom: -18%;
    width: 435px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt {
    padding-left: 20px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt {
    padding-left: 40px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .bluSmTxt {
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 8px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt h3 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 8px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt p {
    font-size: 14px;
    line-height: 14px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .defaultButton {
    margin: 26px 0 22px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .shreLnk {
    gap: 12px;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnLft::before {
    left: -9%;
    bottom: -21%;
    width: 320px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt {
    padding-left: 15px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-prev {
    top: 55%;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-prev::before {
    width: 15px;
    height: 20px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-next::before {
    width: 15px;
    height: 20px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt {
    padding-left: 30px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .bluSmTxt {
    font-size: 11px;
    line-height: 11px;
    margin-bottom: 8px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt h3 {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 8px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt p {
    font-size: 12px;
    line-height: 12px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .defaultButton {
    margin: 20px 0 18px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .shreLnk {
    gap: 10px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .shreLnk li img {
    height: 30px;
  }
}
@media (max-width: 991px) {
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnLft {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnLft::before {
    left: -80%;
    bottom: -15%;
    width: 300px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt {
    padding-left: 15px;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-prev {
    top: 55%;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-prev::before {
    width: 15px;
    height: 20px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-next::before {
    width: 15px;
    height: 20px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt {
    padding-left: 30px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .bluSmTxt {
    font-size: 10px;
    line-height: 10px;
    margin-bottom: 8px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt h3 {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 8px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt p {
    font-size: 12px;
    line-height: 12px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .defaultButton {
    margin: 20px 0 18px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .shreLnk {
    gap: 10px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .shreLnk li img {
    height: 30px;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnLft {
    flex: 0 0 inherit;
    max-width: inherit;
    display: none;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnLft::before {
    left: -80%;
    bottom: -15%;
    width: 300px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt {
    padding-left: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-prev {
    top: 55%;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-prev::before {
    width: 15px;
    height: 20px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-next::before {
    width: 15px;
    height: 20px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox {
    margin: 0 5px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt {
    padding-left: 30px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .bluSmTxt {
    font-size: 10px;
    line-height: 10px;
    margin-bottom: 8px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt h3 {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 8px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt p {
    font-size: 12px;
    line-height: 12px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .defaultButton {
    margin: 20px 0 18px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .shreLnk {
    gap: 10px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .shreLnk li img {
    height: 30px;
  }
}
@media (max-width: 767px) {
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnLft {
    flex: 0 0 inherit;
    max-width: inherit;
    display: none;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnLft::before {
    left: -80%;
    bottom: -15%;
    width: 300px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt {
    padding-left: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-prev {
    top: 55%;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-prev::before {
    width: 15px;
    height: 20px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-next::before {
    width: 15px;
    height: 20px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox {
    margin: 0 5px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt {
    padding-left: 25px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .bluSmTxt {
    font-size: 10px;
    line-height: 10px;
    margin-bottom: 8px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt h3 {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 8px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt p {
    font-size: 12px;
    line-height: 12px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .defaultButton {
    margin: 20px 0 18px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .shreLnk {
    gap: 10px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .shreLnk li img {
    height: 30px;
  }
}
@media (max-width: 575px) {
  .hmCnvrsn.blueBck::before {
    background-position: center;
  }
}
@media (max-width: 450px) {
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .hmCnvrsnTxtUp {
    text-align: center;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-prev {
    top: 100%;
    right: inherit;
    left: 42%;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .slick-next {
    top: 100%;
    right: 40%;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox {
    margin-bottom: 25px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox img {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt {
    padding-left: 0;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .bluSmTxt {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 10px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 12px;
    max-width: 100%;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt p {
    font-size: 14px;
    line-height: 14px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .defaultButton {
    margin: 20px 0 18px;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .shreLnk {
    gap: 10px;
    justify-content: center;
  }
  .hmCnvrsn .hmCnvrsnFlx .hmCnvrsnRgt .cnvrsn_slider .cnvrsnBox .cnvrsnBoxTxt .shreLnk li img {
    height: 30px;
  }
}

.hmldrLst {
  position: relative;
  overflow: hidden;
}
.hmldrLst .hmldrLstTxt p {
  font-weight: 400;
  font-size: 50px;
  line-height: 50px;
  color: #666666;
  margin-bottom: 30px;
}
.hmldrLst .hmldrLstTxt .bigFnt {
  font-weight: 400;
  font-size: 120px;
  line-height: 110px;
  text-transform: uppercase;
  color: #000000;
}
.hmldrLst .hmldrLstTxt .bigFnt.bluClr {
  color: #39B6FF;
  font-weight: 600;
}
.hmldrLst .hmldrLstTxt.diffLdrLst {
  margin-top: 95px;
  padding-left: 30px;
}
.hmldrLst .hmldrLstTxt.diffLdrLst h2 {
  margin-bottom: 0;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .hmldrLst .hmldrLstTxt p {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 25px;
  }
  .hmldrLst .hmldrLstTxt .bigFnt {
    font-size: 105px;
    line-height: 90px;
  }
  .hmldrLst .hmldrLstTxt.diffLdrLst {
    margin-top: 75px;
  }
}
@media (max-width: 1599px) {
  .hmldrLst .hmldrLstTxt p {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .hmldrLst .hmldrLstTxt .bigFnt {
    font-size: 85px;
    line-height: 75px;
  }
  .hmldrLst .hmldrLstTxt.diffLdrLst {
    margin-top: 70px;
  }
}
@media (max-width: 1199px) {
  .hmldrLst .hmldrLstTxt p {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 18px;
  }
  .hmldrLst .hmldrLstTxt .bigFnt {
    font-size: 70px;
    line-height: 70px;
  }
  .hmldrLst .hmldrLstTxt.diffLdrLst {
    margin-top: 55px;
  }
}
@media (max-width: 991px) {
  .hmldrLst .hmldrLstTxt p {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 15px;
  }
  .hmldrLst .hmldrLstTxt .bigFnt {
    font-size: 50px;
    line-height: 50px;
  }
  .hmldrLst .hmldrLstTxt.diffLdrLst {
    margin-top: 45px;
  }
}
@media (max-width: 767px) {
  .hmldrLst .hmldrLstTxt {
    text-align: center;
  }
  .hmldrLst .hmldrLstTxt p {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 12px;
  }
  .hmldrLst .hmldrLstTxt .bigFnt {
    font-size: 45px;
    line-height: 45px;
  }
  .hmldrLst .hmldrLstTxt.diffLdrLst {
    margin-top: 20px;
    padding-left: 0;
  }
}
@media (max-width: 450px) {
  .hmldrLst .hmldrLstTxt p {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .hmldrLst .hmldrLstTxt .bigFnt {
    font-size: 40px;
    line-height: 40px;
  }
  .hmldrLst .hmldrLstTxt.diffLdrLst {
    margin-top: 15px;
  }
}

footer {
  background: url("../images/ftr_bck.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
footer .ftrTp {
  padding: 130px 0 60px;
}
footer .ftrTp .ftrHd .sectionTitle {
  color: #fff;
  margin-bottom: 0;
}
footer .ftrTp .ftrTxt p {
  font-weight: 500;
  font-size: 26px;
  line-height: 36px;
  color: #FFFFFF;
  margin-bottom: 40px;
}
footer .ftrTp .ftrTxt .ftrBtns .lgtBluClr {
  margin-left: 30px;
}
footer .ftrMd {
  padding: 44px 0;
  border-top: 1px solid rgba(217, 217, 217, 0.3019607843);
  border-bottom: 1px solid rgba(217, 217, 217, 0.3019607843);
}
footer .ftrMd .row {
  align-items: center;
}
footer .ftrMd .ftrLnk {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
footer .ftrMd .ftrLnk li {
  margin-right: 40px;
}
footer .ftrMd .ftrLnk li:last-child {
  margin-right: 0;
}
footer .ftrMd .ftrLnk li a {
  font-weight: 500;
  font-size: 22px;
  line-height: 22px;
  color: #fff;
  transition: 0.5s ease-in-out all;
}
footer .ftrMd .ftrLnk li:hover a, footer .ftrMd .ftrLnk li.active a {
  color: #85d1fd;
}
footer .ftrMd .ftrDtLnk {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
footer .ftrMd .ftrDtLnk li {
  margin-right: 40px;
}
footer .ftrMd .ftrDtLnk li:nth-child(2) {
  margin-right: 0;
}
footer .ftrMd .ftrDtLnk li:last-child {
  margin-right: 0;
}
footer .ftrMd .ftrDtLnk li a {
  font-weight: 500;
  font-size: 22px;
  line-height: 22px;
  color: #C5EAFF;
  transition: 0.5s ease-in-out all;
}
footer .ftrMd .ftrDtLnk li:hover a, footer .ftrMd .ftrDtLnk li.active a {
  color: #fff;
}
footer .ftrMd .ftrDtLnk li .social {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 49px;
}
footer .ftrMd .ftrDtLnk li .social li {
  margin: 0;
}
footer .ftrMd .ftrDtLnk li .social li img {
  width: 100%;
  max-width: 100%;
  transform: scale(1);
  transition: 0.5s ease-in-out all;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .ftrMd .ftrDtLnk li .social li:hover img {
  transform: scale(1.1);
}
footer .ftrBt {
  padding: 52px 0 30px;
}
footer .ftrBt .ftrBtTxt p {
  font-weight: 400;
  font-size: 22px;
  line-height: 22px;
  color: #fff;
}
footer .ftrBt .ftrBtTxt.algnRgt {
  text-align: right;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  footer .ftrTp {
    padding: 115px 0 50px;
  }
  footer .ftrTp .ftrTxt p {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 35px;
  }
  footer .ftrTp .ftrTxt .ftrBtns .lgtBluClr {
    margin-left: 25px;
  }
  footer .ftrMd {
    padding: 36px 0;
  }
  footer .ftrMd .ftrLnk li {
    margin-right: 35px;
  }
  footer .ftrMd .ftrLnk li a {
    font-size: 18px;
    line-height: 18px;
  }
  footer .ftrMd .ftrDtLnk li {
    margin-right: 35px;
  }
  footer .ftrMd .ftrDtLnk li a {
    font-size: 18px;
    line-height: 18px;
  }
  footer .ftrMd .ftrDtLnk li .social {
    gap: 22px;
    margin-left: 38px;
  }
  footer .ftrMd .ftrDtLnk li .social li img {
    height: 25px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  footer .ftrBt {
    padding: 42px 0 25px;
  }
  footer .ftrBt .ftrBtTxt p {
    font-size: 18px;
    line-height: 18px;
  }
}
@media (max-width: 1599px) {
  footer .ftrTp {
    padding: 100px 0 40px;
  }
  footer .ftrTp .ftrTxt p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
  }
  footer .ftrTp .ftrTxt .ftrBtns .lgtBluClr {
    margin-left: 20px;
  }
  footer .ftrMd {
    padding: 32px 0;
  }
  footer .ftrMd .ftrLnk li {
    margin-right: 30px;
  }
  footer .ftrMd .ftrLnk li a {
    font-size: 16px;
    line-height: 16px;
  }
  footer .ftrMd .ftrDtLnk li {
    margin-right: 30px;
  }
  footer .ftrMd .ftrDtLnk li a {
    font-size: 16px;
    line-height: 16px;
  }
  footer .ftrMd .ftrDtLnk li .social {
    gap: 20px;
    margin-left: 35px;
  }
  footer .ftrMd .ftrDtLnk li .social li img {
    height: 25px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  footer .ftrBt {
    padding: 36px 0 20px;
  }
  footer .ftrBt .ftrBtTxt p {
    font-size: 16px;
    line-height: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1268px) {
  footer .ftrTp {
    padding: 80px 0 30px;
  }
  footer .ftrTp .ftrTxt p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 26px;
  }
  footer .ftrTp .ftrTxt .ftrBtns .lgtBluClr {
    margin-left: 18px;
  }
  footer .ftrMd {
    padding: 28px 0;
  }
  footer .ftrMd .ftrLnk li {
    margin-right: 26px;
  }
  footer .ftrMd .ftrLnk li a {
    font-size: 15px;
    line-height: 15px;
  }
  footer .ftrMd .ftrDtLnk li {
    margin-right: 26px;
  }
  footer .ftrMd .ftrDtLnk li a {
    font-size: 15px;
    line-height: 15px;
  }
  footer .ftrMd .ftrDtLnk li .social {
    gap: 18px;
    margin-left: 32px;
  }
  footer .ftrMd .ftrDtLnk li .social li img {
    height: 22px;
  }
  footer .ftrBt {
    padding: 32px 0 16px;
  }
  footer .ftrBt .ftrBtTxt p {
    font-size: 15px;
    line-height: 15px;
  }
}
@media (max-width: 1200px) {
  footer .ftrTp {
    padding: 80px 0 30px;
  }
  footer .ftrTp .ftrTxt p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 26px;
  }
  footer .ftrTp .ftrTxt .ftrBtns .lgtBluClr {
    margin-left: 18px;
  }
  footer .ftrMd {
    padding: 28px 0;
  }
  footer .ftrMd .ftrLnk li {
    margin-right: 26px;
  }
  footer .ftrMd .ftrLnk li a {
    font-size: 15px;
    line-height: 15px;
  }
  footer .ftrMd .ftrDtLnk li {
    margin-right: 26px;
  }
  footer .ftrMd .ftrDtLnk li a {
    font-size: 15px;
    line-height: 15px;
  }
  footer .ftrMd .ftrDtLnk li .social {
    gap: 18px;
    margin-left: 32px;
  }
  footer .ftrBt {
    padding: 32px 0 16px;
  }
  footer .ftrBt .ftrBtTxt p {
    font-size: 15px;
    line-height: 15px;
  }
}
@media (max-width: 1199px) {
  footer .ftrTp {
    padding: 80px 0 30px;
  }
  footer .ftrTp .ftrTxt p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 26px;
  }
  footer .ftrTp .ftrTxt .ftrBtns .lgtBluClr {
    margin-left: 18px;
  }
  footer .ftrMd {
    padding: 25px 0;
  }
  footer .ftrMd .ftrLnk li {
    margin-right: 20px;
  }
  footer .ftrMd .ftrLnk li a {
    font-size: 14px;
    line-height: 14px;
  }
  footer .ftrMd .ftrDtLnk li {
    margin-right: 20px;
  }
  footer .ftrMd .ftrDtLnk li a {
    font-size: 14px;
    line-height: 14px;
  }
  footer .ftrMd .ftrDtLnk li .social {
    gap: 15px;
    margin-left: 25px;
  }
  footer .ftrMd .ftrDtLnk li .social li img {
    height: 20px;
  }
  footer .ftrBt {
    padding: 28px 0 15px;
  }
  footer .ftrBt .ftrBtTxt p {
    font-size: 14px;
    line-height: 14px;
  }
}
@media (max-width: 991px) {
  footer .ftrTp {
    padding: 60px 0 25px;
    text-align: center;
  }
  footer .ftrTp .ftrHd .sectionTitle {
    margin-bottom: 20px;
  }
  footer .ftrTp .ftrTxt p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 22px;
  }
  footer .ftrTp .ftrTxt .ftrBtns .lgtBluClr {
    margin-left: 15px;
  }
  footer .ftrMd {
    padding: 22px 0;
  }
  footer .ftrMd .ftrLnk {
    justify-content: center;
    margin-bottom: 20px;
  }
  footer .ftrMd .ftrLnk li {
    margin-right: 20px;
  }
  footer .ftrMd .ftrLnk li a {
    font-size: 14px;
    line-height: 14px;
  }
  footer .ftrMd .ftrDtLnk {
    justify-content: center;
  }
  footer .ftrMd .ftrDtLnk li {
    margin-right: 20px;
  }
  footer .ftrMd .ftrDtLnk li a {
    font-size: 14px;
    line-height: 14px;
  }
  footer .ftrMd .ftrDtLnk li .social {
    gap: 15px;
    margin-left: 28px;
  }
  footer .ftrMd .ftrDtLnk li .social li img {
    height: 20px;
  }
  footer .ftrBt {
    padding: 15px 0;
  }
  footer .ftrBt .row {
    align-items: center;
  }
}
@media (max-width: 767px) {
  footer .ftrTp {
    padding: 50px 0 20px;
  }
  footer .ftrTp .ftrHd .sectionTitle {
    margin-bottom: 15px;
  }
  footer .ftrTp .ftrTxt p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 22px;
  }
  footer .ftrTp .ftrTxt .ftrBtns .lgtBluClr {
    margin-left: 15px;
  }
  footer .ftrMd {
    padding: 20px 0;
  }
  footer .ftrMd .ftrLnk {
    margin-bottom: 15px;
  }
  footer .ftrMd .ftrDtLnk li .social li img {
    height: 20px;
  }
  footer .ftrBt {
    padding: 15px 0;
  }
  footer .ftrBt .row {
    align-items: center;
  }
  footer .ftrBt .ftrBtTxt {
    text-align: center;
  }
  footer .ftrBt .ftrBtTxt.algnRgt {
    text-align: center;
    margin-top: 15px;
  }
}
@media (max-width: 575px) {
  footer .ftrMd {
    padding: 20px 0;
  }
  footer .ftrMd .ftrLnk {
    margin-bottom: 12px;
    flex-direction: column;
  }
  footer .ftrMd .ftrLnk li {
    margin: 0;
    margin-bottom: 12px;
  }
  footer .ftrMd .ftrLnk li:last-child {
    margin-bottom: 0;
  }
  footer .ftrMd .ftrDtLnk {
    flex-direction: column;
  }
  footer .ftrMd .ftrDtLnk li {
    margin: 0;
    margin-bottom: 12px;
  }
  footer .ftrMd .ftrDtLnk li:last-child {
    margin-bottom: 0;
  }
  footer .ftrMd .ftrDtLnk li .social {
    margin-left: 0;
  }
  footer .ftrMd .ftrDtLnk li .social li img {
    height: 22px;
  }
}
@media (max-width: 450px) {
  footer .ftrTp {
    padding: 40px 0 20px;
  }
  footer .ftrTp .ftrTxt .ftrBtns .defaultButton {
    display: block;
  }
  footer .ftrTp .ftrTxt .ftrBtns .lgtBluClr {
    margin-left: 0;
    margin-top: 10px;
  }
}

.fwBld {
  font-weight: 600;
}

.fnt26 {
  font-weight: 500;
  font-size: 26px;
  line-height: 36px;
  color: #232323;
}
@media (max-width: 1599px) {
  .fnt26 {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 1199px) {
  .fnt26 {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .fnt26 {
    font-size: 14px;
    line-height: 24px;
  }
}

.mxWd85 {
  max-width: 85%;
}
@media (max-width: 1199px) {
  .mxWd85 {
    max-width: 90%;
  }
}
@media (max-width: 991px) {
  .mxWd85 {
    max-width: 100%;
  }
}

.shiftMtr .shiftMtrRgt ul {
  margin: 30px 0 40px;
}
.shiftMtr .shiftMtrRgt ul li {
  padding: 24px 30px;
  background: #E3F5FF;
  border-radius: 50px;
  margin-bottom: 10px;
}
.shiftMtr .shiftMtrRgt ul li:last-child {
  margin-bottom: 0;
}
.shiftMtr .shiftMtrRgt ul li p {
  color: #232323;
  font-weight: 500;
}
@media (max-width: 1599px) {
  .shiftMtr .shiftMtrRgt ul {
    margin: 20px 0 30px;
  }
  .shiftMtr .shiftMtrRgt ul li {
    padding: 16px 20px;
  }
}
@media (max-width: 1199px) {
  .shiftMtr .shiftMtrRgt ul {
    margin: 15px 0 25px;
  }
  .shiftMtr .shiftMtrRgt ul li {
    padding: 14px 18px;
  }
}
@media (max-width: 991px) {
  .shiftMtr .shiftMtrRgt {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .shiftMtr .shiftMtrRgt {
    margin-top: 10px;
  }
}
@media (max-width: 575px) {
  .shiftMtr .shiftMtrRgt {
    margin-top: 5px;
  }
}

.textCntr {
  text-align: center;
}

.whatWeDo .whatWeDoBx {
  padding: 100px 110px;
  border-radius: 70px;
}
.whatWeDo .whatWeDoBx.blueBck::before {
  background: url("../images/what_we_do_bck.jpg");
  border-radius: 70px;
  background-size: cover;
  background-repeat: no-repeat;
}
.whatWeDo .whatWeDoBx .textCntr {
  max-width: 68%;
  margin: 0 auto 78px;
}
.whatWeDo .whatWeDoBx .textCntr p {
  font-weight: 500;
}
.whatWeDo .whatWeDoBx .whatWeDoBxInfo {
  position: relative;
}
.whatWeDo .whatWeDoBx .whatWeDoBxInfo p {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  margin: auto;
  font-weight: 600;
  font-size: 32px;
  line-height: 32px;
  text-align: center;
  color: #000;
}
.whatWeDo .whatWeDoBx .whatWeDoBxInfo img {
  width: 100%;
}
@media (max-width: 1599px) {
  .whatWeDo .whatWeDoBx {
    padding: 70px 80px;
  }
  .whatWeDo .whatWeDoBx .textCntr {
    max-width: 72%;
    margin-bottom: 55px;
  }
  .whatWeDo .whatWeDoBx .whatWeDoBxInfo p {
    font-size: 24px;
    line-height: 24px;
  }
}
@media (max-width: 1199px) {
  .whatWeDo .whatWeDoBx {
    padding: 60px 70px;
  }
  .whatWeDo .whatWeDoBx .textCntr {
    max-width: 80%;
    margin-bottom: 45px;
  }
  .whatWeDo .whatWeDoBx .whatWeDoBxInfo p {
    font-size: 20px;
    line-height: 20px;
    top: 20px;
  }
}
@media (max-width: 991px) {
  .whatWeDo .whatWeDoBx {
    padding: 50px 40px;
  }
  .whatWeDo .whatWeDoBx .textCntr {
    max-width: 95%;
    margin-bottom: 35px;
  }
  .whatWeDo .whatWeDoBx .whatWeDoBxInfo p {
    font-size: 16px;
    line-height: 16px;
    top: 12px;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .whatWeDo .whatWeDoBx {
    padding: 30px 20px;
  }
  .whatWeDo .whatWeDoBx .textCntr {
    max-width: 95%;
    margin-bottom: 25px;
  }
  .whatWeDo .whatWeDoBx .whatWeDoBxInfo p {
    font-size: 13px;
    line-height: 13px;
    top: 12px;
  }
}
@media (max-width: 767px) {
  .whatWeDo .whatWeDoBx {
    padding: 30px 20px;
  }
  .whatWeDo .whatWeDoBx .textCntr {
    max-width: 95%;
    margin-bottom: 25px;
  }
  .whatWeDo .whatWeDoBx .whatWeDoBxInfo p {
    font-size: 13px;
    line-height: 13px;
    top: 12px;
  }
}
@media (max-width: 450px) {
  .whatWeDo .whatWeDoBx {
    padding: 25px 15px;
  }
  .whatWeDo .whatWeDoBx .textCntr {
    max-width: 100%;
    margin-bottom: 15px;
  }
  .whatWeDo .whatWeDoBx .whatWeDoBxInfo p {
    font-size: 10px;
    line-height: 10px;
    top: 7px;
  }
}
@media (max-width: 400px) {
  .whatWeDo .whatWeDoBx {
    padding: 20px 10px;
  }
  .whatWeDo .whatWeDoBx .whatWeDoBxInfo p {
    font-size: 8px;
    line-height: 8px;
    top: 6px;
  }
}

.twoBtns .blkClr {
  margin-left: 30px;
}
@media (max-width: 1599px) {
  .twoBtns .blkClr {
    margin-left: 15px;
  }
  .twoBtns .defaultButton {
    padding: 12px 22px;
    font-size: 13px;
  }
}
@media (max-width: 1199px) {
  .twoBtns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .twoBtns .blkClr {
    margin-left: 0;
  }
  .twoBtns .defaultButton {
    padding: 10px 20px;
    font-size: 12px;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .twoBtns {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .twoBtns {
    align-items: center;
  }
}

.fwRglr {
  font-weight: 400;
}

.fwMd {
  font-weight: 500;
}

.algnCntr {
  align-items: center;
}

.lstBluSec .lstBluSecBx {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.lstBluSec .lstBluSecBx.blueBck::before {
  background: url("../images/last_sec_bck.jpg");
  border-radius: 70px;
  background-size: cover;
  background-repeat: no-repeat;
}
.lstBluSec .lstBluSecBx .sectionTitle {
  text-align: center;
  color: #fff;
  max-width: 75%;
  margin: 0 auto;
  position: relative;
  display: block;
}
.lstBluSec .lstBluSecBx .sectionTitle .glass-scan {
  width: 269px;
  height: 186px;
  transform: rotate(15deg);
}
@media (max-width: 1599px) {
  .lstBluSec .lstBluSecBx .sectionTitle .glass-scan {
    width: 175px;
    height: 130px;
  }
}
@media (max-width: 1599px) {
  .lstBluSec .lstBluSecBx {
    padding: 70px 0;
  }
}
@media (max-width: 1199px) {
  .lstBluSec .lstBluSecBx {
    padding: 60px 0;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .lstBluSec .lstBluSecBx {
    padding: 50px 0;
  }
  .lstBluSec .lstBluSecBx .sectionTitle {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 991px) {
  .lstBluSec .lstBluSecBx {
    padding: 50px 0;
  }
  .lstBluSec .lstBluSecBx .sectionTitle {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .lstBluSec .lstBluSecBx {
    padding: 40px 0;
  }
  .lstBluSec .lstBluSecBx .sectionTitle {
    font-size: 30px;
    line-height: 40px;
    max-width: 80%;
  }
}
@media (max-width: 450px) {
  .lstBluSec .lstBluSecBx {
    padding: 30px 0;
  }
  .lstBluSec .lstBluSecBx .sectionTitle {
    font-size: 22px;
    line-height: 32px;
    max-width: 90%;
  }
}

.creEngSldr .slick-prev, .creEngSldr .slick-next {
  opacity: 1;
  height: 30px;
  width: 30px;
}
.creEngSldr .slick-prev {
  left: inherit;
  top: -60px;
  right: 50px;
  z-index: 1;
}
.creEngSldr .slick-prev::before {
  content: "";
  font-family: "inherit";
  background: url(../images/left_arw.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 17px;
  height: 30px;
  display: block;
  transition: 0.5s ease-in-out all;
}
.creEngSldr .slick-prev:hover::before {
  background: url(../images/left_arw_lgt.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.creEngSldr .slick-next {
  top: -60px;
  right: 0;
  z-index: 1;
}
.creEngSldr .slick-next::before {
  content: "";
  font-family: "inherit";
  background: url(../images/right_arw.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 17px;
  height: 30px;
  display: block;
  transition: 0.5s ease-in-out all;
}
.creEngSldr .slick-next:hover::before {
  background: url(../images/right_arw_drk.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.creEngSldr .creEngSldrBx {
  background: #DCF2FF;
  border-radius: 30px;
  padding: 50px 30px;
  margin: 0 15px;
  min-height: 620px;
}
.creEngSldr .creEngSldrBx img {
  margin-bottom: 40px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
.creEngSldr .creEngSldrBx .fnt26 {
  margin-bottom: 30px;
}
.creEngSldr .creEngSldrBx ul {
  margin-top: 20px;
}
.creEngSldr .creEngSldrBx ul li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 16px;
}
.creEngSldr .creEngSldrBx ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  height: 8px;
  width: 8px;
  background: #232323;
}
.creEngSldr .creEngSldrBx ul li p {
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  color: #232323;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .creEngSldr .creEngSldrBx {
    min-height: 670px;
  }
  .creEngSldr .creEngSldrBx ul li::before {
    top: 6px;
  }
}
@media (max-width: 1599px) {
  .creEngSldr .creEngSldrBx {
    padding: 30px 20px;
    margin: 0 10px;
    min-height: 450px;
  }
  .creEngSldr .creEngSldrBx img {
    margin-bottom: 30px;
  }
  .creEngSldr .creEngSldrBx .fnt26 {
    margin-bottom: 15px;
  }
  .creEngSldr .creEngSldrBx ul {
    margin-top: 15px;
  }
  .creEngSldr .creEngSldrBx ul li {
    margin-bottom: 10px;
  }
  .creEngSldr .creEngSldrBx ul li::before {
    top: 4px;
  }
  .creEngSldr .creEngSldrBx ul li p {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (min-width: 1200px) and (max-width: 1268px) {
  .creEngSldr .creEngSldrBx {
    padding: 25px 15px;
    min-height: 450px;
  }
  .creEngSldr .creEngSldrBx img {
    margin-bottom: 15px;
    height: 150px;
  }
  .creEngSldr .creEngSldrBx .fnt26 {
    margin-bottom: 15px;
  }
  .creEngSldr .creEngSldrBx ul {
    margin-top: 10px;
  }
  .creEngSldr .creEngSldrBx ul li {
    margin-bottom: 10px;
  }
  .creEngSldr .creEngSldrBx ul li::before {
    top: 5px;
  }
  .creEngSldr .creEngSldrBx ul li p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 1199px) {
  .creEngSldr .creEngSldrBx {
    padding: 25px 15px;
    min-height: 450px;
  }
  .creEngSldr .creEngSldrBx img {
    margin-bottom: 15px;
    height: 150px;
  }
  .creEngSldr .creEngSldrBx .fnt26 {
    margin-bottom: 15px;
  }
  .creEngSldr .creEngSldrBx ul {
    margin-top: 10px;
  }
  .creEngSldr .creEngSldrBx ul li {
    margin-bottom: 10px;
  }
  .creEngSldr .creEngSldrBx ul li::before {
    top: 5px;
  }
  .creEngSldr .creEngSldrBx ul li p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .creEngSldr .slick-prev, .creEngSldr .slick-next {
    height: 25px;
    width: 25px;
  }
  .creEngSldr .slick-prev {
    top: -45px;
    right: 50px;
  }
  .creEngSldr .slick-prev::before {
    width: 15px;
    height: 25px;
  }
  .creEngSldr .slick-next {
    top: -45px;
    right: 0;
  }
  .creEngSldr .slick-next::before {
    width: 15px;
    height: 25px;
  }
  .creEngSldr .creEngSldrBx {
    padding: 20px 12px;
    min-height: 410px;
  }
  .creEngSldr .creEngSldrBx img {
    margin-bottom: 12px;
    height: 130px;
  }
  .creEngSldr .creEngSldrBx .fnt26 {
    margin-bottom: 12px;
  }
  .creEngSldr .creEngSldrBx ul {
    margin-top: 8px;
  }
  .creEngSldr .creEngSldrBx ul li {
    margin-bottom: 8px;
  }
}
@media (max-width: 991px) {
  .creEngSldr .slick-prev, .creEngSldr .slick-next {
    height: 25px;
    width: 25px;
  }
  .creEngSldr .slick-prev {
    top: -45px;
    right: 50px;
  }
  .creEngSldr .slick-prev::before {
    width: 15px;
    height: 25px;
  }
  .creEngSldr .slick-next {
    top: -45px;
    right: 0;
  }
  .creEngSldr .slick-next::before {
    width: 15px;
    height: 25px;
  }
  .creEngSldr .creEngSldrBx {
    padding: 20px 12px;
    min-height: 430px;
  }
  .creEngSldr .creEngSldrBx img {
    margin-bottom: 12px;
    height: 130px;
  }
  .creEngSldr .creEngSldrBx .fnt26 {
    margin-bottom: 12px;
  }
  .creEngSldr .creEngSldrBx ul {
    margin-top: 8px;
  }
  .creEngSldr .creEngSldrBx ul li {
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .creEngSldr .slick-prev, .creEngSldr .slick-next {
    height: 25px;
    width: 25px;
  }
  .creEngSldr .slick-prev {
    top: -40px;
    right: 50px;
  }
  .creEngSldr .slick-prev::before {
    width: 15px;
    height: 25px;
  }
  .creEngSldr .slick-next {
    top: -40px;
    right: 0;
  }
  .creEngSldr .slick-next::before {
    width: 15px;
    height: 25px;
  }
  .creEngSldr .creEngSldrBx {
    padding: 25px 15px;
    min-height: auto;
  }
  .creEngSldr .creEngSldrBx img {
    margin-bottom: 15px;
    height: 150px;
  }
  .creEngSldr .creEngSldrBx .fnt26 {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 450px) {
  .creEngSldr .slick-prev {
    top: -35px;
    right: inherit;
    left: 42%;
  }
  .creEngSldr .slick-next {
    top: -35px;
    right: 35%;
  }
  .creEngSldr .creEngSldrBx {
    padding: 25px 15px;
    min-height: auto;
  }
  .creEngSldr .creEngSldrBx img {
    margin-bottom: 15px;
    height: 150px;
  }
  .creEngSldr .creEngSldrBx .fnt26 {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 400px) {
  .creEngSldr .slick-prev {
    left: 40%;
  }
  .creEngSldr .slick-next {
    right: 37%;
  }
}

.apprchSec {
  padding-top: 150px;
}
.apprchSec .apprchUl {
  display: flex;
  flex-wrap: wrap;
}
.apprchSec .apprchUl li {
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 55px;
}
.apprchSec .apprchUl li .apprchBx {
  background: linear-gradient(180deg, #7AC9FC -1.55%, #1183ED 95.63%);
  padding: 20px;
  border-radius: 100px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.2509803922);
  height: 330px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.apprchSec .apprchUl li .apprchBx .fnt26 {
  color: #fff;
}
.apprchSec .apprchUl li:nth-child(2n) {
  margin-top: -50px;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .apprchSec {
    padding-top: 140px;
  }
  .apprchSec .apprchUl li {
    padding-left: 42px;
  }
  .apprchSec .apprchUl li .apprchBx {
    padding: 18px;
    height: 310px;
  }
  .apprchSec .apprchUl li:nth-child(2n) {
    margin-top: -45px;
  }
}
@media (max-width: 1599px) {
  .apprchSec {
    padding-top: 120px;
  }
  .apprchSec .apprchUl li {
    padding-left: 35px;
  }
  .apprchSec .apprchUl li .apprchBx {
    padding: 15px;
    height: 260px;
  }
  .apprchSec .apprchUl li:nth-child(2n) {
    margin-top: -35px;
  }
}
@media (max-width: 1199px) {
  .apprchSec {
    padding-top: 90px;
  }
  .apprchSec .apprchUl li {
    padding-left: 28px;
  }
  .apprchSec .apprchUl li .apprchBx {
    padding: 12px;
    height: 250px;
  }
  .apprchSec .apprchUl li:nth-child(2n) {
    margin-top: -30px;
  }
}
@media (max-width: 991px) {
  .apprchSec {
    padding-top: 50px;
  }
  .apprchSec .sectionTitle {
    text-align: center;
  }
  .apprchSec .apprchUl {
    margin-top: 70px;
  }
  .apprchSec .apprchUl li {
    padding-left: 28px;
  }
  .apprchSec .apprchUl li .apprchBx {
    padding: 12px;
    height: 250px;
  }
  .apprchSec .apprchUl li:nth-child(2n) {
    margin-top: -30px;
  }
}
@media (max-width: 767px) {
  .apprchSec {
    padding-top: 40px;
  }
  .apprchSec .apprchUl {
    margin-top: 30px;
  }
  .apprchSec .apprchUl li {
    padding-left: 0;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 28px;
    margin-bottom: 20px;
  }
  .apprchSec .apprchUl li:nth-child(3), .apprchSec .apprchUl li:last-child {
    margin-bottom: 0;
  }
  .apprchSec .apprchUl li .apprchBx {
    padding: 15px;
    height: 250px;
  }
  .apprchSec .apprchUl li .apprchBx .fnt26 {
    font-size: 18px;
    line-height: 26px;
  }
  .apprchSec .apprchUl li:nth-child(2n) {
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  .apprchSec .apprchUl {
    margin-top: 20px;
    flex-direction: column;
  }
  .apprchSec .apprchUl li {
    flex: 0 0 100%;
    max-width: 200px;
    padding: 0;
    margin: 0 auto 25px;
  }
  .apprchSec .apprchUl li:nth-child(3) {
    margin-bottom: 25px;
  }
  .apprchSec .apprchUl li .apprchBx {
    padding: 15px;
    height: 250px;
  }
  .apprchSec .apprchUl li .apprchBx .fnt26 {
    font-size: 16px;
    line-height: 24px;
  }
}

.workWth {
  padding-bottom: 0;
}
.workWth.blueBck::before {
  background: url("../images/work_with_bck.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.workWth .sectionTitle {
  text-align: center;
}
.workWth ul {
  display: flex;
  flex-wrap: wrap;
}
.workWth ul li {
  flex: 0 0 25%;
  max-width: 25%;
  position: relative;
}
.workWth ul li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 2px;
  background: #fff;
}
.workWth ul li:last-child .workWthBx {
  padding-right: 0;
}
.workWth ul li:nth-child(2n) .workWthBx {
  margin-top: 50px;
}
.workWth ul li .workWthBx {
  padding: 0 40px 100px;
}
.workWth ul li .workWthBx img {
  margin-bottom: 20px;
}
@media (max-width: 1599px) {
  .workWth ul li:nth-child(2n) .workWthBx {
    margin-top: 30px;
  }
  .workWth ul li .workWthBx {
    padding: 0 30px 70px;
  }
  .workWth ul li .workWthBx img {
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .workWth ul li:nth-child(2n) .workWthBx {
    margin-top: 20px;
  }
  .workWth ul li .workWthBx {
    padding: 0 20px 50px;
  }
  .workWth ul li .workWthBx img {
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .workWth ul li:nth-child(2n) .workWthBx {
    margin-top: 20px;
  }
  .workWth ul li .workWthBx {
    padding: 0 20px 50px;
  }
  .workWth ul li .workWthBx img {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .workWth ul li {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .workWth ul li::before {
    display: none;
  }
  .workWth ul li:nth-child(2n) .workWthBx {
    margin-top: 0;
  }
  .workWth ul li .workWthBx {
    padding: 0 20px 30px;
    text-align: center;
  }
  .workWth ul li .workWthBx img {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .workWth ul li {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .workWth ul li .workWthBx {
    padding: 0 0 25px;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 450px) {
  .workWth ul li .workWthBx {
    padding: 0 0 20px;
  }
}

.mgTp40 {
  margin-top: 40px;
}
@media (max-width: 1599px) {
  .mgTp40 {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .mgTp40 {
    margin-top: 20px;
  }
}

.gmpCnslt.blueBck::before {
  background: url("../images/gmp_bck.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.gmpCnslt .gmpCnsltLst {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gmpCnslt .gmpCnsltLst.txtBck {
  position: relative;
}
.gmpCnslt .gmpCnsltLst.txtBck::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 320px;
  width: 100%;
  margin: auto;
  background: url("../images/gmp_mid_bck.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: 49% center;
}
.gmpCnslt .gmpCnsltLst > li {
  flex: 0 0 45%;
  max-width: 45%;
  padding: 50px 50px 84px;
  border-radius: 60px;
  position: relative;
  z-index: 1;
  background: url(../images/gmp_cnslt_cvr_1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 375px;
}
.gmpCnslt .gmpCnsltLst > li:first-child {
  background: url(../images/gmp_cnslt_cvr_2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 375px;
}
.gmpCnslt .gmpCnsltLst > li:last-child {
  text-align: right;
}
.gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx .fnt26 {
  max-width: 70%;
  margin: 0 0 18px auto;
}
.gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li {
  position: relative;
}
.gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: url("../images/wht_blt.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:first-child {
  max-width: 58%;
  margin: 0 0 30px auto;
}
.gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:nth-child(2) {
  max-width: 76%;
  margin: 0 0 30px auto;
}
.gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:last-child {
  max-width: 72%;
  margin: 0 0 0 auto;
}
.gmpCnslt .gmpCnsltLst > li .gmpCnsltBx .fnt26 {
  color: #fff;
}
.gmpCnslt .gmpCnsltLst > li .gmpCnsltBx ul li {
  margin-bottom: 30px;
}
.gmpCnslt .gmpCnsltLst > li .gmpCnsltBx ul li:last-child {
  margin-bottom: 0;
}
.gmpCnslt .gmpCnsltLst > li .gmpCnsltBx ul li p {
  color: #fff;
}
@media (min-width: 1800px) {
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx {
    margin-right: 60px;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:first-child {
    max-width: 65%;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:nth-child(2) {
    max-width: 85%;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:last-child {
    max-width: 80%;
  }
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:first-child {
    max-width: 69%;
    margin: 0 0 25px auto;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:nth-child(2) {
    max-width: 91%;
    margin: 0 0 25px auto;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:last-child {
    max-width: 85%;
  }
}
@media (max-width: 1599px) {
  .gmpCnslt .gmpCnsltLst.txtBck::after {
    height: 210px;
    background-position: 49% center;
  }
  .gmpCnslt .gmpCnsltLst > li {
    padding: 30px 30px 60px;
    height: 290px;
    background-size: contain;
  }
  .gmpCnslt .gmpCnsltLst > li:first-child {
    height: 290px;
    background-size: contain;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx .fnt26 {
    max-width: 70%;
    margin: 0 0 15px auto;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li::before {
    left: 0;
    top: 3px;
    height: 16px;
    width: 16px;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:first-child {
    max-width: 60%;
    margin: 0 0 20px auto;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:nth-child(2) {
    max-width: 79%;
    margin: 0 0 20px auto;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:last-child {
    max-width: 74%;
  }
  .gmpCnslt .gmpCnsltLst > li .gmpCnsltBx ul li {
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1268px) {
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:first-child {
    max-width: 64%;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:nth-child(2) {
    max-width: 84%;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:last-child {
    max-width: 79%;
  }
}
@media (max-width: 1200px) {
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:first-child {
    max-width: 64%;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:nth-child(2) {
    max-width: 84%;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:last-child {
    max-width: 79%;
  }
}
@media (max-width: 1199px) {
  .gmpCnslt .gmpCnsltLst > li {
    height: 230px;
    padding: 25px 30px 51px;
  }
  .gmpCnslt .gmpCnsltLst > li:first-child {
    height: 230px;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:first-child {
    max-width: 74%;
    margin-bottom: 12px;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:nth-child(2) {
    max-width: 97%;
    margin-bottom: 12px;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:last-child {
    max-width: 91%;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li p {
    font-size: 15px;
    line-height: 23px;
  }
}
@media (max-width: 991px) {
  .gmpCnslt .gmpCnsltLst > li {
    height: 100%;
    padding: 25px 30px 30px;
    background: #34affe;
    flex: 0 0 100%;
    max-width: 80%;
    margin: 0 auto;
  }
  .gmpCnslt .gmpCnsltLst > li .gmpCnsltBx .fnt26.mgBt50 {
    margin-bottom: 15px;
  }
  .gmpCnslt .gmpCnsltLst > li .gmpCnsltBx ul li {
    margin-bottom: 12px;
  }
  .gmpCnslt .gmpCnsltLst > li:first-child {
    height: 100%;
    background: #34affe;
    margin-bottom: 20px;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child {
    text-align: left;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx .fnt26 {
    max-width: 100%;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li {
    padding-left: 25px;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:first-child {
    max-width: 100%;
    margin-bottom: 12px;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:nth-child(2) {
    max-width: 100%;
    margin-bottom: 12px;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:last-child {
    max-width: 100%;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li p {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 450px) {
  .gmpCnslt .gmpCnsltLst > li {
    padding: 25px;
  }
  .gmpCnslt .gmpCnsltLst > li .gmpCnsltBx ul li {
    margin-bottom: 10px;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:first-child {
    margin-bottom: 10px;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li:nth-child(2) {
    margin-bottom: 10px;
  }
  .gmpCnslt .gmpCnsltLst > li:last-child .gmpCnsltBx ul li p {
    font-size: 14px;
    line-height: 22px;
  }
}

.mgBt30 {
  margin-bottom: 30px;
}
@media (max-width: 1599px) {
  .mgBt30 {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .mgBt30 {
    margin-bottom: 10px;
  }
}

.aboutDK {
  position: relative;
}
.aboutDK::before {
  content: "";
  position: absolute;
  top: -55%;
  left: 0;
  height: 100%;
  width: 49%;
  background: url("../images/aboutdk_bck.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  z-index: -1;
}
.aboutDK .aboutDKImg {
  padding-right: 80px;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .aboutDK .aboutDKImg {
    padding-right: 70px;
  }
}
@media (max-width: 1599px) {
  .aboutDK .aboutDKImg {
    padding-right: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1268px) {
  .aboutDK .aboutDKImg {
    padding-right: 50px;
  }
}
@media (max-width: 1199px) {
  .aboutDK .aboutDKImg {
    padding-right: 0px;
  }
}
@media (max-width: 767px) {
  .aboutDK::before {
    display: none;
  }
  .aboutDK .aboutDKImg {
    padding-right: 0;
    max-width: 80%;
    margin: 0 auto 20px;
  }
  .aboutDK .aboutDKDt {
    text-align: center;
  }
}

.whatDoes.blueBck::before {
  background: url("../images/what_does_bck.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.whatDoes .whatDoesLft p {
  max-width: 80%;
}
.whatDoes .whatDoesLst {
  display: flex;
  flex-wrap: wrap;
}
.whatDoes .whatDoesLst > li {
  flex: 0 0 52%;
  max-width: 52%;
}
.whatDoes .whatDoesLst > li:first-child {
  margin-right: 25px;
}
.whatDoes .whatDoesLst > li:last-child {
  flex: 0 0 45%;
  max-width: 45%;
}
.whatDoes .whatDoesLst > li .whatDoesBx {
  border-radius: 40px;
  padding: 38px;
  padding-right: 55px;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  background: rgba(182, 219, 255, 0.3019607843);
  box-shadow: 6px 8px 19px rgba(31, 38, 135, 0.09), inset 12px 8px 15px rgba(255, 255, 255, 0.2);
}
.whatDoes .whatDoesLst > li .whatDoesBx .fnt26 {
  font-weight: 600;
  color: #000000;
}
.whatDoes .whatDoesLst > li .whatDoesBx ul li {
  position: relative;
  padding-left: 16px;
}
.whatDoes .whatDoesLst > li .whatDoesBx ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  height: 8px;
  width: 8px;
  background: #232323;
}
.whatDoes .whatDoesLst > li .whatDoesBx ul li p {
  font-weight: 500;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .whatDoes .whatDoesLft p {
    max-width: 80%;
  }
  .whatDoes .whatDoesLst > li {
    flex: 0 0 52%;
    max-width: 52%;
  }
  .whatDoes .whatDoesLst > li:first-child {
    margin-right: 20px;
  }
  .whatDoes .whatDoesLst > li:last-child {
    flex: 0 0 45%;
    max-width: 45%;
  }
  .whatDoes .whatDoesLst > li .whatDoesBx {
    padding: 23px;
    padding-right: 30px;
    min-height: 440px;
  }
}
@media (max-width: 1599px) {
  .whatDoes .whatDoesLft p {
    max-width: 80%;
  }
  .whatDoes .whatDoesLst > li {
    flex: 0 0 52%;
    max-width: 52%;
  }
  .whatDoes .whatDoesLst > li:first-child {
    margin-right: 20px;
  }
  .whatDoes .whatDoesLst > li:last-child {
    flex: 0 0 45%;
    max-width: 45%;
  }
  .whatDoes .whatDoesLst > li .whatDoesBx {
    padding: 23px;
    padding-right: 30px;
    min-height: 300px;
  }
  .whatDoes .whatDoesLst > li .whatDoesBx ul li {
    padding-left: 12px;
  }
  .whatDoes .whatDoesLst > li .whatDoesBx ul li::before {
    top: 9px;
    height: 6px;
    width: 6px;
  }
}
@media (min-width: 1200px) and (max-width: 1268px) {
  .whatDoes .whatDoesLst > li:first-child {
    margin-right: 18px;
  }
  .whatDoes .whatDoesLst > li .whatDoesBx {
    min-height: 330px;
  }
}
@media (max-width: 1200px) {
  .whatDoes .whatDoesLst > li:first-child {
    margin-right: 18px;
  }
  .whatDoes .whatDoesLst > li .whatDoesBx {
    min-height: 330px;
  }
}
@media (max-width: 1199px) {
  .whatDoes .whatDoesLft p {
    max-width: 80%;
  }
  .whatDoes .whatDoesLst > li {
    flex: 0 0 52%;
    max-width: 52%;
  }
  .whatDoes .whatDoesLst > li p {
    font-size: 15px;
    line-height: 24px;
  }
  .whatDoes .whatDoesLst > li:first-child {
    margin-right: 15px;
  }
  .whatDoes .whatDoesLst > li:last-child {
    flex: 0 0 45%;
    max-width: 45%;
  }
  .whatDoes .whatDoesLst > li .whatDoesBx {
    padding: 16px;
    padding-right: 20px;
    min-height: 330px;
  }
}
@media (max-width: 991px) {
  .whatDoes .whatDoesLft p {
    max-width: 80%;
  }
  .whatDoes .whatDoesLft {
    margin-bottom: 20px;
  }
  .whatDoes .whatDoesLst > li .whatDoesBx {
    min-height: 275px;
  }
}
@media (max-width: 767px) {
  .whatDoes .whatDoesLft p {
    max-width: 80%;
  }
  .whatDoes .whatDoesLft {
    margin-bottom: 20px;
  }
  .whatDoes .whatDoesLst > li {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
  .whatDoes .whatDoesLst > li:last-child {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
  .whatDoes .whatDoesLst > li .whatDoesBx {
    min-height: auto;
  }
}

.orApprch .orApprchImg {
  padding-left: 95px;
}
@media (max-width: 1599px) {
  .orApprch .orApprchImg {
    padding-left: 75px;
  }
}
@media (max-width: 991px) {
  .orApprch {
    text-align: center;
  }
  .orApprch .orApprchTxt {
    margin-bottom: 20px;
  }
  .orApprch .orApprchImg {
    padding-left: 0;
  }
}

.platFrm .platFrmLst {
  margin: 40px 0;
  display: flex;
  flex-wrap: wrap;
}
.platFrm .platFrmLst li {
  flex: 0 0 30.15%;
  max-width: 30.15%;
  padding-bottom: 30px;
  margin: 0 40px;
  border-bottom: 1px solid #D9D9D9;
}
.platFrm .platFrmLst li:first-child {
  margin-left: 0;
}
.platFrm .platFrmLst li:last-child {
  padding-right: 0;
  margin-right: 0;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .platFrm .platFrmLst {
    margin: 30px 0;
  }
  .platFrm .platFrmLst li {
    flex: 0 0 30.15%;
    max-width: 30.15%;
    padding-bottom: 20px;
    margin: 0 28px;
  }
}
@media (max-width: 1599px) {
  .platFrm .platFrmLst {
    margin: 30px 0;
  }
  .platFrm .platFrmLst li {
    flex: 0 0 30.15%;
    max-width: 30.15%;
    padding-bottom: 20px;
    margin: 0 28px;
  }
}
@media (min-width: 1200px) and (max-width: 1268px) {
  .platFrm .platFrmLst li {
    margin: 0 25px;
  }
}
@media (max-width: 1200px) {
  .platFrm .platFrmLst li {
    margin: 0 25px;
  }
}
@media (max-width: 1199px) {
  .platFrm .platFrmLst {
    margin: 25px 0;
  }
  .platFrm .platFrmLst li {
    padding-bottom: 15px;
    margin: 0 22px;
  }
}
@media (max-width: 991px) {
  .platFrm .platFrmLst {
    margin: 20px 0;
  }
  .platFrm .platFrmLst li {
    padding-bottom: 15px;
    margin: 0 20px;
    flex: 0 0 45%;
    max-width: 45%;
  }
  .platFrm .platFrmLst li:last-child {
    margin: 0;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .platFrm {
    text-align: center;
  }
  .platFrm .platFrmLst {
    margin: 20px 0;
  }
  .platFrm .platFrmLst li {
    padding-bottom: 15px;
    margin: 0 auto 20px;
    flex: 0 0 100%;
    max-width: 400px;
  }
  .platFrm .platFrmLst li:first-child {
    margin-left: auto;
  }
  .platFrm .platFrmLst li:last-child {
    margin: 0 auto;
  }
}

.strtCnvrsn.blueBck::before {
  background: url("../images/strt_cnvrsn_bck.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.strtCnvrsn .fnt26 {
  max-width: 68%;
  margin: auto;
}

.form-control:hover, .form-control:focus {
  border-color: #0683CC;
  box-shadow: none;
}

.inquiryForm {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
.inquiryForm label {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #232323;
  margin-bottom: 10px;
}
.inquiryForm label.error {
  color: red;
  margin-bottom: 0;
}
.inquiryForm .error {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
}
.inquiryForm .form-group {
  flex: 0 0 48.25%;
  max-width: 48.25%;
  margin-bottom: 30px;
  margin-right: 29px;
}
.inquiryForm .form-group:nth-child(2n), .inquiryForm .form-group.flx100 {
  margin-right: 0;
}
.inquiryForm .form-group .form-control, .inquiryForm .form-group select {
  background: #fff;
  border-radius: 10px;
  padding: 17px 20px;
  border: 1px solid #D9D9D9;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #949494;
  height: 50px;
}
.inquiryForm .form-group .form-control::-moz-placeholder, .inquiryForm .form-group select::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #949494;
}
.inquiryForm .form-group .form-control::placeholder, .inquiryForm .form-group select::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #949494;
}
.inquiryForm .form-group .form-control:focus, .inquiryForm .form-group select:focus {
  border-color: #39B6FF;
}
.inquiryForm .form-group textarea.form-control {
  height: 100px !important;
}
.inquiryForm .form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../images/select_drp.svg");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 16px;
  width: 100%;
}
.inquiryForm .form-group.flx100 {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 0;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .inquiryForm label {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 8px;
  }
  .inquiryForm .error {
    font-size: 14px;
    line-height: 14px;
  }
  .inquiryForm .form-group {
    flex: 0 0 48%;
    max-width: 48%;
    margin-bottom: 20px;
    margin-right: 23px;
  }
  .inquiryForm .form-group .form-control, .inquiryForm .form-group select {
    padding: 12px 15px;
    font-size: 16px;
    line-height: 16px;
    height: 45px;
  }
  .inquiryForm .form-group .form-control::-moz-placeholder, .inquiryForm .form-group select::-moz-placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  .inquiryForm .form-group .form-control::placeholder, .inquiryForm .form-group select::placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  .inquiryForm .form-group textarea.form-control {
    height: 90px !important;
  }
  .inquiryForm .cntctBtn {
    margin-top: 30px;
  }
}
@media (max-width: 1599px) {
  .inquiryForm label {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 8px;
  }
  .inquiryForm .error {
    font-size: 14px;
    line-height: 14px;
  }
  .inquiryForm .form-group {
    flex: 0 0 48%;
    max-width: 48%;
    margin-bottom: 20px;
    margin-right: 23px;
  }
  .inquiryForm .form-group .form-control, .inquiryForm .form-group select {
    padding: 12px 15px;
    font-size: 16px;
    line-height: 16px;
    height: 40px;
  }
  .inquiryForm .form-group .form-control::-moz-placeholder, .inquiryForm .form-group select::-moz-placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  .inquiryForm .form-group .form-control::placeholder, .inquiryForm .form-group select::placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  .inquiryForm .form-group textarea.form-control {
    height: 90px !important;
  }
  .inquiryForm .cntctBtn {
    margin-top: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1268px) {
  .inquiryForm .form-group {
    margin-right: 20px;
  }
}
@media (max-width: 1200px) {
  .inquiryForm .form-group {
    margin-right: 20px;
  }
}
@media (max-width: 1199px) {
  .inquiryForm label {
    font-size: 12px;
    line-height: 12px;
  }
  .inquiryForm .error {
    font-size: 12px;
    line-height: 12px;
  }
  .inquiryForm .form-group {
    margin-right: 18px;
    margin-bottom: 15px;
  }
  .inquiryForm .form-group .form-control, .inquiryForm .form-group select {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 14px;
  }
  .inquiryForm .form-group .form-control::-moz-placeholder, .inquiryForm .form-group select::-moz-placeholder {
    font-size: 14px;
    line-height: 14px;
  }
  .inquiryForm .form-group .form-control::placeholder, .inquiryForm .form-group select::placeholder {
    font-size: 14px;
    line-height: 14px;
  }
  .inquiryForm .form-group select {
    background-position: right 15px center;
  }
  .inquiryForm .cntctBtn {
    margin-top: 25px;
  }
}
@media (max-width: 991px) {
  .inquiryForm .getTchFrm {
    margin-bottom: 30px;
  }
  .inquiryForm .getTchImg {
    padding-left: 0;
    max-width: 80%;
    margin: 0 auto 0 0;
  }
}
@media (max-width: 575px) {
  .inquiryForm .form-group {
    flex: 0 0 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .inquiryForm .form-group textarea.form-control {
    height: 70px !important;
  }
}

.getTch .getTchFrm .inquiryForm {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.getTch .getTchFrm .inquiryForm label {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #232323;
  margin-bottom: 10px;
}
.getTch .getTchFrm .inquiryForm label.error {
  color: red;
  margin-bottom: 0;
}
.getTch .getTchFrm .inquiryForm .error {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
}
.getTch .getTchFrm .inquiryForm .form-group {
  flex: 0 0 48.25%;
  max-width: 48.25%;
  margin-bottom: 30px;
  margin-right: 29px;
}
.getTch .getTchFrm .inquiryForm .form-group:nth-child(2n), .getTch .getTchFrm .inquiryForm .form-group.flx100 {
  margin-right: 0;
}
.getTch .getTchFrm .inquiryForm .form-group .form-control, .getTch .getTchFrm .inquiryForm .form-group select {
  background: #fff;
  border-radius: 10px;
  padding: 17px 20px;
  border: 1px solid #D9D9D9;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #949494;
  height: 50px;
}
.getTch .getTchFrm .inquiryForm .form-group .form-control::-moz-placeholder, .getTch .getTchFrm .inquiryForm .form-group select::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #949494;
}
.getTch .getTchFrm .inquiryForm .form-group .form-control::placeholder, .getTch .getTchFrm .inquiryForm .form-group select::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #949494;
}
.getTch .getTchFrm .inquiryForm .form-group .form-control:focus, .getTch .getTchFrm .inquiryForm .form-group select:focus {
  border-color: #39B6FF;
}
.getTch .getTchFrm .inquiryForm .form-group textarea.form-control {
  height: 100px !important;
}
.getTch .getTchFrm .inquiryForm .form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../images/select_drp.svg");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 16px;
  width: 100%;
}
.getTch .getTchFrm .inquiryForm .form-group.flx100 {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 0;
}
.getTch .getTchFrm .cntctBtn {
  margin-top: 40px;
}
.getTch .getTchImg {
  padding-left: 80px;
}
@media (min-width: 1600px) and (max-width: 1799px) {
  .getTch .getTchFrm .inquiryForm label {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 8px;
  }
  .getTch .getTchFrm .inquiryForm .error {
    font-size: 14px;
    line-height: 14px;
  }
  .getTch .getTchFrm .inquiryForm .form-group {
    flex: 0 0 48%;
    max-width: 48%;
    margin-bottom: 20px;
    margin-right: 23px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control, .getTch .getTchFrm .inquiryForm .form-group select {
    padding: 12px 15px;
    font-size: 16px;
    line-height: 16px;
    height: 45px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control::-moz-placeholder, .getTch .getTchFrm .inquiryForm .form-group select::-moz-placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control::placeholder, .getTch .getTchFrm .inquiryForm .form-group select::placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  .getTch .getTchFrm .inquiryForm .form-group textarea.form-control {
    height: 90px !important;
  }
  .getTch .getTchFrm .cntctBtn {
    margin-top: 30px;
  }
  .getTch .getTchImg {
    padding-left: 60px;
  }
}
@media (max-width: 1599px) {
  .getTch .getTchFrm .inquiryForm label {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 8px;
  }
  .getTch .getTchFrm .inquiryForm .error {
    font-size: 14px;
    line-height: 14px;
  }
  .getTch .getTchFrm .inquiryForm .form-group {
    flex: 0 0 48%;
    max-width: 48%;
    margin-bottom: 20px;
    margin-right: 23px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control, .getTch .getTchFrm .inquiryForm .form-group select {
    padding: 12px 15px;
    font-size: 16px;
    line-height: 16px;
    height: 45px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control::-moz-placeholder, .getTch .getTchFrm .inquiryForm .form-group select::-moz-placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control::placeholder, .getTch .getTchFrm .inquiryForm .form-group select::placeholder {
    font-size: 16px;
    line-height: 16px;
  }
  .getTch .getTchFrm .inquiryForm .form-group textarea.form-control {
    height: 90px !important;
  }
  .getTch .getTchFrm .cntctBtn {
    margin-top: 30px;
  }
  .getTch .getTchImg {
    padding-left: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1268px) {
  .getTch .getTchFrm .inquiryForm .form-group {
    margin-right: 20px;
  }
}
@media (max-width: 1200px) {
  .getTch .getTchFrm .inquiryForm .form-group {
    margin-right: 20px;
  }
}
@media (max-width: 1199px) {
  .getTch .getTchFrm .inquiryForm label {
    font-size: 12px;
    line-height: 12px;
  }
  .getTch .getTchFrm .inquiryForm .error {
    font-size: 12px;
    line-height: 12px;
  }
  .getTch .getTchFrm .inquiryForm .form-group {
    margin-right: 18px;
    margin-bottom: 15px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control, .getTch .getTchFrm .inquiryForm .form-group select {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 14px;
    height: 40px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control::-moz-placeholder, .getTch .getTchFrm .inquiryForm .form-group select::-moz-placeholder {
    font-size: 14px;
    line-height: 14px;
  }
  .getTch .getTchFrm .inquiryForm .form-group .form-control::placeholder, .getTch .getTchFrm .inquiryForm .form-group select::placeholder {
    font-size: 14px;
    line-height: 14px;
  }
  .getTch .getTchFrm .inquiryForm .form-group textarea.form-control {
    height: 80px !important;
  }
  .getTch .getTchFrm .inquiryForm .form-group select {
    background-position: right 15px center;
  }
  .getTch .getTchFrm .cntctBtn {
    margin-top: 25px;
  }
  .getTch .getTchImg {
    padding-left: 50px;
  }
}
@media (max-width: 991px) {
  .getTch .getTchFrm {
    margin-bottom: 30px;
  }
  .getTch .getTchImg {
    padding-left: 0;
    max-width: 80%;
    margin: 0 auto 0 0;
  }
}
@media (max-width: 575px) {
  .getTch .getTchFrm .inquiryForm .form-group {
    flex: 0 0 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .getTch .getTchFrm .inquiryForm .form-group textarea.form-control {
    height: 70px !important;
  }
  .getTch .getTchImg {
    max-width: 100%;
  }
}

/* ========== Glass Morphism Animation ========== */
.glass-scan {
  position: absolute;
  width: 230px;
  height: 230px;
  top: -25px;
  left: -80px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.1), 0 0 8px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transform-origin: center;
  animation: glassMove 30s ease-in-out infinite;
}
@media (max-width: 1599px) {
  .glass-scan {
    width: 150px;
    height: 150px;
  }
}
@media (min-width: 1200px) and (max-width: 1268px) {
  .glass-scan {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 1199px) {
  .glass-scan {
    width: 120px;
    height: 120px;
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  .glass-scan {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 991px) {
  .glass-scan {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 767px) {
  .glass-scan {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 450px) {
  .glass-scan.mbNone {
    display: none;
  }
}

@keyframes glassMove {
  /* LEFT → RIGHT */
  0% {
    transform: translate(0px, 0px) rotate(45deg) scale(1);
  }
  10% {
    transform: translate(200px, 20px) rotate(70deg) scale(1.08);
  }
  20% {
    transform: translate(400px, -15px) rotate(120deg) scale(0.95);
  }
  30% {
    transform: translate(600px, 30px) rotate(180deg) scale(1.15);
  }
  40% {
    transform: translate(800px, -10px) rotate(240deg) scale(0.88);
  }
  50% {
    transform: translate(1000px, 0px) rotate(300deg) scale(1);
  }
  /* RIGHT → LEFT (same path reversed) */
  60% {
    transform: translate(800px, -10px) rotate(240deg) scale(0.88);
  }
  70% {
    transform: translate(600px, 30px) rotate(180deg) scale(1.15);
  }
  80% {
    transform: translate(400px, -15px) rotate(120deg) scale(0.95);
  }
  90% {
    transform: translate(200px, 20px) rotate(70deg) scale(1.08);
  }
  100% {
    transform: translate(0px, 0px) rotate(45deg) scale(1);
  }
}
@media (max-width: 1599px) {
  @keyframes glassMove {
    /* LEFT → RIGHT */
    0% {
      transform: translate(0px, 0px) rotate(45deg) scale(1);
    }
    10% {
      transform: translate(200px, 20px) rotate(70deg) scale(1.08);
    }
    20% {
      transform: translate(300px, -15px) rotate(120deg) scale(0.95);
    }
    30% {
      transform: translate(500px, 30px) rotate(180deg) scale(1.15);
    }
    40% {
      transform: translate(700px, -10px) rotate(240deg) scale(0.88);
    }
    50% {
      transform: translate(600px, 0px) rotate(300deg) scale(1);
    }
    /* RIGHT → LEFT (same path reversed) */
    60% {
      transform: translate(500px, -10px) rotate(240deg) scale(0.88);
    }
    70% {
      transform: translate(370px, 30px) rotate(180deg) scale(1.15);
    }
    80% {
      transform: translate(280px, -15px) rotate(120deg) scale(0.95);
    }
    90% {
      transform: translate(160px, 20px) rotate(70deg) scale(1.08);
    }
    100% {
      transform: translate(0px, 0px) rotate(45deg) scale(1);
    }
  }
}
@media (min-width: 992px) and (max-width: 1100px) {
  @keyframes glassMove {
    /* LEFT → RIGHT */
    0% {
      transform: translate(0px, 0px) rotate(45deg) scale(1);
    }
    10% {
      transform: translate(200px, 20px) rotate(70deg) scale(1.08);
    }
    20% {
      transform: translate(300px, -15px) rotate(120deg) scale(0.95);
    }
    30% {
      transform: translate(400px, 30px) rotate(180deg) scale(1.15);
    }
    40% {
      transform: translate(630px, -10px) rotate(240deg) scale(0.88);
    }
    50% {
      transform: translate(510px, 0px) rotate(300deg) scale(1);
    }
    /* RIGHT → LEFT (same path reversed) */
    60% {
      transform: translate(460px, -10px) rotate(240deg) scale(0.88);
    }
    70% {
      transform: translate(370px, 30px) rotate(180deg) scale(1.15);
    }
    80% {
      transform: translate(280px, -15px) rotate(120deg) scale(0.95);
    }
    90% {
      transform: translate(160px, 20px) rotate(70deg) scale(1.08);
    }
    100% {
      transform: translate(0px, 0px) rotate(45deg) scale(1);
    }
  }
}
@media (max-width: 767px) {
  @keyframes glassMove {
    /* LEFT → RIGHT */
    0% {
      transform: translate(0px, 0px) rotate(45deg) scale(1);
    }
    10% {
      transform: translate(200px, 20px) rotate(70deg) scale(1.08);
    }
    20% {
      transform: translate(300px, -15px) rotate(120deg) scale(0.95);
    }
    30% {
      transform: translate(400px, 30px) rotate(180deg) scale(1.15);
    }
    40% {
      transform: translate(510px, -10px) rotate(240deg) scale(0.88);
    }
    50% {
      transform: translate(480px, 0px) rotate(300deg) scale(1);
    }
    /* RIGHT → LEFT (same path reversed) */
    60% {
      transform: translate(400px, -10px) rotate(240deg) scale(0.88);
    }
    70% {
      transform: translate(350px, 30px) rotate(180deg) scale(1.15);
    }
    80% {
      transform: translate(265px, -15px) rotate(120deg) scale(0.95);
    }
    90% {
      transform: translate(180px, 20px) rotate(70deg) scale(1.08);
    }
    100% {
      transform: translate(0px, 0px) rotate(45deg) scale(1);
    }
  }
}
@keyframes shineMove {
  from {
    left: -120%;
  }
  to {
    left: 120%;
  }
}
@keyframes shineMove {
  from {
    left: 0%;
  }
  to {
    left: 80%;
  }
}
/* ========== Glass Morphism Animation End ========== */
.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: none;
}

.glass-box {
  position: absolute;
  /* border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px; */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 -1px 0 rgba(255, 255, 255, 0.02), 0 4px 22px rgba(0, 0, 0, 0.06);
  z-index: 99;
}

.box-a {
  width: 200px;
  height: 200px;
  animation: floatA 40s ease-in-out infinite;
}
@media (max-width: 1599px) {
  .box-a {
    width: 130px;
    height: 130px;
  }
}
@media (min-width: 1200px) and (max-width: 1268px) {
  .box-a {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 1199px) {
  .box-a {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 991px) {
  .box-a {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 575px) {
  .box-a {
    width: 60px;
    height: 60px;
  }
}

@keyframes floatA {
  0% {
    transform: translate(0%, 0%) rotate(10deg) scale(1);
  }
  10% {
    transform: translate(70%, 50%) rotate(80deg) scale(0.95);
  }
  20% {
    transform: translate(130%, 10%) rotate(170deg) scale(0.8);
  }
  30% {
    transform: translate(200%, 50%) rotate(260deg) scale(1);
  }
  40% {
    transform: translate(350%, 20%) rotate(180deg) scale(1.1);
  }
  50% {
    transform: translate(500%, 0%) rotate(100deg) scale(1.3);
  }
  60% {
    transform: translate(600%, -20%) rotate(60deg) scale(1.15);
  }
  70% {
    transform: translate(800%, -40%) rotate(120deg) scale(1);
  }
  80% {
    transform: translate(500%, -60%) rotate(190deg) scale(0.95);
  }
  90% {
    transform: translate(300%, -30%) rotate(250deg) scale(0.8);
  }
  95% {
    transform: translate(100%, -10%) rotate(150deg) scale(0.9);
  }
  100% {
    transform: translate(0%, 0%) rotate(10deg) scale(1);
  }
}
@media (min-width: 1200px) and (max-width: 1268px) {
  @keyframes floatA {
    0% {
      transform: translate(0%, 0%) rotate(10deg);
    }
    10% {
      transform: translate(100%, 50%) rotate(80deg);
    }
    20% {
      transform: translate(160%, 10%) rotate(170deg);
    }
    30% {
      transform: translate(220%, 50%) rotate(260deg);
    }
    40% {
      transform: translate(380%, 20%) rotate(180deg);
    }
    50% {
      transform: translate(520%, 0%) rotate(100deg);
    }
    60% {
      transform: translate(660%, -20%) rotate(60deg);
    }
    70% {
      transform: translate(880%, -40%) rotate(120deg);
    }
    80% {
      transform: translate(570%, -60%) rotate(190deg);
    }
    90% {
      transform: translate(350%, -30%) rotate(250deg);
    }
    95% {
      transform: translate(150%, -10%) rotate(150deg);
    }
    100% {
      transform: translate(0%, 0%) rotate(10deg);
    }
  }
}
@media (max-width: 1199px) {
  @keyframes floatA {
    0% {
      transform: translate(0%, 0%) rotate(10deg);
    }
    10% {
      transform: translate(100%, 50%) rotate(80deg);
    }
    20% {
      transform: translate(130%, 10%) rotate(170deg);
    }
    30% {
      transform: translate(200%, 50%) rotate(260deg);
    }
    40% {
      transform: translate(350%, 20%) rotate(180deg);
    }
    50% {
      transform: translate(480%, 0%) rotate(100deg);
    }
    60% {
      transform: translate(610%, -20%) rotate(60deg);
    }
    70% {
      transform: translate(720%, -40%) rotate(120deg);
    }
    80% {
      transform: translate(530%, -60%) rotate(190deg);
    }
    90% {
      transform: translate(300%, -30%) rotate(250deg);
    }
    95% {
      transform: translate(100%, -10%) rotate(150deg);
    }
    100% {
      transform: translate(0%, 0%) rotate(10deg);
    }
  }
}
@media (max-width: 767px) {
  @keyframes floatA {
    0% {
      transform: translate(0%, 0%) rotate(10deg);
    }
    10% {
      transform: translate(100%, 50%) rotate(80deg);
    }
    20% {
      transform: translate(130%, 10%) rotate(170deg);
    }
    30% {
      transform: translate(180%, 50%) rotate(260deg);
    }
    40% {
      transform: translate(260%, 20%) rotate(180deg);
    }
    50% {
      transform: translate(380%, 0%) rotate(100deg);
    }
    60% {
      transform: translate(480%, -20%) rotate(60deg);
    }
    70% {
      transform: translate(520%, -40%) rotate(120deg);
    }
    80% {
      transform: translate(440%, -60%) rotate(190deg);
    }
    90% {
      transform: translate(250%, -30%) rotate(250deg);
    }
    95% {
      transform: translate(60%, -10%) rotate(150deg);
    }
    100% {
      transform: translate(0%, 0%) rotate(10deg);
    }
  }
}
@media (max-width: 575px) {
  @keyframes floatA {
    0% {
      transform: translate(0%, 0%) rotate(10deg);
    }
    10% {
      transform: translate(110%, 50%) rotate(80deg);
    }
    20% {
      transform: translate(150%, 10%) rotate(170deg);
    }
    30% {
      transform: translate(200%, 50%) rotate(260deg);
    }
    40% {
      transform: translate(300%, 20%) rotate(180deg);
    }
    50% {
      transform: translate(430%, 0%) rotate(100deg);
    }
    60% {
      transform: translate(550%, -20%) rotate(60deg);
    }
    70% {
      transform: translate(760%, -40%) rotate(120deg);
    }
    80% {
      transform: translate(560%, -60%) rotate(190deg);
    }
    90% {
      transform: translate(310%, -30%) rotate(250deg);
    }
    95% {
      transform: translate(120%, -10%) rotate(150deg);
    }
    100% {
      transform: translate(0%, 0%) rotate(10deg);
    }
  }
}
@media (max-width: 450px) {
  @keyframes floatA {
    0% {
      transform: translate(0%, 0%) rotate(10deg);
    }
    10% {
      transform: translate(100%, 50%) rotate(80deg);
    }
    20% {
      transform: translate(130%, 10%) rotate(170deg);
    }
    30% {
      transform: translate(180%, 50%) rotate(260deg);
    }
    40% {
      transform: translate(260%, 20%) rotate(180deg);
    }
    50% {
      transform: translate(380%, 0%) rotate(100deg);
    }
    60% {
      transform: translate(500%, -20%) rotate(60deg);
    }
    70% {
      transform: translate(430%, -40%) rotate(120deg);
    }
    80% {
      transform: translate(370%, -60%) rotate(190deg);
    }
    90% {
      transform: translate(220%, -30%) rotate(250deg);
    }
    95% {
      transform: translate(40%, -10%) rotate(150deg);
    }
    100% {
      transform: translate(0%, 0%) rotate(10deg);
    }
  }
}
.mt30 {
  margin-top: 30px;
}

.mgBt0 {
  margin-bottom: 0;
}

#exampleModal .modal-dialog {
  max-width: 60%;
}
#exampleModal .modal-dialog .modal-content {
  border-radius: 20px;
}
#exampleModal .modal-dialog .modal-content .modal-header {
  padding: 20px 25px;
}
#exampleModal .modal-dialog .modal-content .modal-body {
  padding: 25px;
}
@media (min-width: 768px) and (max-width: 990px) {
  #exampleModal .modal-dialog {
    max-width: 75%;
  }
  #exampleModal .modal-dialog .modal-content .modal-header {
    padding: 15px 20px;
  }
  #exampleModal .modal-dialog .modal-content .modal-body {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  #exampleModal .modal-dialog {
    max-width: 75%;
  }
  #exampleModal .modal-dialog .modal-content .modal-header {
    padding: 15px 20px;
  }
  #exampleModal .modal-dialog .modal-content .modal-body {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  #exampleModal .modal-dialog {
    max-width: 400px;
    margin: 0 auto;
  }
  #exampleModal .modal-dialog .modal-content .modal-header {
    padding: 15px 20px;
  }
  #exampleModal .modal-dialog .modal-content .modal-body {
    padding: 20px;
  }
}

.glass-box2 {
  position: absolute;
  top: 0;
  left: 0;
  /* border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px; */
  background: rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 -1px 0 rgba(255, 255, 255, 0.02), 0 4px 22px rgba(0, 0, 0, 0.06);
  z-index: 99;
}

.box-b {
  width: 200px;
  height: 200px;
  animation: floatB 40s ease-in-out infinite;
}
@media (max-width: 1599px) {
  .box-b {
    width: 130px;
    height: 130px;
  }
}
@media (min-width: 1200px) and (max-width: 1268px) {
  .box-b {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 1199px) {
  .box-b {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 991px) {
  .box-b {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 575px) {
  .box-b {
    width: 60px;
    height: 60px;
  }
}

@keyframes floatB {
  0% {
    transform: translate(0%, 5%) rotate(10deg) scale(1);
  }
  10% {
    transform: translate(125%, 40%) rotate(80deg) scale(0.95);
  }
  20% {
    transform: translate(260%, 80%) rotate(170deg) scale(0.84);
  }
  30% {
    transform: translate(415%, 120%) rotate(260deg) scale(1.02);
  }
  40% {
    transform: translate(570%, 150%) rotate(350deg) scale(1.08);
  }
  50% {
    transform: translate(800%, 130%) rotate(410deg) scale(1.13);
  }
  60% {
    transform: translate(560%, 116%) rotate(350deg) scale(1.09);
  }
  70% {
    transform: translate(400%, 138%) rotate(260deg) scale(1.025);
  }
  80% {
    transform: translate(240%, 80%) rotate(170deg) scale(0.99);
  }
  90% {
    transform: translate(110%, 40%) rotate(80deg) scale(0.89);
  }
  100% {
    transform: translate(0%, 5%) rotate(10deg) scale(1);
  }
}
@media (min-width: 1600px) and (max-width: 1799px) {
  @keyframes floatB {
    0% {
      transform: translate(0%, 5%) rotate(10deg) scale(1);
    }
    10% {
      transform: translate(115%, 40%) rotate(80deg) scale(0.95);
    }
    20% {
      transform: translate(220%, 80%) rotate(170deg) scale(0.84);
    }
    30% {
      transform: translate(375%, 115%) rotate(260deg) scale(1.02);
    }
    40% {
      transform: translate(460%, 145%) rotate(350deg) scale(1.08);
    }
    50% {
      transform: translate(680%, 122%) rotate(410deg) scale(1.13);
    }
    60% {
      transform: translate(450%, 108%) rotate(350deg) scale(1.09);
    }
    70% {
      transform: translate(360%, 98%) rotate(260deg) scale(1.025);
    }
    80% {
      transform: translate(230%, 72%) rotate(170deg) scale(0.99);
    }
    90% {
      transform: translate(120%, 32%) rotate(80deg) scale(0.89);
    }
    100% {
      transform: translate(0%, 5%) rotate(10deg) scale(1);
    }
  }
}
@media (max-width: 1599px) {
  @keyframes floatB {
    0% {
      transform: translate(0%, 5%) rotate(10deg) scale(1);
    }
    10% {
      transform: translate(165%, 50%) rotate(80deg) scale(0.95);
    }
    20% {
      transform: translate(275%, 90%) rotate(170deg) scale(0.84);
    }
    30% {
      transform: translate(473%, 125%) rotate(260deg) scale(1.02);
    }
    40% {
      transform: translate(630%, 155%) rotate(350deg) scale(1.08);
    }
    50% {
      transform: translate(910%, 130%) rotate(410deg) scale(1.13);
    }
    60% {
      transform: translate(580%, 108%) rotate(350deg) scale(1.09);
    }
    70% {
      transform: translate(460%, 98%) rotate(260deg) scale(1.025);
    }
    80% {
      transform: translate(305%, 72%) rotate(170deg) scale(0.99);
    }
    90% {
      transform: translate(155%, 32%) rotate(80deg) scale(0.89);
    }
    100% {
      transform: translate(0%, 5%) rotate(10deg) scale(1);
    }
  }
}
@media (min-width: 1200px) and (max-width: 1268px) {
  @keyframes floatB {
    0% {
      transform: translate(0%, 5%) rotate(10deg) scale(1);
    }
    10% {
      transform: translate(175%, 60%) rotate(80deg) scale(0.95);
    }
    20% {
      transform: translate(285%, 100%) rotate(170deg) scale(0.84);
    }
    30% {
      transform: translate(483%, 135%) rotate(260deg) scale(1.02);
    }
    40% {
      transform: translate(640%, 165%) rotate(350deg) scale(1.08);
    }
    50% {
      transform: translate(920%, 140%) rotate(410deg) scale(1.13);
    }
    60% {
      transform: translate(590%, 118%) rotate(350deg) scale(1.09);
    }
    70% {
      transform: translate(470%, 108%) rotate(260deg) scale(1.025);
    }
    80% {
      transform: translate(315%, 82%) rotate(170deg) scale(0.99);
    }
    90% {
      transform: translate(165%, 42%) rotate(80deg) scale(0.89);
    }
    100% {
      transform: translate(0%, 5%) rotate(10deg) scale(1);
    }
  }
}
@media (max-width: 1199px) {
  @keyframes floatB {
    0% {
      transform: translate(0%, 5%) rotate(10deg) scale(1);
    }
    10% {
      transform: translate(180%, 60%) rotate(80deg) scale(0.95);
    }
    20% {
      transform: translate(300%, 100%) rotate(170deg) scale(0.84);
    }
    30% {
      transform: translate(500%, 135%) rotate(260deg) scale(1.02);
    }
    40% {
      transform: translate(660%, 165%) rotate(350deg) scale(1.08);
    }
    50% {
      transform: translate(955%, 140%) rotate(410deg) scale(1.13);
    }
    60% {
      transform: translate(600%, 118%) rotate(350deg) scale(1.09);
    }
    70% {
      transform: translate(470%, 108%) rotate(260deg) scale(1.025);
    }
    80% {
      transform: translate(340%, 82%) rotate(170deg) scale(0.99);
    }
    90% {
      transform: translate(180%, 42%) rotate(80deg) scale(0.89);
    }
    100% {
      transform: translate(0%, 5%) rotate(10deg) scale(1);
    }
  }
}
@media (max-width: 991px) {
  @keyframes floatB {
    0% {
      transform: translate(0%, 5%) rotate(10deg) scale(1);
    }
    10% {
      transform: translate(220%, 70%) rotate(80deg) scale(0.95);
    }
    20% {
      transform: translate(360%, 120%) rotate(170deg) scale(0.84);
    }
    30% {
      transform: translate(580%, 135%) rotate(260deg) scale(1.02);
    }
    40% {
      transform: translate(730%, 165%) rotate(350deg) scale(1.08);
    }
    50% {
      transform: translate(1100%, 145%) rotate(410deg) scale(1.13);
    }
    60% {
      transform: translate(670%, 128%) rotate(350deg) scale(1.09);
    }
    70% {
      transform: translate(520%, 110%) rotate(260deg) scale(1.025);
    }
    80% {
      transform: translate(340%, 82%) rotate(170deg) scale(0.99);
    }
    90% {
      transform: translate(180%, 42%) rotate(80deg) scale(0.89);
    }
    100% {
      transform: translate(0%, 5%) rotate(10deg) scale(1);
    }
  }
}
@media (max-width: 767px) {
  @keyframes floatB {
    0% {
      transform: translate(0%, 10%) rotate(10deg) scale(1);
    }
    10% {
      transform: translate(300%, 70%) rotate(80deg) scale(0.95);
    }
    20% {
      transform: translate(450%, 140%) rotate(170deg) scale(0.84);
    }
    30% {
      transform: translate(550%, 190%) rotate(260deg) scale(1.02);
    }
    40% {
      transform: translate(700%, 200%) rotate(350deg) scale(1.08);
    }
    50% {
      transform: translate(850%, 160%) rotate(410deg) scale(1.13);
    }
    60% {
      transform: translate(700%, 160%) rotate(350deg) scale(1.09);
    }
    70% {
      transform: translate(550%, 200%) rotate(260deg) scale(1.025);
    }
    80% {
      transform: translate(450%, 190%) rotate(170deg) scale(0.99);
    }
    90% {
      transform: translate(300%, 120%) rotate(80deg) scale(0.89);
    }
    100% {
      transform: translate(0%, 10%) rotate(10deg) scale(1);
    }
  }
}
@media (max-width: 575px) {
  @keyframes floatB {
    0% {
      transform: translate(0%, 10%) rotate(10deg) scale(1);
    }
    10% {
      transform: translate(230%, 70%) rotate(80deg) scale(0.95);
    }
    20% {
      transform: translate(400%, 120%) rotate(170deg) scale(0.84);
    }
    30% {
      transform: translate(600%, 150%) rotate(260deg) scale(1.02);
    }
    40% {
      transform: translate(750%, 170%) rotate(350deg) scale(1.08);
    }
    50% {
      transform: translate(830%, 200%) rotate(410deg) scale(1.13);
    }
    60% {
      transform: translate(680%, 230%) rotate(350deg) scale(1.09);
    }
    70% {
      transform: translate(540%, 260%) rotate(260deg) scale(1.025);
    }
    80% {
      transform: translate(420%, 280%) rotate(170deg) scale(0.99);
    }
    90% {
      transform: translate(220%, 240%) rotate(80deg) scale(0.89);
    }
    100% {
      transform: translate(0%, 10%) rotate(10deg) scale(1);
    }
  }
}
@media (max-width: 450px) {
  @keyframes floatB {
    0% {
      transform: translate(0%, 10%) rotate(10deg) scale(1);
    }
    10% {
      transform: translate(100%, 70%) rotate(80deg) scale(0.95);
    }
    20% {
      transform: translate(200%, 120%) rotate(170deg) scale(0.84);
    }
    30% {
      transform: translate(350%, 150%) rotate(260deg) scale(1.02);
    }
    40% {
      transform: translate(460%, 170%) rotate(350deg) scale(1.08);
    }
    50% {
      transform: translate(550%, 200%) rotate(410deg) scale(1.13);
    }
    60% {
      transform: translate(480%, 230%) rotate(350deg) scale(1.09);
    }
    70% {
      transform: translate(410%, 260%) rotate(260deg) scale(1.025);
    }
    80% {
      transform: translate(340%, 280%) rotate(170deg) scale(0.99);
    }
    90% {
      transform: translate(200%, 250%) rotate(80deg) scale(0.89);
    }
    100% {
      transform: translate(0%, 10%) rotate(10deg) scale(1);
    }
  }
}
.dispnon {
  display: none;
}

.error {
  color: red;
}/*# sourceMappingURL=style.css.map */