/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Lexend+Exa:wght@400;600;700&display=swap");
/*Main Css */
::selection {
  background: #f37d38;
  color: #fff;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
  border-radius: 10px;
  background-color: #f37d38;
}

input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-calendar-picker-indicator,
input[type=time]::-webkit-inner-spin-button,
input[type=time]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

/* Tabbing CSS */
[class^=box-] {
  display: none;
}

[class^=box-].showfirst {
  display: block;
}

/* Accordion CSS */
.myaccordion li .faq-opt {
  display: none;
}

.myaccordion li.active .faq-opt {
  display: block;
}

.myaccordion li.active .faq-ang h4:before {
  content: "\f077";
}

body {
  font-family: "Lexend Exa", sans-serif;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lexend Exa", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}

h1 {
  font-size: 48px;
}

.theme-btn {
  background: #f37d38;
  padding: 14px 20px;
  display: inline-block;
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px double transparent;
  font-weight: 600;
}
.theme-btn:hover {
  color: #f37d38;
  border-color: #f37d38;
  background: transparent;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.15);
}

*:hover,
*:focus,
* {
  outline: none !important;
}

a,
input[type=submit] {
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

a:hover {
  color: #fff;
}

textarea,
select,
input[type],
textarea,
select,
button {
  background: transparent;
  border: none;
  border-radius: 0px;
}

::-webkit-input-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

::-moz-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

:-ms-input-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

:-moz-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

::-moz-placeholder {
  opacity: 1;
}

/* Padding Classes */
.spad {
  padding: 5rem 0;
}

.pad-zero {
  padding: 0px;
}

.pad-l-zero {
  padding-left: 0px;
}

.pad-r-zero {
  padding-right: 0px;
}

.ovr-hiddn {
  overflow: hidden;
}

.overlay:after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.overlay {
  display: none;
}

.overlay.active {
  display: block;
}

/* Custom Slick Css */
.slick-slide {
  margin: 0 15px;
}

.slick-list {
  margin: 0 -15px;
}

.slick-dots {
  padding: 50px 0 0;
  text-align: center;
}

.slick-dots li {
  margin: 0 20px 0 0px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  padding: 0px;
  border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
  color: #fff;
  opacity: 1;
  font-size: 20px;
}

.slick-dots li button {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  padding: 0px;
  background: #d6d6d6;
  border: none;
  cursor: pointer;
  font-size: 0px;
  padding: 0px;
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  box-sizing: border-box;
}

.slick-dots li.slick-active button {
  background: #f37d38;
  width: 11px;
  height: 11px;
}

/* Hamburger Menu */
.menu-Bar {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: relative;
  top: 0;
  bottom: 0px;
  margin: auto;
  z-index: 999;
  display: none;
}

.menu-Bar span {
  display: block;
  height: 4px;
  width: 100%;
  background: #f37d38;
  position: absolute;
  transition: 0.6s all;
  border-radius: 100px;
}

.menu-Bar span:nth-child(1) {
  top: 0;
}

.menu-Bar span:nth-child(2) {
  top: 8px;
  transform-origin: left;
}

.menu-Bar span:nth-child(3) {
  top: 16px;
}

.menu-Bar.open span {
  background: #f37d38;
}

.menu-Bar.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
  transform-origin: right-center;
}

.menu-Bar.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.menu-Bar.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 12px;
  transform-origin: right-center;
}

/* Menu Css */
.menuWrap {
  display: flex;
  justify-content: center;
  background: rgba(7, 118, 195, 0.5);
  margin-top: 30px;
}

.menu {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

.menu li {
  display: inline-block;
  vertical-align: middle;
}

.menu li a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
}

.menu > li:hover > a,
.menu > li.active > a {
  color: #faee1c;
}

/* Menu Dropdown CSS */
.menu li.dropdown-nav {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.menu li.dropdown-nav > a:after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-size: 14px;
  padding-left: 10px;
}

ul.dropdown {
  position: absolute;
  min-width: 100%;
  width: 250px;
  left: 50%;
  transform: translateX(-50%);
  background: #0776c3;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  top: 200%;
  transition: 0.5s top;
  z-index: 999;
  border-radius: 10px;
  overflow: hidden;
}

ul.dropdown li {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
}

ul.dropdown li a {
  background: transparent;
  line-height: 1.5;
  display: block;
}
ul.dropdown li a:hover {
  background: #0f4c97;
  color: #faee1c;
}

ul.dropdown li.active a {
  background: #1460bf;
  color: #faee1c;
}

ul.dropdown li.last a {
  margin-bottom: 0px;
}

a.logo img {
  max-width: 100%;
}

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 30px 0;
}
.main-header .h_r a {
  color: #fff;
  font-size: 16px;
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
}
.main-header .h_r a:hover {
  color: #faee1c;
}
.main-header .h_r a:hover i {
  color: #fff;
}
.main-header .h_r a i {
  font-size: 24px;
  margin-right: 12px;
}

.hasTransparentBg {
  position: relative;
}
.hasTransparentBg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hasTransparentBg .container-fluid {
  position: relative;
}

.container-fluid {
  padding-left: 7vw;
  padding-right: 7vw;
}

/* Main Banner CSS */
.mainBanner {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding-bottom: 10%;
  padding-top: 25%;
  border-bottom: 30px solid #5dc5eb;
}
.mainBanner h1 {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 15px;
}
.mainBanner p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
}

.s1 {
  text-align: center;
  overflow: hidden;
}
.s1 h1 {
  margin-bottom: 50px;
}
.s1 .s1_1 a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: underline;
  margin-top: 15px;
}
.s1 .s1_1 a:hover {
  color: #faee1c;
}
.s1 .s1_1 p {
  padding: 0 20px;
  margin: 0;
}
.s1 .s1_1 .s1_title {
  font-size: 20px;
  font-weight: bold;
  padding: 0;
  color: #fff;
  text-decoration: none;
  margin: 25px 0 15px 0;
  text-transform: uppercase;
}
.s1 .s1_1 .s1_2 {
  height: 370px;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-top: 0;
}
.s1 .s1_1 .s1_2 img {
  max-height: 100%;
}
.s1 .theme-btn {
  margin-top: 100px;
}

.s1_slider .slick-arrow {
  position: absolute;
  top: 30%;
  color: #fff;
  cursor: pointer;
  font-size: 28px;
}
.s1_slider .slick-arrow.arr_l {
  left: -60px;
}
.s1_slider .slick-arrow.arr_r {
  right: -60px;
}

.s2 {
  text-align: center;
}
.s2 h1 {
  margin-bottom: 50px;
}
.s2 h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.s2 h3 {
  font-size: 48px;
  margin-bottom: 20px;
}
.s2 p {
  margin-bottom: 20px;
}
.s2 .theme-btn {
  margin-top: 60px;
}
.s2 .s2_1 {
  background: #fff;
  border-radius: 30px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 40px;
}
.s2 .s2_1 img {
  margin: 30px;
}
.s2 .s2_2 {
  display: block;
  color: #fff;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
}
.s2 .s2_2 span {
  display: block;
  margin-top: 5px;
}
.s2 .s2_2 span small {
  display: block;
}
.s2 .s2_3 {
  width: 100%;
  border-radius: 30px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 172px;
  overflow: hidden;
}
.s2 .s2_4 {
  margin-top: 40px;
}
.s2 .s2_4 p {
  margin: 0;
}
.s2 .s2_4 p a {
  color: #fff;
  text-decoration: underline;
}
.s2 .s2_4 p a:hover {
  color: #faee1c;
}
.s2 .s2_5 {
  margin-top: 80px;
}

.site-footer {
  background: #1a1a1a;
  padding-top: 4rem;
  font-size: 16px;
}
.site-footer .sf_1 a {
  color: #fff;
}
.site-footer .sf_1 a:hover {
  color: #faee1c;
}
.site-footer .sf_2 p:first-child {
  margin-bottom: 35px;
}
.site-footer .sf_2 p {
  line-height: 1.2;
  display: flex;
  margin-bottom: 30px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  line-height: 2.5;
}
.site-footer p {
  line-height: 2;
}
.site-footer p i {
  margin-right: 15px;
  min-width: 20px;
  text-align: center;
}

.ftr_btm {
  background: #0770d0;
  text-align: center;
  font-weight: bold;
  margin-top: 4rem;
}
.ftr_btm p {
  margin: 0;
  padding: 6px 0;
}

/* Inner Banner */
.innerBanner {
  min-height: inherit;
  max-height: 800px;
  text-align: center;
  padding-bottom: 8%;
}

.s1_inner .row {
  --bs-gutter-y: 5rem;
}

.team_comp_sec h2 {
  font-size: 48px;
  margin-bottom: 30px;
  text-align: center;
}

.tmc_1 p {
  line-height: 2.5;
}

.tmc_2 {
  margin-top: -50px;
}

.accordions {
  padding: 0;
  margin: 0;
  list-style: none;
}
.accordions p {
  margin: 0;
}
.accordions .acc_title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 30px;
  background: rgba(39, 39, 39, 0.9);
  cursor: pointer;
}
.accordions .acc_title:hover {
  background: #1e1e1e;
  color: #faee1c;
}
.accordions .acc_title i {
  font-size: 24px;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  margin-left: 30px;
}
.accordions .acc_desc {
  padding: 20px 120px 20px 30px;
  background: rgba(46, 46, 46, 0.9);
  line-height: 30px;
}
.accordions .acc_desc a {
  color: #fff;
}
.accordions li.active i {
  transform: rotate(180deg);
}

.tmc_3 {
  margin-top: 0;
}
.tmc_3 > p:nth-child(2) {
  font-size: 16px;
  text-align: center;
  margin-bottom: 60px;
}

.elite_runner_sec {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.elite_runner_sec h1 {
  text-align: center;
  margin-bottom: 40px;
}
.elite_runner_sec p {
  margin-bottom: 30px;
}

.con1 .section_head {
  text-align: center;
  margin-bottom: 80px;
}
.con1 .section_head h1 {
  margin-bottom: 20px;
}
.con1 .section_head p {
  line-height: 30px;
  padding: 0 30px;
}

.con1_1 {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 20px;
  height: 100%;
}
.con1_1 p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}
.con1_1 p a {
  color: #fff;
}
.con1_1 p a:hover {
  color: #faee1c;
}
.con1_1 span {
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  display: block;
  margin-bottom: 5px;
}
.con1_1 img {
  margin-right: 20px;
}

.contact_form {
  background: rgba(255, 255, 255, 0.85);
  padding: 30px 40px;
  padding-bottom: 10px;
  margin-top: 60px;
  border-radius: 10px;
}
.contact_form h2 {
  font-family: "Lexend Exa", sans-serif;
  padding-left: 8px;
  font-size: 30px;
  color: #000;
}
.contact_form p {
  font-size: 15px;
  font-weight: 600;
  color: #777777;
  margin-bottom: 10px;
  padding-left: 8px;
}
.contact_form label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #222222;
  text-transform: uppercase;
  padding: 0 8px;
  margin-bottom: 10px;
}
.contact_form input,
.contact_form textarea {
  width: 100%;
  background: #fff;
  margin-bottom: 30px;
  padding: 15px;
}
.contact_form textarea {
  height: 200px;
}
.contact_form input[type=submit] {
  background: #f37d38;
  padding: 15px 50px;
  display: inline-block;
  color: #fff;
  border-radius: 100px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px double transparent;
  width: auto;
  margin-top: 0;
}
.contact_form input[type=submit]:hover {
  background: #e36e2a;
}

@media (max-width: 1599px) {
  h1 {
    font-size: 42px;
  }

  .container-fluid {
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .main-header {
    padding: 15px 0;
  }

  .menu li a {
    padding: 10px 15px;
    font-size: 14px;
  }

  .mainBanner {
    padding-bottom: 5%;
  }

  .main-header .h_r a {
    font-size: 14px;
  }

  .mainBanner h1 {
    font-size: 60px;
  }

  a.logo img {
    width: 160px;
  }

  .s1_slider .slick-arrow.arr_l {
    left: -30px;
  }

  .s1_slider .slick-arrow.arr_r {
    right: -30px;
  }

  .s1 .s1_1 .s1_2 {
    height: 300px;
  }

  .tmc_2 {
    margin-top: 0;
  }

  .site-footer {
    font-size: 14px;
  }
  .site-footer .row .col-md-3 {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }
  .site-footer .row .col-md-9 {
    width: 100%;
  }

  .s2 h3 {
    font-size: 42px;
  }
}
@media (min-width: 1200px) {
  .dropdown-nav:hover ul.dropdown {
    top: 100%;
    opacity: 1;
    visibility: visible;
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .menu-Bar {
    display: inline-block;
    top: 0px;
  }

  .menu {
    display: block;
    padding: 40px 30px;
    width: 100%;
    margin: auto;
  }

  .menuWrap.open {
    left: 0px;
  }

  .menuWrap {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    margin: auto;
    background: #0f4c97;
    overflow-y: auto;
    transition: 0.5s all ease;
  }

  ul.dropdown {
    position: relative;
    display: none;
    opacity: 1;
    visibility: visible;
    top: 0;
  }
  ul.dropdown li:last-child > a {
    border: 0;
  }

  ul.menu li {
    display: block;
  }

  ul.menu > li:last-child > a {
    border: 0;
  }

  ul.menu li a {
    margin-bottom: 10px;
    padding: 10px 15px;
    display: block;
    text-align: center;
    margin-bottom: 0;
    margin-right: 0px;
    color: #fff;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  header .main-header ul.menu > li {
    display: block;
    margin: 0px;
    padding: 0;
  }

  header .main-header ul.menu > li a:before {
    display: none;
  }

  .mainBanner {
    min-height: inherit;
    background-attachment: scroll !important;
  }

  .mainBanner h1 {
    font-size: 48px;
  }

  .main-header .row {
    align-items: center;
  }

  .main-header .h_r a {
    margin-bottom: 12px;
  }

  .main-header .h_r a i {
    font-size: 18px;
  }

  .s1 .s1_1 .s1_2 {
    height: 240px;
  }

  .s2 h1 {
    margin-bottom: 40px;
  }

  .s2 h3 {
    font-size: 36px;
  }

  .s2 .s2_1 {
    margin-right: 0;
  }

  .contact_form label {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 36px;
  }

  .s1_slider {
    padding: 0 40px;
  }

  .s1_slider .slick-arrow.arr_l {
    left: -5px;
  }

  .s1_slider .slick-arrow.arr_r {
    right: -5px;
  }

  .s2 h2 {
    margin-bottom: 10px;
  }

  .s2 h3 {
    font-size: 28px;
  }

  .s2 .theme-btn {
    margin-top: 30px;
  }

  .site-footer .col-md-9 .d-flex {
    flex-wrap: wrap;
  }
  .site-footer .col-md-9 .d-flex .sf_1 {
    flex: 0 0 auto;
    width: 50%;
    margin-bottom: 40px;
  }

  .team_comp_sec h2 {
    font-size: 36px;
  }

  .con1_1 {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 30px;
  }

  .main-header .h_r a {
    margin-right: 0;
  }
  .main-header .h_r a i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid #fff;
    color: #fff;
  }
  .main-header .h_r a span {
    display: none;
  }

  a.logo img {
    width: 100px;
  }

  .mainBanner h1 {
    font-size: 36px;
  }

  .mainBanner .theme-btn {
    margin-bottom: 30px;
  }

  .s1 .theme-btn {
    margin-top: 50px;
  }

  .s2 .s2_1 {
    max-width: 75%;
    margin: 0 auto 30px auto;
  }
  .s2 .s2_1 img {
    max-width: 75%;
  }

  .s2 h3 {
    font-size: 24px;
  }

  .spad {
    padding: 3rem 0;
  }

  .team_comp_sec h2 {
    font-size: 30px;
  }

  .tmc_1 figure {
    max-width: 50%;
    margin: 0 auto 50px auto;
  }

  .accordions .acc_title {
    font-size: 14px;
  }

  .contact_form {
    background: rgba(255, 255, 255, 0.85);
    padding: 20px;
  }

  .contact_form h2 {
    font-size: 24px;
  }

  .contact_form label {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  body {
    font-size: 12px;
    line-height: 22px;
  }

  h1 {
    font-size: 24px;
  }

  ul.menu li a {
    font-size: 14px;
  }

  .mainBanner {
    padding-top: 50%;
  }

  .mainBanner h1 {
    font-size: 28px;
  }

  .mainBanner p {
    font-size: 14px;
  }

  .s1 .s1_1 .s1_2 {
    height: 200px;
  }

  .s2 .row {
    --bs-gutter-x: 0.5rem;
  }

  .s2 .s2_3 {
    height: 120px;
  }

  .site-footer {
    font-size: 12px;
  }

  .site-footer .col-md-9 .d-flex .sf_1 {
    flex: 0 0 auto;
    width: 100%;
  }
  .site-footer .col-md-9 .d-flex .sf_1:last-child {
    margin-bottom: 0;
  }

  .main-header .h_r a {
    margin: 4px 0;
  }

  .team_comp_sec h2 {
    font-size: 24px;
  }

  .accordions .acc_title {
    padding: 10px 20px;
  }

  .accordions .acc_desc {
    padding: 20px;
  }

  .accordions .acc_title i {
    font-size: 18px;
  }

  .tmc_3 > p:nth-child(2) {
    font-size: 14px;
  }

  .con1 .section_head p {
    padding: 0;
  }

  .contact_form h2 {
    font-size: 20px;
  }

  .contact_form p {
    font-size: 14px;
  }

  .contact_form input,
.contact_form textarea {
    margin-bottom: 20px;
    padding: 12px;
  }

  .sf_1 p:first-child {
    margin-bottom: 10px;
    font-weight: bold;
  }

  .ftr_btm p {
    font-weight: normal;
    font-size: 12px;
  }
}

/*# sourceMappingURL=style.css.map */
