@font-face {
  font-family: "ClarendonBT";
  src: url("../fonts/Logo+font/tt0284m.ttf");
}

@font-face {
  font-family: "Poppins-SemiBold";
  src: url("../fonts/Poppins-SemiBold.ttf");
}

body {
  background-color: white;
  font-size: 13px;
  font-weight: normal;
  font-family: "Verdana", sans-serif !important;
  letter-spacing: 0.4px;
}

body.overflow_auto {
  overflow: auto;
}

body .classifications ol {
  margin-left: 50px;
}

body .classifications ol li {
  position: relative;
  padding: 15px;
  padding-left: 0px;
  font-size: 1rem;
}

body .classifications ol li::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: solid 1px #ddd;
  border-top: none;
  left: -50px;
  top: 0px;
}

body .classifications ol li:first-child::after {
  border-top: solid 1px #ddd;
}

body .cmsSection1 h4 .img-fluid-sm {
  width: 32px !important;
}

body .simplybook-widget-button {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

body .simplybook-widget-button:hover div {
  margin-bottom: 0px !important;
}

body .simplybook-widget-button:hover {
  background-color: black !important;
}

body .alignleft,
body .alignnone {
  display: block !important;
  margin: auto;
  margin-left: 0;
}

body .aligncenter {
  display: block !important;
  margin: auto;
}

body .alignright {
  display: block !important;
  margin: auto;
  margin-right: 0;
}

body .up-down {
  margin: auto !important;
}

body .section10 .col-lg-6.p-0.img-div {
  display: inline-table;
}

body .alignnone {
  max-width: 100%;
  height: auto;
}

body .w-85 {
  width: 85%;
  margin: 0 auto;
}

body .w-80 {
  width: 80%;
  margin: 0 auto;
}

body .lineShape {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}

body .lineShape:before, body .lineShape:after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  width: 100px;
  height: 2.3px;
  background-color: #222;
  margin: auto 10px;
}

body .lineShape span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

body .lineShape span:before, body .lineShape span:after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  width: 2.2px;
  height: 30px;
  background-color: #222;
  margin: auto;
  position: relative;
}

body .lineShape span:before {
  left: -10px;
}

body .lineShape span::after {
  right: -10px;
}

body .clareBT {
  font-family: "ClarendonBT";
}

body .titleHead {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: normal;
}

body .btn-org {
  background-color: #4399dd;
  color: white;
  border-radius: 50px;
  padding: 6px 20px;
  -webkit-box-shadow: 0 0 14px #4399dd;
          box-shadow: 0 0 14px #4399dd;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

body .btn-org:hover {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  color: white;
  background-color: black;
}

.map-location-1 {
  width: 100%;
}

.map-location-1.cal iframe {
  width: 100% !important;
}

.open {
  display: block !important;
}

.loader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 1090;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.loader .loader_wrap {
  display: inline-block;
  position: relative;
  width: 200px;
  height: 80px;
}

.loader .loader_wrap div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 50px;
  -webkit-animation: loader_ani 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
          animation: loader_ani 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.loader .loader_wrap div:nth-child(1) {
  left: 0px;
  -webkit-animation-delay: -0.24s;
          animation-delay: -0.24s;
}

.loader .loader_wrap div:nth-child(2) {
  left: 70px;
  -webkit-animation-delay: -0.12s;
          animation-delay: -0.12s;
}

.loader .loader_wrap div:nth-child(3) {
  left: 140px;
  -webkit-animation-delay: 0;
          animation-delay: 0;
}

@-webkit-keyframes loader_ani {
  0% {
    top: 8px;
    height: 60px;
    -webkit-filter: drop-shadow(0px 4px 6px #2e4369);
            filter: drop-shadow(0px 4px 6px #2e4369);
  }
  50%,
  100% {
    top: 26px;
    height: 50px;
  }
}

@keyframes loader_ani {
  0% {
    top: 8px;
    height: 60px;
    -webkit-filter: drop-shadow(0px 4px 6px #2e4369);
            filter: drop-shadow(0px 4px 6px #2e4369);
  }
  50%,
  100% {
    top: 26px;
    height: 50px;
  }
}

.ap_group .ap_email label,
.ap_group .ap_call label {
  margin: 0px;
  min-width: 188px;
}

.ap_group {
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .ap_group .ap_email label,
  .ap_group .ap_call label {
    min-width: auto;
  }
}

header {
  position: relative;
  z-index: 1;
}

header .container .nav {
  padding:34px 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

header .container .nav_logo {
  padding: 0;
  margin: auto;
  width: 100%;
}

header .container .nav_logo img {
  width: 100%;
}

header .container .nav_menu {
  width: 64%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-right:0;
}

header .container .nav_menu__request {
  text-align: right;
  min-height: 26px;
}

header .container .nav_menu__request .btn-org {
  padding: 3px 12px;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-box-shadow: 0 0 8px #4399dd;
          box-shadow: 0 0 8px #4399dd;
}

header .container .nav_menu__button {
  display: none;
}

header .container .nav_menu__button .btn_menu {
  border: none;
  position: relative;
  width: 30px;
  height: auto;
  padding: 10px;
  background: transparent;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

header .container .nav_menu__button .btn_menu span {
  position: absolute;
  left: 0;
}

header .container .nav_menu__button .btn_menu span::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #000;
  border-radius: 6px;
}

header .container .nav_menu__button .btn_menu:focus, header .container .nav_menu__button .btn_menu:hover, header .container .nav_menu__button .btn_menu:active {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none !important;
  outline: none !important;
}

header .container .nav_menu__button .btn_menu::after, header .container .nav_menu__button .btn_menu::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #000;
  border-radius: 6px;
}

header .container .nav_menu__button .btn_menu::before {
  top: 16px;
}

header .container .nav_menu__button .btn_menu.menuAct {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

header .container .nav_menu__button .btn_menu.menuAct::before {
  top: 10px;
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
  -webkit-animation: menuAct 0.2s linear;
          animation: menuAct 0.2s linear;
  width: 28px;
}

header .container .nav_menu__button .btn_menu.menuAct::after {
  -webkit-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
  top: 10px;
  -webkit-animation: menuAct 0.2s linear;
          animation: menuAct 0.2s linear;
  width: 28px;
}

header .container .nav_menu__button .btn_menu.menuAct span {
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  opacity: 0;
}

@-webkit-keyframes menuAct {
  to {
    opacity: 0;
  }
  from {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes menuAct {
  to {
    opacity: 0;
  }
  from {
    -webkit-transform: none;
            transform: none;
  }
}

header .container .nav_menu__menubar {
  width: 100%;
  text-align: right;
  padding-top: 10px;
  padding-bottom: 8px;
}

header .container .nav_menu__menubar .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

header .container .nav_menu__menubar .menu_list {
  display: inline-block;
}

header .container .nav_menu__menubar .menu_list.dropMenu {
  position: relative;
}

header .container .nav_menu__menubar .menu_list.dropMenu .subMenu {
  display: none;
  -webkit-animation: rotateMenu 400ms ease-in-out forwards;
          animation: rotateMenu 400ms ease-in-out forwards;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 180px;
  position: absolute;
  top: 38px;
  left: -50%;
  background-color: white;
  padding-top: 10px;
}

header .container .nav_menu__menubar .menu_list.dropMenu .subMenu:hover {
  display: block;
}

header .container .nav_menu__menubar .menu_list.dropMenu .subMenu::after {
  font-family: FontAwesome;
  content: "\f0d8";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  width: 16px;
  margin: auto;
  color: #4fc6e0;
  font-size: 26px;
  padding-top: 5px;
  pointer-events: none;
}

header .container .nav_menu__menubar .menu_list.dropMenu .subMenu_list a {
  display: block;
  padding: 10px 0px;
  text-align: left;
  color: #13213a;
  border-bottom: solid 1px #7abbca45;
  margin: 0 10px;
  letter-spacing: 0.8px;
  text-decoration: none;
}

header .container .nav_menu__menubar .menu_list.dropMenu .subMenu_list a:hover {
  color: #4fc6e0;
}

header .container .nav_menu__menubar .menu_list.dropMenu .subMenu_list:last-child {
  border-bottom: #4fc6e0 4px solid;
}

header .container .nav_menu__menubar .menu_list .link {
  padding: 10px 10px;
  font-size: 16px;
  color: #13213a;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}

header .container .nav_menu__menubar .menu_list .link .fa {
  font-size: 22px;
}

header .container .nav_menu__menubar .menu_list .link:hover {
  color: #4fc6e0;
}

header .container .nav_menu__menubar .menu_list .link::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 16px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-color: #13213a;
}

header .container .nav_menu__menubar .menu_list .link.active {
  color: #4fc6e0;
  position: relative;
}

header .container .nav_menu__menubar .menu_list .link.active::before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  margin: auto;
  width: 75%;
  height: 2px;
  background-color: #4fc6e0;
}

header .container .nav_menu__menubar .menu_list:nth-of-type(1) .link::after {
  display: none;
}

header .container .nav_menu__menubar .menu_list:last-child .link {
  padding-right: 0;
}

header .container .nav_menu__menubar .menu_list.dropMenu .link::before {
  content: "";
}

header .container .nav_menu__menubar .menu_list.dropMenu .link:hover ~ .subMenu {
  display: block;
}

@-webkit-keyframes rotateMenu {
  0% {
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
  }
  70% {
    -webkit-transform: rotateX(20deg);
            transform: rotateX(20deg);
  }
  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
}

@keyframes rotateMenu {
  0% {
    -webkit-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
  }
  70% {
    -webkit-transform: rotateX(20deg);
            transform: rotateX(20deg);
  }
  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
}

@media only screen and (max-width: 1024px) {
  .nav_logo {
    width: 100% !important;
    text-align: center;
  }
  .nav_logo img {
    width: auto !important;
  }
  .nav_menu {
    width: 100% !important;
  }
  .nav_menu .sm-device {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 15px;
    margin-bottom: 5px;
  }
  .nav_menu .sm-device .nav_menu__request {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }
  .nav_menu .sm-device .nav_menu__button {
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 0;
  }
  .nav_menu .nav_menu__menubar {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .nav_menu .nav_menu__menubar.open {
    display: block !important;
    -webkit-animation: rotateMenu 400ms ease-in-out forwards;
            animation: rotateMenu 400ms ease-in-out forwards;
    -webkit-transform-origin: top center;
            transform-origin: top center;
  }
  .nav_menu .nav_menu__menubar .menu .menu_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: left;
    border-bottom: solid 1px #f6f6f6;
  }
  .nav_menu .nav_menu__menubar .menu .menu_list:first-child a {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .nav_menu .nav_menu__menubar .menu .menu_list a::before, .nav_menu .nav_menu__menubar .menu .menu_list a::after {
    display: none;
  }
  .nav_menu .nav_menu__menubar .menu .menu_list.dropMenu .link:hover ~ .subMenu {
    display: none !important;
  }
  .nav_menu .nav_menu__menubar .menu .menu_list.dropMenu.open .subMenu {
    margin-bottom: 20px;
    display: block !important;
    padding-top: 0 !important;
  }
  .nav_menu .nav_menu__menubar .menu .menu_list.dropMenu.open .link {
    color: #4fc6e0 !important;
  }
  .nav_menu .nav_menu__menubar .menu .menu_list.dropMenu.open .dropArrow {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    color: #4fc6e0 !important;
  }
  .nav_menu .nav_menu__menubar .menu .menu_list.dropMenu.open .dropArrow::after {
    content: "\f0d8" !important;
    color: #4fc6e0 !important;
  }
  .nav_menu .nav_menu__menubar .menu .menu_list.dropMenu .dropArrow {
    position: absolute;
    right: 0;
    top: 6px;
    width: 30px;
    height: 30px;
    margin: auto;
    z-index: 1;
  }
  .nav_menu .nav_menu__menubar .menu .menu_list.dropMenu .dropArrow::after {
    display: block !important;
    width: 30px !important;
    height: 30px !important;
    background-color: transparent !important;
    right: 0;
    margin: auto;
    text-align: center;
    left: unset !important;
    font-family: FontAwesome;
    content: "\f0d7";
    font-size: 26px;
    color: #13213a;
    bottom: 6px;
    position: relative;
  }
  .nav_menu .nav_menu__menubar .menu .menu_list.dropMenu .subMenu {
    position: static !important;
  }
  .nav_menu .nav_menu__menubar .menu .menu_list.dropMenu .subMenu::after {
    display: none;
    left: 20px;
    margin: 0 !important;
  }
  .nav_menu .nav_menu__menubar .menu .menu_list.dropMenu.open .link {
    display: block;
  }
  .nav_menu .nav_menu__menubar .menu .menu_list.dropMenu.open .link:hover ~ .subMenu {
    display: block !important;
  }
  .nav_menu__menubar {
    display: none;
  }
}

footer {
  background-color: #14233f;
  padding: 10px 0;
  margin-top: 80px;
}

footer .container .signUpBox {
  background: url(../images/newsletter-bg.jpg) no-repeat center;
  background-size:cover;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin-top: -60px;
  padding: 20px 30px;
  color: #fff;
}

footer .container .signUpBox .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

footer .container .signUpBox .row h4 {
  color:#fff;
  font-size: 18px;
  margin-bottom: 0;
  position: relative;
}

footer .container .signUpBox .row .box1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .container .signUpBox .row .box1 h4 {
  font-family: "Montserrat", sans-serif;
  font-size:18px;
  font-weight: 600;
  line-height:24px;
  padding-left:18px;
  text-align: left;
}

footer .container .signUpBox .row .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

footer .container .signUpBox .row .form-group .form-control {
  border-radius: 50px;
  font-size: 14px;
  margin-right: -30px;
  padding-right: 35px;
}

footer .container .signUpBox .row .form-group .form-control::-webkit-input-placeholder {
  color: #ddd;
}

footer .container .signUpBox .row .form-group .form-control:-ms-input-placeholder {
  color: #ddd;
}

footer .container .signUpBox .row .form-group .form-control::-ms-input-placeholder {
  color: #ddd;
}

footer .container .signUpBox .row .form-group .form-control::placeholder {
  color: #ddd;
}

footer .container .signUpBox .row .form-group .btn-dark {
  background-color: black;
  color: #4399dd;
  border-radius: 50px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
  text-align: center;
}

footer .container .signUpBox .row .form-group .btn-dark:hover {
  background-color: #222;
}

footer .container .linkList {
  color: white;
  margin-top: 30px;
  margin-bottom: 40px;
}

footer .container .linkList ul.mailUl {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

footer .container .linkList ul.mailUl li.mainLI {
  max-width: 20%;
  float: left;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
  padding: 10px;
  border-left: solid 1px #ffffff08;
}

footer .container .linkList ul.mailUl li.mainLI:nth-child(1) {
  border-left: none;
}

footer .container .linkList ul.mailUl li.mainLI .linkTitle {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #4e8edb;
  font-weight: normal;
  margin: 5px auto;
}

footer .container .linkList ul.mailUl li.mainLI ul {
  margin: auto;
  padding: 0;
  list-style: none;
}

footer .container .linkList ul.mailUl li.mainLI ul li a,
footer .container .linkList ul.mailUl li.mainLI ul li label {
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  display: block;
  margin: auto;
  padding: 5px 0;
  color: white;
  line-height:20px;
}

footer .container .linkList ul.mailUl li.mainLI .socialIcon li {
  display: inline-block;
}

footer .container .linkList ul.mailUl li.mainLI .socialIcon li a {
  display: block;
  padding: 5px;
  font-size: 16px;
  color: #bebaaf;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

footer .container .linkList ul.mailUl li.mainLI .socialIcon li a:hover {
  color: white;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

footer .container .linkList ul.mailUl li.mainLI .contactUs li {
  white-space: nowrap;
}

footer .container .linkList ul.mailUl li.mainLI .contactUs li img {
  margin: auto;
  text-align: center;
  padding-right: 5px;
}

footer .container .linkList ul.mailUl li.mainLI .contactUs li.mailIcon img {
  width: 24px;
  padding-right: 8px;
}

footer .container .FootCont {
  color: #bebaaf;
  position: relative;
}

footer .container .FootCont label {
  padding: 10px 0;
}

footer .container .FootCont .TopUp {
  position: absolute;
  top: -12.5px;
  left: 0;
  right: 0;
  margin: auto;
  width: 25px;
  height: 25px;
  line-height: 25px;
  background-color: #6283dc;
  color: black;
  text-align: center;
  font-size: 20px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-animation: upDown 3s ease-out forwards infinite;
          animation: upDown 3s ease-out forwards infinite;
}

footer .container .FootCont .TopUp:hover {
  background-color: #46b1e9;
}

footer .container .FootCont .TopUp:focus {
  -webkit-transform: translate3d(0px, -100px, 0px);
          transform: translate3d(0px, -100px, 0px);
}

footer .container .FootCont ul {
  margin: auto;
  padding: 0;
  list-style: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: 0;
}

footer .container .FootCont ul li {
  display: inline-block;
}

footer .container .FootCont ul li:nth-child(1) a::after {
  opacity: 0;
  display: none;
}

footer .container .FootCont ul li a {
  color: #4e8edb;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size:12px;
  padding: 10px;
  position: relative;
}

footer .container .FootCont ul li a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1px;
  height: 14px;
  background-color: #4e8edb;
}

.wpcf7 {
  width: 100%;
}

@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  50% {
    -webkit-transform: none;
            transform: none;
  }
  100% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
}

@keyframes upDown {
  0% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  50% {
    -webkit-transform: none;
            transform: none;
  }
  100% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
}

@media only screen and (max-width: 767px) {
  ul.mailUl li.mainLI {
    border: none !important;
  }
}

@media (min-width: 1023px) {
  footer .container .linkList ul.mailUl li.mainLI ul.sec_ul li {
    white-space: nowrap;
  }
}

@media (min-width: 1200px) {
  .FootCont .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
    max-width: 45%;
  }
  .FootCont .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
    max-width: 55%;
  }
}

.banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100% - 115px);
}

.banner video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100vw !important;
  height: 40vw;
  -o-object-position: 0 86%;
     object-position: 0 86%;
  -webkit-filter: brightness(0.85);
          filter: brightness(0.85);
}

.banner video::-webkit-media-controls {
  display: none !important;
}

.banner img.img-fluid.lazyloaded {
  width: 100%;
}

.banner img.ext_img {
  max-height: 500px !important;
}

.banner-box {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  -webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.banner-box .container .row .col-md-6.left {
  margin: auto;
  margin-left: 0;
}

.banner-box .container .row .col-md-6.right {
  margin: auto;
  margin-right: 0;
}

.banner-box .container .row a {
  color: white;
  text-decoration: none;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}

.banner-box .container .row a:hover {
  color: #eee;
}

.banner-box .container .row .banner-bullets {
  padding: 10px 65px;
  width: 250px;
}

.banner-box .container .row .banner-bullets .banner-bullets-title .banner-title {
  font-size: 30px;
  color: white;
  font-weight: 600;
  white-space: nowrap;
  margin-bottom: 26px;
  text-shadow: 0 0px 2px rgba(0, 0, 0, 0.22);
}

.banner-box .container .row .banner-bullets-list {
  width: 230px;
  height: 32px;
  position: relative;
  background: #0e6285;
  color: white;
  letter-spacing: 0.9px;
  padding: 5px 8px;
  margin-bottom: 16px;
  line-height: 22px;
  font-weight: 600;
  font-size: 13px;
}

.banner-box .container .row .banner-bullets-list:before {
  content: "";
  position: absolute;
  right: -12px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 12px solid #0e6285;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}

.banner-box .container .row .banner-bullets-list img {
  float: left;
  margin-right: 5px;
  width: 17px;
  height: auto;
  opacity: 1;
  -webkit-filter: invert(0);
          filter: invert(0);
}

.banner-box .container .row .banner-bullets-list:last-child {
  margin-bottom: 0 !important;
}

.banner-box .container .row .banner-bullets.right {
  float: right;
  position: relative;
}

.banner-box .container .row .banner-bullets.right .banner-bullets-title {
  float: right;
}

.banner-box .container .row .banner-bullets.right .banner-bullets-list {
  float: right;
  text-align: right !important;
}

.banner-box .container .row .banner-bullets.right .banner-bullets-list img {
  float: right;
  margin-right: 0;
  margin-left: 5px;
}

.banner-box .container .row .banner-bullets.right .banner-bullets-list:before {
  left: -12px;
  border-left: none;
  border-right: 12px solid #0e6285;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}

.section1 {
  padding: 50px 0;
}

.section1 .container .titleHead {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}

.section2 {
  background: url(../images/bg1.jpg) center no-repeat;
  background-size: cover;
  color: white;
  padding: 50px 0;
}

.section2 a {
  color: white;
  font-weight: bold;
  text-decoration: underline;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.section2 a:hover {
  color: #ccc;
}

.section2 .row a,
.section2 .row .imgBox {
  text-decoration: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.section2 .row a:hover,
.section2 .row .imgBox:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.section2 .row .imgBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  cursor: pointer;
}

.section2 .row .imgBox label {
  font-size: 20px;
  text-transform: uppercase;
  padding: 10px 0px;
  cursor: pointer;
}

.section3 {
  padding: 50px 0;
}

.section4 {
  padding: 80px 0;
  background: url("../images/bg2.jpg") center no-repeat;
  background-size: 100% 100%;
}

.section4 .container .shapeBox {
  position: relative;
}

.section4 .container .shapeBox .Tshape1,
.section4 .container .shapeBox .Tshape2 {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 1;
  text-align: center;
}

.section4 .container .shapeBox .Tshape1::after,
.section4 .container .shapeBox .Tshape2::after {
  content: "";
  z-index: 0;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
  -webkit-transform: skew(-20deg);
          transform: skew(-20deg);
  background: #4399dd;
}

.section4 .container .shapeBox .Tshape1 label,
.section4 .container .shapeBox .Tshape2 label {
  position: relative;
  z-index: 1;
  color: black;
  font-size: 26px;
  height: 42px;
  line-height: 50px;
  padding-left: 30px;
  padding-right: 25px;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.6px;
}

.section4 .container .shapeBox .Tshape2::after {
  left: 10px;
  background: black;
}

.section4 .container .shapeBox .Tshape2 label {
  padding-left: 35px;
  color: white;
}

.section5 {
  padding: 60px 0;
}

.section5 .container .fildBox .tableBox {
  padding: 0 10px;
}

.section5 .container .fildBox .tableBox .table thead th {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  padding: 15px 6px;
}

.section5 .container .fildBox .tableBox .table tbody tr:nth-of-type(odd) {
  background-color: #e5f6fa;
}

.section5 .container .fildBox .tableBox .table tbody tr td {
  padding: 13px 10px;
  vertical-align: middle;
  white-space: nowrap;
}

.section5 .container .fildBox .tableBox .table tbody tr td img {
  width: 22px;
}

.section5 .container .fildBox .formBox {
  -webkit-box-shadow: 0 5px 16px rgba(0, 0, 0, 0.19);
          box-shadow: 0 5px 16px rgba(0, 0, 0, 0.19);
  border-bottom: solid 2px #4399dd;
  position: relative;
  width: 75%;
  margin: auto;
}

.section5 .container .fildBox .formBox .head {
  -webkit-transform: scale(1.17);
          transform: scale(1.17);
  position: relative;
}

.section5 .container .fildBox .formBox .head p {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 80%;
  padding: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.section5 .container .fildBox .formBox .body {
  padding: 10px 20px;
  text-align: center;
}

.section5 .container .fildBox .formBox .body .form-group {
  margin-bottom: 12px;
}

.section5 .container .fildBox .formBox .body .form-group .form-control {
  border-color: #eee;
  font-size: 14px;
}

.section5 .container .fildBox .formBox .body .form-group .form-control:active, .section5 .container .fildBox .formBox .body .form-group .form-control:focus {
  -webkit-box-shadow: 0 3px 6px #4399dd2e !important;
          box-shadow: 0 3px 6px #4399dd2e !important;
}

.section5 .container .fildBox .formBox .body .form-group .form-control::-webkit-input-placeholder {
  color: #999;
}

.section5 .container .fildBox .formBox .body .form-group .form-control:-ms-input-placeholder {
  color: #999;
}

.section5 .container .fildBox .formBox .body .form-group .form-control::-ms-input-placeholder {
  color: #999;
}

.section5 .container .fildBox .formBox .body .form-group .form-control::placeholder {
  color: #999;
}

.section6 {
  background-image: url("../images/bg3.jpg");
}

.section8 {
  background-image: url("../images/bg4.jpg");
}

.section10 {
  padding: 10px 0;
  margin-bottom: 20px;
}

.section10 p {
  margin-bottom: 1rem !important;
}

.section10 .T {
  position: relative;
}

.section10 .T .titleHead {
  position: relative;
  z-index: 1;
}

.section10 .T span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.section10 .T span::after {
  font-family: "FontAwesome";
  content: "\f10d";
  font-size: 46px;
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  color: #ddd;
  z-index: 0;
  opacity: 0.5;
  text-align: center;
}

.section10 .row:nth-child(odd) .col-lg-6:first-child {
  padding-right: 20px !important;
}

.section10 .row .contBox.pr {
  padding-right: 20px;
}

.section10 .row .contBox.pl {
  padding-left: 20px;
}

.section10 .row .contBox {
  padding-top: 12px;
}

.section10 .row .contBox h3 {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: normal;
  position: relative;
}

.section10 .row .contBox p {
  font-size: 13px;
}

.section10 .row .contBox div {
  padding: 20px 30px;
  font-size: 24px;
  color: #4fc6e0;
  text-align: center;
}

.section10 .row .contBox div::before {
  font-family: "FontAwesome";
  content: "\f10d";
  font-size: 140%;
  color: #4fc6e0;
  float: left;
  margin: -25px 0 0 0;
}

.section10 .row .contBox div::after {
  font-family: "FontAwesome";
  content: "\f10e";
  font-size: 140%;
  color: #4fc6e0;
  float: right;
  margin: 0px -20px 0 0;
}

.section11 {
  padding: 20px 0;
}

.section12 {
  background-color: #ebebeb;
  padding: 50px 0;
  color: black;
}

.section12 .row article {
  margin: 10px 0;
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
}

.section12 .row article .ImgBox {
  position: relative;
  overflow: hidden;
}

.section12 .row article .ImgBox img {
  width: 100%;
  height: auto;
}

.section12 .row article .ImgBox span {
  position: absolute;
  top: 15px;
  left: 0;
  z-index: 1;
}

.section12 .row article .ImgBox span::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 0;
  width: 75px;
  height: 30px;
  background: url(../images/shape2.png) no-repeat left;
  background-size: contain;
}

.section12 .row article .ImgBox span label {
  position: relative;
  z-index: 1;
  height: 30px;
  line-height: 30px;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 500;
}

.section12 .row article .contBox {
  background-color: white;
  padding: 10px;
}

.section12 .row article .contBox h3 {
  font-size: 20px;
}

.section12 .row article .contBox p {
  font-size: 13px;
}

.cmsSection1 {
  padding: 50px 0;
  margin: 0 auto;
}

.cmsSection1 .titleHead {
  font-size: 22px;
  font-weight: 500;
}

.cmsSection1 .titleHead.mainTitle {
  font-size: 26px;
  font-weight: 500;
}

.cmsSection1 .boxPadd p {
  margin-bottom: 5px;
}

.cmsSection1 .list {
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
}

.cmsSection1 .list li {
  line-height: 1.5;
  padding: 10px 0;
  color: #4fc6e0;
  list-style: url(../images/Bullet-blue.png) !important;
}

.cmsSection1 .list li a {
  color: #4fc6e0;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

.cmsSection1 .list li a:hover {
  color: #666;
}

.accordionBox .titleHead {
  font-size: 22px;
}

.accordionBox .accordion {
  margin-bottom: 20px;
}

.accordionBox .card {
  border-radius: 0 !important;
}

.accordionBox .card:hover {
  background-color: #eee;
}

.accordionBox .card .card-header {
  background-color: transparent;
  padding: 0px;
  border-bottom: none;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

.accordionBox .card .card-header .btn-link {
  display: block;
  width: 100%;
  height: 100%;
  text-align: left;
  text-decoration: none;
  color: #333;
  padding: 12px;
}

.accordionBox .card .card-header .btn-link i.fa {
  color: #4fc6e0;
  margin-right: 5px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.accordionBox .card .card-header .btn-link i.fa:hover {
  color: #3da1b8;
}

.accordionBox .card .card-header .btn-link:focus, .accordionBox .card .card-header .btn-link:active, .accordionBox .card .card-header .btn-link:hover {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.accordionBox .card .card-body {
  padding: 5px 15px;
}

.section10.cms ul {
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
}

.section10.cms ul li {
  line-height: 1.5;
  padding: 5px 0;
  color: #4399dd;
  list-style: url(../images/Bullet-blue.png) !important;
}

.section10.cms ul li a {
  color: #4399dd;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

.section10.cms ul li a:hover {
  color: #666;
}

.section10.cms .row:nth-child(odd) .col-lg-6:first-child {
  padding: 0px !important;
}

.section10.cms .col-lg-6 {
  padding: 0px !important;
}

.section10.cms .col-lg-6 .contBox {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.section10.cms .col-lg-6 .contBox p {
  margin-bottom: 5px !important;
}

.pdf_page {
  padding: 50px 0;
}

.pdf_page .box {
  -webkit-box-shadow: 0 0px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0px 8px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  overflow: hidden;
  padding: 15px;
  margin-bottom: 20px;
}

.pdf_page .box .pdfImg {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.pdf_page .box .pdfImg h2 {
  color: #61646c;
}

.pdf_page .box .pdfImg a img {
  padding: 15px 0 !important;
}

.pdf_page .box .pdfImg .downLink {
  display: block;
  padding: 20px 0;
  font-size: 16px;
  font-weight: bold;
}

.pdf_page .box .PDFform {
  padding: 0 10px;
}

.pdf_page .box .PDFform h3 {
  text-align: center;
  color: #007bff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.pdf_page .box .PDFform h6 {
  text-align: center;
  font-size: 14px;
}

.pdf_page .box .PDFform .form-group label {
  font-size: 14px;
}

.pdf_page .box .PDFform .form-group .radio-facility-required {
  display: block;
}

.pdf_page .box .PDFform .form-group .radio-facility-required .form-check-input {
  position: static !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 10px;
  margin: 0;
}

.pdf_page .box .PDFform .form-group .radio-facility-required .form-check-input .wpcf7-list-item-label span {
  margin-left: 5px;
}

.pdf_page .box .PDFform .form-group .radio-facility-required .form-check-input .wpcf7-list-item-label.tab1 span {
  margin-left: 10px;
}

.pdf_page .box .PDFform .form-group .radio-facility-required .form-check-input .wpcf7-list-item-label.tab3 span {
  margin-left: 10px;
}

.pdf_page .box .cont {
  color: #007bff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
}

.pdf_page .box .cont p {
  margin: 0;
}

.tooltip_icon {
  background-color: #007bff;
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 1px 5.5px;
  text-align: center;
  border-radius: 50px;
}

.tooltip .tooltip-inner {
  background-color: #007bff !important;
  color: white;
  border: none;
}

.tooltip .arrow::before {
  border-top-color: #007bff !important;
}

.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,
.bs-tooltip-bottom .arrow::before {
  border-bottom-color: #007bff;
}

.page-top-table {
  width: 80%;
  font-size: 14px;
}

.page-bottom-table {
  width: 60%;
  font-size: 14px;
}

.page-bottom-table tr th h3 {
  font-size: 20px;
  font-weight: bold;
  color: #13213a;
}

.howitworks {
  border: solid 1px #ddd;
  border-radius: 20px;
  overflow: hidden;
}

.howitworks .heading {
  display: block;
  background: #203966;
  color: white;
  font-size: 24px;
  font-weight: bold;
  padding: 15px 10px;
}

.howitworks ol {
  list-style-type: none;
  padding: 15px;
  margin: 0;
}

.howitworks ol li {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 5px solid #dcdcea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.howitworks ol li .num {
  position: relative;
  color: #5e7eb8;
  left: 10px;
  font-size: 42px;
}

.howitworks ol li .list_text {
  padding-left: 30px;
  color: #555;
  font-size: 16px;
}

.blog_section {
  padding: 50px 0px;
}

.blog_section .blog_wrap {
  padding: 20px 0;
}

.blog_section .blog_wrap .blog_box {
  margin-bottom: 30px;
}

.blog_section .blog_wrap .blog_box article {
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 16px rgba(102, 92, 92, 0.1);
          box-shadow: 0 3px 16px rgba(102, 92, 92, 0.1);
  overflow: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.blog_section .blog_wrap .blog_box article:hover {
  -webkit-box-shadow: 0 3px 16px rgba(102, 92, 92, 0.25);
          box-shadow: 0 3px 16px rgba(102, 92, 92, 0.25);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.blog_section .blog_wrap .blog_box article .img_box img {
  width: 100%;
  height: auto;
}

.blog_section .blog_wrap .blog_box article .contain_box {
  padding: 10px;
}

.blog_section .blog_wrap .blog_box article .contain_box h3 {
  font-size: 18px;
}

.blog_section .blog_wrap .blog_box article .contain_box p {
  font-size: 12px;
}

body.Page404, .error404 {
  background-color: #e8fcfe !important;
}

body.Page404 .Section404, .error404 .Section404 {
  padding: 100px 0;
}

body.Page404 .Section404 .imgBox, .error404 .Section404 .imgBox {
  margin: auto;
}

.section-main {
  padding: 50px 0px;
}

.section-main .row {
  width: 100%;
}

.section1.section-main {
  margin-top: -140px;
}

.contact-detial-section .row.mx-auto {
  background: #fff;
  -webkit-filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.1));
  padding: 30px 0;
}

.contact-detial-section .col-md-4.contact-box-main {
  padding: 0 15px;
  text-align: center;
  margin: 0 auto;
  border-right: 1px solid #e5e5e5;
}

.contact-detial-section .col-md-4.contact-box-main:last-child {
  border-right: none;
}

.contact-detial-section .col-md-4.contact-box-main .contact-box-icon {
  height: 50px;
}

.contact-detial-section .col-md-4.contact-box-main .contact-box-icon img {
  height: 30px;
}

.contact-detial-section .col-md-4.contact-box-main .contac-ttl {
  height: 30px;
}

.contact-detial-section .col-md-4.contact-box-main .contac-ttl h3 {
  font-size: 18px;
  color: #342e2e;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-detial-section .col-md-4.contact-box-main span,
.contact-detial-section .col-md-4.contact-box-main address {
  color: #000;
  font-weight: 400;
}

.contact-detial-section .col-md-4.contact-box-main .call-details span {
  float: left;
  width: 100%;
}

.contact-detial-section .col-md-4.contact-box-main address {
  margin-bottom: 0;
}

.contact-detial-section .mail-us .contact-box-icon img {
  height: 25px;
}

section.section-main.contact-form {
  float: left;
  width: 100%;
}

section.section-main.contact-form .contact-form-ttl h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
}

section.section-main.contact-form .contact-us-form input {
  width: 100%;
  padding: 6px 12px;
  height: 45px;
}

section.section-main.contact-form .contact-us-form textarea {
  width: 100%;
  padding: 6px 12px;
  min-height: 150px;
}

section.section-main.contact-form .contact-us-form .submit-form {
  float: right;
  text-align: right;
}

section.section-main.contact-form .contact-us-form .submit-form .btn-enquire {
  padding: 5px 30px;
  font-size: 16px;
  color: #fff;
  background: #4399dd;
  line-height: 23px;
  border-radius: 50px;
  text-transform: uppercase;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

section.section-main.contact-form .contact-us-form .contact-form-ttl {
  margin-bottom: 30px;
}

.map-section .map-location {
  width: 100%;
}

.map-section .map-location iframe {
  width: 100%;
  height: 400px;
}

form.contact-us-form input::-webkit-input-placeholder,
form.contact-us-form textarea ::-webkit-input-placeholder {
  /* Edge */
  text-transform: uppercase;
}

form.contact-us-form input :-ms-input-placeholder,
form.contact-us-form textarea :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  text-transform: uppercase;
}

form.contact-us-form input::-webkit-input-placeholder,
form.contact-us-form textarea::-webkit-input-placeholder {
  text-transform: uppercase;
}

form.contact-us-form input:-ms-input-placeholder,
form.contact-us-form textarea:-ms-input-placeholder {
  text-transform: uppercase;
}

form.contact-us-form input::-ms-input-placeholder,
form.contact-us-form textarea::-ms-input-placeholder {
  text-transform: uppercase;
}

form.contact-us-form input::placeholder,
form.contact-us-form textarea::placeholder {
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  .section1.section-main {
    margin-top: -70px;
  }
  .col-md-4.contact-box-main {
    margin-bottom: 15px !important;
  }
  section.section-main.contact-form .contact-form-ttl h3 {
    font-size: 18px !important;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .section1.section-main {
    margin-top: -100px;
  }
}

@media only screen and (max-width: 767px) {
  header .container .nav {
    margin-top: 35px !important;
  }
  body {
    font-size: 14px;
  }
  .section10 .row .contBox p,
  footer .container .linkList ul.mailUl li.mainLI ul li a,
  footer .container .linkList ul.mailUl li.mainLI ul li label {
    font-size: 14px;
  }
  .btn,
  footer .container .linkList ul.mailUl li.mainLI .linkTitle {
    font-size: 18px !important;
  }
  .fildBox .formBox .head .img-fluid {
    height: 110px !important;
  }
  .size-full,
  .size-large,
  .size-medium {
    width: 100% !important;
    height: auto !important;
  }
  .w-85,
  .w-80 {
    width: 90% !important;
  }
  .mx-sm-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .page-top-table,
  .page-bottom-table {
    width: 100% !important;
  }
  .banner {
    height: auto !important;
  }
  .banner video {
    -o-object-fit: contain !important;
       object-fit: contain !important;
    width: 100% !important;
    height: auto !important;
    position: static !important;
  }
  .banner img.img-fluid.lazyloaded {
    width: 100%;
    height: auto !important;
  }
  .banner-box {
    position: static !important;
    -webkit-transform: none !important;
            transform: none !important;
    padding-top: 25px;
    padding-bottom: 0;
  }
  .banner-box .row .col-md-6 {
    width: 50%;
  }
  .banner-box .row .col-md-6.left {
    margin: auto;
    margin-left: auto !important;
  }
  .banner-box .row .col-md-6.right {
    margin: auto;
    margin-right: auto !important;
  }
  .banner-box .banner-bullets.right .banner-bullets-title .banner-title {
    text-align: right !important;
  }
  .banner-box .banner-bullets-title {
    width: 100%;
    position: static !important;
  }
  .banner-box .banner-bullets-title .banner-title {
    color: black !important;
    margin-bottom: 15px !important;
    overflow: hidden;
    font-size: 16px !important;
  }
  .banner-box .banner-bullets {
    width: auto !important;
    padding: 0px !important;
    float: unset !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .banner-box .banner-bullets .banner-bullets-list {
    width: 100% !important;
    padding: 5px !important;
    line-height: 22px !important;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .cmsSection1 .row .pt-xs-4 {
    padding-top: 20px;
  }
  .titleHead {
    font-size: 22px !important;
  }
  .lineShape:before, .lineShape:after {
    display: none;
  }
  .section4 {
    background-size: cover;
  }
  .section4 .shapeBox .Tshape1,
  .section4 .shapeBox .Tshape2 {
    margin: -1px;
  }
  .section4 .shapeBox .Tshape1::after, .section4 .shapeBox .Tshape1::before,
  .section4 .shapeBox .Tshape2::after,
  .section4 .shapeBox .Tshape2::before {
    height: 40px !important;
  }
  .section4 .shapeBox .Tshape1 label,
  .section4 .shapeBox .Tshape2 label {
    font-size: 16px !important;
    height: 40px !important;
    line-height: 40px !important;
  }
  .section5 .fildBox .tableBox {
    margin-bottom: 20px;
  }
  .section5 .fildBox .tableBox tr td,
  .section5 .fildBox .tableBox tr th {
    padding: 5px !important;
    font-size: 12px;
    white-space: unset !important;
  }
  .section5 .fildBox .formBox {
    width: 90% !important;
  }
  .section10 .row {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    height: auto !important;
  }
  .section10 .row:nth-child(odd) .col-lg-6:first-child {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .section10 .row .contBox {
    padding: 10px 0 !important;
  }
  .section10 .row .contBox.pr,
  .section10 .row .contBox.pl {
    padding: 0;
  }
  footer .signUpBox .box1 {
    text-align: center;
    margin: auto;
  }
  footer .signUpBox .box2 {
    margin: 10px auto;
  }
  footer .linkList {
    margin-top: 15px !important;
    margin-bottom: 30px !important;
  }
  footer .linkList .mailUl {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  footer .linkList .mailUl .contactUs .mailIcon a {
    display: block !important;
  }
  footer .FootCont label {
    text-align: center;
  }
  footer .FootCont ul {
    width: 100% !important;
    text-align: center;
  }
}

@media (min-width: 414px) and (max-width: 492px) {
  .titleHead {
    font-size: 16px !important;
  }
  .titleHead span:after, .titleHead span::before {
    height: 20px !important;
  }
  .banner-box .banner-bullets-title .banner-title {
    font-size: 13px !important;
  }
  .banner-bullets-list {
    font-size: 10px !important;
  }
}

@media (min-width: 320px) and (max-width: 413px) {
  .banner-box .banner-bullets-title .banner-title {
    font-size: 11px !important;
  }
  .banner-bullets .banner-bullets-list {
    font-size: 8px !important;
  }
  .section4 .shapeBox .Tshape1 label,
  .section4 .shapeBox .Tshape2 label {
    font-size: 14px !important;
    height: 40px !important;
    line-height: 40px !important;
  }
  .banner-bullets-title .banner-title {
    color: black !important;
    font-size: 13px !important;
  }
  .titleHead {
    font-size: 14px !important;
  }
  .titleHead span:after, .titleHead span::before {
    height: 20px !important;
  }
  .section5 .fildBox .tableBox {
    margin-bottom: 20px;
  }
  .section5 .fildBox .tableBox tr td,
  .section5 .fildBox .tableBox tr th {
    padding: 5px !important;
    font-size: 12px;
  }
  .section5 .fildBox .formBox {
    width: 90% !important;
  }
}

@media (min-width: 320px) and (max-width: 359px) {
  .fildBox .formBox .head .img-fluid {
    height: 130px !important;
  }
  .titleHead {
    font-size: 12px !important;
  }
  .banner-box .banner-bullets-title .banner-title {
    margin-bottom: 8px !important;
  }
  .banner-bullets .banner-bullets-list {
    font-size: 6px !important;
    margin-bottom: 6px !important;
  }
  .banner-box .container .row .banner-bullets-list {
    width: 100% !important;
    padding: 5px !important;
    line-height: 14px !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 24px !important;
  }
  .banner-box .container .row .banner-bullets.right .banner-bullets-list:before {
    left: -12px;
    border-left: none;
    border-right: 12px solid #0e6285;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }
  .banner-box .container .row .banner-bullets-list:before {
    content: "";
    position: absolute;
    right: -12px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 12px solid #0e6285;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }
  .banner-box .container .row .banner-bullets-list img {
    width: 12px;
  }
  .section4 .shapeBox .Tshape1,
  .section4 .shapeBox .Tshape2 {
    margin: -1px;
    line-height: 20px;
  }
  .section4 .shapeBox .Tshape1 label,
  .section4 .shapeBox .Tshape2 label {
    font-size: 11px !important;
    height: 32px !important;
    line-height: 32px !important;
  }
  .section4 .shapeBox .Tshape1::after,
  .section4 .shapeBox .Tshape1::before,
  .section4 .shapeBox .Tshape2::after,
  .section4 .shapeBox .Tshape2::before {
    height: 32px !important;
  }
  .titleHead span:after,
  .titleHead span::before {
    height: 14px !important;
  }
}

@media (min-width: 360px) and (max-width: 410px) {
  .fildBox .formBox .head .img-fluid {
    height: 125px !important;
  }
}

@media screen and (max-device-width: 767px) and (orientation: landscape) {
  .banner .banner-box .col-md-6 .banner-bullets .banner-bullets-list {
    font-size: 12px !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .lineShape:before, .lineShape:after {
    width: 50px !important;
  }
  body .titleHead {
    font-size: 18px !important;
  }
  body .titleHead span:before, body .titleHead span:after {
    height: 22px !important;
  }
  .banner {
    height: auto !important;
  }
  .banner video {
    width: 100% !important;
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .banner img.img-fluid.lazyloaded {
    width: 100%;
    height: auto !important;
  }
  .banner-box .banner-bullets-title:before {
    right: 0 !important;
    left: 0 !important;
    margin: auto !important;
    -webkit-transform: rotate(90deg) !important;
            transform: rotate(90deg) !important;
    top: 6px !important;
    bottom: 15px !important;
  }
  .banner-box .banner-bullets-title .banner-title {
    font-size: 14px !important;
    line-height: 18px !important;
    margin-bottom: 10px !important;
  }
  .banner-box .banner-bullets.left {
    padding: 10px 20px !important;
    float: unset !important;
  }
  .banner-box .banner-bullets.left .banner-bullets-list {
    width: 160px !important;
    height: 18px !important;
    font-size: 8px !important;
    padding: 0px 8px !important;
    line-height: 18px !important;
    margin-bottom: 12px !important;
  }
  .banner-box .banner-bullets.left .banner-bullets-list img {
    width: 13px !important;
    margin-top: 1px !important;
  }
  .banner-box .banner-bullets.left .banner-bullets-list:before {
    right: -9px !important;
    border-left: 9px solid #0e6285 !important;
    border-top: 9px solid transparent !important;
    border-bottom: 9px solid transparent !important;
  }
  .banner-box .banner-bullets.right {
    float: right !important;
    padding: 10px 20px !important;
  }
  .banner-box .banner-bullets.right .banner-bullets-title {
    margin-bottom: 0px !important;
    position: static !important;
  }
  .banner-box .banner-bullets.right .banner-bullets-title .banner-title {
    font-size: 14px !important;
    line-height: 18px !important;
    margin-bottom: 10px !important;
  }
  .banner-box .banner-bullets.right .banner-bullets-list {
    width: 160px !important;
    height: 18px !important;
    font-size: 8px !important;
    padding: 0px 8px !important;
    line-height: 18px !important;
    margin-bottom: 12px !important;
  }
  .banner-box .banner-bullets.right .banner-bullets-list img {
    width: 13px !important;
    margin-top: 1px !important;
  }
  .banner-box .banner-bullets.right .banner-bullets-list:before {
    left: -9px !important;
    right: 0 !important;
    border-right: 9px solid #0e6285 !important;
    border-top: 9px solid transparent !important;
    border-bottom: 9px solid transparent !important;
  }
  .section5 .fildBox .tableBox {
    margin-bottom: 30px;
  }
  .section5 .fildBox .formBox .head img {
    width: 100%;
  }
  .section5 .fildBox .formBox .head p {
    font-size: 18px !important;
  }
  .section10 .row {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    height: auto !important;
  }
  .section10 .row:nth-child(odd) .col-lg-6:first-child {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .section10 .row .contBox {
    padding: 10px 0 !important;
  }
  .section10 .row .contBox.pr,
  .section10 .row .contBox.pl {
    padding: 0;
  }
  header .topCont {
    text-align: center;
    padding: 8px 0;
  }
  header .topCont ul {
    margin: auto !important;
  }
  header .navbarWrap .container {
    padding: 0;
  }
  header .navbarWrap .RequestQuote {
    text-align: center !important;
    line-height: 50px !important;
    padding: 0 30px;
    bottom: -3px !important;
  }
  header .navbarWrap .onMobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    width: 100%;
  }
  header .navbarWrap .onMobile .navbar-brand h1 {
    margin-left: 15px;
  }
  header .navbarWrap .onMobile .navbar-brand img {
    margin-top: -15px !important;
  }
  header .navbarWrap .onMobile .navbar-toggler {
    color: white !important;
    background: #2e4369 !important;
    border-color: #2e4369 !important;
    border-radius: 0 !important;
  }
  header .navbarWrap .navbar-nav {
    -webkit-box-shadow: 0px 4px 8px #0000000a;
            box-shadow: 0px 4px 8px #0000000a;
    margin-bottom: 15px;
  }
  header .navbarWrap .navbar-nav .nav-item.active::after {
    display: none;
  }
  header .navbarWrap .navbar-nav .nav-item .nav-link {
    border-bottom: solid 1px #f3f3f3;
  }
  header .navbarWrap .navbar-nav .nav-item .nav-link::before {
    content: "";
    display: none;
  }
  footer .signUpBox .box1 {
    text-align: center;
    margin: auto;
  }
  footer .signUpBox .box2 {
    margin: 10px auto;
  }
  footer .linkList {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  footer .linkList .mailUl {
    display: block !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  footer .linkList .mailUl .mainLI {
    width: 50% !important;
    padding: 10px 20px;
    border: none;
  }
  footer .linkList .mailUl .mainLI .contactUs .mailIcon a {
    display: block !important;
  }
  footer .FootCont {
    text-align: center;
  }
  footer .FootCont label {
    text-align: center;
  }
  footer .FootCont ul {
    width: 100% !important;
    text-align: center;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .FootCont .row .col-xl-7 {
    text-align: center;
  }
  .FootCont .row .col-xl-5 ul {
    margin: auto;
  }
  .banner {
    height: auto !important;
  }
  .banner video {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .banner-box .banner-bullets.left {
    padding: 10px 20px !important;
    float: unset !important;
  }
  .banner-box .banner-bullets.left .banner-bullets-list {
    width: 180px !important;
    height: 20px !important;
    font-size: 9px !important;
    padding: 0px 8px !important;
    line-height: 20px !important;
  }
  .banner-box .banner-bullets.left .banner-bullets-list img {
    width: 13px !important;
    margin-top: 2px !important;
  }
  .banner-box .banner-bullets.left .banner-bullets-list:before {
    right: -10px !important;
    border-left: 10px solid #0e6285 !important;
    border-top: 10px solid transparent !important;
    border-bottom: 10px solid transparent !important;
  }
  .banner-box .banner-bullets.right {
    float: right !important;
    padding: 10px 20px !important;
  }
  .banner-box .banner-bullets.right .banner-bullets-list {
    width: 180px !important;
    height: 20px !important;
    font-size: 9px !important;
    padding: 0px 8px !important;
    line-height: 20px !important;
  }
  .banner-box .banner-bullets.right .banner-bullets-list img {
    width: 13px !important;
    margin-top: 2px !important;
  }
  .banner-box .banner-bullets.right .banner-bullets-list:before {
    left: -10px !important;
    right: 0 !important;
    border-right: 10px solid #0e6285 !important;
    border-top: 10px solid transparent !important;
    border-bottom: 10px solid transparent !important;
  }
}
/*# sourceMappingURL=style.css.map */