@import url('../css/fontawesome-all.min.css');

/**** custom fonts start ****/
@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-Thin.woff2') format('woff2'),
    url('../fonts/Onest-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-ExtraLight.woff2') format('woff2'),
    url('../fonts/Onest-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-Light.woff2') format('woff2'),
    url('../fonts/Onest-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-Regular.woff2') format('woff2'),
    url('../fonts/Onest-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-Medium.woff2') format('woff2'),
    url('../fonts/Onest-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-SemiBold.woff2') format('woff2'),
    url('../fonts/Onest-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-Bold.woff2') format('woff2'),
    url('../fonts/Onest-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-ExtraBold.woff2') format('woff2'),
    url('../fonts/Onest-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Onest';
  src: url('../fonts/Onest-Black.woff2') format('woff2'),
    url('../fonts/Onest-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/**** custom fonts end ****/
:root {
  --logoWidth: 101px;
  --pageCenter: 1230px;
  --bodyFontFamily: "Onest", sans-serif;
  --bodyFontColor: #09246c;
  --bodyFont: 16px;
  --bodyLineHeight: 24px;
  --linkColor: #febd34;
  --headerSpace: 175px;
  --btnFontFamily: "Onest", sans-serif;
  --btnFont: 16px;
  --btnColor: #192f59;
  --btnBg: #febd34;
  --btnBorder: 1px solid #febd34;
  --btnBorderRadius: 40px;
  --btnPadding: 6.75px 15px;
  --btnBgHover: #fff;
  --btnSecondaryColor: #fff;
  --btnSecondaryBg: #192f59;
  --btnSecondaryBorder: 1px solid #192f59;
  --btnSecondaryHoverColor: #192f59;
  --btnSecondaryBgHover: #fff;
}

html:has(header:not(.header-top p)):root {
  --headerSpace: 146px;
}

html.head-fix:root,
html.head-fix:has(header:not(.header-top p)):root {
  --headerSpace: 138px;
}

html {
  overflow-x: hidden;
  font-size: var(--bodyFont);
  line-height: var(--bodyLineHeight);
}

body {
  color: var(--bodyFontColor);
  font-size: 100%;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  line-height: inherit;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

* {
  border: none;
  margin: 0;
  outline: none !important;
  padding: 0;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

label {
  font-size: 18px;
  display: block;
  margin: 0 0 8px;
  font-weight: 500;
}

label.auto {
  display: inline-block;
  margin: 5px 40px 5px 0
}

label.auto:last-child {
  margin-right: 0
}

ul,
ol {
  list-style: none
}

a {
  color: var(--linkColor);
  text-decoration: none
}

u {
  text-underline-offset: 3px;
}

strong {
  font-weight: 600;
}

a:hover,
a:focus {
  color: inherit;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

img.full {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bodyFontFamily);
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 15px;
}

.h1,
h1 {
  font-size: 40px;
}

.h2,
h2 {
  font-size: 35px;
}

.h3,
h3 {
  font-size: 30px;
}

.h4,
h4 {
  font-size: 25px;
}

.h5,
h5 {
  font-size: 22px;
}

.h6,
h6 {
  font-size: 18px;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-weight: 700;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0
}

/***** wp ******/
.aligncenter {
  display: block;
  margin: 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 15px 10px;
}

.alignleft {
  float: left;
  margin: 5px 10px 15px 0;
}

.alignnone {
  margin: 10px 0;
}

.alignblock {
  margin: 10px 0;
  float: none;
  width: 100%;
  display: block;
}

.alignright.shadow {
  -webkit-box-shadow: -25px 25px 40px rgba(0, 0, 0, 0.16);
  box-shadow: -25px 25px 40px rgba(0, 0, 0, 0.16);
  margin-left: 105px;
  margin-bottom: 40px;
}

p.pn {
  padding: 0;
  margin: 0
}

p {
  margin: 0 0 25px;
}

p+ul,
p+ol {
  margin-top: -6px
}

ul {
  margin: 0 0 25px
}

ul li {
  position: relative;
  padding: 0 0 7px 22px;
  overflow: hidden;
}

ul li:before {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-size: 12px;
  color: var(--bodyFontColor);
  display: inline-block;
  line-height: 1;
  position: absolute;
  left: 2px;
  top: 7px
}

ul.bullet li:before {
  content: "\f111";
  font-weight: 900;
  font-size: 9px;
}

ul.color.bullet li:nth-child(4n + 1):before {
  color: #39c0c4;
}

ul.color.bullet li:nth-child(4n + 2):before {
  color: #f16364;
}

ul.color.bullet li:nth-child(4n + 3):before {
  color: #6dc497;
}

ul.color.bullet li:nth-child(4n + 4):before {
  color: #ffcd34;
}

ol {
  padding-left: 26px;
  margin: 0 0 25px;
  text-align: left;
  overflow: hidden
}

ol li {
  list-style: decimal;
  padding-bottom: 7px;
  padding-left: 0;
}

ol li ul>li {
  padding-left: 20px;
  list-style: none
}

ol li ul>li:before {
  display: block;
  left: 1px
}

ul ol li {
  overflow: visible
}

ul ol li:before {
  display: none;
  overflow: visible
}

ol ol li {
  list-style: lower-alpha
}

ol ol ol li {
  list-style: lower-roman
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-top: 12px;
  margin-bottom: 5px
}

ul li:last-child,
ol li:last-child {
  padding-bottom: 0
}

ul.check-list>li {
  padding-left: 45px;
  min-height: 27px;
}

ul.check-list>li::before {
  content: "";
  display: block;
  width: 27px;
  height: 27px;
  background: url('../img/check-icon.png') center center no-repeat;
  left: 8px;
  top: 0;
}

.text-center ul {
  text-align: left;
  display: table;
  margin-left: auto;
  margin-right: auto
}

.list-none li {
  padding-left: 0
}

.list-none li:before {
  display: none;
}

p:last-child,
ol:last-child,
ul:last-child,
ol ul:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0
}

.text-center {
  text-align: center
}

.text-left {
  text-align: left
}

.text-right {
  text-align: right
}

.table-responsive {
  border: none;
  margin: 20px 0;
  overflow: auto;
}

table {
  width: 100%;
  border-spacing: 0;
  border: 1px solid #cfcdcd;
  border-collapse: collapse !important;
}

table tr td,
table tr th {
  padding: 14px 10px;
  vertical-align: top;
  text-align: left;
  line-height: 18px;
  border: 1px solid #bfbfbf;
}

table tr th {
  font-weight: 700;
  vertical-align: middle;
  text-align: center;
}

th[align="center"],
td[align="center"] {
  text-align: center !important
}

th[align="right"],
td[align="right"] {
  text-align: right !important
}

.table-responsive::-webkit-scrollbar {
  width: 5px;
  height: 4px;
}

.table-responsive::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 8px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 8px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
  background: #cccccc
}

.common-content {
  padding: 50px 0;
}

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex-middle {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.flex-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.flex-wrap-middle {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

a[href^="tel:"]:not(.btn),
a[href^="mailto:"] {
  display: inline-block;
  word-break: break-word;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: var(--pageCenter);
  clear: both;
}

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto
}

.row {
  margin-right: -15px;
  margin-left: -15px
}

.row:before,
.row:after {
  content: "";
  clear: both;
  display: table
}

.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px
}

.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  float: left
}

.col-xs-12 {
  width: 100%
}

.col-xs-11 {
  width: 91.66666667%
}

.col-xs-10 {
  width: 83.33%
}

.col-xs-9 {
  width: 75%
}

.col-xs-8 {
  width: 66.66666667%
}

.col-xs-7 {
  width: 58.33%
}

.col-xs-6 {
  width: 50%
}

.col-xs-5 {
  width: 41.66666667%
}

.col-xs-4 {
  width: 33.33%
}

.col-xs-3 {
  width: 25%
}

.col-xs-2 {
  width: 16.66666667%
}

.col-xs-1 {
  width: 8.33%
}

@media (min-width: 768px) {

  .col-sm-1,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9 {
    float: left
  }

  .col-sm-12 {
    width: 100%
  }

  .col-sm-11 {
    width: 91.66666667%
  }

  .col-sm-10 {
    width: 83.33%
  }

  .col-sm-9 {
    width: 75%
  }

  .col-sm-8 {
    width: 66.66666667%
  }

  .col-sm-7 {
    width: 58.33%
  }

  .col-sm-6 {
    width: 50%
  }

  .col-sm-5 {
    width: 41.66666667%
  }

  .col-sm-4 {
    width: 33.33%
  }

  .col-sm-3 {
    width: 25%
  }

  .col-sm-2 {
    width: 16.66666667%
  }

  .col-sm-1 {
    width: 8.33%
  }
}

@media (min-width: 992px) {

  .h1,
  h1 {
    font-size: 58px;
  }

  .h2,
  h2 {
    font-size: 46px;
  }

  .h3,
  h3 {
    font-size: 42px;
  }

  .h4,
  h4 {
    font-size: 30px;
  }

  .h5,
  h5 {
    font-size: 24px;
  }

  .h6,
  h6 {
    font-size: 20px;
  }

  .col-md-1,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9 {
    float: left
  }

  .col-md-12 {
    width: 100%
  }

  .col-md-11 {
    width: 91.66666667%
  }

  .col-md-10 {
    width: 83.33%
  }

  .col-md-9 {
    width: 75%
  }

  .col-md-8 {
    width: 66.66666667%
  }

  .col-md-7 {
    width: 58.33%
  }

  .col-md-6 {
    width: 50%
  }

  .col-md-5 {
    width: 41.66666667%
  }

  .col-md-4 {
    width: 33.33%
  }

  .col-md-3 {
    width: 25%
  }

  .col-md-2 {
    width: 16.66666667%
  }

  .col-md-1 {
    width: 8.33%
  }
}

/******Input******/
input[type="search"] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

input[type="search"] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="file"],
input[type="url"],
input[type="number"],
input[type="date"],
select,
textarea,
.form-control {
  background-color: #f7f9fc;
  border: 1px solid #d3dae5;
  border-radius: 40px;
  color: #737c96;
  display: block;
  font-size: 16px;
  font-family: var(--bodyFontFamily);
  font-weight: 400;
  line-height: 20px;
  padding: 14px 24px;
  position: relative;
  width: 100%;
  height: 50px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-transition: all 0.3s linear 0s;
  -webkit-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-bottom: 20px
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus,
input[type="url"]:focus,
.form-control:focus {
  border-color: var(--bodyFontColor);
}

textarea,
textarea.form-control {
  height: 138px;
  resize: none;
  border-radius: 16px
}

select {
  -moz-appearance: unset;
  -webkit-appearance: unset;
  background-image: url('../img/select-down-arrow.svg');
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: calc(100% - 10px) center;
  padding-right: 30px !important;
}

select option {
  font-size: 16px;
}

.input-group-btn:last-child>.btn:hover,
.input-group-btn:last-child>.btn-group:hover {
  color: #787878
}

input[type="checkbox"],
input[type="radio"] {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

::-webkit-input-placeholder {
  color: #737c96;
  opacity: 1.0;
}

::-moz-placeholder {
  color: #737c96;
  opacity: 1.0;
}

:-ms-input-placeholder {
  color: #737c96;
  opacity: 1.0;
}

:-moz-placeholder {
  color: #737c96;
  opacity: 1.0;
}

/******Browser Compatibility******/
input::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  -moz-appearance: none;
  -webkit-appearance: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield !important;
}

/******Input Ends******/
a,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  -moz-transition: all 0.3s linear 0s;
  -webkit-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

section,
header,
footer {
  float: left;
  width: 100%;
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--btnFontFamily);
  font-weight: 400;
  position: relative;
  border: var(--btnBorder);
  border-radius: var(--btnBorderRadius);
  text-align: center;
  text-transform: capitalize;
  font-size: var(--btnFont);
  color: var(--btnColor);
  font-style: normal;
  line-height: normal;
  padding: var(--btnPadding);
  text-decoration: none !important;
  white-space: normal;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  overflow: hidden;
  background-color: transparent;
  box-shadow: none;
  cursor: pointer;
  -moz-transition: all 0.3s linear 0s;
  -webkit-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  min-width: 167px;
}

.btn.focus,
.btn:focus,
.btn:hover {
  color: var(--btnHoverColor);
}

.btn i {
  display: inline-flex;
  margin: 0 10px 0 0;
}

.btn i img {
  width: 20px;
}

.secondary-btn {
  color: var(--btnSecondaryColor);
  background-color: var(--btnSecondaryHoverBg);
  border: var(--btnSecondaryBorder);
}

.secondary-btn:hover {
  color: var(--btnSecondaryHoverColor);
}

.secondary-btn:focus {
  color: #fff;
}

.btn.outline-btn {
  color: var(--btnColor);
  background-color: var(--btnBgHover);
}

.btn.outline-btn::before {
  background-color: var(--btnBg);
  transform: scaleX(0);
  transform-origin: right center;
}

.btn.outline-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.btn.outline-btn:hover,
.btn.outline-btn:focus {
  color: var(--btnColor);
  background-color: var(--btnBg);
}

.btn.secondaryOutline-btn {
  color: var(--btnSecondaryHoverColor);
  background-color: var(--btnSecondaryBgHover);
  border-color: var(--btnSecondaryHoverColor);
}

.btn.secondaryOutline-btn::before {
  background-color: var(--btnSecondaryHoverColor);
  transform: scaleX(0);
  transform-origin: right center;
}

.btn.secondaryOutline-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.btn.secondaryOutline-btn:hover {
  color: var(--btnSecondaryColor);
  background-color: transparent;
}

.btn.secondaryOutline-btn:focus {
  color: var(--btnSecondaryHoverColor);
}

.btn.secondaryOutline-btn i img {
  filter: invert(14%) sepia(10%) saturate(6775%) hue-rotate(193deg) brightness(98%) contrast(93%);
}

.btn.secondaryOutline-btn:hover i img {
  filter: invert(99%) sepia(0%) saturate(1749%) hue-rotate(287deg) brightness(117%) contrast(100%);
}

.secondary-btn i img {
  filter: invert(99%) sepia(0%) saturate(1749%) hue-rotate(287deg) brightness(117%) contrast(100%);
}

.secondary-btn:hover i img {
  filter: invert(14%) sepia(10%) saturate(6775%) hue-rotate(193deg) brightness(98%) contrast(93%);
}

input.btn {
  background-color: var(--btnBg);
}

input.btn:hover {
  background: transparent;
}

input.btn.secondary-btn {
  background-color: var(--btnSecondaryBg);
}

input.btn.secondary-btn:hover {
  background-color: var(--btnSecondaryBgHover);
}

input.btn.secondaryOutline-btn:hover {
  background: var(--btnSecondaryBg);
}

.btn-row .btn {
  margin: 10px 6px 0 0;
}

.btn-row .btn:last-child {
  margin-right: 0
}

.btn:not(input) {
  position: relative;
}

.btn:not(input)::before {
  content: '';
  height: 100%;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
  overflow: hidden;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform .4s cubic-bezier(0.645, .045, .355, 1);
  transition: -webkit-transform .4s cubic-bezier(0.645, .045, .355, 1);
  -o-transition: transform .4s cubic-bezier(0.645, .045, .355, 1);
  transition: transform .4s cubic-bezier(0.645, .045, .355, 1);
  transition: transform .4s cubic-bezier(0.645, .045, .355, 1), -webkit-transform .4s cubic-bezier(0.645, .045, .355, 1);
  background: var(--btnBg);
}

.btn:not(input):hover::before {
  transform: scaleX(0);
  transform-origin: right center;
}

.btn:not(input):hover {
  background: inherit;
}

.btn.secondary-btn:not(input)::before {
  background: var(--btnSecondaryBg);
}

/******Header******/
header+div,
header+section {
  margin-top: var(--headerSpace) !important;
}

header+div:not(.main-banner),
header+section:not(.main-banner) {
  border-top: 7px solid #f7f9fc;
}

header {
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  z-index: 999;
  transition: all .2s linear 0s;
  line-height: normal;
}

header .header-top {
  background: #192f59;
  text-align: center;
  font-size: 15px;
  list-style: none;
  color: #fff;
  padding: 9px 0;
  transition: all .2s linear 0s;
  overflow: hidden;
}

header .header-bottom {
  padding: 6.079px 0;
  transition: inherit;
}

header .header-top:not(:has(p)) {
  padding: 4px 0;
}

header .header-row {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  width: var(--logoWidth);
  min-width: var(--logoWidth);
}

header .logo a {
  display: block;
  margin: 0;
  position: relative;
}

header .logo img {
  display: block;
  margin: 0;
}

header .header-right {
  margin: 0 0 0 auto;
}

header .header-btn-wrap {
  margin: 0 0 0 10px;
}

header .header-btn-wrap ul {
  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;
  line-height: 0;
}

header .header-btn-wrap ul li {
  padding: 0px;
  margin: 0px 0px 0px 10px;
}

header .header-btn-wrap ul li:first-child,
header .header-btn-wrap ul li:last-child {}

header .header-btn-wrap ul li::before {
  display: none;
}

header .header-btn-wrap ul li .btn {
  font-size: 16px;
  padding: 11px 16px;
  width: 100%;
  white-space: nowrap;
  min-width: unset;
}

header .header-btn-wrap ul li .btn i {
  display: none;
  margin: 0 5px 0 0;
}

header .header-btn-wrap ul li a[href^="tel:"] i {
  display: block;
}

.head-fix header .header-top {
  padding: 0;
  height: 0;
}

.head-fix header {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 1025px) {

  /*****nav starts*****/
  .nav-trigger,
  .nav-wrap nav ul li:before,
  .submenu-button,
  .nav-trigger-wrap {
    display: none
  }

  .nav-wrap {
    position: relative;
    float: left;
    width: 100%;
    margin: 0;
    z-index: 99;
  }

  .nav-wrap nav {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    display: block;
    position: relative;
  }

  .nav-wrap nav ul.nav {
    float: right;
    margin: 0
  }

  .nav-wrap nav ul.nav>li {
    float: left;
    margin: 0 20px 0 0;
    padding: 0;
    overflow: visible;
    position: relative;
  }

  .nav-wrap nav ul.nav>li.menu-item-has-children {
    margin: 0 10px 0 0;
  }

  .nav-wrap nav ul.nav>li:last-child {
    margin-right: 0
  }

  .nav-wrap nav ul.nav>li>a {
    display: block;
    padding: 7px 0;
    margin: 0;
    font-size: 16px;
    line-height: 26px;
    color: var(--bodyFontColor);
    white-space: nowrap;
    text-decoration: none;
    text-transform: capitalize;
  }

  .nav>li>a:focus,
  .nav>li>a:hover {
    background-color: transparent
  }

  /*.nav-wrap nav ul.nav li.has-sub li.has-sub > a { padding-right: 20px !important }*/
  .nav-wrap nav ul.nav>li.has-sub>a {
    padding-right: 15px;
  }

  .nav-wrap nav ul.nav>li.has-sub>a:after {
    display: block;
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-size: 16px;
    line-height: 35px;
    position: absolute;
    right: 2px;
    top: 0px;
    z-index: 99;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    font-weight: 300;
  }

  .nav-wrap nav ul.nav>li.has-sub:hover>a:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }

  .nav-wrap nav ul.nav li.has-sub li.has-sub>a:after {
    content: "\f105";
    display: inline-block;
    font-size: 12px;
    line-height: 18px;
    font-family: Font Awesome\ 5 Pro;
    font-weight: 400;
    margin-left: 5px;
    color: inherit;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -9px;
  }

  /****sub nav menu*****/
  .nav-wrap nav ul.nav>li.has-sub>ul {
    margin-top: 26px;
  }

  .nav-wrap nav ul.nav>li.has-sub:hover>ul {
    margin-top: 16px;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
  }

  .nav-wrap nav ul.nav ul {
    position: absolute;
    border-radius: 0;
    padding: 5px 10px;
    margin: 0;
    visibility: hidden;
    text-align: left;
    left: 50%;
    right: auto;
    opacity: 0;
    top: calc(100% - 1px);
    background: #ffffff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 10px;
  }

  .nav-wrap nav ul.nav>li.has-sub>ul::before {
    content: "";
    display: block;
    padding: 10px;
    position: absolute;
    top: -20px;
    right: 0;
    left: 0;
  }

  .nav-wrap nav ul.nav ul ul:after {
    display: none
  }

  .nav-wrap nav ul.nav ul ul {
    top: 100%;
    left: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    transform: none;
  }

  .nav-wrap nav ul.nav ul li {
    float: left;
    width: 100%;
    min-width: 240px;
    padding: 3px 0;
    margin: 0;
    vertical-align: top;
    overflow: visible;
  }

  .nav-wrap nav ul.nav ul li a {
    display: block;
    white-space: normal;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: var(--bodyFontColor);
    padding: 8px 14px;
    text-align: left;
    border-radius: 8px;
  }

  .nav-wrap nav ul.nav li:hover>ul {
    display: block;
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.3s linear 0s, top 0.3s linear 0s;
    -moz-transition: opacity 0.3s linear 0s, top 0.3s linear 0s;
    -o-transition: opacity 0.3s linear 0s, top 0.3s linear 0s;
    transition: opacity 0.3s linear 0s, top 0.3s linear 0s;
  }

  .nav-wrap nav ul.nav ul>li:hover>ul {
    top: 0;
  }

  .nav-wrap nav ul.nav li:hover>a,
  .nav-wrap nav ul.nav li>a:hover,
  .nav-wrap nav ul.nav li.current-menu-item>a,
  .nav-wrap nav ul.nav li.current-menu-ancestor>a {
    color: var(--linkColor);
  }

  .nav-wrap nav ul.nav ul li:hover>a,
  .nav-wrap nav ul.nav ul li>a:hover,
  .nav-wrap nav ul.nav ul li.current-menu-item>a,
  .nav-wrap nav ul.nav ul li.current-menu-ancestor>a {
    background: var(--linkColor);
    color: #fff;
  }

  .nav-wrap nav ul.nav>li>a:before {
    content: '';
    height: 2px;
    left: 0;
    bottom: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
    overflow: hidden;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transition: -webkit-transform .4s cubic-bezier(0.645, .045, .355, 1);
    transition: -webkit-transform .4s cubic-bezier(0.645, .045, .355, 1);
    -o-transition: transform .4s cubic-bezier(0.645, .045, .355, 1);
    transition: transform .4s cubic-bezier(0.645, .045, .355, 1);
    transition: transform .4s cubic-bezier(0.645, .045, .355, 1), -webkit-transform .4s cubic-bezier(0.645, .045, .355, 1);
    background: var(--linkColor);
  }

  .nav-wrap nav ul.nav>li:hover>a:before,
  .nav-wrap nav ul.nav>li>a:hover:before,
  .nav-wrap nav ul.nav>li.current-menu-item>a:before,
  .nav-wrap nav ul.nav>li.current-menu-ancestor>a:before {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    width: 100%
  }

  /********** Mega Menu CSS Start **********/
  .nav-wrap .mega-dropdown {
    overflow: visible;
    visibility: hidden;
    opacity: 0;
    display: flex;
    flex-wrap: wrap;
    transform: none !important;
    padding: 0 !important;
  }

  .mega-dropdown ul {
    display: block !important;
    position: static !important;
    max-height: inherit !important;
    opacity: 1 !important;
    padding: 0 !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    overflow: visible !important;
    float: left;
    width: 100%;
    background: 0 0 !important;
    margin-top: 0 !important;
  }

  .mega-dropdown:before,
  .nav-wrap nav ul.nav ul:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    padding: 17px 0;
  }

  .nav-wrap nav ul.nav ul.mega-dropdown:after {
    display: none;
  }

  .nav-wrap nav ul.nav ul.mega-dropdown .arrow {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 1px);
    bottom: calc(100% + 3px);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--linkColor);
  }

  .mega-dropdown .scroll {
    padding: 20px 0;
    max-height: 67.7vh;
    overflow-y: auto;
    display: block;
    flex-wrap: wrap;
  }

  .nav-wrap nav ul.nav .mega-dropdown ul li a {
    padding: 3px 0 3px 10px;
  }

  .nav-wrap nav ul.nav .mega-dropdown ul li.more-link>a {
    border-top: 1px solid #d4d4d4;
    color: #fc6812;
    padding: 10px 0 0;
    margin: 10px 0 0 0;
    font-weight: 500;
  }

  .nav-wrap nav ul.nav>li:hover>.mega-dropdown ul {
    visibility: visible !important;
  }

  .nav-wrap nav ul.nav>li>.mega-dropdown .col-md-2 {
    border-right: 1px solid #dadada;
    width: 20%;
    padding: 26px 0 26px 26px;
  }

  .nav-wrap nav ul.nav>li>.mega-dropdown>.row {
    margin: 0;
  }

  .nav-wrap nav ul.nav>li>.mega-dropdown .col-md-2:last-child {
    border: none;
  }

  .mega-dropdown .scroll>li {
    width: calc(100%/5 - 40px) !important;
    margin: 0 20px 25px !important;
  }

  .mega-dropdown .scroll>li>a {
    font-weight: 600 !important;
    color: #1c1c1c !important;
    border-bottom: 1px solid #d4d4d4;
    padding: 0px 0px 7px !important;
    margin: 0 0 5px;
    font-size: 15px !important;
    display: flex !important;
    align-items: flex-end;
    text-transform: uppercase !important;
  }

  .mega-dropdown .scroll>li>a::after {
    display: none !important;
  }

  .mega-dropdown .scroll>li.img-box {
    padding-top: 30px;
  }

  .nav-wrap nav ul.nav .mega-dropdown ul li ul::before,
  .nav-wrap nav ul.nav .mega-dropdown ul li a::after {
    display: none !important;
  }

  .nav-wrap nav ul.nav .mega-dropdown ul li li a {
    padding: 3px 0 3px 20px;
  }

  /********** Mega Menu CSS End **********/
  /**************Nav ends**************/
}

/****Space Control Top Bottom*****/
.m-0 {
  margin: 0 !important
}

.m-1 {
  margin: 10px 0 !important
}

.m-2 {
  margin: 20px 0 !important
}

.m-3 {
  margin: 30px 0 !important
}

.m-4 {
  margin: 40px 0 !important
}

.m-5 {
  margin: 50px 0 !important
}

.m-6 {
  margin: 60px 0 !important
}

.m-7 {
  margin: 70px 0 !important
}

.p-0 {
  padding: 0 !important
}

.p-1 {
  padding: 10px 0 !important
}

.p-2 {
  padding: 20px 0 !important
}

.p-3 {
  padding: 30px 0 !important
}

.p-4 {
  padding: 40px 0 !important
}

.p-5 {
  padding: 50px 0 !important
}

.p-6 {
  padding: 60px 0 !important
}

.p-7 {
  padding: 70px 0 !important
}

.m-t0 {
  margin-top: 0 !important
}

.m-t1 {
  margin-top: 10px !important
}

.m-t2 {
  margin-top: 20px !important
}

.m-t3 {
  margin-top: 30px !important
}

.m-t4 {
  margin-top: 40px !important
}

.m-t5 {
  margin-top: 50px !important
}

.m-t6 {
  margin-top: 60px !important
}

.m-t7 {
  margin-top: 70px !important
}

.m-b0 {
  margin-bottom: 0 !important
}

.m-b1 {
  margin-bottom: 10px !important
}

.m-b2 {
  margin-bottom: 20px !important
}

.m-b3 {
  margin-bottom: 30px !important
}

.m-b4 {
  margin-bottom: 40px !important
}

.m-b5 {
  margin-bottom: 50px !important
}

.m-b6 {
  margin-bottom: 60px !important
}

.m-b7 {
  margin-bottom: 70px !important
}

.m-l4 {
  margin-left: 40px !important;
}

.m-l2 {
  margin-left: 20px !important;
}

.m-l3 {
  margin-left: 30px !important;
}

.p-t0 {
  padding-top: 0 !important
}

.p-t2 {
  padding-top: 20px !important
}

.p-t3 {
  padding-top: 30px !important
}

.p-t4 {
  padding-top: 40px !important
}

.p-t5 {
  padding-top: 50px !important
}

.p-t6 {
  padding-top: 60px !important
}

.p-t7 {
  padding-top: 70px !important
}

.p-b0 {
  padding-bottom: 0 !important
}

.p-b2 {
  padding-bottom: 20px !important
}

.p-b3 {
  padding-bottom: 30px !important
}

.p-b4 {
  padding-bottom: 40px !important
}

.p-b5 {
  padding-bottom: 50px !important
}

.p-b6 {
  padding-bottom: 60px !important
}

.p-b7 {
  padding-bottom: 70px !important
}

.p-l2 {
  padding-left: 20px !important
}

.p-l3 {
  padding-left: 30px !important
}

.p-l4 {
  padding-left: 40px !important
}

.p-r2 {
  padding-right: 20px !important
}

.p-r3 {
  padding-right: 30px !important
}

.p-r4 {
  padding-right: 40px !important
}

.p-r5 {
  padding-right: 50px !important
}

/****Space Control Top Bottom End*****/
/*******Lay Image*******/
.lazy-image {
  position: relative;
  width: 100%;
  padding-top: 66.33%;
  overflow: hidden;
}

.lazy-image img {
  position: absolute;
  background-color: var(--bodyFontColor);
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  margin: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: opacity .2s ease-in-out, transform .2s ease-in-out;
}

a:hover .lazy-image img,
a.lazy-image:hover img {
  -moz-transform: scale(1.02, 1.02);
  -webkit-transform: scale(1.02, 1.02);
  transform: scale(1.02, 1.02)
}

/******Plugin's CSS Start*********/
/******Flexslider*********/
.flexslider {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden
}

.flexslider:before {
  margin: -20px 0 0 -20px;
  width: 40px;
  height: 40px;
  border-width: 0.2rem;
}

.flexslider ul.slides {
  margin: 0;
  padding: 0;
  float: left;
  width: 100%
}

.flexslider li {
  padding: 0;
}

.flexslider li:before {
  display: none
}

.flexslider .slides>li {
  position: relative;
  display: none;
  -webkit-backface-visibility: hidden;
}

html[xmlns] .flexslider .slides {
  display: block;
}

* html .flexslider .slides {
  height: 1%;
}

.no-js .flexslider .slides>li:first-child {
  display: block;
}

.flexslider .flex-control-paging-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  text-align: right;
  padding-right: 10px;
  z-index: 99;
}

.flexslider .flex-control-paging {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 5%;
  margin: 0;
  display: inline-block;
  z-index: 98;
  height: auto;
  text-align: center;
  padding: 0 10px;
}

.flexslider .flex-control-paging li {
  position: static;
  display: inline-block;
  width: auto;
  margin: 2px 3px;
  height: auto
}

.flexslider .flex-control-paging li a {
  border: 1px solid #91989b;
  width: 12px;
  height: 12px;
  line-height: 10px;
  font-size: 0;
  color: #fff;
  text-align: center;
  display: block;
  position: relative;
  cursor: pointer;
  background-color: #91989b;
  border-radius: 34px;
  transition: none;
  -moz-transition: none;
  -webkit-transition: none;
  -ms-transition: none;
  -o-transition: none;
}

.flexslider .flex-control-paging li .flex-active,
.flexslider .flex-control-paging li a:hover {
  background-color: var(--bodyFontColor);
  border-color: var(--bodyFontColor)
}

.flexslider .flex-control-paging li .flex-active:after,
.flexslider .flex-control-paging li a:hover:after {
  display: none
}

.flexslider .flex-direction-nav li {
  position: static
}

.flexslider .flex-direction-nav a {
  transition: .2s ease-in-out;
  -moz-transition: .2s ease-in-out;
  -webkit-transition: .2s ease-in-out;
}

.flexslider .flex-direction-nav .flex-prev,
.flexslider .flex-direction-nav .flex-next {
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: -60px;
  top: 50%;
  margin-top: -25px;
  width: 60px;
  height: 60px;
  z-index: 98;
  border-radius: 60px;
  display: inline-block;
  font-size: 0;
}

.flexslider .flex-direction-nav {
  overflow: hidden;
  width: 100%;
  margin: 0
}

.flexslider .flex-direction-nav .flex-next {
  left: auto;
  right: -60px
}

.flexslider .flex-direction-nav .flex-prev:before,
.flexslider .flex-direction-nav .flex-next:before {
  content: '';
  line-height: 1;
  display: block;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  padding: 6px;
  margin: 0 2px;
  position: absolute;
  top: 50%;
  left: 65%;
  transition: .2s ease-in-out;
  -moz-transition: .2s ease-in-out;
  -moz-transform: translate(-50%, -50%) rotate(135deg);
  -ms-transform: translate(-50%, -50%) rotate(135deg);
  -o-transform: translate(-50%, -50%) rotate(135deg);
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  transform: translate(-50%, -50%) rotate(135deg);
}

.flexslider .flex-direction-nav .flex-next:before {
  left: auto;
  right: 65%;
  -webkit-transform: translate(50%, -50%) rotate(-45deg);
  -moz-transform: translate(50%, -50%) rotate(-45deg);
  -ms-transform: translate(50%, -50%) rotate(-45deg);
  -o-transform: translate(50%, -50%) rotate(-45deg);
  -webkit-transform: translate(50%, -50%) rotate(-45deg);
  transform: translate(50%, -50%) rotate(-45deg);
}

.flexslider:hover .flex-direction-nav .flex-prev {
  left: -25px
}

.flexslider:hover .flex-direction-nav .flex-next {
  right: -25px
}

.flexslider .flex-direction-nav .flex-prev:hover,
.flexslider .flex-direction-nav .flex-next:hover {
  background: rgba(0, 0, 0, 1.0);
}

.flexslider .flex-direction-nav .flex-prev:hover:before,
.flexslider .flex-direction-nav .flex-next:hover:before {
  color: #fff;
}

.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 1.0
}

.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 1.0
}

.flexslider .flex-disabled {
  display: none
}

.flexslider iframe,
.flexslider video {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

/******Magnific Popup*******/
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #000000;
  opacity: 80%;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: 0 !important;
  -webkit-backface-visibility: hidden
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle
}

.mfp-align-top .mfp-container:before {
  display: none
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045
}

.mfp-ajax-holder .mfp-content,
.mfp-inline-holder .mfp-content {
  width: 100%;
  cursor: auto
}

.mfp-ajax-cur {
  cursor: progress
}

.mfp-auto-cursor .mfp-content {
  cursor: auto
}

.mfp-arrow,
.mfp-close,
.mfp-counter,
.mfp-preloader {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none
}

.mfp-loading.mfp-figure {
  display: none
}

.mfp-hide {
  display: none !important
}

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -.8em;
  left: 8px;
  right: 8px;
  z-index: 1044
}

.mfp-preloader a {
  color: #ccc
}

.mfp-preloader a:hover {
  color: #fff
}

.mfp-s-ready .mfp-preloader {
  display: none
}

.mfp-s-error .mfp-content {
  display: none
}

button.mfp-arrow,
button.mfp-close {
  overflow: visible;
  cursor: pointer;
  background: #fff;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: 0;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation
}

button.mfp-arrow:hover,
button.mfp-close:hover {
  background: #000;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0
}

.mfp-close {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 30px;
  border-radius: 30px 30px 0 0;
  font-weight: 100;
  position: absolute;
  z-index: 5;
  right: -34px;
  top: 0 !important;
  text-decoration: none;
  text-align: center;
  opacity: 100%;
  padding: 0;
  color: #ffffff;
  font-style: normal;
  font-family: Arial, Baskerville, monospace;
  background: 0 0 !important
}

div.mfp-close {
  display: none !important
}

.videoFrame .mfp-close {
  top: 0 !important;
  background-color: rgba(236, 223, 223, .5) !important;
  border-radius: 0;
  opacity: 0
}

.videoFrame .mfp-iframe-scaler:hover .mfp-close {
  opacity: 1
}

.videoFrame .mfp-iframe-holder .mfp-content {
  max-width: 90%;
  max-height: 100%
}

.mfp-close:focus,
.mfp-close:hover {
  opacity: 1
}

.mfp-close:active {
  top: 1px
}

.mfp-close-btn-in .mfp-close {
  color: #fff;
}

.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
  color: #fff
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap
}

.mfp-arrow-left {
  width: 30px;
  height: 50px;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 90;
  display: inline-block;
  margin-top: -25px;
  font-size: 0;
  cursor: pointer;
  border-radius: 0 30px 30px 0
}

.mfp-arrow-left:before {
  content: '';
  height: 15px;
  width: 15px;
  display: block;
  border: 2px solid #929292;
  border-right-width: 0;
  border-bottom-width: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 18px;
  left: 8px
}

.mfp-arrow-right {
  width: 30px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 90;
  display: inline-block;
  margin-top: -25px;
  font-size: 0;
  cursor: pointer;
  border-radius: 30px 0 0 30px;
}

.mfp-arrow-right:before {
  content: '';
  height: 15px;
  width: 15px;
  display: block;
  border: 2px solid #929292;
  border-left-width: 0;
  border-top-width: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 18px;
  right: 8px
}

.mfp-arrow-left:hover:before,
.mfp-arrow-right:hover:before {
  border-color: #fff
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px
}

.mfp-iframe-holder .mfp-close {
  top: -40px
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, .6);
  background: #000000
}

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto
}

.img-max-inherit img.mfp-img {
  max-height: inherit !important
}

.mfp-figure {
  line-height: 0;
  position: relative
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, .6);
  background: #444
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 16px
}

.mfp-figure figure {
  margin: 0
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px
}

.mfp-image-holder .mfp-content {
  max-width: 100%
}

.mfp-inline-holder:has(.mfp-iframe-scaler) {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-inline-holder:has(.mfp-iframe-scaler) .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-inline-holder:has(.mfp-iframe-scaler) .mfp-content video {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, .6);
  background: #000000;
}

.mfp-inline-holder:has(.mfp-iframe-scaler) .mfp-close {
  color: #fff;
}

.white-popup-block {
  background: #fff;
  padding: 30px 30px;
  text-align: left;
  max-width: 660px;
  margin: 40px auto;
  position: relative;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

.white-popup-block .tags {
  margin: 0 0 -6px;
}

.white-popup-block .tags span {
  display: inline-flex;
  vertical-align: middle;
  border: 1px solid #db2d0c;
  padding: 5px 17px;
  border-radius: 30px;
  margin: 0 6px 6px 0;
}

/**
 * Fade-move animation for second dialog
 */

/* at start */
.my-mfp-slide-bottom .white-popup-block {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;

  -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
  transform: translateY(-20px) perspective(600px) rotateX(10deg);

}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .white-popup-block {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  -moz-transform: translateY(0) perspective(600px) rotateX(0);
  -ms-transform: translateY(0) perspective(600px) rotateX(0);
  -o-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .white-popup-block {
  opacity: 0;

  -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
  transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;

  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

@media screen and (max-width: 800px) and (orientation:landscape),
screen and (max-height:300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, .6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px
  }
}

@media all and (min-width: 900px) {
  .caption-frame .mfp-container {
    left: 50%;
    display: table;
    width: auto;
    padding: 0 45px;
    margin: 0 auto;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%)
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(.75);
    transform: scale(.75)
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px
  }

  button.mfp-arrow,
  button.mfp-close {
    background: rgba(255, 255, 255, .95)
  }

  .white-popup-block {
    padding: 20px 15px;
  }

  .mfp-close {
    right: 0;
    top: -35px !important;
    width: 20px;
    height: 30px;
    line-height: 40px;
  }
}

/******Magnific Popup End*******/
/**********Owl Carousel**********/
.owl-carousel.has-shadow {
  margin: 25px -10px 0;
  width: auto;
}

.owl-carousel.has-shadow .owl-item {
  margin: 10px 0;
}

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  width: 100%;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.owl-height {
  -webkit-transition: height .5s ease-in-out;
  -o-transition: height .5s ease-in-out;
  transition: height .5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #0b0b0b;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .1s ease;
  transition: -webkit-transform .1s ease;
  -o-transition: transform .1s ease;
  transition: transform .1s ease;
  transition: transform .1s ease, -webkit-transform .1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-carousel .owl-dots {
  display: table;
  margin: 0 auto;
  clear: both;
  overflow: hidden;
  padding-top: 25px;
  text-align: center;
}

.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 2px 6px;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  border-radius: 20px;
  background: #09246c;
}

.owl-carousel .owl-dot span {
  display: none;
}

.owl-carousel .owl-dot.active,
.owl-carousel .owl-dot:hover {
  background-color: #febd34;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  background-color: rgb(25 47 89);
  cursor: pointer;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-block;
  font-size: 0;
  z-index: 98;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-carousel .owl-nav .owl-next {
  left: auto;
  right: 0;
}

.owl-carousel .owl-nav .owl-prev.disabled,
.owl-carousel .owl-nav .owl-next.disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.owl-carousel .owl-nav .owl-prev:before,
.owl-carousel .owl-nav .owl-next:before {
  content: '\f061';
  font-family: 'Font Awesome 5 Pro';
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  display: block;
  padding: 6px;
  margin: 0 2px;
  transition: .2s ease-in-out;
  transform: rotate(180deg);
}

.owl-carousel .owl-nav .owl-next:before {
  transform: rotate(0deg);
}

.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
  background: #020d0f;
  border-color: #020d0f;
}

.owl-carousel .owl-nav .owl-prev:hover:before,
.owl-carousel .owl-nav .owl-next:hover:before {
  color: #fff;
}

.owl-carousel.top-nav {
  margin-top: 40px;
}

.owl-carousel.top-nav .owl-nav {
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 65px;
  padding: 15px 0;
  margin-bottom: 38px;
}

.owl-carousel.vertical-nav .owl-nav .owl-prev,
.owl-carousel.vertical-nav .owl-nav .owl-next {
  top: 0;
  bottom: 0;
  margin: 0;
  height: auto;
  width: 25px;
}

.owl-carousel.arrow {
  padding-left: 40px;
  padding-right: 40px;
}

.owl-carousel.arrow .owl-nav .owl-prev,
.owl-carousel.arrow .owl-nav .owl-next {
  background-color: transparent;
  margin-top: -25px;
  width: 30px;
  height: 50px;
}

.owl-carousel.arrow .owl-nav .owl-prev:before,
.owl-carousel.arrow .owl-nav .owl-next:before {
  font-size: 46px;
  line-height: 30px;
  color: #5DB733;
}

.owl-carousel.arrow .owl-nav .owl-prev:hover,
.owl-carousel.arrow .owl-nav .owl-next:hover {
  background-color: #438f9f;
}

.owl-carousel.arrow .owl-nav .owl-prev:hover:before,
.owl-carousel.arrow .owl-nav .owl-next:hover:before {
  color: #fff;
}

.bottom-arrow .owl-nav {
  padding: 18px;
  width: 70px;
  margin: 20px auto 0;
  z-index: 10;
  position: relative;
}

.bottom-arrow .owl-nav .owl-next,
.bottom-arrow .owl-nav .owl-prev {
  width: 18px;
  margin: -11px 0 0;
  height: 22px;
  background: none !important;
}

.bottom-arrow .owl-nav .owl-next::before,
.bottom-arrow .owl-nav .owl-prev::before {
  color: #192f59;
}

.owl-carousel.type-2-arrow .owl-nav .owl-prev,
.owl-carousel.type-2-arrow .owl-nav .owl-next {
  width: 42px;
  height: 42px;
  background-color: transparent;
  border: 1px solid #020d0f;
  margin-top: -21px
}

.owl-carousel.type-2-arrow .owl-nav .owl-prev:before,
.owl-carousel.type-2-arrow .owl-nav .owl-next:before {
  color: #020d0f;
  font-size: 22px;
  font-weight: normal;
}

.owl-carousel.type-2-arrow .owl-nav .owl-prev:hover,
.owl-carousel.type-2-arrow .owl-nav .owl-next:hover {
  background-color: #020d0f;
}

.owl-carousel.type-2-arrow .owl-nav .owl-prev:hover:before,
.owl-carousel.type-2-arrow .owl-nav .owl-next:hover:before {
  color: #fff;
}

/***** Owl Carousel End *******/
/***Date Picker****/
.datetimepicker {
  background: #FFFFFF;
  border-bottom: 1px solid #BBBBBB;
  border-left: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  border-top: 1px solid #CCCCCC;
  color: #333333;
  padding: 8px;
  padding-left: 0px;
  padding-top: 2px;
  position: absolute;
  z-index: 999;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  border-radius: 4px;
  -webkit-box-shadow: 2px 2px 3px 0px rgba(50, 50, 50, 0.22);
  -moz-box-shadow: 2px 2px 3px 0px rgba(50, 50, 50, 0.22);
  box-shadow: 2px 2px 3px 0px rgba(50, 50, 50, 0.22);
}

.datetimepicker iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 75px;
  height: 210px;
  background: transparent;
  border: none;
}

/*For IE8 or lower*/
.datetimepicker button {
  border: none !important;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.noselect::selection {
  background: transparent;
}

.noselect::-moz-selection {
  background: transparent;
}

.datetimepicker.inline {
  display: inline-block;
  position: static;
  box-shadow: none;
}

.datetimepicker * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
  font-weight: normal;
}

.datetimepicker .datepicker,
.datetimepicker .timepicker {
  display: none;
}

.datetimepicker .datepicker.active,
.datetimepicker .timepicker.active {
  display: block;
}

.datetimepicker .datepicker {
  width: 224px;
  float: left;
  margin-left: 8px;
}

.datetimepicker.showweeks .datepicker {
  width: 256px;
}

.datetimepicker .timepicker {
  width: 80px;
  float: left;
  text-align: center;
  margin-left: 8px;
  margin-top: 0px;
}

.datetimepicker .datepicker.active+.timepicker {
  margin-top: 8px;
  margin-bottom: 3px
}

.datetimepicker .mounthpicker {
  position: relative;
  text-align: center;
}

.datetimepicker .prev,
.datetimepicker .next,
.datetimepicker .today_button {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFoAAAAeCAYAAACsYQl4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDozQjRCQjRGREU4MkNFMzExQjRDQkIyRDJDOTdBRUI1MCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCQjg0OUYyNTZDODAxMUUzQjMwM0IwMERBNUU0ODQ5NSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCQjg0OUYyNDZDODAxMUUzQjMwM0IwMERBNUU0ODQ5NSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkI5NzE3MjFBN0E2Q0UzMTFBQjJEQjgzMDk5RTNBNTdBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjNCNEJCNEZERTgyQ0UzMTFCNENCQjJEMkM5N0FFQjUwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+aQvATgAAAfVJREFUeNrsmr1OwzAQxzGtkPjYEAuvVGAvfQIGRKADE49gdLwDDwBiZ2RhQUKwICQkWLsgFiRQuIBTucFJ/XFp4+hO+quqnZ4uvzj2nV2RpukCW/22yAgYNINmc7du7DcghCjrkqgOKjF1znpt6rZ0AGWQj7TvCU8d9UM+QAGDrhdyc2Bnc1WVVPBev9V8lBnY+rDwncWZThG4xk4lmxtJy2AHgoY/FySgbSBPwPZ8mEXbQx3aDERb0EbYAYFC7pcAtAvkMWwC0D3NX58S9D/YnoGC7nPWr3Dg9JTbtuHhDShBT8D2CBSK/iIEvVXxpuxSgh7DdgwUTL4iA92zmJb6lKB/YTsECmV+IgK947AGDIqgQ/LojsO135Hn51l2cWlov0JdGNrPUceueXRwilSVgkUyom9Rd6gbLfYTDeO+1v6orn0InTogYDGUkYLO3/wc9BdqqTCKP1Tfi+oTIaCBIL2TES+GTyruT9S61p6BHam+99DFEAgLFklYsIBHwSI9QY80H5ta+1rB/6ovaKihBJeEJbgLbBlQgl+j3lDPqA2tfQV1j3pVn8s+oKHGTSVJ+FqDLeR5bCqJ2E/BCycsoLZETXaKGs7rhKVt+9HZScrZNMi88V8P7LlDbvOZYaJVpMMmBCT4n0o8dTBoNgbdWPsRYACs3r7XyNfbnAAAAABJRU5ErkJggg==');
}

.datetimepicker .prev {
  float: left;
  background-position: -20px 0px;
}

.datetimepicker .today_button {
  float: left;
  background-position: -70px 0px;
  margin-left: 5px;
}

.datetimepicker .next {
  float: right;
  background-position: 0px 0px;
}

.datetimepicker .next,
.datetimepicker .prev,
.datetimepicker .today_button {
  background-color: transparent;
  background-repeat: no-repeat;
  border: 0px none currentColor;
  cursor: pointer;
  display: block;
  height: 30px;
  opacity: 0.5;
  outline: medium none currentColor;
  overflow: hidden;
  padding: 0px;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  width: 20px;
}

.datetimepicker .timepicker .prev,
.datetimepicker .timepicker .next {
  float: none;
  background-position: -40px -15px;
  height: 15px;
  width: 30px;
  display: block;
  margin-left: 14px;
  margin-top: 7px;
}

.datetimepicker .timepicker .prev {
  background-position: -40px 0px;
  margin-bottom: 7px;
  margin-top: 0px;
}

.datetimepicker .timepicker .time_box {
  height: 151px;
  overflow: hidden;
  border-bottom: 1px solid #DDDDDD;
}

.datetimepicker .timepicker .time_box>div>div {
  background: #F5F5F5;
  border-top: 1px solid #DDDDDD;
  color: #666666;
  font-size: 12px;
  text-align: center;
  border-collapse: collapse;
  cursor: pointer;
  border-bottom-width: 0px;
  height: 25px;
  line-height: 25px;
}

.datetimepicker .timepicker .time_box>div>div:first-child {
  border-top-width: 0px;
}

.datetimepicker .today_button:hover,
.datetimepicker .next:hover,
.datetimepicker .prev:hover {
  opacity: 1;
}

.datetimepicker .label {
  display: inline;
  position: relative;
  z-index: 9999;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  background-color: #fff;
  float: left;
  width: 182px;
  text-align: center;
  cursor: pointer;
  color: #000
}

.datetimepicker .label:hover {
  text-decoration: underline;
}

.datetimepicker .label>.select {
  border: 1px solid #ccc;
  position: absolute;
  right: 0px;
  top: 30px;
  z-index: 101;
  display: none;
  background: #fff;
  max-height: 160px;
  overflow-y: hidden;
}

.datetimepicker .label>.select.monthselect {
  right: -7px;
}

.datetimepicker .label>.select.yearselect {
  right: 2px;
}

.datetimepicker .label>.select>div>.option:hover {
  color: #fff;
  background: #192f59;
}

.datetimepicker .label>.select>div>.option {
  padding: 2px 10px 2px 5px;
}

.datetimepicker .label>.select>div>.option.current {
  background: #192f59;
  box-shadow: #192f59 0px 1px 3px 0px inset;
  color: #fff;
}

.datetimepicker .date.current {
  background: #192f59;
  box-shadow: #192f59 0px 1px 3px 0px inset;
  color: #fff;
}

.datetimepicker .month {
  width: 90px;
  text-align: right;
}

.datetimepicker .calendar {
  clear: both;
  margin: 0;
}

.datetimepicker .year {
  width: 56px;
}

.datetimepicker .calendar table {
  border-collapse: collapse !important;
  width: 100%;
  border: none;
}

.datetimepicker .calendar td>div {
  padding: 5px;
}

.datetimepicker .calendar th {
  height: 25px;
}

.datetimepicker .calendar td,
.datetimepicker .calendar th {
  width: 14.2857142%;
  background: #F5F5F5;
  border: 1px solid #DDDDDD;
  color: #666666;
  font-size: 12px;
  text-align: right;
  padding: 0px;
  border-collapse: collapse;
  cursor: pointer;
  height: 25px;
}

.datetimepicker.showweeks .calendar td,
.datetimepicker.showweeks .calendar th {
  width: 12.5%;
}

.datetimepicker .calendar th {
  background: #F1F1F1;
}

.datetimepicker .calendar td.today {
  color: #a2e07a;
}

.datetimepicker .calendar td.default,
.datetimepicker .calendar td.current,
.datetimepicker .timepicker .time_box>div>div.current {
  background: #192f59;
  box-shadow: #192f59 0px 1px 3px 0px inset;
  color: #fff !important;
}

.datetimepicker .calendar td.current>div {
  color: #fff !important;
}

.datetimepicker .calendar td.other_month,
.datetimepicker .calendar td.disabled,
.datetimepicker .time_box>div>div.disabled {
  opacity: 0.5;
}

.datetimepicker .calendar td.other_month.disabled {
  opacity: 0.2;
}

.datetimepicker .calendar td:hover,
.datetimepicker .timepicker .time_box>div>div:hover {
  color: #ffffff !important;
  background: #192f59 !important;
  box-shadow: none !important;
}

.datetimepicker .calendar td.disabled:hover,
.datetimepicker .timepicker .time_box>div>div.disabled:hover {
  color: inherit !important;
  background: inherit !important;
  box-shadow: inherit !important;
}

.datetimepicker .calendar td.disabled:hover div,
.datetimepicker .timepicker .time_box>div>div.disabled:hover div {
  color: #ffffff !important;
}

.disabled {
  cursor: not-allowed !important;
}

.datetimepicker .calendar td:hover div,
.datetimepicker .timepicker .time_box>div>div:hover div {
  color: #fff !important;
}

.datetimepicker .calendar th {
  text-align: center;
  color: #999;
  cursor: default;
}

.datetimepicker .copyright {
  color: #ccc !important;
  font-size: 10px;
  clear: both;
  float: none;
  margin-left: 8px;
}

.datetimepicker .copyright a {
  color: #eee !important;
}

.datetimepicker .copyright a:hover {
  color: #aaa !important;
}

.time_box {
  position: relative;
  border: 1px solid #ccc;
}

.scrollbar>.scroller {
  background: #ccc !important;
  height: 20px;
  border-radius: 3px;
}

.scrollbar {
  position: absolute;
  width: 7px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  cursor: pointer;
}

.scroller_box {
  position: relative;
}

/***Date Picker End****/
/******Plugin's CSS End*********/

.bg {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.bg img {
  display: none
}

.main-banner {
  background-color: #09246c;
  color: #fff;
  font-size: 18px;
}

.main-banner .max-width {
  max-width: 418px;
  margin: 0 0 0 auto;
}

.main-banner .slide-item {
  position: relative;
}

.main-banner .slide-item::before {
  content: "";
  display: block;
  position: absolute;
  top: auto;
  bottom: 30px;
  right: 0;
  left: 0;
  margin: 0 auto;
  max-width: var(--pageCenter);
  width: 100%;
  height: 117px;
  background-image: url('../img/banner-img2.png');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
}

.main-banner .slide-item>img {
  width: 100%;
}

/*****Social Icons*****/
ul.social-icon {
  display: flex;
  padding: 0;
  margin: 0 0 15px;
  vertical-align: middle
}

ul.social-icon li {
  display: inline-block;
  width: auto;
  margin: 0 14px 0 0;
  background: none;
  padding: 0;
  vertical-align: middle;
  color: var(--bodyFontColor);
}

ul.social-icon li:last-child {
  margin: 0;
}

ul.social-icon li:before {
  display: none
}

ul.social-icon li a {
  display: inline-block;
  padding: 0;
  width: auto;
}

ul.social-icon li i {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  background-color: var(--bodyFontColor);
  line-height: 1
}

ul.social-icon li i:before {
  display: inline-block;
  line-height: 37px;
  width: 37px;
}

ul.social-icon li a:hover i {
  color: #fff;
  background-color: #febd34;
}

/*****Social Icons End*****/
/******Footer*****/
.mnu-acc-trg {
  display: none;
}

.scrollup {
  position: fixed;
  width: 25px;
  height: 25px;
  background: #fcaf17;
  border: 2px solid #fcaf17;
  border-radius: 50%;
  bottom: -40px;
  right: 10px;
  z-index: 999;
  text-align: center;
  color: #fff;
  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;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.scrollup i {
  color: inherit;
  font-size: 20px;
  font-weight: 700;
}

.scrollup.in {
  opacity: 1;
  visibility: visible;
  bottom: 10px;
}

.scrollup:hover {
  background: #fff;
  color: #fcaf17;
}

footer {
  background: #f7f9fc;
}

footer a:hover,
footer a:focus,
footer .current-menu-item a {
  color: var(--linkColor) !important;
}

footer .footer-top {
  padding: 50px 15px 36px;
  margin-right: auto;
  margin-left: auto;
  max-width: var(--pageCenter);
  display: grid;
  grid-template-columns: 22% 78%;
  line-height: 28px;
}

footer .footer-top .f-logo {
  display: block;
  max-width: 189px;
}

footer .footer-top h6 {
  font-weight: 600;
  margin: 0 0 21px;
}

footer .footer-top p:last-of-type {
  margin: 0;
}

footer .footer-top ul:not(.social-icon) li {
  padding: 0 0 13px;
  margin: 0;
}

footer .footer-top ul li::before {
  display: none;
}

footer .footer-top ul li a {
  color: inherit;
  display: block;
  line-height: 1;
}

footer .footer-top p {
  line-height: 24px;
  margin: 0 0 10px;
}

footer .footer-top p:has(i) {
  position: relative;
  padding: 0 0 0 35px;
}

footer .footer-top p:has(i) i {
  position: absolute;
  left: 5px;
  top: 4px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .footer-top a {
  color: inherit;
}

footer .footer-top .right-content {
  display: grid;
  grid-template-columns: 42% 39% 19%;
  padding: 15px 0 0 0;
}

footer .footer-top .right-content .box {
  padding: 0 15px 0 0;
}

footer .footer-top .right-content .box:nth-child(1) ul {
  column-count: 2;
  padding: 6px 0 0 0;
}

footer .footer-bottom {
  background: #fff;
  font-size: 14px;
  padding: 28.5px 0;
}

footer .footer-bottom p {
  margin: 0;
}

footer .footer-bottom a {
  color: inherit;
}

footer .footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/******Footer End*****/
.smallHeading {
  text-transform: uppercase;
  color: #febd34;
  font-size: 14px;
  margin: 0 0 5px;
}

.bright-future-wrapper {
  color: #fff;
  background: #192f59;
  padding: 24px 0;
}

.bright-future-wrapper .container {
  display: flex;
  align-items: center;
}

.bright-future-wrapper h4 {
  font-size: 32px;
  margin: 0;
}

.bright-future-wrapper h4 small {
  font-weight: 300;
  font-size: 64%;
}

.bright-future-wrapper h4+* {
  width: 80.3%;
}

.bright-future-form {
  display: flex;
  /* align-items: center;
    width: 80.3%;*/
  padding: 15px 0 0 15px;
}

.bright-future-form input:not(.btn) {
  border-radius: 50px;
  height: 49px;
  border-color: #fff;
  margin: 0;
}

.bright-future-form .btn {
  min-width: 150px;
  padding: 13.3px 15px;
}

.bright-future-form>.box {
  padding: 0 10px 0 0;
  width: 100%;
}

.bright-future-form>.box:last-child {
  padding: 0;
  width: auto;
}

.we-offer-wrapper {
  text-align: center;
}

.we-offer-listing {
  display: grid;
  grid-template-columns: calc(100%/3 - 30px) calc(100%/3 - 30px) calc(100%/3 - 30px);
  grid-gap: 30px;
  margin: 0 -30px 0 0;
  padding: 22px 0 0;
}

.we-offer-listing .box {
  text-align: left;
  padding: 30px 30px 30px 18px;
  background: #d4f2f4;
  min-height: 301px;
}

.we-offer-listing .box a {
  color: inherit;
  font-weight: 600;
}

.we-offer-listing .box>* {
  padding-left: 61px;
}

.we-offer-listing .box h4 {
  font-weight: 600;
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
  margin: 0 0 10px;
  flex-wrap: wrap;
  font-size: 23px;
}

.we-offer-listing .box h4::before {
  content: "I";
  display: flex;
  align-items: end;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #85dee4;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 400;
  line-height: 15px;
}

.we-offer-listing .box:nth-child(2) {
  background: #fde3e5;
}

.we-offer-listing .box:nth-child(2) h4::before {
  background: #ffadb7;
  content: "II";
}

.we-offer-listing .box:nth-child(3) {
  background: #fcdd9d;
}

.we-offer-listing .box:nth-child(3) h4::before {
  background: #febd34;
  content: "III";
}

.two-col-fullW-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.two-col-fullW-info>* {
  width: 50%;
}

.two-col-fullW-info .max-width {
  /* margin: 0 auto 0 0;
    max-width: 561px; */
  position: relative;
}

.two-col-fullW-info .content-box {
  padding: 30px 15px 30px 40px;
  text-align: left;
}

.two-col-fullW-info .content-box:has(.max-width),
.reverse.two-col-fullW-info .content-box:has(.max-width) {
  padding: 30px 60px;
}

.two-col-fullW-info .content-box a {
  color: inherit;
}

.two-col-fullW-info .content-box a:hover {
  color: var(--linkColor);
}

.two-col-fullW-info img {
  width: 100%;
}

.two-col-fullW-info .max-width i.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  right: 100%;
  transform: translate(-20%, -20px);
}

.two-col-fullW-info .max-width i.icon img {
  width: auto;
}

.two-col-fullW-info a[href^="mailto:"] {
  color: inherit;
}

.two-col-fullW-info a[href^="mailto:"]:hover {
  color: var(--linkColor);
}

.reverse.two-col-fullW-info .max-width i.icon {
  left: 100%;
  right: auto;
  transform: translate(20%, -20px);
}

.our-program-wrapper .two-col-fullW-info {
  align-items: unset;
}

.our-program-wrapper .two-col-fullW-info .content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.our-program-wrapper .two-col-fullW-info .img-box img {
  height: 100%;
  object-fit: cover;
}

.our-program-wrapper .two-col-fullW-info:nth-child(3n + 1) {
  background-color: #d4f2f4;
}

.our-program-wrapper .two-col-fullW-info:nth-child(3n + 2) {
  background-color: #fde3e5;
}

.our-program-wrapper .two-col-fullW-info:nth-child(3n + 3) {
  background-color: #fcdd9d;
}

.our-program-wrapper .two-col-fullW-info:last-of-type {
  background: #fff;
}

figure {
  position: relative;
  width: 100%;
  height: 100%;
}

figure img {
  width: 100%;
  height: 100%;
}

figure::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 236px;
  height: 56px;
  background: url('../img/banner-conteht-img.png') no-repeat center;
}

.reverse.two-col-fullW-info {
  flex-direction: row-reverse;
}

.reverse.two-col-fullW-info .content-box {
  padding: 30px 40px 30px 15px;
}

.reverse.two-col-fullW-info .max-width {
  margin: 0 0 0 auto;
}

/* .reverse figure::before {
    right: 0;
    left: auto;
} */

.two-col-info {
  display: flex;
  flex-wrap: wrap;
}

.v-center.two-col-info {
  align-items: center;
}

.reverse.two-col-info {
  flex-direction: row-reverse;
}

.reverse.two-col-info .content-box {
  padding: 40px 40px 40px 0;
}

.two-col-info>* {
  width: 50%;
}

.two-col-info .img-box img {
  width: 100%;
  object-fit: cover;
}

.two-col-info .content-box {
  padding: 40px 0 40px 40px;
  text-align: left;
}

.two-col-info .content-box i.logo {
  margin: 0 0 15px;
  display: block;
}

ul.mission-listing {
  border-top: 1px solid #e8ecf2;
  margin: 0 0 42px;
  padding: 35px 0 0;
}

ul.mission-listing li::before {
  display: none;
}

ul.mission-listing li {
  padding: 42px 0 0 0;
}

ul.mission-listing li h5 {
  min-height: 32px;
  display: flex;
  align-items: center;
  padding: 0 0 0 43px;
  font-weight: 600;
  margin: 0 0 8px;
  position: relative;
}

ul.mission-listing li h5::before {
  content: "I";
  display: flex;
  align-items: end;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #ffadb7;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  font-size: 25px;
  font-weight: 400;
  line-height: 11px;
}

ul.mission-listing li:first-of-type {
  padding-top: 0;
}

ul.mission-listing li:nth-child(2) h5::before {
  background: #85dee4;
  content: "II";
}

.programs-extraCurricular-wrapper {
  background: #f7f9fc;
  padding: 97px 0;
}

.programs-extraCurricular-listing {
  display: grid;
  grid-template-columns: 50% 50%;
  --middleSpaceCommon: 195px;
  --innerSpace: 160px;
  --middleSpace: 79px;
  --circleWidth: 353px;
  --incircleWidth: 294px;
  --overLapValue: -27px;
  counter-reset: num;
  --topVal: 43px;
  --rightLeftVal: 18px;
}

.programs-extraCurricular-listing .box {
  position: relative;
  padding-top: 10px;
  min-height: 138px;
}

.programs-extraCurricular-listing .box:nth-child(even) {
  margin-left: var(--middleSpaceCommon);
  padding-left: var(--innerSpace);
}

.programs-extraCurricular-listing .box:nth-child(odd) {
  text-align: right;
  margin-right: var(--middleSpaceCommon);
  padding-right: var(--innerSpace);
}

.programs-extraCurricular-listing .box:nth-child(1),
.programs-extraCurricular-listing .box:nth-child(2) {
  margin-bottom: var(--middleSpace);
}

.programs-extraCurricular-listing .box:nth-child(3),
.programs-extraCurricular-listing .box:nth-child(4) {
  margin-top: var(--middleSpace);
}

.programs-extraCurricular-listing .box h5 {
  font-weight: 600;
  margin: 0 0 6px;
}

.programs-extraCurricular-listing .box i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background-color: #febd34;
  position: absolute;
  top: 2px;
}

.programs-extraCurricular-listing .box:nth-child(2) i {
  background: #85dee4;
}

.programs-extraCurricular-listing .box:nth-child(3) i {
  background: #ffadb7;
}

.programs-extraCurricular-listing .box:nth-child(4) i {
  background: #09246c;
}

.programs-extraCurricular-listing .box:nth-child(odd) i {
  right: 0;
}

.programs-extraCurricular-listing .box:nth-child(even) i {
  left: 0;
}

.programs-extraCurricular-listing .box i::after {
  counter-increment: num;
  content: "0" counter(num);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  font-style: normal;
  font-size: 18px;
  color: #09246c;
  font-weight: 700;
  position: absolute;
  top: 24px;
  left: 100%;
  transform: translate(-27px, 0);
}

.programs-extraCurricular-listing .box:nth-child(even) i:after {
  left: 0;
  transform: translate(-27px, 0);
  right: 100%;
}

.circle-box {
  width: var(--circleWidth);
  height: var(--circleWidth);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.circle-box>span {
  position: absolute;
  display: block;
  width: 118px;
  height: 118px;
  z-index: -1;
}

.circle-box>span:nth-child(1) {
  top: var(--topVal);
  left: var(--rightLeftVal);
}

.circle-box>span:nth-child(2) {
  top: var(--topVal);
  right: var(--rightLeftVal);
}

.circle-box>span:nth-child(3) {
  bottom: var(--topVal);
  left: var(--rightLeftVal);
}

.circle-box>span:nth-child(4) {
  bottom: var(--topVal);
  right: var(--rightLeftVal);
}

/* @keyframes spin {
    form {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.circle-box::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border: 5px dotted #d9ddde;
    border-radius: 50%;
    transform-origin: center;
    animation: spin 90s linear infinite forwards;
} */

.circle-box .btn {
  min-width: 135px;
}

.circle-box .inn-box {
  width: var(--incircleWidth);
  height: var(--incircleWidth);
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 0px 40px 18px rgb(11 11 11 / 4%);
}

.circle-box .inn-box img {
  margin: 0 auto 9px;
}

.circle-box .inn-box::before,
.circle-box .inn-box::after {
  content: "";
  display: block;
  background: #fff;
  width: 214px;
  height: 214px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
  bottom: 0;
}

.circle-box .inn-box::before {
  top: 0;
}

/* .programs-extraCurricular-listing .box::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50px;
    background: #febd33;
    box-shadow: 0px 0px 0px 4px #f7f9fc, 0px 0px 0px 9px #febd33;
    position: absolute;
    right: var(--overLapValue);
    bottom: 0;
    z-index: 6;
}

.programs-extraCurricular-listing .box:nth-child(2)::after {
    right: auto;
    left: var(--overLapValue);
    background: #85dee4;
    box-shadow: 0px 0px 0px 4px #f7f9fc, 0px 0px 0px 9px #85dee4;
}

.programs-extraCurricular-listing .box:nth-child(3)::after {
    top: 0;
    bottom: auto;
    background: #ffadb7;
    box-shadow: 0px 0px 0px 4px #f7f9fc, 0px 0px 0px 9px #ffadb7;
}

.programs-extraCurricular-listing .box:nth-child(4)::after {
    top: 0;
    left: var(--overLapValue);
    right: auto;
    bottom: auto;
    background: #08246c;
    box-shadow: 0px 0px 0px 4px #f7f9fc, 0px 0px 0px 9px #08246c;
} */

.our-gall-wrapper {
  text-align: center;
}

.h-gall-listing {
  display: flex;
  gap: 25px;
  margin: 33px -25px 30px 0;
}

.h-gall-listing .lazy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.h-gall-listing .lazy-image {
  padding-top: 31.417%;
  display: block;
  width: 24.33%;
}

.h-gall-listing .lazy-image:last-of-type {
  width: 46.9999999%;
}

.happy-parent-wrapper {
  text-align: center;
  background-color: #f7f9fc;
}

.happy-box {
  background: #fff;
  text-align: left;
  height: 100%;
  padding: 40px 40px;
  min-height: 315px;
}

.happy-parent-slider .owl-stage {
  display: flex;
}

.happy-parent-slider .owl-stage .owl-item {
  flex-shrink: 0;
}

.happy-parent-slider {
  padding: 35px 0 0;
}

.happy-box p {
  margin: 0;
}

.happy-box .bio {
  position: relative;
  padding: 0 25px 0 60px;
  min-height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 15px;
  margin: 0 0 25px;
}

.happy-box .bio>* {
  margin: 0;
}

.happy-box .bio .img {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  color: #fff;
  background: #febd34;
  font-size: 18px;
  font-weight: 600;
}

.happy-box .bio .img img {
  width: 101%;
  height: 101%;
  object-fit: cover;
  background: #fff;
}

.happy-box .bio .img:has(img) {
  background: transparent;
}

.happy-box .bio h6 {
  font-size: 18px;
  font-weight: 600;
}

.happy-box p:has(.fa-star) {
  color: #febd34;
  display: flex;
  padding: 0 0 20px;
}

.happy-box p:has(.fa-star) i {
  font-weight: 600;
}

h5:has(i > img[src*="sitter-sev"]) {
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 22px 0 0 0;
  border-top: 1px solid #e8ecf2;
  margin: 40px 0 0;
}

h5:has(i > img[src*="sitter-sev"]) i {
  margin: 0 23px 0 0;
}

h5:has(i > img[src*="sitter-sev"]) a {
  color: inherit;
}

h5:has(i > img[src*="sitter-sev"]) a:hover {
  color: var(--linkColor);
}

.visit-preRegister-cta {
  display: grid;
  grid-template-columns: 50% 50%;
}

.visit-preRegister-cta .max-width {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  padding-inline: 15px;
  padding-left: 123px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
}

.visit-preRegister-cta .box:last-child .max-width {
  margin-left: 84px;
  margin-right: auto;
}

.visit-preRegister-cta .box i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  margin: 0 0px 0 0;
  position: absolute;
  left: 0;
}

.visit-preRegister-cta .box {
  color: #fff;
  background: #09246c;
  position: relative;
  min-height: 166px;
  display: flex;
}

.visit-preRegister-cta .box:first-child i {
  background: #febd34;
}

.visit-preRegister-cta .box:last-child i {
  background: #09246c;
}

.visit-preRegister-cta .box:last-child {
  background: #febd34;
  color: inherit;
}

.visit-preRegister-cta .box a {
  color: inherit;
  cursor: pointer;
}

.visit-preRegister-cta .box a u {
  text-underline-offset: 5px;
}

.visit-preRegister-cta .max-width h4 {
  margin: 0 0 10px;
  line-height: 1;
}

.visit-preRegister-cta .box:first-child::after,
.visit-preRegister-cta .box:last-child::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 117px;
  height: 56px;
  background: url('../img/Visit-f-img.png') center no-repeat;
  background-size: contain !IMPORTANT;
}

.visit-preRegister-cta .box:last-child::after {
  background: url('../img/register-f-img.png') center no-repeat;
}

.our-team-wrapper {
  text-align: center;
}

.our-team-box-listing {
  display: grid;
  grid-gap: 27px;
  margin: 0 -27px 0 0;
  grid-template-columns: calc(100%/4 - 27px) calc(100%/4 - 27px) calc(100%/4 - 27px) calc(100%/4 - 27px);
  padding: 17px 0 0;
}

.our-team-box-listing h6 {
  font-weight: 600;
}

.our-team-box-listing .lazy-image {
  padding-top: 134.764%;
  margin: 0 0 13px;
}

.our-team-box-listing .lazy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

html:has(#ourMission) {
  scroll-behavior: smooth;
}

.mission-philosophy-wrapper {
  text-align: center;
  background-color: #f7f9fc;
  background-image: url('../img/mission-philosophy-bg-icon.png');
  background-repeat: no-repeat;
  background-position: center 93px;
  display: flex;
  flex-wrap: wrap;
  padding: 35px 0;
  counter-set: count;
  scroll-margin-top: var(--headerSpace);
}

.mission-philosophy-wrapper>* {
  width: 50%;
}

.mission-philosophy-wrapper .max-width {
  max-width: 600px;
  width: 100%;
  margin: 0 0 0 auto;
  padding: 30px 50px;
}

.mission-philosophy-wrapper .box:last-of-type .max-width {
  margin: 0 auto 0 0;
}

.mission-philosophy-wrapper h3 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 18px;
}

.mission-philosophy-wrapper h3::before {
  counter-increment: count;
  content: "0" counter(count);
  display: block;
  width: fit-content;
  margin: 0 auto 8px;
  color: #dce1ef;
  font-size: 133.4%;
}

.mission-philosophy-wrapper p {
  margin: 0;
}

.mission-philosophy-wrapper p a {
  color: inherit;
}

.mission-philosophy-wrapper p a:hover {
  color: var(--linkColor);
}

ul.core-values {
  display: grid;
  grid-template-columns: calc(100%/4) calc(100%/4) calc(100%/4) calc(100%/4);
  text-align: center;
  padding: 60px 0 30px;
}

ul.core-values>li {
  padding: 0;
  margin: 0;
}

ul.core-values>li::before {
  display: none;
}

ul.core-values>li i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  width: 112px;
  height: 112px;
  background: #febd34;
  border-radius: 50%;
}

ul.core-values>li h5 {
  font-weight: 600;
}

ul.core-values>li:nth-child(2) i {
  background: #85dee4;
}

ul.core-values>li:nth-child(3) i {
  background: #ffadb7;
}

ul.core-values>li:nth-child(4) i {
  background: #09246c;
}

.our-team-slider.owl-carousel {
  margin: 0;
  display: block;
}

.our-teamFull-listing {
  padding: 23px 0 0 0;
}

.our-teamFull-listing .two-col-info:nth-child(even) {
  flex-direction: row-reverse;
}

.our-teamFull-listing .two-col-info:nth-child(even) .content-box {
  padding: 40px 40px 40px 0;
}

.our-teamFull-listing .two-col-info .content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.our-teamFull-listing .two-col-info .content-box h6 {
  margin: 0;
}

.our-teamFull-listing .two-col-fullW-info:nth-child(even) {
    flex-direction: row-reverse;
}

h3 small,
h4 small {
  font-size: 70%;
  margin: 0 0 0 5px;
  font-weight: 500;
}

.b-divider {
  border-top: 7px solid #f7f9fc
}

.title-heading {
  font-size: 42px;
}

.sitter-sev.eq-space {
  padding-top: 30px;
  margin-top: 30px;
}

.text-blue {
  color: #09246c
}

.bg-blue {
  background-color: #d4f2f4
}

.bg-pink {
  background-color: #fde3e5
}

.bg-yel {
  background-color: #fcdd9d
}

.bg-purple {
  background-color: #dfe0ff
}

.bg-yel.two-col-fullW-info .max-width i.icon {
  background: #febd34;
}

.bg-blue.two-col-fullW-info .max-width i.icon {
  background: #85dee4;
}

.bg-pink.two-col-fullW-info .max-width i.icon {
  background: #ffadb7;
}

.bg-purple.two-col-fullW-info .max-width i.icon {
  background: #09246c;
}

ul.color-list {
  display: flex;
  row-gap: 15px;
  flex-wrap: wrap;
  counter-reset: roman_numeral;
}

ul.color-list li {
  font-weight: 600;
  font-size: 18px;
  width: 100%;
  padding: 2px 0 2px 36px;
  overflow: visible;
  counter-increment: roman_numeral;
}

ul.color-list li::before {
  content: "" counter(roman_numeral, upper-roman)"";
  display: flex;
  align-items: end;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #ffadb7;
  position: absolute;
  font-family: var(--bodyFontFamily);
  left: 0;
  top: 0;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 400;
  line-height: 6px;
  color: #09246c;
}

ul.color-list li:nth-child(2n):before {
  background-color: #85dee4
}

ul.color-list li:nth-child(3n):before {
  background-color: #febd34
}

ul.color-list li:has(strong) {
  font-weight: inherit;
}

ul.text-18 {
  font-size: 18px;
}

ul.flex-list {
  display: flex;
  row-gap: 10px;
  flex-wrap: wrap;
}

ul.flex-list li {
  width: 100%;
  padding: 2px 0 2px 45px
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(12),
.gallery-item:nth-child(21),
.gallery-item:nth-child(30),
.gallery-item:nth-child(39),
.gallery-item:nth-child(48),
.gallery-item:nth-child(57),
.gallery-item:nth-child(66),
.gallery-item:nth-child(75),
.gallery-item:nth-child(84),
.gallery-item:nth-child(93) {
  grid-column: 3 / 5;
}

.gallery-item:nth-child(5),
.gallery-item:nth-child(14),
.gallery-item:nth-child(23),
.gallery-item:nth-child(32),
.gallery-item:nth-child(41),
.gallery-item:nth-child(50),
.gallery-item:nth-child(59),
.gallery-item:nth-child(68),
.gallery-item:nth-child(77),
.gallery-item:nth-child(86),
.gallery-item:nth-child(95) {
  grid-column: 2 / 4;
}

.gallery-item:nth-child(7),
.gallery-item:nth-child(16),
.gallery-item:nth-child(25),
.gallery-item:nth-child(34),
.gallery-item:nth-child(43),
.gallery-item:nth-child(52),
.gallery-item:nth-child(61),
.gallery-item:nth-child(70),
.gallery-item:nth-child(79),
.gallery-item:nth-child(88),
.gallery-item:nth-child(97) {
  grid-column: 1 / 3;
}

.mfp-wrap figure::before {
  display: none;
}

.wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 15px;
}

.wpcf7-form-control label {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 16px !important;
  color: #737c96;
  font-weight: normal !important
}

.wpcf7-form-control .wpcf7-list-item input {
  display: none;
}

.wpcf7-form-control .wpcf7-list-item-label {
  position: relative;
  padding: 2px 0 2px 32px !important;
  margin: 0 !important
}

.wpcf7-form-control .wpcf7-list-item-label:before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 24px;
  border: 1px solid #d3dae5;
  background-color: #f7f9fc;
  display: flex;
  position: absolute;
  left: 0;
  top: 0
}

.wpcf7-form-control .wpcf7-list-item:has(input[type="checkbox"]) .wpcf7-list-item-label:before {
  border-radius: 4px
}

.wpcf7-form-control .wpcf7-list-item:has(input[type="checkbox"]) .wpcf7-list-item-label::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  width: auto;
  background: none;
  height: auto;
  color: #09246c;
  line-height: 18px;
  font-weight: 900;
  left: 3px;
  top: 3px;
}

.wpcf7-form-control .wpcf7-list-item-label::after {
  content: "";
  background: #09246c;
  border-radius: 20px;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 5px;
  left: 5px;
  opacity: 0;
}

.wpcf7-form-control input:checked~.wpcf7-list-item-label::after {
  opacity: 1.0;
}

.wpcf7-spinner {
  position: absolute;
}

.wpcf7-not-valid-tip {
  background: #dc3232;
  color: #fff;
  font-size: 13px;
  line-height: normal;
  padding: 3px 13px;
  margin: 10px 0 0 0;
  border-radius: 20px;
}

.wpcf7 form .wpcf7-response-output {
  border-radius: 10px;
}

.icon-field {
  position: relative;
}

.icon-field i {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #09246c;
  z-index: 5;
  font-weight: 300
}

.icon-field i+input,
.icon-field i+* input {
  padding-right: 44px
}

.pre-form input:not(.btn),
.pre-form select,
.pre-form textarea,
.content-form input:not(.btn),
.content-form select,
.content-form textarea {
  margin-bottom: 0
}

.pre-form label,
.content-form label {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.pre-form [class*="col-"],
.content-form [class*="col-"] {
  padding-top: 24px
}

.pre-form [class*="col-"]:has(.wpcf7-list-item) label,
.content-form [class*="col-"]:has(.wpcf7-list-item) label {
  margin-bottom: 15px;
}

.pre-form .btn,
.content-form .btn {
  font-size: 18px;
  font-weight: 600;
  padding: 13px 30px;
  min-width: 228px;
}

.pre-form {
  display: grid;
  gap: 40px;
  grid-template-columns: auto 385px;
}

.pre-form .column:first-child {
  margin-top: -20px;
}

.content-form {
  margin: 0 auto;
  width: 100%;
  max-width: 756px;
}

.two-col-fullW-listing {
  padding: 23px 0 0 0;
}

.two-col-fullW-listing .two-col-fullW-info:nth-child(even) {
  flex-direction: row-reverse;
}

.two-col-fullW-listing .two-col-fullW-info:nth-child(even) .content-box {
  padding: 40px 40px 40px 0;
}

.two-col-fullW-listing .two-col-fullW-info:nth-child(even) .content-box .max-width {
  margin: 0 0 0 auto;
}

.two-col-fullW-listing .two-col-fullW-info .content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-box {
  position: relative;
  overflow: hidden;
  padding-top: 36.5584%;
}

.map-box>iframe {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

ul.contact-info {
  margin: 0;
  padding: 0;
}

ul.contact-info>li {
  margin: 0 0 35px;
  padding: 0 0 0 80px;
  position: relative;
  min-height: 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

ul.contact-info>li::before {
  display: none;
}

ul.contact-info>li a {
  color: inherit;
}

ul.contact-info>li i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  position: absolute;
  left: 0;
  top: 0;
  background: #ffadb7;
  border-radius: 50%;
  padding: 5px;
}

ul.contact-info>li i img {
  width: fit-content;
}

ul.contact-info>li:nth-child(2) i {
  background: #85dee4;
}

ul.contact-info>li:nth-child(3) i {
  background: #febd34;
}

ul.contact-info>li:nth-child(4) i {
  background: #cfdefa;
}

ul.contact-info>li:last-child {
  margin: 0;
}

ul.contact-info>li h6 {
  font-size: 22px;
  margin: 0 0 3px;
}

ul.parent-resource-listing {
  display: grid;
  margin: 0 -20px 0 0;
  grid-gap: 20px;
  grid-template-columns: calc(100%/2 - 20px) calc(100%/2 - 20px);
  padding: 23px 0 0;
}

ul.parent-resource-listing>li {
  padding: 35px 35px;
  margin: 0;
  background: #f7f9fc;
  border-bottom: 5px solid #febd34;
}

ul.parent-resource-listing>li.full-width {
    grid-column: 1 / span 3;
}

ul.parent-resource-listing>li::before {
  display: none;
}

ul.parent-resource-listing>li h6 {
  font-size: 14px;
  font-weight: 500;
}

ul.parent-resource-listing>li table {
  background-color: #bfbfbf;
  border-radius: 1em;
  overflow: hidden;
  border: 1px solid #bfbfbf;
  font-size: 15px;
}

ul.parent-resource-listing>li table tr {
  background: #fff;
}

ul.parent-resource-listing>li table tr:nth-child(odd) {
  background: #f6f6f6;
}

ul.parent-resource-listing>li table tr th {
  background-color: #efefef;
}

ul.parent-resource-listing>li .table-responsive {
    margin-bottom: 0;
}

.not-found-wrapper {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
}

/************Responsive Start************/
@media only screen and (max-width: 1180px) {
  :root {
    --logoWidth: 70px;
    --headerSpace: 136px;
  }

  html:has(header:not(.header-top p)):root {
    --headerSpace: 107px;
  }

  html.head-fix:root {
    --headerSpace: 99px;
  }

  header .header-btn-wrap ul li .btn {
	min-width: unset;
	width: 40px;
	height: 40px;
	font-size: 0;
	padding: 0;
	border-radius: 5px;
	border-width: 2px;
	line-height: 0;
	flex-direction: column;
  }

  header .header-btn-wrap ul li .btn i {
    margin: 0;
    display: block;
  }

  header .header-btn-wrap ul li .btn i img {
    width: 24px;
  }

  header .header-btn-wrap ul {
    flex-direction: unset;
  }

  header .header-btn-wrap ul li {
    margin: 0 0 0 5px;
  }

  .programs-extraCurricular-listing .box i {
    width: 90px;
    height: 90px;
  }

  .programs-extraCurricular-wrapper {
    padding: 60px 0;
  }

  .programs-extraCurricular-listing {
    --innerSpace: 100px;
    --middleSpaceCommon: 170px;
    --middleSpace: 60px;
  }
}

@media only screen and (max-width: 1050px) {
  .bright-future-wrapper .container {
    flex-direction: column;
    text-align: center;
  }

  .bright-future-wrapper h4+*,
  .bright-future-form {
    width: 100%;
  }

  .we-offer-listing .box {
    padding: 20px 20px;
  }

  .we-offer-listing .box>* {
    padding-left: 50px;
  }

  .we-offer-listing .box h4::before {
    width: 40px;
    height: 40px;
  }

  footer .footer-top {
    grid-template-columns: 25% 75%;
  }
}

@media only screen and (max-width: 1024px) {

  /**************/
  .nav-trigger {
    float: right;
    padding: 1px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    transition-duration: .15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    border: 2px solid #192f59;
    border-radius: 5px;
    margin: 0 0 0 5px;
    overflow: visible;
    font-size: 0;
    line-height: 0;
  }

  .nav-trigger .icon {
    width: 20px;
    height: 30px;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: flex;
    vertical-align: middle;
    line-height: 0;
    margin: 4px 0 0 0;
  }

  .nav-trigger .icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 50%;
    background: #192f59;
    opacity: 1;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }

  .nav-trigger .icon span:nth-child(even) {
    left: 50%
  }

  .nav-trigger .icon span:nth-child(odd) {
    left: 0
  }

  .nav-trigger .icon span:nth-child(1),
  .nav-trigger .icon span:nth-child(2) {
    top: 3px
  }

  .nav-trigger .icon span:nth-child(3),
  .nav-trigger .icon span:nth-child(4) {
    top: 12px
  }

  .nav-trigger .icon span:nth-child(5),
  .nav-trigger .icon span:nth-child(6) {
    top: 21px
  }

  .closemenu.nav-trigger .icon span:nth-child(1),
  .closemenu.nav-trigger .icon span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
  }

  .closemenu.nav-trigger .icon span:nth-child(2),
  .closemenu.nav-trigger .icon span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
  }

  .closemenu.nav-trigger .icon span:nth-child(1) {
    left: 2px;
    top: 8px
  }

  .closemenu.nav-trigger .icon span:nth-child(2) {
    left: calc(50% - 1px);
    top: 8px
  }

  .closemenu.nav-trigger .icon span:nth-child(3) {
    left: -50%;
    opacity: 0
  }

  .closemenu.nav-trigger .icon span:nth-child(4) {
    left: 100%;
    opacity: 0
  }

  .closemenu.nav-trigger .icon span:nth-child(5) {
    left: 2px;
    top: 15px
  }

  .closemenu.nav-trigger .icon span:nth-child(6) {
    left: calc(50% - 1px);
    top: 15px
  }

  #sidebar-nav {
    right: -300px;
    top: 0;
    bottom: 0;
    position: fixed;
    width: 300px;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 20px 0 30px 35px;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -ms-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    background: #fff;
    -webkit-box-shadow: inset -30px 20px 20px rgb(255 255 255), inset -30px -20px 20px rgb(255 255 255), inset 0px 0px 20px rgb(0 0 0 / 40%);
    box-shadow: inset -30px 20px 20px rgb(255 255 255), inset -30px -20px 20px rgb(255 255 255), inset 0px 0px 20px rgb(0 0 0 / 40%);
  }

  html,
  header {
    -o-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -ms-transition: all 0.2s linear 0s;
    -o-transition: all 0.3s linear 0s;
  }

  .sidebar_active {
    overflow: hidden;
    margin-left: -300px;
    margin-right: 300px;
  }

  .sidebar_active #sidebar-nav {
    display: block;
    right: 0;
    z-index: 999999;
  }

  .nav-wrap nav ul.nav>li.has-sub>a:after {
    display: none
  }

  .sidebar_active header {
    position: fixed;
    left: -300px;
    right: 300px;
  }

  .nav-wrap nav ul li::before {
    display: none;
  }

  .nav-wrap nav ul,
  nav ul ul {
    display: none;
  }

  .nav-wrap nav ul.nav {
    padding: 0;
    margin: 0;
    border: 0;
    visibility: visible;
    display: block;
    top: 0;

    color: #272422;
  }

  .nav-wrap nav ul.nav>li {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .nav-wrap nav ul.nav>li>a {
    display: block;
    color: #272422;
    padding: 17px 20px 17px 5px;
    margin: 0;
    white-space: inherit;
    border-radius: 0;
    border: none;
    font-size: 21px;
    line-height: 26px;
    font-weight: 700;
    text-decoration: none;
    text-transform: capitalize;
    position: relative;
  }

  .nav-wrap nav ul.nav li.current-menu-item>a,
  .nav-wrap nav ul.nav li.current-menu-ancestor>a,
  .nav-wrap nav ul.nav li.current-menu-parent>a {
    color: var(--linkColor);
  }

  .nav-wrap nav ul.nav>li.current-menu-item>a:before,
  .nav-wrap nav ul.nav>li.current-menu-parent>a:before {
    content: '';
    height: 2px;
    left: 5px;
    bottom: 0;
    position: absolute;
    width: 30px;
    z-index: -1;
    overflow: hidden;
    background: var(--linkColor);
  }

  .nav-wrap nav ul.nav>li.has-sub>a {
    padding-right: 50px;
  }

  .nav-wrap nav ul.nav ul li {
    opacity: 1.0;
    padding: 0;
  }

  .nav-wrap nav ul.nav ul {
    position: static;
    opacity: 1.0;
    visibility: visible;
    padding: 0;
    border-radius: 0;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .nav-wrap nav>ul.nav>li>ul {
    max-height: inherit;
    margin-top: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    text-align: left
  }

  .nav-wrap nav ul.nav>li>ul>li {
    padding: 0;
    margin: 0;
    float: left;
    width: 100%;
    border-bottom: none;
    min-width: inherit
  }

  .nav-wrap nav ul.nav>li>ul li a {
    display: block;
    color: inherit;
    padding: 10px 40px 10px 15px;
    font-size: 17px;
    font-weight: 500;
    line-height: normal;
    white-space: inherit;
    text-align: left;
  }

  .nav-wrap nav ul.nav ul ul li {
    padding-left: 10px;
  }

  .nav-wrap nav .submenu-button {
    position: absolute;
    font-size: 0;
    background-color: transparent;
    right: 0;
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 111;
  }

  .nav-wrap nav ul.nav>li>.submenu-button {
    height: 60px;
    width: 50px;
  }

  .nav-wrap nav .submenu-button:before {
    content: "";
    position: absolute;
    right: 50%;
    top: 50%;
    margin: -4px -4px 0 0;
    border: solid #000;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .nav-wrap nav .submenu-button.submenu-opened:before {
    -ms-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    margin-top: -3px;
  }

  .sidebar_active .mega-dropdown.open,
  .sidebar_active .nav-wrap nav ul.nav ul.open {
    display: block !important;
    position: static !important;
    top: 40px;
    left: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    opacity: 1.0;
    visibility: visible;
    height: 100%;
    overflow: auto;
    z-index: 99999;
  }
}

@media only screen and (max-width: 991px) {
  .common-content {
    padding: 30px 0;
  }

  .alignleft,
  .alignright {
    max-width: 300px
  }

  /*** Menu Accordion Mobile **/
  .mnu-acc {
    position: relative;
  }

  .mnu-acc+.content {
    display: none;
    padding: 10px 0px 0px;
  }

  .mnu-acc-trg {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 30px;
    line-height: 30px;
    color: rgb(0, 176, 140);
    font-size: 12px;
    text-align: right;
    cursor: pointer;
  }

  .mnu-acc-trg i {
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
  }

  .active.mnu-acc .mnu-acc-trg i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .main-banner .slide-item::before {
    height: 60px;
    bottom: 10px;
    left: 10px;
  }

  .bright-future-wrapper {
    padding: 10px 0 30px;
  }

  .two-col-fullW-info>* {
    width: 100%;
  }

  .two-col-fullW-info .max-width {
    max-width: unset;
    margin: 0 auto;
  }

  .two-col-fullW-info .content-box,
  .two-col-fullW-listing .two-col-fullW-info:nth-child(even) .content-box,
  .reverse.two-col-fullW-info .content-box,
  .two-col-fullW-info .content-box:has(.max-width),
  .reverse.two-col-fullW-info .content-box:has(.max-width) {
    padding: 20px 15px;
  }

  .two-col-fullW-info .max-width i.icon,
  .reverse.two-col-fullW-info .max-width i.icon {
    right: 0;
    left: auto;
    transform: translate(0, -100%);
    width: 70px;
    height: 70px;
    padding: 10px;
  }

  .two-col-fullW-info .max-width i.icon img,
  .reverse.two-col-fullW-info .max-width i.icon img {
    height: 35px;
  }

  .programs-extraCurricular-listing .box {
    padding: 10px 15px 40px !important;
    text-align: center !important;
  }

  .programs-extraCurricular-listing .box i {
    position: relative;
    margin: 0 auto 10px;
  }

  .visit-preRegister-cta {
    grid-template-columns: 100%;
  }

  .visit-preRegister-cta .max-width {
    margin: 0 !important;
    max-width: unset;
    min-height: 90px;
    padding-left: 85px;
  }

  .visit-preRegister-cta .box i {
    width: 74px;
    height: 74px;
    padding: 15px;
  }

  .visit-preRegister-cta .box {
    min-height: 140px;
    padding: 15px 15px;
  }

  footer .footer-top {
    grid-template-columns: 100%;
    padding: 30px 15px;
  }

  footer .footer-top .f-logo {
    margin: 0 auto 30px;
    max-width: 130px;
  }

  footer .footer-top .right-content {
    grid-template-columns: 50% 50%;
    margin: 0 0 -25px;
  }

  footer .footer-top .right-content .box {
    padding-bottom: 25px;
  }

  footer .footer-bottom {
    padding: 15px 0;
  }

  footer .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .programs-extraCurricular-wrapper {
    padding: 30px 0;
  }

  .circle-box {
    position: relative;
    transform: unset;
    left: auto;
    top: auto;
    order: 0;
    margin: 0 auto;
  }

  .programs-extraCurricular-listing .box {
    margin: 0 !important;
    text-align: left !important;
    padding: 10px 0 30px 27px !important;
    order: 1;
  }

  .programs-extraCurricular-listing {
    display: flex;
    flex-wrap: wrap;
  }

  .programs-extraCurricular-listing .box i::after {
    right: auto;
    left: 0 !important;
    transform: translate(-20px, -30px) !important;
  }

  .programs-extraCurricular-listing .box i {
    margin-inline: 0;
  }

  .programs-extraCurricular-listing .box::after {
    right: auto !important;
    left: 10px !important;
    top: 45px !important;
  }

  .two-col-info>* {
    width: 100%;
  }

  .two-col-info .content-box,
  .our-teamFull-listing .two-col-info:nth-child(even) .content-box {
    padding: 30px 0;
  }

  ul.core-values {
    grid-template-columns: calc(100% / 2) calc(100% / 2);
    padding: 0;
    margin: 0 0 -15px;
  }

  ul.core-values>li i {
    width: 90px;
    height: 90px;
    margin: 0 auto 10px;
  }

  ul.core-values>li h5 {
    font-size: 17px;
  }

  ul.core-values>li {
    margin: 0 0 15px;
  }

  .mission-philosophy-wrapper .max-width {
    max-width: unset;
  }

  .our-team-box-listing {
    grid-template-columns: calc(100% / 2 - 15px) calc(100% / 2 - 15px);
    grid-gap: 15px;
    margin: 0 -15px 0 0;
  }

  .our-team-box-listing h6 {
    font-size: 18px;
  }

  .map-box {
    padding-top: 100%;
  }

  .gallery-row {
    gap: 5px;
    margin-top: 10px;
  }

  ul.parent-resource-listing {
    padding: 0;
    grid-template-columns: calc(100% / 1 - 30px);
  }

  ul.parent-resource-listing>li {
    padding: 20px;
  }

  ul.parent-resource-listing>li.full-width {
    grid-column: unset;
  }

  .white-popup-block .alignleft,
  .white-popup-block .alignright {
    max-width: 50px;
  }

  .we-offer-listing {
    grid-template-columns: calc(100% / 2 - 30px) calc(100% / 2 - 30px);
  }
}

@media only screen and (max-width: 767px) {
  .we-offer-listing {
    grid-template-columns: calc(100% / 1 - 30px);
  }

  .we-offer-listing .box {
    min-height: unset;
  }

  .bright-future-form {
    flex-direction: column;
    padding: 10px 0 0 0;
  }

  .bright-future-form>.box {
    padding: 0 0 10px;
    width: 100% !important;
  }

  .bright-future-form .btn {
    width: 100%;
  }

  .we-offer-listing .box h4 {
    min-height: 40px;
    margin: 0 0 10px;
  }

  .we-offer-listing .box p {
    margin: 0 0 10px;
  }

  .we-offer-listing .box p:last-of-type {
    margin: 0;
  }

  ul.mission-listing li h5 {
    margin: 0 0 15px;
  }

  .h-gall-listing .lazy-image {
    width: calc(50% - 10px) !important;
    padding-top: 50% !important;
  }

  .h-gall-listing {
    flex-wrap: wrap;
    gap: 10px;
    margin: 33px -10px 30px 0;
  }

  .happy-box {
    padding: 20px 20px;
    min-height: unset;
  }

  .visit-preRegister-cta .box:first-child::after,
  .visit-preRegister-cta .box:last-child::after {
    width: 60px;
    height: 29px;
  }

  footer .footer-top .right-content {
    grid-template-columns: 100%;
  }

  .mission-philosophy-wrapper>* {
    width: 100%;
  }

  .mission-philosophy-wrapper {
    background-position: center;
  }

  .pre-form {
    grid-template-columns: 100%;
  }

  .not-found-wrapper {
    grid-template-columns: 100%;
  }

  .not-found-wrapper .img-box img {
    max-width: 160px;
    margin-bottom: 30px;
  }

  .not-found-wrapper .content-box {
    text-align: center;
  }
}

@media only screen and (max-width: 639px) {}

@media only screen and (max-width: 580px) {

  .alignleft,
  .alignright {
    max-width: 100%;
    margin: 10px auto;
    float: none;
    display: block
  }
}

@media only screen and (max-width: 445px) {
  :root {
    --headerSpace: 155px;
  }
}

@media only screen and (max-width: 420px) {}

@media only screen and (max-width: 359px) {
  .sidebar_active {
    overflow: hidden;
    margin-left: -255px;
    margin-right: 255px;
  }

  .sidebar_active header {
    position: fixed;
    left: -255px;
    right: 255px;
  }

  #sidebar-nav {
    right: -255px;
    width: 255px;
    padding-left: 20px;
  }
}

/************Responsive End************/