@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {

  --primary: #fbdc84;
  --secondary: #a8c39a;
  /* --secondary: #40846e; */

  --primary-light: #fcf4ee;

  --primary-one: #1750bd;
  --primary-two: #d0490e;

  --primary-link: #fbdc84;
  --primary-link-hover: #a8c39a;

  --primary-btn: #fbdc84;
  --primary-btn-hover: #a8c39a;

  --secondary-btn: #a8c39a;
  --secondary-btn-hover: #fbdc84;

  --site-radius: 5px;

  --title-color: #111;
  --title-family: "Lato";
  --title-family2: "Sora", "serif";

}


/*===GENERAL===*/
.site-text-primary {
  color: #022279;
}

.site-text-black {
  color: #000;
}

.site-text-gray {
  color: #e7e7e7;
}

.site-text-gray-light {
  color: #f9f9f9;
}

.site-text-white {
  color: #fff;
}

.site-bg-primary {
  background-color: #fbdc84;
}

.site-bg-black {
  background-color: #000;
}

.site-bg-dark {
  background-color: #000;
}

.site-bg-gray {
  background-color: #eff3f6;
}

.site-bg-gray-light {
  background-color: #f9f9f9;
}

.site-bg-light {
  background-color: #fff9f0;
}

.site-bg-white {
  background-color: #fff;
}

body {
  color: #111;
  font-family: 'Lato', sans-serif;
  line-height: 1.8;
  font-weight: normal;
  padding: 0px;
  margin: 0px;
  overflow-x: hidden;
  font-size: 16px;
  background-color: #FFF;
}

a {
  color: #000;
  outline: 0px none;
  text-decoration: none;
}

a:hover,
a:focus {
  outline: 0px none;
  text-decoration: none;
}

a:active,
a:hover,
a:focus {
  color: var(--secondary);
}

.overflow-hide {
  overflow: hidden;
}

img {
  border-style: none;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

/*Float clearfix*/
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.shadow-bx {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

ol.commentlist li:after {
  content: "";
  display: table;
  clear: both;
}

section,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
summary {
  display: block;
}

ul {
  padding: 0px;
}

::selection {
  background: #484848;
  color: #fff;
}

.form-select option {
  font-family: tahoma;
  font-size: 14px;
}

/*===Heading & Title====*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Sora;
  line-height: 1.2;
  color: #000222;
}

h1 {
  font-size: 75px;
  font-weight: 600;
}

h2 {
  font-size: 52px;
  font-weight: 600;
}

h3 {
  font-size: 36px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

h5 {
  font-size: 18px;
  font-weight: 700;
}

h6 {
  font-size: 16px;
  font-weight: 700;
}

@media only screen and (max-width:991px) {
  h1 {
    font-size: 48px;
    font-weight: 700;
  }

  h2 {
    font-size: 36px;
    font-weight: 700;
  }

  h3 {
    font-size: 28px;
    font-weight: 700;
  }
}

@media only screen and (max-width:767px) {
  h1 {
    font-size: 36px;
    font-weight: 600;
  }

  h2 {
    font-size: 28px;
    font-weight: 600;
  }

  h3 {
    font-size: 24px;
    font-weight: 600;
  }
}

@media only screen and (max-width:575px) {
  h2 {
    font-size: 26px;
    font-weight: 600;
  }

  h3 {
    font-size: 22px;
    font-weight: 600;
  }
}



/*---Text align--- */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

/*===Listing Style===*/
dl,
ul,
ol {
  list-style-position: outside;
  padding: 0px;
}

ul,
ol {
  margin-bottom: 24px;
}

ul li {
  padding: 0px;
}

ol li {
  padding: 0px;
}

.list-simple li {
  margin-bottom: 10px;
}

.list-simple li ul {
  margin-left: 15px;
  margin-top: 10px;
}

.list-simple.list-unstyled li ul {
  margin-left: 30px;
  margin-top: 10px;
}

.list-circle,
.list-angle-right,
.list-arrow,
.list-check,
.list-checked,
.list-check-circle,
.list-chevron-circle,
.list-arrow-circle,
.list-times-circle {
  margin: 0px 0px 20px 0px;
  padding: 0px;
  list-style: none;
  font-weight: 600;
}

.list-circle li,
.list-angle-right li,
.list-arrow li,
.list-check li,
.list-checked li,
.list-check-circle li,
.list-chevron-circle li,
.list-arrow-circle li,
.list-times-circle li {
  padding: 5px 5px 5px 20px;
  position: relative;
}

.list-circle li:before,
.list-angle-right li:before,
.list-arrow li:before,
.list-check li:before,
.list-checked li:before,
.list-check-circle li:before,
.list-chevron-circle li:before,
.list-arrow-circle li:before,
.list-times-circle li:before {
  font-family: "FontAwesome";
  position: absolute;
  left: 0px;
  top: 3px;
  display: block;
  font-size: 15px;
  color: #000;
}

.list-circle li:before {
  top: 6px;
  font-size: 10px;
  content: "\f111";
}

.list-angle-right li:before {
  content: "\f105";
}

.list-arrow li:before {
  content: "\f0da";
}

.list-check li:before {
  content: "\f00c";
}

.list-checked li:before {
  content: "\f046";
}

.list-check-circle li:before {
  content: "\f058";
}

.list-chevron-circle li:before {
  content: "\f138";
}

.list-arrow-circle li:before {
  content: "\f0a9";
}

.list-times-circle li:before {
  content: "\f057";
}



.list-arrow-circle2 {
  margin: 0px 0px 20px 0px;
  padding: 0px;
  list-style: none;
  font-weight: 600;
}

.list-arrow-circle2 li {
  padding: 5px 5px 5px 25px;
  position: relative;
}

.list-arrow-circle2 li:before {
  font-family: feather !important;
  position: absolute;
  left: 0px;
  top: 12px;
  display: block;
  font-size: 16px;
  color: var(--primary);
  font-weight: normal;
  line-height: 1;
}

.list-arrow-circle2 li:before {
  content: "\e92c";
}




.form-select {
  height: 60px;
  border-color: #e8edf1;
  border-width: 2px;
  background-color: #fff;
}

.form-select:focus {
  border-color: #e8edf1;
  outline: 0;
  box-shadow: 0px 0px 5px 10px rgba(0, 0, 0, 0.02);
}

.form-select.gradi-line-1 {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to bottom, var(--primary-one), var(--primary-two)) border-box;
  border-radius: 5px;
  border: 2px solid transparent;
}

.form-select.select-gray-bg {
  background-color: #F3F7FA;
}

.form-control.gradi-line-1 {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to bottom, var(--primary-one), var(--primary-two)) border-box;
  border-radius: 5px;
  border: 2px solid transparent;
}

.form-select.form-no-bg {
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="%23ffffff" d="M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z"/></svg>') right 1rem center/8px 10px no-repeat;
}

.form-select.form-no-bg option {
  color: #222;
}

.form-control.form-no-bg {
  background: none;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.form-control.form-no-bg::placeholder {
  color: #fff;
  opacity: 1;
}

.form-control.form-no-bg:-ms-input-placeholder {
  color: #fff;
}

.form-control.form-no-bg::-ms-input-placeholder {
  color: #fff;
}

.form-control.form-no-bg:focus {
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.8);
}


.select-box {
  display: flex;
}

.select-box select {
  border: none;
  height: 56px;
}

.gradi-line-1 {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to bottom, var(--primary-one), var(--primary-two)) border-box;
  border-radius: 5px;
  border: 2px solid transparent;
}

.datepicker table tr td,
.datepicker table tr th {
  padding: 0px;
  font-size: 13px;
}

/*---Padding (around)---*/
.p-a0 {
  padding: 0px;
}

.p-a5 {
  padding: 5px;
}

.p-a10 {
  padding: 10px;
}

.p-a15 {
  padding: 15px;
}

.p-a20 {
  padding: 20px;
}

.p-a25 {
  padding: 25px;
}

.p-a30 {
  padding: 30px;
}

.p-a40 {
  padding: 40px;
}

.p-a50 {
  padding: 50px;
}

.p-a60 {
  padding: 60px;
}

.p-a70 {
  padding: 70px;
}

.p-a80 {
  padding: 80px;
}

.p-a90 {
  padding: 90px;
}

.p-a100 {
  padding: 100px;
}

.p-a110 {
  padding: 110px;
}

.p-a120 {
  padding: 120px;
}

.p-a130 {
  padding: 130px;
}

.p-a140 {
  padding: 140px;
}

.p-a150 {
  padding: 150px;
}

/*---Padding (top)---*/
.p-t0 {
  padding-top: 0px;
}

.p-t5 {
  padding-top: 5px;
}

.p-t10 {
  padding-top: 10px;
}

.p-t15 {
  padding-top: 15px;
}

.p-t20 {
  padding-top: 20px;
}

.p-t30 {
  padding-top: 30px;
}

.p-t40 {
  padding-top: 40px;
}

.p-t50 {
  padding-top: 50px;
}

.p-t60 {
  padding-top: 60px;
}

.p-t70 {
  padding-top: 70px;
}

.p-t80 {
  padding-top: 80px;
}

.p-t90 {
  padding-top: 90px;
}

.p-t100 {
  padding-top: 100px;
}

.p-t110 {
  padding-top: 110px;
}

.p-t120 {
  padding-top: 120px;
}

.p-t130 {
  padding-top: 130px;
}

.p-t140 {
  padding-top: 140px;
}

.p-t150 {
  padding-top: 150px;
}

.p-t160 {
  padding-top: 160px;
}

.p-t170 {
  padding-top: 170px;
}

.p-t180 {
  padding-top: 180px;
}

.p-t190 {
  padding-top: 190px;
}

.p-t200 {
  padding-top: 200px;
}

/*---Padding (bottom)---*/
.p-b0 {
  padding-bottom: 0px;
}

.p-b5 {
  padding-bottom: 5px;
}

.p-b10 {
  padding-bottom: 10px;
}

.p-b15 {
  padding-bottom: 15px;
}

.p-b20 {
  padding-bottom: 20px;
}

.p-b30 {
  padding-bottom: 30px;
}

.p-b40 {
  padding-bottom: 40px;
}

.p-b50 {
  padding-bottom: 50px;
}

.p-b60 {
  padding-bottom: 60px;
}

.p-b70 {
  padding-bottom: 70px;
}

.p-b80 {
  padding-bottom: 80px;
}

.p-b90 {
  padding-bottom: 90px;
}

.p-b100 {
  padding-bottom: 100px;
}

.p-b110 {
  padding-bottom: 110px;
}

.p-b120 {
  padding-bottom: 120px;
}

.p-b130 {
  padding-bottom: 130px;
}

.p-b140 {
  padding-bottom: 140px;
}

.p-b150 {
  padding-bottom: 150px;
}

.p-b160 {
  padding-bottom: 160px;
}

.p-b170 {
  padding-bottom: 170px;
}

.p-b180 {
  padding-bottom: 180px;
}

.p-b190 {
  padding-bottom: 190px;
}

.p-b200 {
  padding-bottom: 200px;
}

.p-b210 {
  padding-bottom: 210px;
}

.p-b220 {
  padding-bottom: 220px;
}

.p-b230 {
  padding-bottom: 230px;
}

.p-b240 {
  padding-bottom: 240px;
}

.p-b250 {
  padding-bottom: 250px;
}

/*---Padding (left)---*/
.p-l0 {
  padding-left: 0px;
}

.p-l5 {
  padding-left: 5px;
}

.p-l10 {
  padding-left: 10px;
}

.p-l15 {
  padding-left: 15px;
}

.p-l20 {
  padding-left: 20px;
}

.p-l30 {
  padding-left: 30px;
}

.p-l40 {
  padding-left: 40px;
}

.p-l50 {
  padding-left: 50px;
}

.p-l60 {
  padding-left: 60px;
}

.p-l70 {
  padding-left: 70px;
}

.p-l80 {
  padding-left: 80px;
}

.p-l90 {
  padding-left: 90px;
}

.p-l100 {
  padding-left: 100px;
}

.p-l110 {
  padding-left: 110px;
}

.p-l120 {
  padding-left: 120px;
}

.p-l130 {
  padding-left: 130px;
}

.p-l140 {
  padding-left: 140px;
}

.p-l150 {
  padding-left: 150px;
}

/*---Padding (right)---*/
.p-r0 {
  padding-right: 0px;
}

.p-r5 {
  padding-right: 5px;
}

.p-r10 {
  padding-right: 10px;
}

.p-r15 {
  padding-right: 15px;
}

.p-r20 {
  padding-right: 20px;
}

.p-r30 {
  padding-right: 30px;
}

.p-r40 {
  padding-right: 40px;
}

.p-r50 {
  padding-right: 50px;
}

.p-r60 {
  padding-right: 60px;
}

.p-r70 {
  padding-right: 70px;
}

.p-r80 {
  padding-right: 80px;
}

.p-r90 {
  padding-right: 90px;
}

.p-r100 {
  padding-right: 100px;
}

.p-r110 {
  padding-right: 110px;
}

.p-r120 {
  padding-right: 120px;
}

.p-r130 {
  padding-right: 130px;
}

.p-r140 {
  padding-right: 140px;
}

.p-r150 {
  padding-right: 150px;
}

/*---Padding (left right)---*/
.p-lr0 {
  padding-left: 0px;
  padding-right: 0px;
}

.p-lr5 {
  padding-left: 5px;
  padding-right: 5px;
}

.p-lr10 {
  padding-left: 10px;
  padding-right: 10px;
}

.p-lr15 {
  padding-left: 15px;
  padding-right: 15px;
}

.p-lr20 {
  padding-left: 20px;
  padding-right: 20px;
}

.p-lr30 {
  padding-left: 30px;
  padding-right: 30px;
}

.p-lr40 {
  padding-left: 40px;
  padding-right: 40px;
}

.p-lr50 {
  padding-left: 50px;
  padding-right: 50px;
}

.p-lr60 {
  padding-left: 60px;
  padding-right: 60px;
}

.p-lr70 {
  padding-left: 70px;
  padding-right: 70px;
}

.p-lr80 {
  padding-left: 80px;
  padding-right: 80px;
}

.p-lr90 {
  padding-left: 90px;
  padding-right: 90px;
}

.p-lr100 {
  padding-left: 100px;
  padding-right: 100px;
}

.p-lr120 {
  padding-left: 120px;
  padding-right: 120px;
}

.p-lr150 {
  padding-left: 150px;
  padding-right: 150px;
}

/*---Padding (top bottom)---*/
.p-tb0 {
  padding-bottom: 0px;
  padding-top: 0px;
}

.p-tb5 {
  padding-bottom: 5px;
  padding-top: 5px;
}

.p-tb10 {
  padding-bottom: 10px;
  padding-top: 10px;
}

.p-tb15 {
  padding-bottom: 15px;
  padding-top: 15px;
}

.p-tb20 {
  padding-bottom: 20px;
  padding-top: 20px;
}

.p-tb30 {
  padding-bottom: 30px;
  padding-top: 30px;
}

.p-tb40 {
  padding-bottom: 40px;
  padding-top: 40px;
}

.p-tb50 {
  padding-bottom: 50px;
  padding-top: 50px;
}

.p-tb60 {
  padding-bottom: 60px;
  padding-top: 60px;
}

.p-tb70 {
  padding-bottom: 70px;
  padding-top: 70px;
}

.p-tb80 {
  padding-bottom: 80px;
  padding-top: 80px;
}

.p-tb90 {
  padding-bottom: 90px;
  padding-top: 90px;
}

.p-tb100 {
  padding-bottom: 100px;
  padding-top: 100px;
}

.p-tb120 {
  padding-bottom: 120px;
  padding-top: 120px;
}

.p-tb150 {
  padding-bottom: 150px;
  padding-top: 150px;
}

/*----Margin (around)----*/
.m-a-1 {
  margin: -1px;
}

.m-a0 {
  margin: 0px;
}

.m-a5 {
  margin: 5px;
}

.m-a10 {
  margin: 10px;
}

.m-a15 {
  margin: 15px;
}

.m-a20 {
  margin: 20px;
}

.m-a30 {
  margin: 30px;
}

.m-a40 {
  margin: 40px;
}

.m-a50 {
  margin: 50px;
}

.m-a60 {
  margin: 60px;
}

.m-a70 {
  margin: 70px;
}

.m-a80 {
  margin: 80px;
}

.m-a90 {
  margin: 90px;
}

.m-a100 {
  margin: 100px;
}

.m-a110 {
  margin: 110px;
}

.m-a120 {
  margin: 120px;
}

.m-a130 {
  margin: 130px;
}

.m-a140 {
  margin: 140px;
}

.m-a150 {
  margin: 150px;
}

/*---Marging (top)----*/
.m-t0 {
  margin-top: 0px;
}

.m-t5 {
  margin-top: 5px;
}

.m-t10 {
  margin-top: 10px;
}

.m-t15 {
  margin-top: 15px;
}

.m-t20 {
  margin-top: 20px;
}

.m-t30 {
  margin-top: 30px;
}

.m-t40 {
  margin-top: 40px;
}

.m-t50 {
  margin-top: 50px;
}

.m-t60 {
  margin-top: 60px;
}

.m-t70 {
  margin-top: 70px;
}

.m-t80 {
  margin-top: 80px;
}

.m-t90 {
  margin-top: 90px;
}

.m-t100 {
  margin-top: 100px;
}

.m-t110 {
  margin-top: 110px;
}

.m-t120 {
  margin-top: 120px;
}

.m-t130 {
  margin-top: 130px;
}

.m-t140 {
  margin-top: 140px;
}

.m-t150 {
  margin-top: 150px;
}

/*---Marging (bottom)---*/
.m-b0 {
  margin-bottom: 0px;
}

.m-b5 {
  margin-bottom: 5px;
}

.m-b10 {
  margin-bottom: 10px;
}

.m-b15 {
  margin-bottom: 15px;
}

.m-b20 {
  margin-bottom: 20px;
}

.m-b30 {
  margin-bottom: 30px;
}

.m-b30:last-child {
  margin-bottom: 0px;
}

.m-b40 {
  margin-bottom: 40px;
}

.m-b50 {
  margin-bottom: 50px;
}

.m-b60 {
  margin-bottom: 60px;
}

.m-b70 {
  margin-bottom: 70px;
}

.m-b80 {
  margin-bottom: 80px;
}

.m-b90 {
  margin-bottom: 90px;
}

.m-b100 {
  margin-bottom: 100px;
}

.m-b110 {
  margin-bottom: 110px;
}

.m-b120 {
  margin-bottom: 120px;
}

.m-b130 {
  margin-bottom: 130px;
}

.m-b140 {
  margin-bottom: 140px;
}

.m-b150 {
  margin-bottom: 150px;
}

/*---Marging (left)---*/
.m-l0 {
  margin-left: 0px;
}

.m-l5 {
  margin-left: 5px;
}

.m-l10 {
  margin-left: 10px;
}

.m-l15 {
  margin-left: 15px;
}

.m-l20 {
  margin-left: 20px;
}

.m-l30 {
  margin-left: 30px;
}

.m-l40 {
  margin-left: 40px;
}

.m-l50 {
  margin-left: 50px;
}

.m-l60 {
  margin-left: 60px;
}

.m-l70 {
  margin-left: 70px;
}

.m-l80 {
  margin-left: 80px;
}

.m-l90 {
  margin-left: 90px;
}

.m-l100 {
  margin-left: 100px;
}

.m-l110 {
  margin-left: 110px;
}

.m-l120 {
  margin-left: 120px;
}

.m-l130 {
  margin-left: 130px;
}

.m-l140 {
  margin-left: 140px;
}

.m-l150 {
  margin-left: 150px;
}

/*---Marging (right)---*/
.m-r0 {
  margin-right: 0px;
}

.m-r5 {
  margin-right: 5px;
}

.m-r10 {
  margin-right: 10px;
}

.m-r15 {
  margin-right: 15px;
}

.m-r20 {
  margin-right: 20px;
}

.m-r30 {
  margin-right: 30px;
}

.m-r40 {
  margin-right: 40px;
}

.m-r50 {
  margin-right: 50px;
}

.m-r60 {
  margin-right: 60px;
}

.m-r70 {
  margin-right: 70px;
}

.m-r80 {
  margin-right: 80px;
}

.m-r90 {
  margin-right: 90px;
}

.m-r100 {
  margin-right: 100px;
}

.m-r110 {
  margin-right: 110px;
}

.m-r120 {
  margin-right: 120px;
}

.m-r130 {
  margin-right: 130px;
}

.m-r140 {
  margin-right: 140px;
}

.m-r150 {
  margin-right: 150px;
}

/*---Marging (left right)---*/
.m-lr0 {
  margin-left: 0px;
  margin-right: 0px;
}

.m-lr5 {
  margin-left: 5px;
  margin-right: 5px;
}

.m-lr10 {
  margin-left: 10px;
  margin-right: 10px;
}

.m-lr15 {
  margin-left: 15px;
  margin-right: 15px;
}

.m-lr20 {
  margin-left: 20px;
  margin-right: 20px;
}

.m-lr30 {
  margin-left: 30px;
  margin-right: 30px;
}

.m-lr40 {
  margin-left: 40px;
  margin-right: 40px;
}

.m-lr50 {
  margin-left: 50px;
  margin-right: 50px;
}

.m-lr60 {
  margin-left: 60px;
  margin-right: 60px;
}

.m-lr70 {
  margin-left: 70px;
  margin-right: 70px;
}

.m-lr80 {
  margin-left: 80px;
  margin-right: 80px;
}

.m-lr90 {
  margin-left: 90px;
  margin-right: 90px;
}

.m-lr100 {
  margin-left: 100px;
  margin-right: 100px;
}

.m-lr120 {
  margin-left: 120px;
  margin-right: 120px;
}

.m-lr150 {
  margin-left: 150px;
  margin-right: 150px;
}

/*---Marging (top bottom)---*/
.m-tb0 {
  margin-bottom: 0px;
  margin-top: 0px;
}

.m-tb5 {
  margin-bottom: 5px;
  margin-top: 5px;
}

.m-tb10 {
  margin-bottom: 10px;
  margin-top: 10px;
}

.m-tb15 {
  margin-bottom: 15px;
  margin-top: 15px;
}

.m-tb20 {
  margin-bottom: 20px;
  margin-top: 20px;
}

.m-tb30 {
  margin-bottom: 30px;
  margin-top: 30px;
}

.m-tb40 {
  margin-bottom: 40px;
  margin-top: 40px;
}

.m-tb50 {
  margin-bottom: 50px;
  margin-top: 50px;
}

.m-tb60 {
  margin-bottom: 60px;
  margin-top: 60px;
}

.m-tb70 {
  margin-bottom: 70px;
  margin-top: 70px;
}

.m-tb80 {
  margin-bottom: 80px;
  margin-top: 80px;
}

.m-tb90 {
  margin-bottom: 90px;
  margin-top: 90px;
}

.m-tb100 {
  margin-bottom: 100px;
  margin-top: 100px;
}

.m-tb120 {
  margin-bottom: 120px;
  margin-top: 120px;
}

.m-tb150 {
  margin-bottom: 150px;
  margin-top: 150px;
}

/*---Colum gap less---*/
.no-col-gap [class*="col-xs-"],
.no-col-gap [class*="col-sm-"],
.no-col-gap [class*="col-md-"],
.no-col-gap [class*="col-lg-"] {
  padding-left: 0px;
  padding-right: 0px;
}

/*===Background Effect===*/
.bg-center {
  background-position: center;
}

.bg-top-left {
  background-position: top left;
}

.bg-top-right {
  background-position: top right;
}

.bg-top-center {
  background-position: top center;
}

.bg-bottom-left {
  background-position: bottom left;
}

.bg-bottom-right {
  background-position: bottom right;
}

.bg-bottom-center {
  background-position: bottom center;
}

.bg-left-center {
  background-position: left;
}

.bg-right-center {
  background-position: right;
}

.bg-auto {
  background-size: auto;
}

.bg-contain {
  background-size: contain;
}

.bg-cover {
  background-size: cover;
}

.bg-full-width {
  background-size: 100% auto;
}

.bg-full-height {
  background-size: auto 100%;
}

.bg-repeat {
  background-repeat: repeat;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.bg-repeat-x {
  background-repeat: repeat-x;
}

.bg-repeat-y {
  background-repeat: repeat-y;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-scroll {
  background-attachment: scroll;
}

/*===Overlay ( transparient box style)===*/
.overlay-wraper {
  position: relative;
}

.overlay-main {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

.opacity-01 {
  opacity: 0.1;
}

.opacity-02 {
  opacity: 0.2;
}

.opacity-03 {
  opacity: 0.3;
}

.opacity-04 {
  opacity: 0.4;
}

.opacity-05 {
  opacity: 0.5;
}

.opacity-06 {
  opacity: 0.6;
}

.opacity-07 {
  opacity: 0.7;
}

.opacity-08 {
  opacity: 0.8;
}

.opacity-09 {
  opacity: 0.9;
}

.overlay-light .overlay-main {
  opacity: 0.3;
}

.overlay-dark .overlay-main {
  opacity: 0.9;
}

.overlay-wraper>.container,
.overlay-wraper>.container-fluid,
.overlay-wraper>.wt-icon-box-wraper,
.overlay-wraper>.wt-left-part,
.overlay-wraper>.wt-right-part {
  position: relative;
  z-index: 1;
}

/*===Boxes Css===*/
.rounded-bx,
.wt-box,
.wt-icon-box,
.wt-icon-box-small,
.wt-thum-bx,
.wt-post-thum {
  position: relative;
}

/*---Box content----*/
.wt-box {
  position: relative;
}

.wt-box.no-margin {
  margin-bottom: 0;
}

/*---For icons with box---*/
.wt-icon-box-xld {
  width: 180px;
  height: 180px;
  display: inline-block;
  text-align: center;
}

.wt-icon-box-xld i {
  font-size: 100px;
}

.wt-icon-box-xld img {
  height: 90px;
}

.wt-icon-box-xl {
  width: 150px;
  height: 150px;
  display: inline-block;
  text-align: center;
}

.wt-icon-box-xl i {
  font-size: 80px;
}

.wt-icon-box-xl img {
  height: 80px;
}

.wt-icon-box-lg {
  width: 120px;
  height: 120px;
  display: inline-block;
  text-align: center;
}

.wt-icon-box-lg i {
  font-size: 60px;
}

.wt-icon-box-lg img {
  height: 55px;
}

.wt-icon-box-md {
  width: 100px;
  height: 100px;
  display: inline-block;
  text-align: center;
}

.wt-icon-box-md i {
  font-size: 45px;
}

.wt-icon-box-md img {
  height: 40px;
}

.wt-icon-box-sm {
  width: 80px;
  height: 80px;
  display: inline-block;
  text-align: center;
}

.wt-icon-box-sm i {
  font-size: 30px;
}

.wt-icon-box-sm img {
  height: 30px;
}

.wt-icon-box-xs {
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
}

.wt-icon-box-xs i {
  font-size: 20px;
}

.wt-icon-box-xs img {
  height: 20px;
}

.wt-icon-box-xld.radius,
.wt-icon-box-xl.radius,
.wt-icon-box-lg.radius,
.wt-icon-box-md.radius,
.wt-icon-box-sm.radius,
.wt-icon-box-xs.radius {
  border-radius: 100%;
}

.wt-icon-box-xld i,
.wt-icon-box-xl i,
.wt-icon-box-lg i,
.wt-icon-box-md i,
.wt-icon-box-sm i,
.wt-icon-box-xs i {
  vertical-align: middle;
}

.wt-icon-box-xld img,
.wt-icon-box-xl img,
.wt-icon-box-lg img,
.wt-icon-box-md img,
.wt-icon-box-sm img,
.wt-icon-box-xs img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
}

/* Icon Verticle Animation */
.aon-icon {
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  display: block;
}

.aon-icon-effect:hover .aon-icon {
  -webkit-animation: toTopFromBottom 0.3s forwards;
  -moz-animation: toTopFromBottom 0.3s forwards;
  animation: toTopFromBottom 0.3s forwards;
}

@-webkit-keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}

@-moz-keyframes toTopFromBottom {
  49% {
    -moz-transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes toTopFromBottom {
  49% {
    transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}

/*----For only icons---*/
.icon-xld,
.icon-xl,
.icon-lg,
.icon-md,
.icon-sm,
.icon-xs {
  display: inline-block;
  text-align: center;
}

.icon-xld i,
.icon-xl i,
.icon-lg i,
.icon-md i,
.icon-sm i,
.icon-xs i {
  vertical-align: middle;
}

.icon-xld img,
.icon-xl img,
.icon-lg img,
.icon-md img,
.icon-sm img,
.icon-xs img {
  vertical-align: middle;
  max-width: 100%;
  width: auto;
}

.icon-xld {
  width: 120px;
}

.icon-xld i {
  font-size: 100px;
  line-height: 100px;
}

.icon-xld.inline-icon {
  width: auto;
  text-align: left !important;
}

.icon-xld img {
  height: 90px;
}

.icon-xld.inline-icon {
  width: auto;
}

.icon-xl {
  width: 100px;
}

.icon-xl i {
  font-size: 80px;
  line-height: 80px;
}

.icon-xl.inline-icon {
  width: auto;
  text-align: left !important;
}

.icon-xl img {
  height: 80px;
}

.icon-xl.inline-icon {
  width: auto;
}

.icon-lg {
  width: 80px;
}

.icon-lg i {
  font-size: 60px;
  line-height: 60px;
}

.icon-lg.inline-icon {
  width: auto;
  text-align: left !important;
}

.icon-lg img {
  height: 70px;
}

.icon-lg.inline-icon {
  width: auto;
}

.icon-md {
  width: 60px;
}

.icon-md i {
  font-size: 45px;
  line-height: 45px;
}

.icon-md.inline-icon {
  width: auto;
  text-align: left !important;
}

.icon-md img {
  height: 50px;
}

.icon-md.inline-icon {
  width: auto;
}

.icon-sm {
  width: 40px;
}

.icon-sm i {
  font-size: 30px;
  line-height: 30px;
}

.icon-sm.inline-icon {
  width: auto;
  text-align: left !important;
}

.icon-sm img {
  height: 30px;
}

.icon-sm.inline-icon {
  width: auto;
}

.icon-xs {
  width: 30px;
}

.icon-xs i {
  font-size: 20px;
  line-height: 20px;
}

.icon-xs.inline-icon {
  width: auto;
  text-align: left !important;
}

.icon-xs img {
  height: 20px;
}

.icon-xs.inline-icon {
  width: auto;
}

/*---Place icon with box---*/
.wt-icon-box-wraper {
  position: relative;
}

.wt-icon-box-wraper .wt-tilte {
  margin-top: 0;
}

.wt-icon-box-wraper .after-titile-line {
  margin-bottom: 10px;
}

.wt-icon-box-wraper p:last-child {
  margin: 0px;
}

.icon-content {
  overflow: hidden;
}

.wt-icon-box-xld,
.wt-icon-box-xl,
.wt-icon-box-lg,
.wt-icon-box-md,
.wt-icon-box-sm,
.wt-icon-box-xs {
  display: table;
}

.wt-icon-box-xld .icon-cell,
.wt-icon-box-xl .icon-cell,
.wt-icon-box-lg .icon-cell,
.wt-icon-box-md .icon-cell,
.wt-icon-box-sm .icon-cell,
.wt-icon-box-xs .icon-cell {
  display: table-cell;
  vertical-align: middle;
}

/*---Icon box left align---*/
.wt-icon-box-wraper.left .wt-icon-box-xld,
.wt-icon-box-wraper.left .wt-icon-box-xl,
.wt-icon-box-wraper.left .wt-icon-box-lg,
.wt-icon-box-wraper.left .wt-icon-box-md,
.wt-icon-box-wraper.left .wt-icon-box-sm,
.wt-icon-box-wraper.left .wt-icon-box-xs {
  float: left;
  margin-right: 10px;
}

.wt-icon-box-wraper.left .icon-xld,
.wt-icon-box-wraper.left .icon-xl,
.wt-icon-box-wraper.left .icon-lg,
.wt-icon-box-wraper.left .icon-md,
.wt-icon-box-wraper.left .icon-sm,
.wt-icon-box-wraper.left .icon-xs {
  float: left;
  margin-right: 10px;
}

/*---Icon box right align---*/
.wt-icon-box-wraper.right {
  text-align: right;
}

.wt-icon-box-wraper.right .wt-icon-box-xld,
.wt-icon-box-wraper.right .wt-icon-box-xl,
.wt-icon-box-wraper.right .wt-icon-box-lg,
.wt-icon-box-wraper.right .wt-icon-box-md,
.wt-icon-box-wraper.right .wt-icon-box-sm,
.wt-icon-box-wraper.right .wt-icon-box-xs {
  float: right;
  display: table;
  margin-left: 20px;
}

.wt-icon-box-wraper.right .icon-xld,
.wt-icon-box-wraper.right .icon-xl,
.wt-icon-box-wraper.right .icon-lg,
.wt-icon-box-wraper.right .icon-md,
.wt-icon-box-wraper.right .icon-sm,
.wt-icon-box-wraper.right .icon-xs {
  float: right;
  margin-left: 20px;
}

/*---Icon box center align---*/
.wt-icon-box-wraper.center {
  text-align: center;
}

.wt-icon-box-wraper.center .wt-icon-box-xld,
.wt-icon-box-wraper.center .wt-icon-box-xl,
.wt-icon-box-wraper.center .wt-icon-box-lg,
.wt-icon-box-wraper.center .wt-icon-box-md,
.wt-icon-box-wraper.center .wt-icon-box-sm,
.wt-icon-box-wraper.center .wt-icon-box-xs {
  margin-left: auto;
  margin-right: auto;
}

.wt-icon-box-wraper.bx-style-1 {
  border-width: 1px;
  border-style: solid;
  border-color: #ddd;
}

.wt-icon-box-wraper.bx-style-2 {
  border-width: 1px;
  border-style: solid;
  border-color: #ddd;
}

.wt-icon-box-wraper.bx-style-2.center [class*="wt-icon-box-"] {
  position: absolute;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(-50%);
}

.wt-icon-box-wraper.bx-style-2.left [class*="wt-icon-box-"] {
  position: absolute;
}

.wt-icon-box-wraper.bx-style-2.right [class*="wt-icon-box-"] {
  position: absolute;
}

.aon-overlay-area+.container {
  position: relative;
  z-index: 1;
}

.aon-overlay-area {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
}

/*---Buttons--- */
.site-button-link {
  position: relative;
  color: #555;
  font-size: 16px;
  z-index: 1;
  transition: 0.5s all ease;
  font-family: sora;
  text-transform: uppercase;
  font-weight: 700;
}

.site-button-link .btn-arrow-icon {
  width: 30px;
  height: 30px;
  line-height: 28px;
  text-align: center !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #555;
  border-radius: 30px;
  margin-left: 10px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.site-button-link:hover {
  color: #75b16c;
}

.site-button-link:hover .btn-arrow-icon {
  color: #75b16c;
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

/* Theme default button */
.site-button {
  outline: none;
  color: #222;
  padding: 10px 30px;
  letter-spacing: 1px;
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 15px;
  transition: 0.5s all ease;
  border-radius: 50px;
  font-weight: 400;
  text-transform: uppercase;
  background: var(--primary-btn);
  font-family: sora;
}

.site-button:hover,
.site-button:active,
.site-button:focus {
  background: var(--primary-btn-hover);
  color: #fff;
}

.site-button i {
  font-size: 18px;
  margin-left: 5px;
}


@media only screen and (max-width:1200px) {
  .site-button {
    padding: 10px 15px;
  }
}

@media only screen and (max-width:575px) {
  .site-button {
    padding: 10px 15px;
    line-height: 1.2;
  }
}


.site-btn-curve {
  position: relative;
  display: inline-table;
  margin-left: 10px;
  margin-right: 10px;
  z-index: 2;
  background: #1750bd;
}

.site-btn-curve:after {
  content: "";
  position: absolute;
  top: 0px;
  left: -5px;
  width: 50%;
  height: 99.5%;
  background: #1750bd;
  -moz-transform: skewX(-6deg);
  -webkit-transform: skewX(-6deg);
  -o-transform: skewX(-6deg);
  -ms-transform: skewX(-6deg);
  transform: skewX(-6deg);
  border-radius: 5px;
  z-index: -1;
}

.site-btn-curve:before {
  content: "";
  position: absolute;
  top: 0px;
  right: -5px;
  width: 50%;
  height: 99.5%;
  background: #1750bd;
  -moz-transform: skewX(6deg);
  -webkit-transform: skewX(6deg);
  -o-transform: skewX(6deg);
  -ms-transform: skewX(6deg);
  transform: skewX(6deg);
  border-radius: 5px;
  z-index: -1;
}


.site-button-secondary {
  outline: none;
  color: #fff;
  padding: 10px 30px;
  letter-spacing: 1px;
  position: relative;
  cursor: pointer;
  display: inline-table;
  border: none;
  font-size: 15px;
  transition: 0.5s all ease;
  border-radius: 50px;
  font-weight: 400;
  background: var(--secondary-btn);
  text-transform: uppercase;
  font-family: sora;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-button-secondary:hover,
.site-button-secondary:active,
.site-button-secondary:focus {
  background-color: var(--secondary-btn-hover);
  color: #fff;
}

.site-button-secondary i {
  font-size: 18px;
  margin-left: 5px;
}

@media only screen and (max-width:1200px) {
  .site-button-secondary {
    padding: 10px 15px;
  }
}

.site-btn2-curve {
  position: relative;
  display: inline-table;
  margin-left: 10px;
  margin-right: 10px;
  z-index: 2;
  background: #222;
}

.site-btn2-curve:after {
  content: "";
  position: absolute;
  top: 0px;
  left: -5px;
  width: 50%;
  height: 100%;
  background: #222;
  -moz-transform: skewX(-10deg);
  -webkit-transform: skewX(-10deg);
  -o-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);
  transform: skewX(-10deg);
  border-radius: 5px;
  z-index: -1;
}

.site-btn2-curve:before {
  content: "";
  position: absolute;
  top: 0px;
  right: -5px;
  width: 50%;
  height: 100%;
  background: #222;
  -moz-transform: skewX(10deg);
  -webkit-transform: skewX(10deg);
  -o-transform: skewX(10deg);
  -ms-transform: skewX(10deg);
  transform: skewX(10deg);
  border-radius: 5px;
  z-index: -1;
}

[class*="site-button"].btn-block {
  width: 100%;
}

.btn-animate-one {
  z-index: 1;
  overflow: hidden;
  display: inline-block;
}

.btn-animate-one:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 8px;
  right: 100%;
  background: rgba(0, 0, 0, 0.1);
  height: 50px;
  width: 50px;
  border-radius: 50px;
  transform: scale(0);
  transform-origin: 50% 50%;
  transition: transform 0.5s linear;
  transition: transform 0.5s linear;
  transform: scle(5);
}

.btn-animate-one:hover:before {
  transform: scale(5);
  opacity: 1;
  right: 90%;

}



.site-button-secondry.sb-bdr-light {
  border-right: 6px solid #fff;
}

.mfp-video.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  margin: -25px;
  color: #fff;
  display: block;
  z-index: 10;
  font-size: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.mfp-video.video-play-btn:hover {
  background-color: #0f1221;
  color: #fff;
  border: 2px solid transparent;
}

.mfp-video.video-play-btn i {
  margin-right: -5px;
}



/*Button text uppercase */
.site-button.text-uppercase {
  text-transform: uppercase;
}

/*Button size */
.button-sm {
  padding: 5px 10px;
  font-size: 12px;
}

.button-lg {
  padding: 15px 30px;
  font-size: 16px;
}

.button-xl {
  padding: 30px 50px;
  font-size: 24px;
}

/*Button rounded */
.radius-no {
  border-radius: 0px;
}

.radius-sm {
  border-radius: 10px;
}

.radius-md {
  border-radius: 20px;
}

.radius-xl {
  border-radius: 100px;
}

.radius-bx {
  border-radius: 100%;
}

/* Social icon */

.social-icons {
  display: inline-flex;
}

.social-icons>.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 30px;
  height: 30px;
  margin: 0 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s ease;
}

.social-icons>.social-icon>i {
  color: #C4C4C4;
  font-size: 20px;
  text-decoration: none;
}

.social-icons>.social-icon:hover>i {
  background: #FA7941;
  background: linear-gradient(to bottom, #FA7941 0%, #d04a0f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-icons>.social-icon:hover .tooltips {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -150%);
  color: #fff;
}

.social-icons>.social-icon i {
  position: relative;
  top: 1px;
}

/* Tooltips */
.tooltips {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  padding: 5px 12px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: bold;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translate(-50%, -100%);
  transition: all 0.3s ease;
  z-index: 1;
  background: #222;
}

.tooltips:after {
  display: block;
  position: absolute;
  bottom: 1px;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border: solid;
  border-width: 10px 10px 0 10px;
  border-color: transparent;
  border-top-color: #222;
  transform: translate(-50%, 100%);
}


/*===Owl Slider===*/
.owl-carousel .owl-nav {
  margin-top: 40px;
  text-align: center;
}

.owl-carousel .owl-nav .disabled {
  opacity: .5;
  cursor: default;
}

/*---Owl dots button---*/
.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  outline: none !important;
}

.owl-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #ECECEC;
  border: none;
  display: block;
  border-radius: 5px;
}

.owl-carousel .owl-dots .owl-dot:hover span {
  background: var(--primary);
}

.owl-carousel .owl-dots .owl-dot.active span {
  background: var(--primary);
}

.owl-dot-left .owl-dots {
  justify-content: flex-start;
}



/*---Owl button top to center---*/
.owl-btn-top-center .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
}

.owl-btn-top-left .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
}

.owl-btn-top-right .owl-nav {
  position: absolute;
  top: -148px;
  right: 0;
  width: auto;
  margin: 0;
}

.owl-btn-top-center .owl-stage-outer {
  padding-top: 60px;
}

.owl-btn-top-left .owl-stage-outer {
  padding-top: 60px;
}

.owl-btn-top-right .owl-stage-outer {
  padding-top: 0px;
}

.owl-btn-top-center .owl-nav {
  text-align: center;
}

/*---Owl button top to left---*/
.owl-btn-top-left .owl-nav {
  text-align: left;
}

/*---Owl button top to right---*/
.owl-btn-top-right .owl-nav {
  text-align: right;
}

/*---Owl button bottom to center [it is default position ]---*/
.owl-btn-bottom-center .owl-nav {
  text-align: center;
}

/*---Owl button bottom to left---*/
.owl-btn-bottom-left .owl-nav {
  text-align: left;
}

/*Owl button bottom to right*/
.owl-btn-bottom-right .owl-nav {
  text-align: right;
}

/*---Owl button vertical to center--*/
.owl-btn-vertical-center .owl-nav {
  margin: 0px;
}

.owl-btn-vertical-center .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  margin: -15px 0;
  left: 0;
}

.owl-btn-vertical-center .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  margin: -15px 0;
  right: 0;
}

/*---Owl button show on hover---*/
.owl-btn-hover .owl-nav {
  opacity: 0;
}

.owl-btn-hover:hover .owl-nav {
  opacity: 1;
}

.owl-carousel .owl-item img {
  transform-style: inherit;
}

/*---Owl slider button---*/
.aon-owl-custom.owl-carousel .owl-nav {
  position: relative;
}

.aon-owl-custom.owl-carousel .owl-nav:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  width: calc(50% - 100px);
  height: 2px;
  background: #ddd;
}

.aon-owl-custom.owl-carousel .owl-nav:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  width: calc(50% - 100px);
  height: 2px;
  background: #ddd;
}

.owl-carousel .owl-nav button.owl-prev {
  color: #222;
  padding: 0px;
  font-size: 28px;
  cursor: pointer;
  opacity: 1;
  margin: 0px 10px;
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ecf7eb;
  ;
  border: 1px solid #fff;
}

.owl-carousel .owl-nav button.owl-prev i {
  font-style: normal;
  line-height: 1;
  position: relative;
}

.owl-carousel .owl-nav button.owl-prev:hover {
  border-color: #fff;
  background: var(--primary);
}

.owl-carousel .owl-nav button.owl-prev:hover i {
  color: #fff;
}

.owl-carousel .owl-nav button.owl-next {
  color: #222;
  padding: 0px;
  font-size: 28px;
  cursor: pointer;
  opacity: 1;
  margin: 0px 10px;
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ecf7eb;
  ;
  border: 1px solid #fff;
}

.owl-carousel .owl-nav button.owl-next i {
  font-style: normal;
  line-height: 1;
  position: relative;
}

.owl-carousel .owl-nav button.owl-next:hover {
  border-color: #fff;
  background: var(--primary);
}

.owl-carousel .owl-nav button.owl-next:hover i {
  color: #fff;
}

@media only screen and (max-width:575px) {
  .owl-btn-top-right .owl-nav {
    position: static;
    text-align: center !important;
  }

  .owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
  }

  .owl-carousel .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
  }

  .owl-btn-vertical-center .owl-nav {
    margin: 30px 0px 0px;
  }

  .owl-btn-vertical-center .owl-nav .owl-prev {
    position: static;
    margin: 0px 0;
  }

  .owl-btn-vertical-center .owl-nav .owl-next {
    position: static;
    margin: 0px 0;
  }

}

/*---Owl dots nav position---*/
.owl-dots-bottom-left .owl-dots {
  bottom: 0px;
  padding: 15px 20px;
  position: absolute;
  width: 100%;
  text-align: left;
}

.owl-dots-bottom-right .owl-dots {
  bottom: 0px;
  padding: 15px 20px;
  position: absolute;
  width: 100%;
  text-align: right;
}

.owl-dots-bottom-center .owl-dots {
  bottom: 0px;
  padding: 15px 20px;
  position: absolute;
  width: 100%;
}

@media only screen and (max-width:480px) {}

/*======================================
THEMEFOREST REQUIRED CLASSES
======================================*/
/*-------------------------------------
	Text meant only for screen readers
-------------------------------------*/
.sticky {
  clear: both;
}

.gallery-caption {
  clear: both;
}

.bypostauthor {
  clear: both;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/*-------------------------------------
	Tabs 
-------------------------------------*/
/*Tabs style 1 [ default ] */
.wt-tabs .tab-pane {
  padding: 20px;
  border: 5px solid #e7e7e7;
  background-color: #fff;
}

.wt-tabs .nav-tabs {
  border: 0px;
}

.wt-tabs .nav-tabs>li {
  border: 1px solid #ebebeb;
}

.wt-tabs .nav-tabs>li>a {
  color: #000;
  background-color: #fff;
  font-size: 16px;
  padding: 15px;
  border: 0px;
  display: block;
  font-weight: 600;
}

.wt-tabs .nav-tabs>li>a i {
  margin-right: 5px;
}

.wt-tabs .nav-tabs>li a.active {
  background-color: #e7e7e7;
  color: #000;
}

.wt-tabs .nav-tabs>li a.active:focus {
  background-color: #e7e7e7;
  color: #000;
}

.wt-tabs .nav-tabs>li a.active:hover {
  background-color: #e7e7e7;
  color: #000;
}

.wt-tabs .nav>li>a:focus {
  background-color: transparent;
  border: 0px;
}

.wt-tabs .nav>li>a:hover {
  background-color: transparent;
  border: 0px;
}

.wt-tabs .nav li a:hover {
  border: 1px;
}

.wt-tabs.tabs-default .tabs-default-nav .nav-tabs {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .wt-tabs.tabs-default .tabs-default-nav .nav-tabs {
    justify-content: flex-start;
  }
}

.wt-tabs.tabs-default .tabs-default-nav .nav-tabs>li>a {
  color: #000;
}

.wt-tabs.tabs-default .tabs-default-nav .nav-tabs>li>a span {
  display: block;
}

.wt-tabs.tabs-default .tabs-default-nav .nav-tabs>li>a span i {
  font-weight: normal;
}

.wt-tabs.tabs-default .tabs-default-nav .nav-tabs>li>a.active {
  color: #fff;
}

.wt-tabs.tabs-default .tabs-default-nav .nav-tabs>li.active>a {
  color: #000;
  border-color: #ddd #ddd #fff;
}

.wt-tabs.tabs-default .tabs-default-nav .nav-tabs>li.active>a:focus {
  color: #000;
  border-color: #ddd #ddd #fff;
}

.wt-tabs.tabs-default .tabs-default-nav .nav-tabs>li.active>a:hover {
  color: #000;
  border-color: #ddd #ddd #fff;
}

.wt-tabs.tabs-default .tab-pane {
  color: #fff;
}

@media (max-width: 991px) {
  .wt-tabs.tabs-default .tab-pane {
    padding: 0px;
  }
}

/*Header Start ============================*/
.header-full-width .container {
  max-width: 100%;
}

.header-style-1 {
  position: fixed;
  width: 100%;
  top: 30px;
  left: 0;
  z-index: 999;
}

.header-style-1 .container {
  padding-left: 80px;
  padding-right: 80px;
}

.header-style-1 .main-bar {
  background: none;
  padding-top: 0px;
  padding-bottom: 0px;
}

.header-style-1 .main-bar.color-fill {
  background: #e3f3ef;
}

.header-style-1 .top-bar {
  padding: 0px 0px;
  font-size: 14px;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 0;
}

.header-style-1 .top-bar .wt-topbar-left {
  float: left;
}

.header-style-1 .navbar-toggler .icon-bar {
  background: #fff;
}

.header-style-1 .color-fill .navbar-toggler .icon-bar {
  background: #000;
}

@media (max-width:1280px) {
  .header-style-1 {
    top: 20px;
  }

  .header-style-1 .container {
    padding-left: 55px;
    padding-right: 55px;
  }
}

@media (max-width: 767px) {
  .header-style-1 .container {
    padding-left: 25px;
    padding-right: 25px;
  }

  .header-style-1 .top-bar .wt-topbar-left {
    display: none !important;
  }
}

.header-style-1 .top-bar .wt-topbar-info li {
  display: inline-block;
  margin-right: 0px;
  padding: 12px 15px 12px 0px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.header-style-1 .top-bar .wt-topbar-info li span {
  display: inline-block;
  padding-right: 10px;
}

.header-style-1 .top-bar .wt-topbar-info li i {
  margin-right: 10px;
  font-size: 20px;
}

.header-style-1 .top-bar .wt-topbar-right .wt-topbar-info-2 li {
  display: inline-block;
  margin-right: 0px;
  padding: 10px 15px 10px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.header-style-1 .top-bar .wt-topbar-right .wt-topbar-info-2 li span {
  display: inline-block;
  padding-right: 10px;
}

.header-style-1 .top-bar .wt-topbar-right .wt-topbar-info-2 li i {
  margin-right: 10px;
  font-size: 20px;
}

@media (max-width: 767px) {
  .header-style-1 .top-bar .wt-topbar-right .wt-topbar-info-2 li:last-child {
    border-right: 0px;
  }
}

@media (max-width: 460px) {
  .header-style-1 .top-bar .wt-topbar-right .wt-topbar-info-2 li {
    border-right: 0px !important;
  }
}

.header-style-1 .top-bar .social-icons {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  list-style: none;
}

@media (max-width: 991px) {
  .top-bar .social-icons {
    display: none;
  }
}

.top-bar .social-icons li {
  padding-left: 10px;
}

.top-bar .social-icons li a {
  color: #fff;
  font-size: 12px;
}

.top-bar .social-icons li a:hover {
  color: #000;
}

.header-style-1 .main-bar {
  width: 100%;
}

@media only screen and (max-width:991px) {
  .header-style-1 .main-bar .contaier {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
}

.extra-nav {
  display: flex;
  float: right;
  height: 70px;
  position: relative;
  z-index: 13;
  white-space: nowrap;
}

.extra-nav .extra-cell {
  display: flex;
  padding-left: 25px;
  align-items: center;
}

.extra-nav .extra-cell:first-child {
  padding-left: 0px;
}

@media only screen and (max-width:1200px) {
  .extra-nav .extra-cell:first-child {
    padding-left: 15px;
  }
}

@media only screen and (max-width:767px) {

  .aon-btn-signup,
  .aon-add-listing {
    font-size: 0;
    text-align: center;
    padding: 10px 10px;
    min-width: 40px;
    margin-left: 10px;
  }

  .aon-btn-signup i,
  .aon-add-listing i {
    font-size: 16px;
    padding: 0px;
    display: table;
    margin: auto;
  }

  .aon-btn-signup {
    display: inline-block;
    background: #104CBA;
    color: #104CBA;
    border-radius: 5px;
  }
}

@media only screen and (max-width:575px) {
  .extra-nav .extra-cell .site-button {
    display: none;
  }
}


.login-sign-btn {
  margin-right: 30px;
  display: flex;
  align-items: center;
}

.login-sign-btn i {
  font-size: 18px;
  margin-right: 5px;
}

.login-sign-btn a {
  color: #222;
  display: inline-flex;
  align-items: center;
  padding: 0px 3px;
}

.login-sign-btn a:hover,
.login-sign-btn a:active,
.login-sign-btn a:focus {
  color: #1750bd;
}

.aon-btn-search {
  color: #fff;
  border: none;
  font-size: 14px;
  width: 48px !important;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  -webkit-box-shadow: 0px 8px 12px 0px RGBA(255, 142, 43, 0.44);
  box-shadow: 0px 8px 12px 0px RGBA(255, 142, 43, 0.44);
}

@media (max-width: 540px) {
  .extra-nav .extra-cell {
    padding-left: 10px;
  }

  .login-sign-btn {
    font-size: 0px;
  }

  .login-sign-btn {
    margin-right: 5px;
  }
}

.logo-header {
  /*--logo for header---*/
  display: flex;
  align-items: center;
  padding: 0px;
  font-size: 36px;
  color: #000;
  margin: 0px;
  position: relative;
  z-index: 11;
}

@media (max-width: 640px) {
  .logo-header {
    width: 120px;
  }
}

@media (max-width: 360px) {
  .logo-header {
    width: 120px;
  }
}


.logo-header .logo-header-inner {
  display: flex;
  align-items: center;
}

.logo-header .logo-header-inner a {
  display: flex;
}

.logo-header .logo-header-inner img {
  max-width: 24%;
}

.site-header ul,
.site-header ol {
  margin-bottom: 0px;
}

.logo-header a.ao-logo-sticky {
  display: none;
}

.color-fill .logo-header a.ao-logo-main {
  display: none;
}

.color-fill .logo-header a.ao-logo-sticky {
  display: flex;
}

.main-bar {
  /*--main-bar--*/
  position: relative;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.5s ease;
  background: #fff;
}

.main-bar .container,
.main-bar .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991px) {

  .main-bar .container,
  .main-bar .container-fluid {
    display: block;
  }

  .mobile-logo-left {
    float: left;
    padding: 10px 0px;
  }
}

.main-bar:after,
.main-bar:after {
  clear: both;
  content: "";
  display: table;
}

.navbar-toggler {
  /*--Navbar Toggler---*/
  border: none;
  margin: 24px 0px 24px 15px;
  padding: 12px 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991px) {
  .navbar-toggler {
    display: block;
    margin-top: 14px;
    margin-bottom: 14px;
    float: right;
    outline: none !important;
  }
}

.navbar-toggler .icon-bar {
  background: #000;
  height: 3px;
  border-radius: 0px;
  display: block;
  width: 22px;
}

.navbar-toggler .icon-bar+.icon-bar {
  margin-top: 4px;
}


@media (max-width: 991px) {
  .header-style-1 .navbar-toggler {
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .navbar-toggler .icon-bar {
    background: #000;
  }
}

@media (max-width: 420px) {
  .navbar-toggler {
    margin-left: 10px;
  }
}

@media (max-width: 540px) {
  .is-fixed .navbar-toggler {
    margin-bottom: 0px;
  }
}

.is-fixed.mobile-sider-drawer-menu .header-nav .nav {
  height: 100vh !important;
  width: 100%;
}

.is-fixed.mobile-sider-drawer-menu .header-style-1 .header-nav .nav>li {
  padding: 12px 15px !important;
}

.header-nav {

  position: relative;
  padding: 0px;
  z-index: 10;
  /*-- Submenu direction---*/
}

@media (max-width: 991px) {
  .header-nav {
    clear: both;
    margin: 0px -15px;
    border-bottom: 1px solid #E9E9E9;
  }

  .header-nav.navbar-collapse {
    align-items: start;
  }
}

.header-nav .nav {
  display: flex;
  justify-content: center;
  flex-direction: inherit;
  font-family: var(--title-family);
}

@media (max-width: 991px) {
  .header-nav .nav {
    float: none;
    margin: 0px;
    background: #fff;
    display: block;
    width: 100%;
    left: 0px;
  }
}

@media (max-width: 991px) {
  .header-nav .nav li {
    float: none;
  }
}

.header-nav .nav li i {
  font-size: 9px;
  margin-left: 3px;
  margin-top: -3px;
  vertical-align: middle;
  opacity: 0.7;
}

@media (max-width: 991px) {
  .header-nav .nav li i {
    float: right;
  }
}

.header-nav .nav>li {
  position: relative;
  margin: 0px;
  padding: 0px;
}

@media (max-width: 991px) {
  .header-nav .nav>li ul {
    display: none;
    position: static;
    visibility: visible;
    width: auto;
    background: #f9f9f9;
  }
}

.header-nav .nav>li>a {
  color: #444444;
  font-size: 15px;
  padding: 15px 30px;
  cursor: pointer;
  margin: 0px 0px;
  display: block;
  font-weight: 500;
  font-family: var(--title-family);
  text-transform: uppercase;
}

.color-fill .header-nav .nav>li>a {
  color: #000;
}

.header-nav .nav>li.has-child:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background: #a7c19b;
  margin: -3px 0px;
}

@media (max-width: 991px) {
  .header-nav .nav>li>a {
    padding: 12px 15px;
    border-top: 1px solid #E9E9E9;
    color: #000;
  }
}

.header-nav .nav>li>a:hover {
  background-color: transparent;
  color: #000;
}

.header-nav .nav>li>a:active,
.header-nav .nav>li>a:focus {
  background-color: transparent;
}

@media (max-width: 991px) {

  .header-nav .nav>li.active>a,
  .header-nav .nav>li.current-menu-item>a {
    color: #1750bd;
  }
}

@media (max-width: 991px) {

  .header-nav .nav>li>a:hover,
  .header-nav .nav>li>a:active,
  .header-nav .nav>li>a:focus {
    background-color: #f0f0f0;
    text-decoration: none;
  }

  .header-nav .nav>li.has-child:after {
    display: none;
  }


}

.header-nav .nav>li.active>a,
.header-nav .nav>li.current-menu-item>a {
  background-color: transparent;
  color: var(--secondary);
}

.header-nav .nav>li:hover>a {
  color: var(--secondary);
}

.header-nav .nav>li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0px;
  transition: all 0.3s ease;
}

.header-nav .nav>li .sub-menu {
  background-color: #e9f4e4;
  display: block;
  left: 0px;
  top: 100%;
  list-style: none;
  margin: 20px 0 0;
  opacity: 0;
  padding: 0px;
  position: absolute;
  visibility: hidden;
  width: 220px;
  z-index: 10;
  border-top: 0px solid var(--primary);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

@media (max-width: 991px) {
  .header-nav .nav>li .sub-menu {
    display: none;
    position: static;
    visibility: visible;
    width: auto;
    background: #f9f9f9;
    opacity: 1;
    margin: 0px !important;
    transition: none !important;
  }
}

.header-nav .nav>li .sub-menu li {
  border-bottom: 1px solid #f4f4f4;
  position: relative;
  text-transform: none;
}

.header-nav .nav>li .sub-menu li a {
  color: #111;
  display: block;
  font-size: 16px;
  padding: 12px 20px;
  padding-left: 20px;
  font-weight: 600;
}

.header-nav .nav>li .sub-menu li a:hover {
  color: var(--secondary);
  text-decoration: none;
}

.header-nav .nav>li .sub-menu li:hover>a {
  color: var(--secondary);
}

.header-nav .nav>li .sub-menu li:last-child {
  border-bottom: 0px;
}

.header-nav .nav>li .sub-menu li .fa {
  color: #000;
  display: block;
  float: right;
  position: absolute;
  right: 10px;
  top: 9px;
  font-size: 18px;
}

span {
  color: #fbdc84;
}

.footer-map {
  border: 4px solid #fff;
  border-radius: 17px;
}

.header-nav .nav>li .sub-menu li>.sub-menu {
  left: 0px;
  top: 0px;
  margin: 0px 0px 0px 20px;
  transition: all 0.6s ease;
  z-index: -2;
}

@media (max-width: 991px) {
  .header-nav .nav>li .sub-menu li>.sub-menu>li {
    float: none;
    display: block;
    width: auto;
  }
}

@media (max-width: 991px) {
  .header-nav .nav>li .sub-menu li>.sub-menu>li a {
    padding-left: 30px;
  }
}

.header-nav .nav>li .sub-menu li:hover>.sub-menu {
  left: 220px;
  margin: 0px;
  opacity: 1;
  top: -1px;
  visibility: visible;
}

.header-nav .nav>li .sub-menu li:hover>.sub-menu:before {
  background-color: transparent;
  bottom: 0px;
  content: '';
  display: block;
  height: 100%;
  left: -6px;
  position: absolute;
  top: 0px;
  width: 6px;
}

.header-nav .submenu-direction .sub-menu {
  left: auto;
  right: 0px;
}

.header-nav .submenu-direction .sub-menu li>.sub-menu {
  left: auto;
  right: 220px;
  margin: 0px 20px 0px 0px;
}

.header-nav .submenu-direction .sub-menu li:hover>.sub-menu {
  left: auto;
  right: 220px;
  margin: 0px 0px 0px 0px;
}

.header-nav.nav-animation .nav>li>ul.sub-menu li>a {
  transition: all 0.5s ease-out;
  position: relative;
  z-index: 1;
}

.header-nav.nav-animation .nav>li:hover>ul.sub-menu li:hover>a {
  padding-left: 40px;
}

@media (max-width: 991px) {
  .header-nav .has-child {
    position: relative;
  }
}

.header-nav .has-child .submenu-toogle {
  position: absolute;
  right: 4px;
  top: 4px;
  color: #000;
  background-color: transparent;
  z-index: 900;
  cursor: pointer;
  padding: 10px;
  font-size: 14px;
  display: none;
}

@media (max-width: 991px) {
  .header-nav .has-child .submenu-toogle {
    display: block;
    width: 100%;
    text-align: right;
  }
}

.header-nav .has-child li .submenu-toogle {
  opacity: 0.9;
}

.header-nav .has-child.nav-active>a+.submenu-toogle.glyphicon-chevron-right:before {
  content: "\e114";
}

.header-nav .has-child.nav-active>a+.submenu-toogle.glyphicon-plus::before {
  content: "\2212";
}

@media (max-width: 991px) {
  .header-nav .has-child.nav-active>a+.submenu-toogle.fa.fa-angle-right::before {
    content: "\f107";
  }
}

@media (max-width: 991px) {
  .mobile-full-width-menu .header-nav .nav {
    position: inherit;
  }
}

@media (max-width: 991px) {
  .mobile-sider-drawer-menu .header-nav {
    position: fixed;
    width: 250px !important;
    z-index: 999;
    height: 100vh !important;
    overflow-y: inherit !important;
    left: -250px;
    top: 0px;
    transition: all 0.5s linear;
    background-color: #fff;
  }

  .mobile-sider-drawer-menu .header-nav .nav>li:hover>.sub-menu {
    animation: none !important;
  }

  .mobile-sider-drawer-menu .header-nav .nav>li .sub-menu li:hover>.sub-menu {
    animation: none !important;
  }

  .mobile-sider-drawer-menu.active .header-nav {
    left: 15px;
  }

  .mobile-sider-drawer-menu .icon-bar {
    transition: all 0.5s linear;
    position: relative;
  }

  .mobile-sider-drawer-menu #mobile-side-drawer {
    min-height: 41px;
    position: relative;
  }

  .mobile-sider-drawer-menu.active .icon-bar.icon-bar-first {
    transform: rotate(45deg) translateX(3px) translateY(2px);
  }

  .mobile-sider-drawer-menu.active .icon-bar.icon-bar-three {
    transform: rotate(-45deg) translateX(3px) translateY(-2px);
  }

  .mobile-sider-drawer-menu .icon-bar.icon-bar-two {
    position: relative;
    right: 0%;
  }

  .mobile-sider-drawer-menu.active .icon-bar.icon-bar-two {
    position: absolute;
    right: 100px;
    opacity: 0;
  }

  .mobile-sider-drawer-menu .is-fixed .header-nav .nav {
    overflow: auto;
    max-height: 100%;
  }

  .mobile-sider-drawer-menu .header-fixed .header-nav .nav {
    overflow: auto;
    max-height: 100%;
  }
}

.sticky-no .main-bar {
  position: static !important;
}

.is-fixed .main-bar {
  position: fixed;
  top: 0px;
  left: 0px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.is-fixed .color-fill.main-bar {
  background-color: #e9f4e4;
  box-shadow: 0 0 5px 10px rgba(0, 0, 0, 0.1);
}


.is-fixed .color-fill.main-bar {
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}



.is-fixed.color-fill .header-nav .nav>li {
  margin: 0px;
  padding: 0px;
}

@media (max-width: 991px) {
  .header-nav .nav>li {
    margin: 0px;
    padding: 0px;
  }

  .header-nav .nav>li>a {
    margin: 0px;
    padding: 10px 12px;
    line-height: 1.2;
  }

  .is-fixed.color-fill .header-nav .nav>li {
    margin: 0px;
    padding: 0px;
  }
}

@media (max-width: 767px) {
  .main-bar {
    padding: 0px;
  }

  .is-fixed .main-bar {
    padding: 0px;
  }

  .is-fixed.color-fill .main-bar {
    padding: 0px;
  }
}

/*Header End ===========================*/

/*Header Style 1*/



.header-style-1 .is-fixed.color-fill .main-bar {
  top: 0px;
}

.header-style-1 .header-nav .nav>li>a {
  color: #111;
  font-weight: 500;
  font-size: 17px;

}

.header-style-1 .header-nav .nav>li:hover>a {
  color: var(--secondary);
}

.header-style-1 .header-nav .nav>li.active>a,
.header-style-1 .header-nav .nav>li.current-menu-item>a {
  color: var(--secondary);
}

.header-style-1 .color-fill .header-nav .nav>li>a {
  color: #000;
}

.header-style-1 .color-fill .header-nav .nav>li:hover>a {
  color: var(--secondary);
}

.header-style-1 .color-fill .header-nav .nav>li.active>a,
.header-style-1 .color-fill .header-nav .nav>li.current-menu-item>a {
  color: var(--secondary);
}

@media only screen and (max-width:991px) {
  .header-style-1 .header-nav .nav>li>a {
    color: #222;
  }
}


.top-bar {
  display: flex;
  justify-content: space-between;
  background: var(--primary);
  padding: 10px 15px;
}

.top-bar-one-left i {
  color: #222;
  margin-right: 3px;
}

.top-bar-one-right {
  display: flex;
  align-items: center;
}

.top-bar-one-right a {
  display: inline-flex;
  align-items: center;
  margin: 0px 5px;
}

.top-bar-one-right a i {
  margin-left: 5px;
}


.top-bar-two {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 15px;
}

.top-bar-two-left i {
  color: #1750bd;
  margin-right: 3px;
}

.top-bar-two-right {
  display: flex;
  align-items: center;
}

.aon-brand-marketing a {
  color: #1750bd;
}

@media only screen and (max-width:991px) {
  .top-bar-row {
    border-bottom: 1px solid #ddd;
  }

  .top-bar-left {
    display: none;
  }

  .top-bar-right {
    width: 100%;
  }

  .top-bar-two {
    padding: 15px 0px;
  }
}

@media only screen and (max-width:575px) {
  .top-bar-one {
    display: block;
  }

  .site-button.aon-get-app-btn {
    padding: 10px 15px;
  }
}

@media only screen and (max-width:400px) {
  .site-button.aon-get-app-btn {
    padding: 10px 10px;
  }
}

.aon-social-icon-3 {
  list-style: none;
  margin: 0px;
  margin-right: 30px;
}

.aon-social-icon-3 li {
  display: inline-block;
  margin-right: 30px;
}

.aon-social-icon-3 li:last-child {
  margin-right: 0px;
}

.aon-social-icon-3 li a {
  color: #5a5560;
  font-size: 16px;
}

.aon-social-icon-3 li a:hover {
  color: #104cba;
}

.aon-live-chats {
  display: flex;
  align-items: center;
  line-height: 1.2;
}

.aon-live-icon {
  width: 30px;
  font-size: 30px;
  color: #104cba;
  margin-right: 15px;
  line-height: 1;
}

.aon-live-chats span {
  display: block;
  color: #777;
}

.aon-live-chats strong {
  display: block;
  color: #222;
  font-weight: 500;
  font-size: 16px;
}

.header-nav2 {
  /* background: #e8e5f4; */
  background: #e9f4e4;
  border-radius: 0px 0px 25px 25px;
  flex-grow: 0;
  position: relative;
}

.header-nav2::before {
  content: "\e900";
  /* color: #e8e5f4; */
  color: #e9f4e4;
  font-size: 30px;
  position: absolute;
  left: -29px;
  top: -1px;
  transform: rotate(270deg);
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.header-nav2:after {
  content: "\e900";
  /* color: #e8e5f4; */
  color: #e9f4e4;
  font-size: 30px;
  position: absolute;
  right: -29px;
  top: -1px;
  transform: rotate(180deg);
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.header-nav2 .nav>li>a {
  padding: 25px 25px;
  font-size: 16px;
  text-transform: capitalize;
  color: #222;
}

@media only screen and (max-width:1200px) {
  .header-nav2 {
    width: calc(100% - 350px);
  }

  .header-nav2 .nav>li>a {
    padding: 25px 15px;
    font-size: 15px;
  }

  .header-nav .nav>li.has-child::after {
    right: 5px;
  }
}

@media only screen and (max-width:991px) {
  .aon-brand-marketing {
    display: none;
  }

  .header-nav2 .nav>li>a {
    padding: 12px 25px;
  }
}

/*Header Style 3*/
.header-style-3 {
  position: absolute;
  width: 100%;
}

.header-style-3 .main-bar {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: rgba(0, 0, 0, 0.0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 25px;
  padding-bottom: 25px;
}

.header-style-3 .is-fixed .main-bar {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.header-style-3 .is-fixed.color-fill .main-bar {
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-style-3 .login-sign-btn a {
  color: #fff;
}

.header-style-3 .color-fill .login-sign-btn a {
  color: #000;
}

.header-style-3 .color-fill .logo-no-sticky {
  display: none;
}

.header-style-3 .color-fill .logo-sticky {
  display: inline-block !important;
}

.header-style-3 .header-nav .nav>li>a {
  color: #fff;
}

.header-style-3 .header-nav .nav>li:hover>a {
  color: #104CBA;
}

.header-style-3 .header-nav .nav>li.active>a,
.header-style-3 .header-nav .nav>li.current-menu-item>a {
  color: #104CBA;
}

.header-style-3 .color-fill .header-nav .nav>li>a {
  color: #000;
}

.header-style-3 .color-fill .header-nav .nav>li:hover>a {
  color: var(--secondary);
}

.header-style-3 .color-fill .header-nav .nav>li.active>a,
.header-style-1 .color-fill .header-nav .nav>li.current-menu-item>a {
  color: var(--secondary);
}

.header-style-3 .navbar-toggler .icon-bar {
  background: #fff;
}

.header-style-3 .color-fill .navbar-toggler .icon-bar {
  background: #000;
}

@media only screen and (max-width:991px) {
  .header-style-3 .header-nav .nav>li>a {
    color: #000;
  }

  .header-style-3 .header-nav .nav>li.active>a,
  .header-style-3 .header-nav .nav>li.current-menu-item>a {
    color: #104CBA;
  }
}



/*Title separators*/
.wt-separator-two-part {
  padding-bottom: 50px;
}

@media (max-width: 991px) {
  .wt-separator-two-part {
    padding-bottom: 30px;
  }
}





.wt-separator-two-part.when-bg-dark .section-head .wt-title {
  color: #fff;
}

.wt-separator-two-part.when-bg-dark .section-head.left.wt-small-separator-outer .wt-small-separator {
  color: #000;
}

.wt-separator-two-part.when-bg-dark .section-head.left.wt-small-separator-outer .wt-small-separator div.sep-leaf-left:before {
  background-color: #000;
}

.wt-separator-two-part.when-bg-dark .section-head.left.wt-small-separator-outer .wt-small-separator div.sep-leaf-left:after {
  background-color: #000;
}

.wt-separator-two-part.when-bg-dark .wt-separator-two-part-right .p_discription {
  color: #fff;
}

.wt-separator-two-part-row {
  display: flex;
  align-items: center;
}

.wt-separator-two-part-row .wt-separator-two-part-left .section-head {
  margin-bottom: 0px;
}

.wt-separator-two-part-row .wt-separator-two-part-right {
  margin-bottom: 0px;
}

.wt-separator-two-part-row .wt-separator-two-part-right p {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .wt-separator-two-part-row .wt-separator-two-part-right {
    text-align: left !important;
    margin-top: 30px;
  }
}

.wt-small-separator {
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-weight: 800;
  color: #104CBA;
  background-color: #f9f9f9;
  padding: 5px 10px;
  border-left: 3px solid #104CBA;
}

.wt-small-separator.white {
  color: #fff;
}

@media (max-width: 767px) {
  .wt-small-separator {
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 0px;
  }
}

@media (max-width: 767px) {
  .wt-small-separator h2 {
    margin-bottom: 20px;
  }
}

.aon-sub-title {
  display: inline-flex;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-head {
  position: relative;
}

.section-head.when-bg-dark .wt-title {
  color: #fff;
}

.section-head.when-bg-dark p {
  color: #c1c1c1;
}

/*Center-title*/
.section-head.left.wt-small-separator-outer {
  text-align: left;
}

@media (max-width: 1024px) {
  .section-head.left.wt-small-separator-outer h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .section-head.left.wt-small-separator-outer h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

.section-head.left.wt-small-separator-outer p {
  margin-bottom: 40px;
}

.section-head.left.wt-small-separator-outer .wt-small-separator div.sep-leaf-left {
  position: relative;
}

.section-head.left.wt-small-separator-outer .wt-small-separator div.sep-leaf-left:before,
.section-head.left.wt-small-separator-outer .wt-small-separator div.sep-leaf-left:after {
  position: absolute;
  content: '';
  background-color: #104CBA;
  height: 22px;
  bottom: 0px;
  top: 0px;
  transform: skew(-20deg);
}

.section-head.left.wt-small-separator-outer .wt-small-separator div.sep-leaf-left.white:before,
.section-head.left.wt-small-separator-outer .wt-small-separator div.sep-leaf-left.white:after {
  background-color: #fff;
}

.section-head.left.wt-small-separator-outer .wt-small-separator div.sep-leaf-left:before {
  right: -20px;
  width: 10px;
}

.section-head.left.wt-small-separator-outer .wt-small-separator div.sep-leaf-left:after {
  right: -27px;
  width: 4px;
}

.section-head.left.wt-small-separator-outer.white .wt-small-separator div.sep-leaf-left:before,
.section-head.left.wt-small-separator-outer.white .wt-small-separator div.sep-leaf-left:after {
  background-color: #fff;
}

.section-head.left.wt-small-separator-outer.white .wt-small-separator div {
  color: #fff;
}

.form-group {
  margin-bottom: 30px;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
  padding: 0px 0px 30px;
}

.section-head.center {
  text-align: center;
  margin: 0px auto 60px;
  max-width: 600px;
}

@media only screen and (max-width:991px) {
  .section-head.center {
    margin-bottom: 30px;
  }
}

.section-head.center.wt-small-separator-outer {
  margin-bottom: 50px;
  text-align: center;
}

.section-head.center.wt-small-separator-outer h2 {
  max-width: 600px;
  margin: 0px auto;
}

@media (max-width: 1200px) {
  .section-head.center.wt-small-separator-outer h2 {
    font-size: 50px;
  }
}

@media (max-width: 1024px) {
  .section-head.center.wt-small-separator-outer h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .section-head.center.wt-small-separator-outer h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

.section-head.center .wt-small-separator div.sep-leaf-left {
  position: relative;
}

.section-head.center .wt-small-separator div.sep-leaf-left:before,
.section-head.center .wt-small-separator div.sep-leaf-left:after {
  position: absolute;
  content: '';
  background-color: #104CBA;
  height: 22px;
  bottom: 0px;
  top: 0px;
  transform: skew(-20deg);
}

.section-head.center .wt-small-separator div.sep-leaf-left:before {
  right: -20px;
  width: 10px;
}

.section-head.center .wt-small-separator div.sep-leaf-left:after {
  right: -27px;
  width: 4px;
}

/*--Play button 1--*/
.play-now-video .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100px;
  width: 100px;
  text-align: center;
  line-height: 100px;
  background-color: #75B16C;
  color: #fff;
  z-index: 1;
  font-size: 20px;
  padding-left: 5px;
  display: block;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: center center;
  border-radius: 50%;
  box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.5);
}

.play-now-video .ripple,
.play-now-video .ripple:before,
.play-now-video .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100px;
  width: 100px;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: center center;
  border-radius: 50%;
  box-shadow: 0 0 0 0 white;
  animation: ripple-video 3s infinite;
  z-index: 1;
}

.play-now-video .ripple:before {
  animation-delay: .9s;
  content: "";
  position: absolute;
}

.play-now-video .ripple:after {
  animation-delay: .6s;
  content: "";
  position: absolute;
}

@keyframes ripple-video {
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/*--Play button 2--*/
.play-now-video2 .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 150px;
  width: 150px;
  text-align: center;
  line-height: 150px;
  background-color: #75B16C;
  color: var(--primary);
  z-index: 1;
  font-size: 30px;
  padding-left: 5px;
  display: block;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: center center;
  border-radius: 50%;
  box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.5);
}

.play-now-video2 .ripple,
.play-now-video2 .ripple:before,
.play-now-video2 .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 150px;
  width: 150px;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: center center;
  border-radius: 50%;
  box-shadow: 0 0 0 0 white;
  animation: ripple-video2 3s infinite;
  z-index: 1;
}

.play-now-video2 .ripple:before {
  animation-delay: .9s;
  content: "";
  position: absolute;
}

.play-now-video2 .ripple:after {
  animation-delay: .6s;
  content: "";
  position: absolute;
}

@keyframes ripple-video2 {
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.play-now-statices {
  position: static;
  padding: 20px;
}


.widget {
  margin-bottom: 40px;
}

/*Footer Dark*/
.footer-dark .widget_address {
  padding-right: 30px;
}

.footer-dark .recent-posts-entry .wt-post-info .wt-post-header a {
  color: #acacac;
}

/*Widget Services*/
.widget_services ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.widget_services ul li {
  display: block;
  width: 100%;
  padding: 2px 0px;
  border: 0px;
  overflow: hidden;
}

.widget_services ul li a {
  color: #595959;
  position: relative;
  padding: 0px 0px 6px 0px;
  display: block;
  margin-left: 0px;
  transition: 0.5s all ease;
  font-size: 16px;
  display: inline-block;
}

.widget_services ul li .badge {
  float: right;
  background: none;
  color: #104CBA;
  font-weight: normal;
  font-size: 14px;
}

.widget_services ul li a:hover {
  color: #104CBA;
}

button.scroltop {
  border: none;
  position: fixed;
  right: 10px;
  bottom: 20px;
  color: #fff;
  margin: 0;
  font-size: 24px;
  cursor: pointer;
  display: none;
  height: 40px;
  width: 40px;
  line-height: 24px;
  padding: 0px;
  text-align: center;
  border-radius: 50px;
  z-index: 999;
  background: var(--primary);

}

button.scroltop:hover {
  background: #222;
  /* Old browsers */
}

/*Widget News-Letter*/
.footer-top-newsletter {
  padding-top: 80px;
}

.sf-news-letter {
  background-color: #c1ded7;
  padding: 50px 0px;
  border-radius: 20px;
  padding: 20px 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.sf-news-letter span {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  color: #222;
}


.sf-news-l-form {
  display: flex;
  position: relative;
  min-width: 560px;
  margin-bottom: 0px;
}

.sf-news-l-form .form-control {
  height: 40px;
  width: 100%;
  border-radius: 12px;
  border: none;
}

.sf-news-l-form .sf-sb-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 14px;
  color: #fff;
  border: none;
  font-weight: 500;
  background-color: #104CBA;
  border-radius: 0px 12px 12px 0px;
  padding: 8px 30px;
  margin-left: -12px;
}

@media only screen and (max-width:991px) {
  .sf-news-letter span {
    display: table;
    margin-bottom: 15px;
  }

  .sf-news-letter form {
    max-width: 700px;
    width: 100%;
  }

  .sf-news-l-form {
    min-width: 100px;
  }
}

/*Footer Light version css*/
.footer-light {
  background-color: #f8f5ff;
  color: #000;
}

.footer-light .logo-footer {
  margin-bottom: 25px;
  max-width: 240px;
}

.footer-light .footer-top {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media only screen and (max-width:640px) {
  .footer-light .footer-top {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.footer-light .widget-title {
  font-family: "Mulish", sans-serif;
  color: #000;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}

.footer-light .widget-title:before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: #000;
  width: 20px;
  height: 2px;
}

.footer-light .call-us {
  padding: 10px 20px 10px 0px;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .footer-light .call-us {
    margin: 15px 0px;
  }
}

.footer-light .call-us i {
  display: block;
  font-size: 42px;
  line-height: 42px;
  margin-right: 10px;
}

.footer-light .call-us a {
  display: block;
  color: #104CBA;
  font-size: 28px;
  line-height: 28px;
  font-weight: 800;
}

.footer-light .social-icons {
  margin: 30px 0px 0px 0px;
}

.footer-light .social-icons li {
  display: inline-block;
}

.footer-light .social-icons li a {
  height: 30px;
  width: 30px;
  background-color: #000;
  line-height: 30px;
  padding: 0px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border-radius: 50%;
  margin-right: 3px;
}

.footer-light .social-icons li a:hover {
  color: #fff;
  background-color: #104CBA;
}

.footer-light .footer-bottom {
  color: #fff;
  position: relative;
  z-index: 1;
}

.footer-light .footer-bottom .footer-bottom-info {
  display: flex;
  padding: 10px 0px;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991px) {
  .footer-light .footer-bottom .footer-bottom-info {
    display: block;
  }
}

.footer-light .footer-bottom .footer-bottom-info .call-us {
  background-color: #000;
  border-left: 4px solid #104CBA;
  padding: 10px 20px;
}

@media (max-width: 991px) {
  .footer-light .footer-bottom .footer-bottom-info .call-us {
    margin: 15px 0px;
  }
}

.footer-light .footer-bottom .footer-bottom-info .call-us span {
  display: block;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-light .footer-bottom .footer-bottom-info .call-us a {
  display: block;
  color: #104CBA;
  font-size: 28px;
  line-height: 28px;
  font-weight: 700;
}

.footer-light .footer-bottom .footer-copy-right .copyrights-text {
  color: #000;
  font-size: 14px;
}

.footer-light .copyrights-nav {
  list-style: none;
  display: block;
  margin-bottom: 0px;
}

.footer-light .copyrights-nav li {
  display: inline-block;
  margin-right: 8px;
}

.footer-light .copyrights-nav li:first-child {
  margin-left: 0;
}

.footer-light .copyrights-nav li:last-child {
  margin-right: 0;
}

.footer-light .copyrights-nav li:last-child:after {
  display: none;
}

.footer-light .copyrights-nav li:after {
  content: "/";
  position: relative;
  right: -8px;
  color: #000;
}

.footer-light .copyrights-nav li a {
  color: #000;
  font-size: 14px;
}

.footer-light .copyrights-nav li a:hover {
  color: #104CBA;
}

.footer-light .copyrights-nav li a:active {
  color: #104CBA;
}

.footer-light .copyrights-nav li a:focus {
  color: #104CBA;
}

.footer-light .copyrights-nav li.active a {
  color: #fff;
}

.footer-light .widget_address li {
  color: #000;
}

.footer-light .widget_address li i {
  color: #000;
  font-weight: normal;
}

.footer-light .widget_services ul li a {
  color: #000;
}

.footer-light .widget_services ul li a:hover {
  color: #104CBA;
}

.footer-light .recent-posts-entry .wt-post-info .wt-post-header a {
  color: #000;
}

.footer-light .recent-posts-entry .wt-post-info .wt-post-header a:hover {
  color: #104CBA;
}

.footer-light .recent-posts-entry .wt-post-info .wt-post-meta ul li {
  color: #6a6a6a;
}

.sf-site-link ul {
  list-style: none;
  margin: 0px;
}

.sf-site-link ul li a {
  color: #535353;
  font-size: 16px;
  font-weight: 500;
}

@media only screen and (max-width:767px) {
  .sf-site-link {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width:575px) {
  .footer-top .row [class*='col-']:last-child .sf-site-link {
    margin-bottom: 0px;
  }
}

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

.footer-bottom {
  padding-bottom: 50px;
}

.sf-f-copyright {
  color: #535353;
  font-size: 14px;
  font-weight: 500;
}

.sf-footer-bottom-section .sf-f-social {
  position: relative;
  padding-left: 420px;
}

.sf-footer-bottom-section .sf-f-social:after {
  content: '';
  position: absolute;
  left: 0px;
  top: 50%;
  height: 1px;
  background-color: #022278;
  width: 390px;
}

.sf-footer-bottom-section .sf-f-social .socila-box {
  margin: 0px;
}

.sf-footer-bottom-section .sf-f-social .socila-box li {
  display: inline-block;
}

.sf-footer-bottom-section .sf-f-social .socila-box li a {
  color: #26418c;
  font-size: 22px;
  padding-right: 15px;
}

.sf-footer-bottom-section .sf-f-social .socila-box li:last-child a {
  padding-right: 0px;
}


@media only screen and (max-width:1100px) {
  .sf-f-logo {
    display: table;
    margin: 0px auto 20px;
  }

  .sf-footer-bottom-section {
    display: block;
    text-align: center;
  }

  .sf-footer-bottom-section .sf-f-social::after {
    left: 0%;
    top: 0px;
    height: 1px;
    width: 100%;
  }

  .sf-footer-bottom-section .sf-f-social {
    padding: 20px 0px 0px;
    margin-top: 25px;
  }
}


/*Accordians*/
.accordion-cutom .accordion-item {
  position: relative;
  border: none;
  margin-bottom: 10px;
  border-radius: 0;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  transition: 0.5s all ease;
}

.accordion-cutom .accordion-item:last-child {
  margin-bottom: 0px;
}

.accordion-cutom .accordion-item .acod-content {
  padding: 10px 20px 20px 50px;
  background-color: #fff;
}

.accordion-cutom .accordion-item .accordion-header a {
  background-color: #fff;
}

.accordion-cutom [aria-expanded="false"] .accordion-button::after {
  content: "\f068";
}

.accordion-cutom .acod-content:after {
  transition: 0.5s all ease;
  content: '';
  position: absolute;
  right: 0px;
  top: 0px;
  width: 4px;
  height: 0%;
  background-color: #104CBA;
  z-index: 1;
}

.accordion-cutom.collapse.show .acod-content:after {
  height: 100%;
}

.acod-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
}

.acod-title a {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.acod-head {
  position: relative;
  /*Accodian open close indicator css*/
}

.acod-head a {
  display: block;
  padding: 15px 20px 15px 50px;
  background-color: #f6f6f6;
}

.acod-head a.collapsed {
  color: #000;
}

.acod-head .fa {
  margin-right: 5px;
}

.acod-head a,
.acod-head:hover,
.acod-head:active,
.acod-head:focus {
  color: #000;
}

.acod-head .indicator {
  padding: 15px;
  color: #000;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  font-size: 22px;
}

.acod-head .indicator .fa {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.acod-head.acc-actives .indicator .fa:before {
  content: "\f067";
  font-family: 'FontAwesome';
}

.acod-head [aria-expanded="false"] .indicator .fa:before {
  content: "\f105";
  font-family: 'FontAwesome';
}

.acod-head [aria-expanded="true"] .indicator .fa:before {
  font-family: 'FontAwesome';
  content: "\f107";
}

.acod-head .collapsed .indicator .fa:before {
  content: "\f105";
  font-family: 'FontAwesome';
}

.acod-head .collapsed [aria-expanded="false"] .indicator .fa:before {
  content: "\f067";
  font-family: 'FontAwesome';
}

.acod-head .indicator .fa:before {
  font-family: 'FontAwesome';
  content: "\f107";
}

.acod-head [aria-expanded="true"] .indicator .fa:before {
  font-family: 'FontAwesome';
  content: "\f107";
}

.form-control {
  border: 1px solid #e1e1e1;
  height: 60px;
  font-size: 16px;
  line-height: 20px;
  padding: 10px 12px;
  border-radius: 5px;
}

.form-control:focus {
  box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.0);
  border-color: var(--primary);
  background-color: #fff;
}

.bootstrap-select .dropdown-menu li a {
  font-size: 14px;
}

textarea.form-control {
  height: auto;
}

.aon-form-label {
  font-size: 18px;
  font-family: var(--title-family);
}

.aon-form-label label {
  margin-bottom: 10px;
  color: #000222;
  font-weight: 500;
}

/*Section Overlay*/
.overlay-wraper {
  position: relative;
}

.overlay-wraper .overlay-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.opacity-01 {
  opacity: 0.1;
}

.opacity-02 {
  opacity: 0.2;
}

.opacity-03 {
  opacity: 0.3;
}

.opacity-04 {
  opacity: 0.4;
}

.opacity-05 {
  opacity: 0.5;
}

.opacity-06 {
  opacity: 0.6;
}

.opacity-07 {
  opacity: 0.7;
}

.opacity-08 {
  opacity: 0.8;
}

.opacity-09 {
  opacity: 0.9;
}

.overlay-wraper>.container {
  position: relative;
  z-index: 1;
}

.overlay-wraper>.container-fluid {
  position: relative;
  z-index: 1;
}

/*newsletter section*/
.nl-type {
  width: 100%;
}

@media (max-width: 768px) {
  .nl-type {
    margin: 0px auto;
  }
}

@media (max-width: 575px) {
  .nl-type {
    width: 100%;
  }
}

.nl-type .nl-form {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.nl-type .nl-form .form-control {
  background-color: transparent;
  border: 1px solid #acacac;
  border-right: 0px;
  flex: 1 1 auto;
  width: 1%;
}

.nl-type .nl-form .form-control::placeholder {
  color: #000;
  font-size: 12px;
  font-weight: 400;
}

.nl-type .nl-form .form-control:-ms-input-placeholder {
  color: #000;
  font-size: 12px;
  font-weight: 400;
}

.nl-type .nl-form .s-btn {
  border: none;
  background-color: #104CBA;
  padding: 0px 20px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

select {
  appearance: none;
  /* Remove default arrow */
  background-image: url(...);
  /* Add custom arrow */
  padding: 10px 30px 10px 10px;
  background-color: #fff;
}

/*radio & checkbox*/
.sf-radio-checkbox.radio-inline,
.sf-radio-checkbox.checkbox-inline {
  padding-left: 0 !important;
}

.sf-radio-checkbox label {
  font-weight: normal !important;
}

.sf-radio-checkbox input[type=checkbox],
.sf-radio-checkbox input[type=radio] {
  display: none;
  opacity: 0;
  margin-left: 1px !important;
}

.sf-radio-checkbox input[type=checkbox]+label,
.sf-radio-checkbox input[type=radio]+label {
  display: block;
  padding-left: 24px !important;
  position: relative;
  cursor: pointer;
  line-height: 1.3;
}

.sf-radio-checkbox input[type=checkbox]+label:hover:before,
.sf-radio-checkbox input[type=radio]+label:hover:before {
  border-color: #1750bd;
}

.sf-radio-checkbox input[type=checkbox]+label:before,
.sf-radio-checkbox input[type=radio]+label:before {
  background-color: #c4cada;
  border: 1px solid #e8ebf2;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 1;
  margin-left: -24px;
  position: absolute;
  top: 0px;
  transition: all linear 0.1s;
  border-radius: 2px;
}

.sf-radio-checkbox input[type=checkbox]+label:after {
  color: #1750bd;
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 0px;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 1px;
  left: 3px;
  transition: all linear 0.1s;
}

.sf-radio-checkbox input[type=checkbox]:checked+label:before {
  border-width: 1px;
  border-color: #1750bd;
}

.sf-radio-checkbox input[type=checkbox]:checked+label:after {
  font-size: 12px;
  left: 3px;
  top: 1px;
}

.sf-radio-checkbox input[type=radio]+label:before {
  border-radius: 50%;
  content: "";
}

.sf-radio-checkbox input[type=radio]:checked+label:before {
  border-color: #1750bd;
  border-width: 2px;
}

.form-inline .checkbox input[type="checkbox"],
.form-inline .radio input[type="radio"] {
  position: absolute;
  left: 0;
  bottom: 0;
}

/*table section*/

.ws-table-border-type .table {
  border: none !important;
}

.ws-table-border-type table>tbody>tr>th {
  padding: 5px;
}

.ws-table-border-type table>thead {
  background-color: #fff;
}

.ws-table-border-type table>tbody:before {
  content: "";
  display: block;
  height: 20px;
}

.ws-table-border-type table>thead>tr {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
}

.ws-table-border-type table>tbody>tr {
  border-bottom: 1px solid #ddd;
}

.ws-table-border-type table>thead>tr>th {
  padding: 20px 15px;
  border-bottom: 0px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  vertical-align: middle;
}

.ws-table-border-type table>tbody>tr>td {
  padding: 20px 15px;
  border: 0px;
  font-size: 14px;
  color: #687178;
}

.ws-table-border-type table>tbody>tr>td .we-table-trash-btn {
  text-align: right;
}

.ws-table-border-type table>tbody>tr>td .we-table-trash-btn button {
  background-color: transparent;
  border: none;
}

.site-button-border {
  color: #555;
  background-color: #fff;
  padding: 10px 25px;
  display: inline-block;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  border-color: #ddd;
  line-height: 1.42857;
  text-decoration: none !important;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.action-dropdown.dropdown-top .dropdown-menu {
  top: 100%;
  margin: 10px 0px 0 0;
  right: 0;
  min-width: 200px;
}

.action-dropdown.dropdown-top .dropdown-menu::after {
  top: -14px;
  right: 14px;
  border-bottom: 7px solid #fff;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  left: auto;
}

.add-more-item {
  margin-right: 35%;
  margin-top: -100px;
  margin-bottom: 30px;
}

.add-more-btn {
  margin-bottom: 20px;
  outline: 0px !important;
}

@media only screen and (max-width:1200px) {
  .add-more-item {
    margin-right: 0px;
    margin-top: 0px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width:991px) {
  .add-more-item {
    margin-top: 30px;
  }
}


.active .add-more-btn .fa:before {
  content: "\f068";
}

.add-more-content {
  padding: 30px;
  border: 1px solid #ddd;
  display: none;
  border-radius: 5px;
}

.add-more-form.row:after {
  width: auto;
  height: 0;
}

.add-more-form.row>[class*="col-"]:last-child .form-group {
  margin: 0px;
}

.add-your-sign {
  margin-right: 35%;
  margin-top: 0px;
  margin-bottom: 30px;
}

@media only screen and (max-width:1200px) {
  .add-your-sign {
    margin-right: 0px;
    margin-top: 0px;
    margin-bottom: 30px;
  }
}

.add-sign-priveiw {
  text-align: center;
  border: 1px solid #ddd;
  padding: 30px;
  width: 50%;
}

.add-sign-priveiw img {
  width: 180px;
}

.edit-part-name {
  position: relative;
}

.edit-part-name .site-button {
  position: absolute;
  top: 5px;
  right: 5px;
}

.add-payment-detail {
  margin-right: 35%;
  margin-top: 0px;
  margin-bottom: 0px;
}

.add-payment-icon {
  font-size: 30px;
}

@media only screen and (max-width:1200px) {
  .add-payment-detail {
    margin-right: 0px;
    margin-top: 0px;
    margin-bottom: 30px;
  }
}

.crad-tile-main {
  border-bottom: 1px solid #ddd;
}

.ws-custom-heading {
  display: flex;
  justify-content: space-between;
}

/*=== >text ===*/
.text-white {
  color: #fff;
}

.text-primary {
  color: var(--primary) !important;
}

.text-black {
  color: #000;
}

.text-gray {
  color: #f5f6f6;
}

.text-gray-dark {
  color: #d3d3d3;
}

.text-red {
  color: #ff6868;
}

.text-red-dark {
  color: #FF2020;
}

.text-green {
  color: #00d285;
}

.text-yellow {
  color: #ffc100;
}

.text-orange {
  color: #F60;
}

.text-blue {
  color: #2c80ff;
}

.text-sky {
  color: #21accd;
}

.text-purple {
  color: #802d75;
}


.radio-inline-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.radio-inline-box .sf-radio-checkbox {
  margin-right: 20px;
  margin-bottom: 10px;
}

.radio-inline-box .sf-radio-checkbox label {
  font-size: 14px;
}

.whatsapp-pic img {
  width: 22px;
}

.aon-con-btn {
  margin-bottom: 20px;
}

@media only screen and (max-width:1199px) {
  .aon-con-btn {
    text-align: left;
  }
}

.header-toltip {
  position: absolute;
  top: 80% !important;
  left: 50%;
  white-space: nowrap;
  background: #022279 !important;
  display: table;
  padding: 5px 10px !important;
  font-size: 11px !important;
  color: #fff !important;
  border-radius: 3px !important;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  letter-spacing: 0.5px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: "arial";
  font-weight: 600 !important;
  line-height: 16px !important;
}

.has-toltip:hover {
  overflow: visible !important;
  position: relative;
}

.has-toltip:hover .header-toltip {
  opacity: 1 !important;
  visibility: visible !important;
  top: 120% !important;
}


.header-menu {
  margin-right: 30px;
}

.header-menu .navbar-toggler {
  display: none;
}

.header-menu .nav>li {
  padding: 0px;
}

.header-menu .header-nav .nav>li>a {
  padding: 20px 10px;
  font-size: 14px;
}

.admin-nav-label {
  background: #104CBA;
  padding: 4px 8px;
  margin-left: 10px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.13);
  color: #fff;
  border-radius: 4px;
  text-align: center;
  font-weight: 100;
  font-size: 10px;
}

.sf-radio-check-2 {
  padding: 15px 0px;
  margin: 0px;
}

.sf-radio-check-2 label {
  margin: 0px;
}

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

.sf-raChe-6 {
  width: calc(50% - 30px);
  margin: 0px 15px 0px !important;
}

.grayscle-area {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
}

@media only screen and (max-width:1200px) {
  .header-menu {
    display: none;
  }
}


.sf-select-box.form-control {
  background-color: #f7fafc;
  border-color: #e8edf1;
  box-shadow: none;
  -webkit-box-shadow: none;
  border-radius: 5px;
  height: 50px;
}

.sf-select-box.form-control:focus {
  background: #fff;
  box-shadow: 0px 10px 14px 0px rgba(12, 0, 46, 0.06);
}

.bootstrap-select.sf-select-box .dropdown-toggle {
  background-color: #f7fafc !important;
  height: 50px;
}

.set-bulk-btn {
  margin: 30px 0px;
}

.add-more-content2 {
  padding: 30px;
  border: 1px solid #ddd;
  display: none;
  border-radius: 10px;
}

.add-more-form.row:after {
  width: auto;
  height: 0;
}

.add-more-form.row>[class*="col-"]:last-child .form-group {
  margin: 0px;
}

/* tabs Section */

.sf-custom-tabs .nav-tabs>li>a.active {
  position: relative;
  opacity: 1;
}

.sf-custom-tabs .nav-tabs>li>a.active:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0%;
  width: 100%;
  background-color: #022279;
  height: 2px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.sf-custom-tabs .nav-tabs>li.active>a {
  color: #fff;
  opacity: 1;
}

.sf-custom-tabs .nav-tabs>li.active>a:after {
  left: 0%;
  width: 100%;
  background-color: #fff;
}



/*Data table head*/
.sf-bd-data-tb-head {
  margin-bottom: 30px;
  text-align: right;
}

@media only screen and (max-width:420px) {
  .selected-working-hours ul li {
    width: 100%;
    text-align: center;
  }
}


.dropzone {
  min-height: 150px;
  border: 2px dashed rgb(2, 34, 121);
  background: white;
  padding: 20px 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}

.dropzone span {
  background-color: #104CBA;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  display: table;
  margin: auto;
}

.table-striped>tbody>tr:nth-of-type(2n+1) {
  --bs-table-accent-bg: #f6f8fa;
}


.page-item.active .page-link {
  background: #022279;
  border-color: #022279;
}

.page-link {
  color: #022279;
}

.page-link:hover {
  background-color: #022279;
  border-color: #022279;
  color: #fff;
}

div.dataTables_wrapper div.dataTables_paginate {
  margin-top: 10px !important;
}

div.dataTables_wrapper div.dataTables_length select {
  min-width: 100px;
}

.model-w800 {
  max-width: 800px;
}

.action {
  width: 330px;
  display: none !important;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.action .dx-selectbox {
  width: 90px;
}


/*Site Pagination*/
.s-p-center {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.site-pagination {
  clear: both;
}

.site-pagination .pagination>li>a,
.site-pagination .pagination>li>span {
  margin: 0px 3px;
  border: none;
  border-radius: 30px !important;
  text-align: center;
}

.site-pagination .pagination>li>a .fa {
  font-size: 12px;
}

.site-pagination .pagination>li>a {
  color: #022278;
}

.site-pagination .page-item.active .page-link {
  background-color: #104CBA;
  border-color: #104CBA;
}

.site-pagination .pagination>li>a,
.site-pagination .pagination>li>span {
  margin: 0px 5px;
  border: none;
  border-radius: 30px !important;
  padding: 5px 2px;
  min-width: 36px;
}

.site-pagination .pagination>li>a:hover,
.site-pagination .pagination>li>span:hover {
  color: #fff;
  background-color: #104CBA;
  border-color: #104CBA;
}



.site-footer {
  position: relative;
  font-size: 16px;
}

.site-footer>.footer-top,
.site-footer>.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-patter {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: url("../images/about-bg.png");
}




/*Working*/
.section-head.center.white {
  color: #fff;
}

.section-head.center.white .aon-title {
  color: #fff;
}


/*Site Pagination*/

.site-pagination2 {
  clear: both;
}

.site-pagination2 .pagination {
  margin: 0px;
}

.site-pagination2 .pagination>li>a {
  border: 1px solid #f2e8e0;
  text-align: center;
  margin-right: 8px;
  padding: 11px 5px;
  min-width: 50px;
  height: 50px;
  border-radius: 30px !important;
  color: #706C83;
  font-weight: 500;
  background-color: #fff;
  font-size: 14px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media only screen and (max-width:991px) {
  .site-pagination2 {
    text-align: center;
  }

  .site-pagination2 .pagination {
    display: inline-flex;
    margin: 0px auto;
  }
}

.site-pagination2 .page-item.active .page-link {
  background-color: #75B16C;
  color: #ffffff;
  border: 1px solid transparent;
  -webkit-box-shadow: 0px 8px 12px 0px RGBA(255, 142, 43, 0.44);
  box-shadow: 0px 8px 12px 0px RGBA(255, 142, 43, 0.44);
  background: -moz-linear-gradient(top, #fc7c44 0%, #cf480d 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #fc7c44 0%, #cf480d 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #fc7c44 0%, #cf480d 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc7c44', endColorstr='#cf480d', GradientType=0);
  /* IE6-9 */
}

.site-pagination2 .pagination>li>a:hover {
  border: 1px solid transparent;
  background-color: #75B16C;
  color: #ffffff;
  -webkit-box-shadow: 0px 8px 12px 0px RGBA(255, 142, 43, 0.44);
  box-shadow: 0px 8px 12px 0px RGBA(255, 142, 43, 0.44);
  background: -moz-linear-gradient(top, #fc7c44 0%, #cf480d 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #fc7c44 0%, #cf480d 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #fc7c44 0%, #cf480d 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc7c44', endColorstr='#cf480d', GradientType=0);
  /* IE6-9 */
}

.aon-paging-control {
  display: flex;
  justify-content: center;
}

.aon-paging-center .site-pagination-3 {
  margin: auto;
}


@media only screen and (max-width:991px) {
  .aon-paging-control {
    padding-bottom: 30px;
  }

  .aon-paging-control.p-t60 {
    padding-top: 30px;
  }

  .aon-paging-control.p-t30 {
    padding-bottom: 0px;
  }
}

@media only screen and (max-width:575px) {
  .aon-paging-control {
    display: block;
  }
}

.aon-paging-arrow {
  display: flex;
}

@media only screen and (max-width:575px) {
  .aon-paging-arrow {
    margin-top: 30px;
    justify-content: center;
  }
}

.aon-paging-arrow button {
  width: 50px;
  height: 50px;
  margin-left: 5px;
  border: none;
  padding: 10px 12px;
  font-size: 24px;
  line-height: 1;
  border-radius: 30px;
  color: #ddd;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #fff;
  border: 1px solid #ddd;
}

.aon-paging-arrow button i {
  display: flex;
  line-height: 1;
}

.aon-paging-arrow button:hover {
  border: 1px solid transparent;
  -webkit-box-shadow: 0px 8px 12px 0px RGBA(255, 142, 43, 0.44);
  box-shadow: 0px 8px 12px 0px RGBA(255, 142, 43, 0.44);
  background: -moz-linear-gradient(top, #fc7c44 0%, #cf480d 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #fc7c44 0%, #cf480d 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #fc7c44 0%, #cf480d 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc7c44', endColorstr='#cf480d', GradientType=0);
  /* IE6-9 */
}


.aon-paging-arrow button:last-child {
  margin-right: 0px;
}

.aon-paging-arrow button:hover {
  color: #fff;
  background-color: rgba(117, 177, 108, 0.07);
}

.aon-inputicon-box .form-select {
  padding-left: 55px;
}

.aon-inputicon-box {
  position: relative;
}

.aon-inputicon-box .form-control {
  padding-left: 55px;
}

.aon-inputicon-box .aon-input-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  font-size: 24px;
  z-index: 5;
  line-height: 60px;
  text-align: center;
}


/*= comment list = */
.comments-area {
  padding: 0;
  clear: both;
  max-width: 860px;
  margin-top: 50px;
}

.comments-area .comments-title {
  font-size: 24px;
  margin-bottom: 15px;
}

ol.comment-list {
  list-style: none;
  margin: 0;
}

ol.comment-list li.comment {
  position: relative;
  padding: 0;
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 20px;
}

ol.comment-list li.comment .comment-body {
  position: relative;
  padding: 15px 20px;
  position: relative;

}


ol.comment-list li.comment .comment-author {
  display: block;
  margin-bottom: 5px;
}

ol.comment-list li.comment .comment-author .single-product-rating {
  position: absolute;
  right: 20px;
  top: 15px;
}

ol.comment-list li.comment .comment-author .avatar {
  position: absolute;
  top: 30px;
  left: 0px;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  border: 2px solid #FFF;
}

ol.comment-list li.comment .comment-author .fn {
  display: inline-block;
  color: #000222;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  font-family: var(--title-family);
}

@media only screen and (max-width:575px) {
  ol.comment-list li.comment .comment-author .single-product-rating {
    position: inherit;
  }

  ol.comment-list li.comment .comment-author .avatar {
    position: inherit;
  }

  ol.comment-list li.comment .comment-author .fn {
    display: block;
  }

  ol.comment-list li.comment .comment-body {
    padding: 0px;
    margin-left: 0px;
  }
}

ol.comment-list li.comment .comment-author .says {
  display: none;
  color: #999999;
  font-weight: 600;
}

ol.comment-list li.comment .comment-meta {
  color: #8d8d8d;
  text-transform: uppercase;
  margin-bottom: 10px;
}

ol.comment-list li.comment .comment-meta:before,
ol.comment-list li.comment .reply a:before {
  font-family: "FontAwesome";
  font-size: 11px;
  vertical-align: middle;
}

ol.comment-list li.comment .comment-meta:before {
  content: "\f133";
}

ol.comment-list li.comment .reply a:before {
  content: "\f064";
  font-weight: normal;
  color: #555555;
  margin-right: 5px;
  vertical-align: middle;
}

ol.comment-list li.comment p {
  margin: 0 0 5px;
}

ol.comment-list li.comment .reply a {
  position: absolute;
  top: 50px;
  right: 30px;
  margin-top: -5px;
  color: #022278;
  font-weight: 600;
}

ol.comment-list li .children {
  list-style: none;
  margin-left: 0px;
  padding-left: 120px;
}

ol.comment-list li .children li {
  padding: 0;
}

ol.comment-list li .comment-replay-btn {
  color: #676767;
}

ol.comment-list li .comment-replay-btn:hover {
  color: #1750bd;
}

ol.comment-list li .comment-replay-btn i {
  margin-left: 5px;
  font-size: 10px;
}

@media only screen and (max-width:767px) {
  ol.comment-list li .children {
    padding-left: 50px;
  }
}



table {
  background-color: transparent;
  width: 100%;
  margin-bottom: 20px;
}

table thead th {
  padding: 12px 8px;
}

table td {
  padding: 15px 10px;
}




.aon-btn-search {
  position: relative;
  margin-right: 10px;
  color: #e3e2e4;
}

@media only screen and (max-width:575px) {
  .aon-btn-search {
    margin-right: 0px
  }
}

/*Search*/
#search {
  position: fixed;
  top: 100%;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1);
  transition: all 0.5s ease-in-out;
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
  visibility: hidden;
}

.active-search #search {
  top: 0%;
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
  z-index: 999;
  visibility: visible;
}

#search form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(500px - 30px);
  width: calc(100% - 30px);
  color: #1967d2;
  border-radius: 10px;
  font-size: 30px;
  font-weight: 300;
  text-align: left;
  outline: none;
  padding: 10px;
  display: flex;
  align-items: center;
  margin: 0px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to bottom, var(--primary-one), var(--primary-two)) border-box;
  border-radius: 5px;
  border: 2px solid transparent;
}

#search form span {
  display: block;
}

#search input[type=search] {
  background: none;
  border: none;
  padding: 0px 12px;
  outline: none;
  color: #17171d;
  font-size: 24px;
  text-align: left;
}

@media (max-width: 575px) {
  #search input[type=search] {
    font-size: 14px;
  }
}

#search input[type=search]:focus {
  box-shadow: none;
}

#search input[type=search]::placeholder {
  color: #17171d;
}

#search .search-btn {
  border: none;
  background: none;
  padding: 0px 10px;
  line-height: 1;
  outline: none;
  display: block;
  width: 100%;
  text-align: center;
}

#search .search-btn i {
  font-size: 36px;
  line-height: 60px;
  color: #000;
}

#search .aon-seach-close {
  position: fixed;
  top: 30px;
  right: 30px;
  border-radius: 50px;
  opacity: 1;
  font-size: 27px;
  color: #fff;
  width: 60px;
  height: 60px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #fc7c44;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fc7c44 0%, #cf480d 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #fc7c44 0%, #cf480d 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #fc7c44 0%, #cf480d 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc7c44', endColorstr='#cf480d', GradientType=0);
  /* IE6-9 */
}

#search .aon-seach-close:hover {
  -moz-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -o-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

#search .aon-seach-close:after,
#search .aon-seach-close:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 32px;
  background-color: #fff;
  right: 28px;
  top: 16px;
}

#search .aon-seach-close:after {
  transform: rotate(45deg);
}

#search .aon-seach-close:before {
  transform: rotate(-45deg);
}

#search .aon-seach-close:hover:after,
#search .close:hover:before {
  cursor: pointer;
}




/*label*/
.sf-radio-checkbox input[type="checkbox"]+label::before,
.sf-radio-checkbox input[type="radio"]+label::before {
  background-color: transparent;
  margin-left: -30px;
}

.sf-radio-checkbox input[type="checkbox"]+label,
.sf-radio-checkbox input[type="radio"]+label {
  padding-left: 30px !important;
}


.bg-gradient-one {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fc7c44+0,cf480d+100 */
  background: #fc7c44;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fc7c44 0%, #cf480d 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #fc7c44 0%, #cf480d 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #fc7c44 0%, #cf480d 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc7c44', endColorstr='#cf480d', GradientType=0);
  /* IE6-9 */
}



.aon-bg-light-orange {
  background-color: #fef9f7;
}


.aon-blog-area-2 {}

.aon-travel-blog-section {
  margin-bottom: 30px;
}

.aon-farm-blog-2 {
  padding: 20px;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #eee;
}

.aon-farm-blog-2:hover {
  border: 1px solid #fc7c44;
}

.aon-farm-blog-2 .post-bx .post-thum {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}

.aon-farm-blog-2 .post-bx .post-thum img {
  width: 100%;
}

.aon-farm-blog-2 .post-info {
  position: relative;
  padding: 10px;
}

.aon-farm-blog-2 .post-info .post-date {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
}

.aon-farm-blog-2 .post-info .post-date i {
  padding-right: 5px;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
}

.aon-side_bar .aon-farm-blog-2 .post-info {
  padding: 0px;
}

.aon-farm-blog-2 .post-meta ul {
  margin-bottom: 0px;
}

.aon-farm-blog-2 .post-meta ul li {
  color: var(--primary);
  position: relative;
  display: inline-block;
  margin-right: 5px;
}

.aon-farm-blog-2 .post-meta ul li:last-child {
  margin-right: 0px;
}

.aon-farm-blog-2 .post-meta ul li img {
  padding-right: 10px;
}

.aon-farm-blog-2 .post-meta ul li a {
  color: #777777;
}

.aon-farm-blog-2 .post-title {
  margin-bottom: 15px;
  line-height: 1.6;
}

.aon-farm-blog-2 .post-title a {
  color: #000222;
}

.aon-farm-blog-2 .post-text {
  padding: 10px 0px;
}

.aon-farm-blog-2 .aon-post-control {
  display: flex;
  justify-content: space-between;
}

.aon-farm-blog-2 .date-before-circle {
  display: inline-flex;
  width: 10px;
  height: 10px;
  background-color: #d04a0f;
  border-radius: 50%;
}

.aon-farm-blog-2 .aon-post-date {
  color: #1750bd;
  font-weight: 600;
  font-size: 12px;
}

.mos-news-carousel.m-b30 {
  margin-bottom: 0;
}

@media only screen and (max-width:991px) {
  .aon-blog-area-2 {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .aon-travel-blog-section {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 768px) {
  .aon-blog-area-2 .masonry-item:last-child {
    margin-bottom: 0px;
  }

  .aon-travel-slider.owl-btn-top-right .owl-nav {
    position: inherit;
    top: inherit;
    left: auto;
    margin: 0;
    text-align: center;
  }

  .aon-travel-blog-section {
    margin-bottom: 0px;
  }
}


.site-button-1 {
  outline: none;
  color: #706c83;
  padding: 6px 14px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-table;
  background-color: #E3D270;
  font-size: 14px;
  transition: 0.5s all ease;
  border-radius: 5px;
  font-weight: 500;
  font-family: "Inter";

  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fff6f2+0,fbf2ee+100 */
  background: #fff6f2;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fff6f2 0%, #fbf2ee 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #fff6f2 0%, #fbf2ee 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #fff6f2 0%, #fbf2ee 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff6f2', endColorstr='#fbf2ee', GradientType=0);
  /* IE6-9 */

}

.site-button-1:hover,
.site-button-1:active,
.site-button-1:focus {
  color: #fff;

  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fc7c44+0,cf480d+100 */
  background: #fc7c44;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fc7c44 0%, #cf480d 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #fc7c44 0%, #cf480d 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #fc7c44 0%, #cf480d 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc7c44', endColorstr='#cf480d', GradientType=0);
  /* IE6-9 */

}

.site-button-1 .btn-arrow-icon {
  display: inline-flex;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.section-head.left .aon-title {
  margin-bottom: 10px;
}



.container.aon-container-large {
  width: 100%;
  max-width: 1520px;
}


/*instagallery*/
.aon-insta-area-2 {}

.aon-insta-gallery-wrap {
  position: relative;
}

.aon-insta-gallery-wrap .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.aon-insta-gallery-wrap .row .aon-insta-box-1 {
  width: 20%;
}

.aon-insta-gallery-1 {
  position: relative;
}

.aon-insta-gallery-1 .aon-insta-pic-1 {
  border-radius: 6px;
}

.aon-insta-gallery-1 .aon-insta-info-1 {
  background-color: #fff;
  border-radius: 6px;
  padding: 20px 30px;
  text-align: left;
  position: absolute;
  width: calc(100% - 40px);
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  bottom: 0px;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.aon-insta-gallery-1 .aon-insta-info-1 a {
  font-size: 18px;
  display: flex;
  align-items: center;
}

.aon-insta-gallery-1 .aon-insta-info-1 a i {
  margin-right: 5px;
  font-size: 24px;
}

.aon-insta-gallery-1:hover .aon-insta-info-1 {
  opacity: 1;
  bottom: -20px;
}

@media only screen and (max-width:1199px) {
  .aon-insta-gallery-wrap .row .aon-insta-box-1 {
    width: 33.33%;
  }

  .aon-insta-gallery-1 .aon-insta-pic-1 {
    margin-bottom: 30px;
  }

  .aon-insta-gallery-1 .aon-insta-pic-1 img {
    width: 100%;
  }
}

@media only screen and (max-width:991px) {
  .aon-insta-area-2 {
    padding-bottom: 30px;
    padding-top: 50px;
    border-top: 1px solid #f2f2 f2;
  }
}

@media only screen and (max-width:767px) {
  .aon-insta-gallery-wrap .row .aon-insta-box-1 {
    width: 50%;
  }

  .aon-insta-gallery-1 .aon-insta-info-1 {
    padding: 10px 14px;
  }
}

@media only screen and (max-width:460px) {
  .aon-insta-gallery-wrap .row .aon-insta-box-1 {
    width: 100%;
  }
}


/*Our partners */
.aon-our-partners .section-content {
  border-top: 2px solid #ddd;
}

@media only screen and (max-width:991px) {
  .aon-our-partners {
    padding-bottom: 55px;
  }

  .aon-our-partners.aon-bg-white.p-t40.p-b70 {
    padding-bottom: 0;
  }

  .aon-our-partners.aon-bg-gray.p-t40.p-b0 {
    padding-top: 0px;
    padding-bottom: 20px;
  }
}


/*aon-facilities-area*/
.play-now-statice {
  position: relative;
  padding: 20px;
}

.aon-facilities-top-area .row {
  display: flex;
  align-items: flex-end;
}

.aon-facilities-top-area .row {
  display: flex;
  align-items: flex-end;
}

.aon-facilities-top-area .row.play-now-statice {
  position: relative;
  padding: 20px;
  margin-left: 15px;
}

.aon-facilities-area {
  padding: 170px 0px 140px 0px;
  position: relative;
  background-size: cover;
}

@media only screen and (max-width:991px) {
  .aon-facilities-area {
    padding: 70px 0px 20px 0px;
  }
}


.aon-facilities-area .aon-overlay-area {
  background: #000;
  opacity: 0.5;
}

.aon-facilities-video-info {
  text-align: right;
  color: #fff;

}

.aon-facilities-video-info span {
  color: #cf480d;
}

.aon-facilities-top-area {
  margin-bottom: 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 90px;
}

.aon-facilities-bottom-area .aon-facilities-vid-title h2 {
  color: #fff;
  font-size: 72px;
  font-weight: 700;
}

@media only screen and (max-width:991px) {
  .aon-facilities-bottom-area .aon-facilities-vid-title h2 {
    font-size: 36px;
  }
}

@media only screen and (max-width:767px) {
  .play-now-statice {
    display: block;
    margin-bottom: 30px;
  }

  .aon-facilities-video-info {
    text-align: center;
  }

  .aon-facilities-top-area {
    margin-bottom: 30px;
    padding-bottom: 40px;
  }
}

.aon-facilities-blocks {
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 6px;
  color: #fff;
  background-color: #ddd;
}

.aon-fac-icon {
  overflow: hidden;
}

.aon-facilities-blocks i {
  font-size: 62px;
  line-height: 62px;
  margin-bottom: 20px;
  display: block;
}

.aon-facilities-blocks .aon-title {
  color: #fff;
  margin-bottom: 0px;
}

@media only screen and (max-width:991px) {
  .aon-facilities-top-area {
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 80px;
  }

  .aon-facilities-blocks-wrap {
    margin-top: 30px;
  }
}

.gradi-1 {
  background: #fc7c44;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fc7c44 0%, #cf480d 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #fc7c44 0%, #cf480d 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #fc7c44 0%, #cf480d 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc7c44', endColorstr='#cf480d', GradientType=0);
  /* IE6-9 */
}

.gradi-2 {
  background: #f9eb45;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f9eb45 0%, #1dca08 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #f9eb45 0%, #1dca08 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #f9eb45 0%, #1dca08 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9eb45', endColorstr='#1dca08', GradientType=0);
  /* IE6-9 */
}

.gradi-3 {
  background: #f497c1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f497c1 0%, #d32f78 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #f497c1 0%, #d32f78 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #f497c1 0%, #d32f78 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f497c1', endColorstr='#d32f78', GradientType=0);
  /* IE6-9 */
}

.gradi-4 {
  background: #47cffe;
  /* Old browsers */
  background: -moz-linear-gradient(top, #47cffe 0%, #5c0aca 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #47cffe 0%, #5c0aca 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #47cffe 0%, #5c0aca 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#47cffe', endColorstr='#5c0aca', GradientType=0);
  /* IE6-9 */
}



/*footer*/
.footer-top-2 {
  padding: 120px 0px 15px 0px;
}

.aon-footer-logo-2 {
  max-width: 175px;
  margin-bottom: 20px;
}

.aon-footer-text-2 {
  color: #bbbdbe;
  margin-bottom: 35px;
  line-height: 30px;
}

.aon-widget-foo-list-2 {
  list-style: none;
  margin: 0px;
}

.aon-widget-foo-list-2 li {
  padding: 10px 0px;
  display: block;
}

.aon-widget-foo-list-2 li a {
  color: #706C83;
}

.aon-widget-foo-list-2 li a:hover {
  color: #cf480d;
}


.aon-footer-coinfo-2 {
  color: #706C83;
  font-size: 20px;
  font-family: "Cormorant";
}

.aon-footer-coinfo-2 li {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.aon-footer-coinfo-2 li:last-child {
  margin-bottom: 0px;
}

.aon-footer-coinfo-2 li i {
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 46px;
  height: 46px;
  border-radius: var(--site-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}


.aon-f-title-2 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}



.f-top-margin {
  margin-top: 100px;
}

@media only screen and (max-width:991px) {
  .f-top-margin {
    margin-top: 10px;
  }
}





.aon-footer-bottom-area-2 {
  color: #fff;
  padding: 25px 30px;
  border-radius: var(--site-radius);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.aon-footer-bottom-area-2 a {
  text-decoration: underline;
  color: #fff;
}

.aon-foo-copyright-2 {
  font-size: 14px;
  font-weight: 600;
}

.aon-footer-bottom-links ul {
  margin-bottom: 0px;
}

.aon-footer-bottom-links li {
  display: inline-block;
  margin-right: 50px;
}

.aon-footer-bottom-links li a {
  text-decoration: none;
  font-size: 14px;
}

.aon-footer-bottom-links li a:hover {
  text-decoration: underline;
}

@media only screen and (max-width:991px) {
  .aon-foo-copyright-2 {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 10px;
    margin-top: 10px;
  }
}

@media only screen and (max-width:767px) {
  .aon-footer-bottom-links li {
    display: inline-block;
    margin-right: 1%;
    width: 48%;
    margin-bottom: 0px;
  }
}

/*Footer Newsletter*/
.aon-ftr-newsletter {
  padding: 50px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  top: -90px;
  margin-bottom: -90px;
  background-image: url(../images/news-left-pic.png), url(../images/news-right-pic.png);
  background-position: left center, right center;
  background-repeat: no-repeat, no-repeat;
}

.aon-ftr-newsletter .row {
  align-items: center;
}

.aon-ftr-newsletter .ftr-nws-l-title {
  font-size: 30px;
  color: #000;
  margin-left: 215px;
  line-height: 40px;
  font-weight: 500;
}

.aon-ftr-newsletter .aon-news-form-2 {
  display: flex;
  justify-content: space-between;
}

.aon-ftr-newsletter .aon-news-form-2 .form-control {
  height: 60px;
  background-color: #fff;
  border: 2px solid #fc7c44;
  background: none;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 14px;
}

.aon-ftr-newsletter .aon-news-btn-2 {
  color: #fff;
  border: none;
  font-size: 24px;
  min-width: 60px !important;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  display: block;
  padding: 0px;
  margin-left: 30px;
  -webkit-box-shadow: 0px 8px 12px 0px RGBA(255, 142, 43, 0.44);
  box-shadow: 0px 8px 12px 0px RGBA(255, 142, 43, 0.44);
}

@media only screen and (max-width:991px) {
  .aon-ftr-newsletter {
    margin-top: 60px;
  }

  .aon-ftr-newsletter .ftr-nws-l-title {
    margin-left: 0px;
  }

  .aon-ftr-newsletter {
    background-image: none;
  }
}

@media only screen and (max-width:991px) {
  .aon-ftr-newsletter {
    top: 50px;
    margin-bottom: auto;
    margin-top: 0px;
  }

  .aon-ftr-newsletter .ftr-nws-l-title {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width:480px) {
  .aon-ftr-newsletter {
    padding: 20px;
  }

  .aon-ftr-newsletter .ftr-nws-l-title {
    font-size: 18px;
    line-height: 22px;
  }
}



/*Banner One css*/
.aon-banner1-area {
  padding: 0px 15px;
}

.aon-body-bg {
  background-image: url("../images/bg/texture-bg.png");
  background-repeat: repeat;
}

.aon-banner1-wrap {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1520px;
  margin: auto;
  border-radius: 10px;
}

.aon-banner1-wrap .container {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  z-index: 2;
}

.aon-bnr1-col1 {
  font-size: 82px;
  color: #fff;
  font-weight: 900;
  font-family: inter;
  text-transform: uppercase;
}

.aon-bnr1-col2 {
  font-size: 82px;
  line-height: 1.2;
  font-weight: 900;
  font-family: "Open Sans";
  text-transform: uppercase;
  color: black;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
  text-align: right;
  margin-bottom: 45px;
  padding-left: 235px;
  position: relative;
}

.aon-bnr1-col2::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 0px;
  width: 240px;
  height: 3px;
  background: linear-gradient(to bottom, var(--primary-one), var(--primary-two));
  border-radius: 5px;
}

.aon-bnr1-col3 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bnr-bnr1-wrap {
  width: 100%;
  height: 650px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  z-index: 2;
}

.bnr-bnr1-wrap .aon-banner1-content {
  padding: 0px 15px;
}

.aon-search-area {}

.aon-banner1-area {
  padding: 0px 15px;
}

.aon-search1-bar-wrap {
  background: #131720;
  padding: 40px 30px;
  border-radius: 10px;
  margin-bottom: 0px;
}

.aon-search1-bar-wrap label {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: inter;
}

.aon-search1-bar1-row {
  display: table;
  width: 100%;
}

.aon-search1-bar1-col {
  display: table-cell;
  padding: 0px 15px;
  vertical-align: bottom;
}

.site-button-search {
  color: #fff;
  border: none;
  font-size: 14px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 60px;
  display: block;
  padding: 0px;
  -webkit-box-shadow: 0px 8px 12px 0px RGBA(255, 142, 43, 0.44);
  box-shadow: 0px 8px 12px 0px RGBA(255, 142, 43, 0.44);
}

.searh-bar-col-1 {
  width: 25%;
}

.searh-bar-col-2 {
  width: 20%;
}

.searh-bar-col-3 {
  width: 20%;
}

.searh-bar-col-4 {
  width: 15%;
}

.searh-bar-col-5 {
  width: 15%;
}


@media only screen and (max-width:1200px) {
  .aon-search1-bar1-row {
    display: flex;
    flex-wrap: wrap;
  }

  .aon-search1-bar1-col {
    display: block;
    margin-bottom: 20px;
    width: 33.33%;
  }

  .aon-search1-bar1-col:last-child {
    display: flex;
    align-items: flex-end;
  }

  .site-button-search {
    width: 100%;
    border-radius: 5px;
  }
}

@media only screen and (max-width:991px) {
  .aon-search-area {
    padding: 50px 15px;
  }

  .aon-search1-bar1-col {
    width: 50%;
  }
}


@media only screen and (max-width:767px) {
  .aon-bnr1-col1 {
    font-size: 60px;
  }

  .aon-bnr1-col2 {
    font-size: 60px;
    padding-left: 140px;
  }

  .aon-bnr1-col2::after {
    width: 140px;
  }

  .bnr-bnr1-wrap {
    height: 400px;
  }

}

@media only screen and (max-width:575px) {
  .aon-search1-bar1-col {
    width: 100%;
  }

  .aon-search1-bar1-col:last-child {
    margin-bottom: 0px;
  }

  .aon-search1-bar1-col .site-button {
    margin: 0px auto;
  }

  .aon-search-area {
    padding: 50px 0px;
  }

  .aon-bnr1-col1 {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .aon-bnr1-col2 {
    font-size: 40px;
    padding-left: 140px;
  }

  .aon-bnr1-col3 .site-button {
    padding: 12px 15px;
  }

  .aon-bnr1-col3 .video-play-btn-banner i {
    width: 46px;
    height: 46px;
    text-align: center;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 14px;
    border-radius: 50%;
    line-height: 42px;
    display: inline-block;
  }
}

@media only screen and (max-width:380px) {
  .video-play-btn-banner-wrap {
    margin-left: 15px;
  }

  .aon-bnr1-col1 {
    font-size: 30px;
  }

  .aon-bnr1-col2 {
    font-size: 30px;
    padding-left: 110px;
    text-align: left;
  }

  .aon-bnr1-col2::after {
    width: 100px;
    bottom: 5px;
  }
}

@media only screen and (max-width:360px) {
  .aon-bnr1-col3 {
    display: block;
  }

  .aon-bnr1-col3 .site-button {
    margin-bottom: 20px;
  }

  .video-play-btn-banner-wrap {
    margin-left: 0px;
  }
}


/*Testimonial*/
.aon-testmo-area {
  position: relative;
}

.aon-testmo-area .testmo-bg-top {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 50%;
  background-color: #fafafa;
}

.aon-testmo-area2 {
  background-color: #f4f3e9;
  padding: 100px 0px;
  position: relative;
}

.aon-test-clients {
  margin-top: 80px;
}

@media only screen and (max-width:991px) {
  .aon-testmo-area {
    padding-top: 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid #eeeeee;
  }

  .aon-testmo-area2 {
    padding: 50px 0px;
  }
}


@media only screen and (max-width:991px) {
  .aon-testmo-wrap {
    padding: 0px 15px;
  }

  .aon-our-team-area .aon-testmo-wrap {
    margin-bottom: 30px;
  }

  .aon-our-team-area [class*="col-md-"]:last-child .aon-testmo-wrap {
    margin-bottom: 0px;
  }
}


.aon-aboutus-area {}

.aon-aboutus-bg-pic {
  background-image: url(../images/bg/two-man.png), url(../images/bg/mountain.png), url("../images/bg/girl-large.png");
  background-position: top left, left bottom, right center;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

.aon-abo-icon {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 10px;
}

.aon-aboutus-right {
  padding-left: 50px;
}

.aon-sub-title-large {
  font-size: 60px;
  line-height: 1.4;
}

.aon-pro-pic1 {
  max-width: 100%;
  position: relative;
}

.aon-aboutus-top {
  padding-bottom: 60px;
}

@media only screen and (max-width:1440px) {
  .aon-aboutus-bg-pic {
    background-size: 20% auto, 20% auto, 20% auto;
  }
}

@media only screen and (max-width:767px) {
  .aon-aboutus-bg-pic {
    background-image: none;
  }
}

@media only screen and (max-width: 991px) {
  .aon-aboutus-top {
    padding-bottom: 0px;
  }
}


.aon-aboutus-bot {
  padding-top: 60px;
  border-top: 1px solid #ddd;
}

.aon-container-large {
  width: 100%;
  max-width: 1520px;
}

.aon-exo-plac-bg-img {
  background-image: url(../images/bg/two-man.png), url("../images/bg/girl-small.png");
  background-position: top left, right top;
  background-repeat: no-repeat, no-repeat;
}

@media only screen and (max-width:991px) {
  .aon-aboutus-area {
    padding: 50px 0px 20px 0px;
  }

  .aon-aboutus-left {
    margin-bottom: 30px;
  }

  .aon-aboutus-bot {
    margin-bottom: 30px;
  }

  .aon-exotic-places {
    padding: 70px 0px 80px 0px;
    border-top: 1px solid #ddd;
  }
}

@media only screen and (max-width:767px) {
  .aon-sub-title-large {
    font-size: 30px;
    line-height: 1.2;
  }
}

@media only screen and (max-width:767px) {
  .aon-exotic-places-top+.aon-exotic-places-bot {
    margin-top: 50px;
  }
}


.exotic-places-box {
  position: relative;
  margin-bottom: 30px;
}

.exotic-places-pic {
  border-radius: 5px;
  overflow: hidden;
}

.exotic-places-info {
  position: absolute;
  bottom: 0;
  background: #fff;
  width: calc(100% - 60px);
  left: 30px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.02);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.exotic-places-box:hover .exotic-places-info {
  bottom: -30px;
  opacity: 1;
}

.exotic-places-address {
  color: var(--primary);
}

@media only screen and (max-width:767px) {
  .exotic-places-info {
    bottom: -30px;
    opacity: 1;
  }
}


.aon-why-choo-box {
  text-align: center;
}

.aon-why-choo-icon {
  width: 100px;
  height: 100px;
  overflow: hidden;
  background: red;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  color: #fff;
  margin-bottom: 30px;
  -moz-transform: rotate(5deg);
  -webkit-transform: rotate(5deg);
  -o-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  transform: rotate(5deg);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.aon-why-choo-icon i {
  font-size: 35px;
  line-height: 1;
  -moz-transform: rotate(-5deg);
  -webkit-transform: rotate(-5deg);
  -o-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  transform: rotate(-5deg);
}

.aon-why-choo-text {
  padding: 0px 50px;
}

.aon-exotic-places-top {
  margin-bottom: 0px;
}

.aon-exotic-places-bot {
  background-image: url("../images/line.png");
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 80px;
}

.aon-why-choo-box:hover .aon-why-choo-icon {
  border-radius: 100px;
}


@media only screen and (max-width:1199px) {
  .aon-exotic-places-bot {
    background-color: cover;
  }

  .aon-exotic-places-bot {
    background-size: contain;
  }
}

@media only screen and (max-width:991px) {
  .aon-exotic-places-bot {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .aon-aboutus-right {
    padding-left: 0px;
  }

  .exotic-places-slide .owl-nav {
    margin-top: 0px;
  }

  .aon-why-choo-col {
    margin-bottom: 0px;
  }

}

@media only screen and (max-width:768px) {
  .exotic-places-slide.owl-btn-top-right .owl-nav {
    position: inherit;
    top: inherit;
    left: auto;
    margin: 40px 0px 0px;
    text-align: center;
  }

}

.section-head {
  margin-bottom: 50px;
}

@media only screen and (max-width:991px) {
  .section-head {
    margin-bottom: 20px;
  }
}


.aon-wc-bg-orange {
  background: #1750bd;
  /* Old browsers */
  background: -moz-linear-gradient(top, #1750bd 0%, #c94106 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #1750bd 0%, #c94106 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #1750bd 0%, #c94106 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1750bd', endColorstr='#c94106', GradientType=0);
  /* IE6-9 */
}

.aon-wc-bg-green {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffed47+0,15c906+100 */
  background: #ffed47;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffed47 0%, #15c906 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffed47 0%, #15c906 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffed47 0%, #15c906 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffed47', endColorstr='#15c906', GradientType=0);
  /* IE6-9 */

}

.aon-wc-bg-pink {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0c9af4+0,5c06c9+100 */
  background: #f497c1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f497c1 0%, #d32f78 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #f497c1 0%, #d32f78 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #f497c1 0%, #d32f78 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f497c1', endColorstr='#d32f78', GradientType=0);
  /* IE6-9 */
}

.aon-wc-bg-blue {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#47d3ff+0,5c06c9+100 */
  background: #47d3ff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #47d3ff 0%, #5c06c9 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #47d3ff 0%, #5c06c9 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #47d3ff 0%, #5c06c9 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#47d3ff', endColorstr='#5c06c9', GradientType=0);
  /* IE6-9 */

}

.aon-text-gradi {
  background: #FA7941;
  background: linear-gradient(to bottom, #FA7941 0%, #d04a0f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aon-polular-tours-area {
  background: #fff;
}

.aon-pop-tour-bg {
  background-color: #fffaf7;
  background-image: url("../images/bg/texture-bg.png");
}

.aon-polular-tours-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 5px;
}

.aon-polular-tours-pic {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
}

.aon-polular-tours-pic img {
  width: 100%;
}

.aon-polular-tours-price {
  margin-bottom: 20px;
}

.aon-polular-tours-price span {
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
}

.aon-polular-tours-time {
  font-size: 13px;
  background: var(--primary-light);
  display: table;
  padding: 5px 15px;
  border-radius: 3px;
}

.aon-polular-tours-time:hover {
  color: #fff;
  background: #fc7c44;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fc7c44 0%, #cf480d 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #fc7c44 0%, #cf480d 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #fc7c44 0%, #cf480d 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc7c44', endColorstr='#cf480d', GradientType=0);
  /* IE6-9 */
}

.aon-polular-tours-info {
  padding: 5px;
}

.aon-polular-tours-col+.aon-polular-tours-col {
  margin-top: 30px;
}

@media only screen and (max-width:991px) {
  .aon-polular-tours-area {
    padding: 50px 0px;
  }
}


/*-------------------------------------------------------------------------------------------------------------------
  Home 2 CSS
--------------------------------------------------------------------------------------------------------------------*/

/*Banner One css*/
.aon-banner2-area {
  padding: 50px;
}

.aon-banner2-wrap {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100vh;
  margin: auto;
  border-radius: 10px;
  background-image: url("../images/bg/banner-bg2.jpg");
  background-size: cover;
  background-position: center;
}

.aon-banner2-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.aon-banner2-wrap .container {
  display: flex;
  align-items: center;
  line-height: 1.2;
  z-index: 1;
}

.aon-banner2-content {
  padding: 120px 0px;
}

.aon-bnr2-col1 {
  font-size: 82px;
  font-weight: 900;
  font-family: var(--title-family);
  background: linear-gradient(to bottom, var(--primary-one), var(--primary-two));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-stroke: 5px transparent;
  -moz-text-fill-color: transparent;
  color: #36464d;
  padding-left: 240px;
  position: relative;
  line-height: 1;
}

.aon-bnr2-col1:after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0px;
  width: 240px;
  height: 3px;
  background: linear-gradient(to bottom, var(--primary-one), var(--primary-two));
  border-radius: 5px;
}

.aon-bnr2-col1 span {
  font-size: 42px;
}

.aon-bnr2-col2 {
  font-size: 82px;
  color: #fff;
  font-weight: 900;
  font-family: inter;
  max-width: 800px;
  margin-bottom: 45px;
}

@media only screen and (max-width:1200px) {
  .aon-banner2-content {
    padding: 150px 0px 60px;
  }

  .aon-banner2-area {
    padding: 50px 15px;
  }

  .aon-search3-bar-wrap {
    padding: 60px 0px 0px;
  }
}

@media only screen and (max-width:767px) {
  .aon-banner2-area {
    padding: 30px 15px;
  }

  .aon-bnr2-col1 {
    font-size: 40px;
    padding-left: 150px;
    margin-bottom: 20px;
  }

  .aon-bnr2-col1::after {
    width: 150px;
    bottom: 0;
  }

  .aon-bnr2-col2 {
    font-size: 40px;
  }
}

.aon-bnr2-col3 {
  display: flex;
  align-items: center;
}

.aon-search3-bar-wrap {
  padding: 120px 0px 0px;
  margin: 0px -15px;
}

.aon-search3-bar-wrap label {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: inter;
  margin-bottom: 15px;
}

.aon-search3-bar1-row {
  display: table;
  width: 100%;
}

.aon-search3-bar1-col {
  display: table-cell;
  padding: 0px 15px;
  vertical-align: bottom;
}

.aon-search3-bar1-col:last-child {
  width: 1%;
}

@media only screen and (max-width:1200px) {
  .aon-search3-bar1-row {
    display: flex;
    flex-wrap: wrap;
  }

  .aon-search3-bar1-col {
    display: block;
    margin-bottom: 20px;
    width: 33.33%;
  }

  .aon-search3-bar1-col:last-child {
    display: flex;
    align-items: flex-end;
    width: 33.33%;
  }

  .site-button-search {
    width: 100%;
    border-radius: 5px;
  }
}

@media only screen and (max-width:991px) {
  .aon-search3-bar1-col {
    width: 50%;
  }

  .aon-search3-bar1-col:last-child {
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .aon-search3-bar-wrap {
    padding: 80px 0px 0px;
  }

  .aon-banner2-wrap .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 575px) {
  .aon-search3-bar1-col {
    width: 100%;
  }

  .aon-search3-bar1-col:last-child {
    width: 100%;
    margin-bottom: 0px;
    padding-top: 10px;
  }
}

@media only screen and (max-width: 575px) {
  .aon-banner2-area {
    padding: 15px;
  }

  .aon-bnr2-col1 {
    padding-left: 0px;
  }

  .aon-bnr2-col1:after {
    display: none;
  }

  .aon-banner2-content {
    padding-bottom: 50px;
  }

  .aon-banner2-wrap {
    min-height: auto;
  }

  .aon-bnr2-col3 .site-button {
    padding: 12px 15px;
  }

  .aon-bnr2-col3 .video-play-btn-banner i {
    width: 46px;
    height: 46px;
    text-align: center;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 14px;
    border-radius: 50%;
    line-height: 42px;
    display: inline-block;
  }
}

@media only screen and (max-width: 360px) {
  .aon-bnr2-col3 {
    display: block;
  }

  .aon-bnr2-col3 .site-button {
    margin-bottom: 20px;
  }
}



.site-button3-search {
  color: #fff;
  border: none;
  font-size: 14px;
  width: 60px !important;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  display: block;
  padding: 0px;
}

.aon-exotic-places.aon-bg-white {
  background: #fff;
}

.exotic-places2-box {
  position: relative;
}

.exotic-places2-pic {
  border-radius: 5px;
  padding: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ddd;
}

.exotic-places2-pic-left {
  width: calc(100% - 100px);
}

.exotic-places2-pic-left img {
  border-radius: 5px;
}

.exotic-places2-pic-right {
  width: 80px;
  margin-left: 20px;
}

.exotic-places2-pic-right img {
  border-radius: 5px;
}

.exotic-places2-info {
  width: 100%;
  padding: 20px 30px;
}

.exotic-places2-address {
  color: var(--primary);
}

.exotic-places2-thums {
  border: none;
}

.exotic-places2-thums .nav-link {
  padding: 0px;
  border: none;
  margin-bottom: 5px;
  cursor: pointer;
}

.exotic-places2-thums .nav-item {
  margin-bottom: 0px;
  width: 100%;
}

.exotic-places2-thums .nav-item:last-child {
  margin-bottom: 0px;
}

.exotic-places2-thums .nav-link:hover {
  opacity: 0.5;
  outline: none;
}

@media only screen and (max-width:1200px) {
  .exotic-places2-pic-left {
    width: calc(100% - 80px);
  }

  .exotic-places2-pic-right {
    width: 60px;
    margin-left: 20px;
  }
}

@media only screen and (max-width:991px) {
  .exotic-places2-pic-left {
    width: calc(100% - 92px);
  }

  .exotic-places2-pic-right {
    width: 72px;
  }
}

@media only screen and (max-width:767px) {
  .exotic-places2-pic-left {
    width: calc(100% - 137px);
  }

  .exotic-places2-pic-right {
    width: 117px;
  }

  .exotic-places2-thums .nav-item {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width:575px) {
  .exotic-places2-pic-left {
    width: calc(100% - 105px);
  }

  .exotic-places2-pic-right {
    width: 85px;
    display: flex;
    align-items: center;
  }

  .exotic-places2-thums .nav-item {
    margin-bottom: 5px;
  }
}

@media only screen and (max-width:410px) {
  .exotic-places2-pic-left {
    width: calc(100% - 80px);
  }

  .exotic-places2-pic-right {
    width: 60px;
    display: flex;
    align-items: center;
  }

  .exotic-places2-thums .nav-item {
    margin-bottom: 5px;
  }
}


@media only screen and (max-width:767px) {
  .exotic-places2-info {
    padding: 20px 30px 0px;
  }
}

.aon-bg-light-red {
  background-color: #fffaf7;
}

.aon-bg-white {
  background-color: #fff;
}


.aon-popu-tour-full-area {
  background: #fff;
}

.aon-popu-tour-full-area .container-fluid {
  padding: 0px 50px;
}

@media only screen and (max-width:991px) {
  .aon-popu-tour-full-area {
    padding: 50px 0px;
  }
}

.aon-polular2-tours-area {
  background: #fff;
}

.aon-polular2-tours-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 5px;
}

.aon-polular2-tours-box:hover {
  border-color: var(--primary);
}

.aon-polular2-tours-pic {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.aon-pop2-tour-pri-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.aon-pop2-tou-rate {
  line-height: 1.2;
}

.aon-pop2-tou-rate span {
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
}

.aon-pop2-tour-person {
  font-size: 13px;
}

.aon-pop2-tour-day {
  font-size: 13px;
  background: var(--primary-light);
  display: table;
  padding: 5px 15px;
  border-radius: 3px;
}

.aon-pop2-tour-day:hover {
  color: #fff;
  background: #fc7c44;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fc7c44 0%, #cf480d 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #fc7c44 0%, #cf480d 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #fc7c44 0%, #cf480d 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc7c44', endColorstr='#cf480d', GradientType=0);
  /* IE6-9 */
}

.aon-polular2-tours-info {
  padding: 5px;
}

.aon-pop2-to-off-row {
  display: flex;
  align-items: center;
  border-top: 1px solid #ddd;
  padding-top: 25px;
}

.aon-pop2-to-pri-time {
  display: flex;
  color: var(--primary);
  margin-left: 3px;
}

.aon-pop2-to-pri-time span {
  display: flex;
  margin: 0px 3px;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 12px;
  color: #fff;
}

.aon-pop-rating {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  line-height: 1;
  font-size: 12px;
  color: #fff;
  border-radius: 3px;
}

.aon-whycho-pic1 {
  margin-right: 60px;
  position: relative;
}

.aon-whycho-pic1 img {
  border-radius: 5px;
  width: 100%;
}

.aon-whycho-col {
  padding: 2px;
  border-radius: 5px;
}

.aon-whycho-box {
  padding: 27px 30px;
  border-radius: 3px;
  background: #fff;
}

.aon-whycho-icon {
  overflow: hidden;
  margin-bottom: 20px;
}

.aon-whycho-box i {
  font-size: 42px;
  line-height: 1;
  display: block;
}

.aon-whycho-box .aon-title {
  margin-bottom: 0px;
}

.aon-pro-pic-name {
  position: absolute;
  bottom: 20px;
  right: 30px;
  max-width: 100%;
  color: #fff;
  font-size: 120px;
  font-weight: 500;
  line-height: 1;
  opacity: 0.5;
  font-family: var(--title-family);
}

@media only screen and (max-width:1199px) {
  .aon-whycho-area {
    padding-bottom: 90px;
  }
}

@media only screen and (max-width:991px) {
  .aon-whycho-area {
    padding-bottom: 20px;
    padding-top: 50px;
  }

  .aon-whycho-pic1 {
    margin-right: 0px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width:575px) {
  .aon-pro-pic-name {
    font-size: 40px;
  }
}

.aon-video-bg-area {
  padding: 0px 50px;
  background: #fffaf7;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fffaf7 0%, #fffaf7 50%, #ffffff 51%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #fffaf7 0%, #fffaf7 50%, #ffffff 51%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #fffaf7 0%, #fffaf7 50%, #ffffff 51%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffaf7', endColorstr='#ffffff', GradientType=0);
  /* IE6-9 */
}

.aon-video-bg-wrap {
  padding: 0px 50px;
  height: 750px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  border-radius: 10px;
  background-image: url("../images/bg/video-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width:991px) {
  .aon-video-bg-wrap {
    height: 450px;
  }
}

.aon-testmo2-area {}

@media only screen and (max-width:991px) {
  .aon-testmo2-area {
    padding: 50px 0px;
    border-bottom: 1px solid #eeeeee;
  }
}

@media only screen and (max-width:575px) {
  .aon-video-bg-area {
    padding: 0px 12px;
  }
}


/*Testimonial Two*/
.aon-testmo2-wrap {
  text-align: center;
  padding: 0px;
  max-width: 770px;
  margin: auto;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.aon-testmo2-wrap {
  border-bottom: 1px solid #eee;
  padding-bottom: 50px;
}

@media only screen and (max-width:991px) {
  .aon-testmo2-wrap {
    padding-bottom: 30px;
  }

  .aon-testimo-area {
    padding-top: 80px;
  }
}

.aon-testmo2-title {
  font-size: 72px;
  font-family: var(--title-family);
  font-weight: 700;
  line-height: 1.2;
  opacity: 0.5;
  margin-bottom: -40px;
  margin-top: -15px;
}

.aon-testmo2-pic {
  display: inline-flex;
  margin: auto;
  margin-bottom: auto;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  position: relative;
}

.aon-testmo2-text {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 24px;
}

.aon-testmo2-name {
  margin-top: 10px;
  color: #000222;
  font-size: 18px;
  font-weight: 400;
}

.aon-testmo2-rating span {
  display: inline-block;
  padding-right: 0px;
  color: #E3D270;
  font-size: 12px;
}


.aon-video2-bg-area {
  padding: 0px 50px;
  height: 950px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  background-image: url("../images/bg/video-bg2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.aon-video2-bg-area {
  padding: 0px 50px;
  height: 950px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  background-image: url("../images/bg/video-bg2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.aon-video-bg-row {
  text-align: center;
  margin-top: 60px;
}

.aon-video2-bg-text {
  font-size: 82px;
  font-family: var(--title-family);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-top: 100px;
}

.aon-video2-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(19, 23, 32, 0.6);
}

.aon-video2-overlay+.container {
  z-index: 1;
}

.play-now-video-large .icon {
  width: 150px;
  height: 150px;
}

@media only screen and (max-width:991px) {
  .aon-video2-bg-area {
    height: 660px;
  }
}

@media only screen and (max-width:767px) {
  .aon-video2-bg-text {
    font-size: 40px;
  }

  .aon-video2-bg-area {
    height: auto;
    padding: 50px 20px;
  }

  .aon-testmo2-title {
    font-size: 36px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

@media only screen and (max-width:575px) {
  .aon-video2-bg-text {
    font-size: 20px;
  }

  .aon-video2-bg-area {
    height: 440px;
  }
}


.exotic-places3-box {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 5px;
  background: #fff;
}

.exotic-places3-pic img {
  border-radius: 5px;
}

.exotic-places3-box .exotic-places3-pic img {
  width: 100%;
}

.exotic-places3-box:hover {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to bottom, var(--primary-one), var(--primary-two)) border-box;
  border-radius: 5px;
  border: 1px solid transparent;
}

.exotic-places3-info {
  padding: 20px 10px 5px;
}

.exotic-places3-title {
  line-height: 1.4;
  margin-bottom: 5px;
}

.exotic-places3-address {
  display: flex;
  align-items: center;
}

.exotic-places3-address i {
  font-size: 16px;
  margin-right: 5px;
}

@media only screen and (max-width:767px) {
  .exotic-places3-box {
    margin-bottom: 0px;
  }
}

.aon-search2-bar-wrap {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  margin-top: -100px;
  position: relative;
  z-index: 1;
  box-shadow: 0px 5px 10px 10px rgba(0, 0, 0, 0.08);
}

.aon-search2-bar-wrap label {
  color: #222;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: inter;
}

.aon-search2-bar1-row {
  display: table;
  width: 100%;
}

.aon-search2-bar1-col {
  display: table-cell;
  padding: 0px 15px;
  vertical-align: bottom;
}

.aon-search2-bar1-col:last-child {
  width: 1%;
}

.site-button2-search {
  color: #fff;
  border: none;
  font-size: 14px;
  width: 60px !important;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  display: block;
  padding: 0px;
}

@media only screen and (max-width:1200px) {
  .aon-search2-bar1-row {
    display: flex;
    flex-wrap: wrap;
  }

  .aon-search2-bar1-col {
    display: block;
    margin-bottom: 20px;
    width: 33.33%;
  }

  .aon-search2-bar1-col:last-child {
    display: flex;
    align-items: flex-end;
    width: 33.33%;
  }

  .site-button-search {
    width: 100%;
    border-radius: 5px;
  }
}

@media only screen and (max-width:991px) {
  .aon-search2-bar1-col {
    width: 50%;
  }

  .aon-search2-bar1-col:last-child {
    width: 50%;
  }
}

@media only screen and (max-width: 575px) {
  .aon-search2-bar1-col {
    width: 100%;
  }

  .aon-search2-bar1-col:last-child {
    width: 100%;
    margin-bottom: 0px;
    padding-top: 10px;
  }
}

/*Banner Carousal 2*/
.bnr-bnr2-wrap {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.bnr-bnr2-wrap .overlay {
  opacity: 0.5;
  background-color: #000;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  z-index: -1;
}

.bnr-bnr2-wrap .aon-bnr2-content {
  max-width: 850px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.aon-bnr2-title {
  font-size: 100px;
  color: #fff;
  font-weight: 700;
  font-family: Kumbh Sans;
  margin-bottom: 40px;
  line-height: 1.2;
}

.aon-bnr2-detail {
  font-size: 18px;
  font-weight: 400;
  font-family: inter;
  color: #fff;
  margin-bottom: 30px;
  max-width: 600px;
}

.aon-bnr2-btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media only screen and (max-width:360px) {
  .aon-bnr2-btn {
    display: block;
  }

  .aon-bnr2-btn .site-button {
    margin-bottom: 20px;
  }
}

/*owl arrow mid right position*/
.owl-carousel.aon-arrow-mid-right .owl-nav {
  margin-top: 40px;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% - 476px);
}

.owl-carousel.aon-arrow-mid-right .owl-nav button.owl-prev,
.owl-carousel.aon-arrow-mid-right .owl-nav button.owl-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  border: 0px;
  background-color: #fff;
  position: relative;
}

.owl-carousel.aon-arrow-mid-right .owl-nav button.owl-prev span.fa,
.owl-carousel.aon-arrow-mid-right .owl-nav button.owl-next span.fa {
  color: #fff;
  font-size: 24px;
}

@media only screen and (max-width:1199px) {
  .owl-carousel.aon-arrow-mid-right .owl-nav {
    bottom: 126px;
    top: auto;
    transform: inherit;
    left: 50%;
    width: 100%;
    max-width: 960px;
    display: flex;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .bnr-bnr2-wrap .aon-bnr2-content {
    max-width: 100%;
    padding: 200px 0px 270px;
  }

  .bnr-bnr2-wrap {
    min-height: auto;
  }

}

@media only screen and (max-width:991px) {
  .owl-carousel.aon-arrow-mid-right .owl-nav {
    max-width: 720px;
  }
}

@media only screen and (max-width:767px) {
  .owl-carousel.aon-arrow-mid-right .owl-nav {
    max-width: 540px;
  }
}

@media only screen and (max-width:575px) {
  .owl-carousel.aon-arrow-mid-right .owl-nav {
    max-width: 100%;
  }
}

@media only screen and (max-width:480px) {
  .owl-carousel.aon-arrow-mid-right .owl-nav {
    padding: 0px 12px;
  }
}



@media only screen and (max-width:767px) {
  .aon-bnr2-title {
    font-size: 40px;
  }
}

@media only screen and (max-width:767px) {
  .aon-bnr2-btn .site-button {
    padding: 12px 15px;
  }

  .aon-bnr2-btn .video-play-btn-banner i {
    width: 46px;
    height: 46px;
    text-align: center;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 14px;
    border-radius: 50%;
    line-height: 42px;
    display: inline-block;
  }
}

@media only screen and (max-width:575px) {
  .aon-bnr2-btn .site-button {
    line-height: 1;
  }
}



/*===========================
Inner Page Css
===========================*/

.aon-page-banner-area {
  max-width: 1520px;
  margin: auto;
  background: url("../images/banner-bg.jpg");
  background-size: cover;
  height: 400px;
  border-radius: 10px;
}

.aon-page-banner-large {
  height: 500px;
}

.aon-page-banner-title {
  font-size: 82px;
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.aon-page-banner-row {
  text-align: center;
  padding-top: 100px;
}

.aon-page-banner-row .video-play-btn-banner-wrap {
  display: inline-flex;
  margin: 0;
}


@media only screen and (max-width:1550px) {
  .aon-page-banner-area {
    margin: 0px 15px;
  }
}

@media only screen and (max-width:767px) {
  .aon-page-banner-title {
    font-size: 40px;
  }

  .aon-page-banner-area {
    height: auto;
  }

  .aon-page-banner-row {
    padding: 80px 0px;
  }

  .aon-search-area-two-inr-page {
    padding: 50px 0px;
  }

  .aon-search-area-two-inr-page .aon-search2-bar-wrap {
    margin-top: 0px;
  }

}

.video-play-btn-banner {
  display: flex;
  color: #fff;
  align-items: center;
}

.video-play-btn-banner i {
  width: 60px;
  height: 60px;
  text-align: center;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 14px;
  border-radius: 50%;
  line-height: 56px;
  display: inline-block;
}

.video-play-btn-banner .vid-text {
  display: inline-block;
  text-align: left;
  padding-left: 15px;
  overflow: hidden;
  font-family: var(--title-family);
  font-weight: 700;
}

.video-play-btn-banner-wrap.white:hover .mfp-video {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.video-play-btn-banner-wrap.white:hover .mfp-video {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  display: table;
}

.aon-service-box-wrap {
  padding: 45px;
  margin-bottom: 30px;
}

.aon-service-box-icon {
  margin-bottom: 30px;
}

.aon-service-box-icon i {
  display: block;
  line-height: 1;
  font-size: 42px;
}

.aon-service-title {
  margin-bottom: 15px;
}

.aon-service-box-text p {
  line-height: 2;
}

.aon-service-box-text p:last-child {
  margin: 0px;
}


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

.our-team-box img {
  border-radius: 5px;
}

.our-team-info {
  padding: 20px 0px 0px;
}

.aon-video3-bg-area {
  padding: 0px 15px;
}

.aon-video3-bg-wrap {
  position: relative;
  padding: 0px 50px;
  margin: auto;
  max-width: 1550px;
  height: 750px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  border-radius: 10px;
  background-image: url("../images/bg/video-bg3.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width:991px) {
  .aon-video3-bg-wrap {
    height: 450px;
  }

  .aon-our-team-area {
    padding: 50px 0px;
  }
}

@media only screen and (max-width:991px) {
  .aon-destination-area {
    padding: 50px 0px 20px 0px;
  }

  .aon-servi-box-area {
    padding: 50px 0px 20px 0px;
  }

  .aon-tour-list-wrap {
    padding: 50px 0px 20px 0px;
  }

  .aon-destination-detail-wrap {
    padding: 50px 0px 30px 0px;
    border-bottom: 1px solid #eee;
  }

  .aon-contact-form-area {
    padding-bottom: 50px;
  }
}




.aon-page-banner-area2 {
  margin: 0px 50px 50px;
  background: url("../images/destination-bg.jpg");
  height: 860px;
  border-radius: 10px;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width:991px) {
  .aon-page-banner-area2 {
    height: 400px;
  }
}

.aon-page-banner-title2 {
  font-size: 82px;
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.aon-page-banner-row2 {
  text-align: center;
  padding-top: 100px;
}

@media only screen and (max-width:991px) {
  .aon-page-banner-area2 {
    height: 400px;
  }

  .aon-page-banner-title2 {
    font-size: 40px;
  }

  .aon-page-banner-row2 {
    padding-top: 0px;
  }
}

@media only screen and (max-width:575px) {
  .aon-page-banner-area2 {
    margin: 15px;
  }
}

.aon-destination-head {
  margin-bottom: 20px;
}

@media only screen and (max-width:767px) {
  .aon-destination-detail-content .aon-destination-head .aon-title {
    font-size: 24px;
  }
}

p.full-detail-content {
  margin: 30px 0px;
}

.aon-destination-location {
  color: var(--primary);
}

.aon-destination-location i {
  font-size: 16px;
}

.aon-destination-location i {
  margin-right: 5px;
  vertical-align: middle;
}

.aon-overview-section {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  margin: 20px 0px 0px;
  padding: 50px 0px 0px;
}

.aon-tour-map-section {
  padding-top: 50px;
}

.aon-title-mid {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--title-family);
  margin-bottom: 20px;
}

.aon-title-mid.m-t50.m-b20 {
  margin-bottom: 15px;
}

.aon-title-mid.m-t50.m-b20+.full-detail-content {
  margin-top: 0px;
}

.aon-gradi-icon-box {
  margin-bottom: 30px;
}

.aon-gradi-icon-box .aon-icon-pic {
  margin-bottom: 15px;
  font-size: 42px;
  line-height: 1px;
}

.aon-gradi-icon-box .aon-icon-pic i {
  display: flex;
  line-height: 1;
}

.aon-gradi-icon-box .aon-icon-title {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  font-family: var(--title-family);
  margin-bottom: 10px;
}

@media only screen and (max-width:575px) {
  .aon-gradi-icon-box {
    text-align: center;
  }

  .aon-gradi-icon-box .aon-icon-pic i {
    display: block;
  }
}

/*Text gradient classes*/

.text-gradi-orange {
  background: #FA7941;
  background: linear-gradient(to bottom, #FA7941 0%, #d04a0f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradi-green {
  background: #ffed47;
  /* Old browsers */
  background: linear-gradient(to bottom, #ffed47 0%, #15c906 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradi-pink {
  background: #f49ac3;
  background: linear-gradient(to bottom, #f49ac3 0%, #d22e77 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradi-blue {
  background: #47d3ff;
  /* Old browsers */
  background: linear-gradient(to bottom, #47d3ff 0%, #5c06c9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradi-sky {
  background: #d22e77;
  /* Old browsers */
  background: linear-gradient(to bottom, #d22e77 0%, #47d3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradi-cyan {
  background: #4cb8c4;
  /* Old browsers */
  background: linear-gradient(to bottom, #4cb8c4 0%, #3cd3ad 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.border-gradi-orange {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to bottom, #FA7941 0%, #d04a0f 100%) border-box;
  border-radius: 5px;
  border: 2px solid transparent;
}

.border-gradi-green {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to bottom, #ffed47 0%, #15c906 100%) border-box;
  border-radius: 5px;
  border: 2px solid transparent;
}

.border-gradi-pink {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to bottom, #f49ac3 0%, #d22e77 100%) border-box;
  border-radius: 5px;
  border: 2px solid transparent;
}

.border-gradi-blue {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to bottom, #47d3ff 0%, #5c06c9 100%) border-box;
  border-radius: 5px;
  border: 2px solid transparent;
}

.border-gradi-sky {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to bottom, #d22e77 0%, #47d3ff 100%) border-box;
  border-radius: 5px;
  border: 2px solid transparent;
}

.border-gradi-cyan {
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to bottom, #4cb8c4 0%, #3cd3ad 100%) border-box;
  border-radius: 5px;
  border: 2px solid transparent;
}


/*aon-tabs-style1*/

.aon-tour-maps {
  position: relative;
}

.aon-tabs-style1 {
  position: absolute;
  left: 30px;
  top: 30px;
  background-color: #fff;
  border-radius: 6px;
  z-index: 1;
}

.aon-tabs-style1 .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 20px 30px;
}

.aon-tabs-style1 .tb-title {
  text-transform: uppercase;
  color: #706C83;
  font-size: 14px;
  margin-bottom: 0px;
}

.aon-tabs-style1.nav-pills .nav-link.active,
.aon-tabs-style1.nav-pills .show>.nav-link {
  color: #fff;
  background: #FA7941;
  background: linear-gradient(to bottom, #FA7941 0%, #d04a0f 100%);
}

.aon-tabs-style1.nav-pills .nav-link.active .tb-title,
.aon-tabs-style1.nav-pills .show>.nav-link .tb-title {
  color: #fff;
}

@media only screen and (max-width:991px) {
  .aon-tour-maps {
    margin-bottom: 30px;
  }

  .aon-tabs-style1 {
    position: inherit;
    top: auto;
    left: auto;
  }
}

@media only screen and (max-width:767px) {
  .aon-tabs-style1 .nav-link {
    padding: 15px 20px;
  }
}

@media only screen and (max-width:480px) {
  .aon-tabs-style1 .nav-item {
    width: 50%;
  }
}

.aon-search-list-bar-wrap {
  background: #131720;
  padding: 45px 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.aon-search-list-bar-wrap .aon-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: inter;
  margin-bottom: 20px;
}

.aon-search-list-bar-row {
  display: block;
}

.aon-search-list-bar-col {
  display: block;
  margin-bottom: 20px;
}

.aon-search-list-bar-col:last-child {
  margin-bottom: 0px;
}

.site-button-list-search {
  color: #fff;
  border: none;
  font-size: 14px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  display: block;
  padding: 0px;
}

.aon-search-list-bar-col.center {
  text-align: center;
}

.aon-search-list-bar-col.center .site-button {
  display: inline-block;
}

@media only screen and (max-width:1199px) {
  .aon-search-list-bar-wrap {
    padding: 20px 20px;
  }
}

@media only screen and (max-width:991px) {
  .aon-search-list-bar-wrap {
    padding: 45px 30px;
  }
}

@media only screen and (max-width:575px) {
  .aon-search-list-bar-wrap {
    padding: 20px 20px;
  }
}

.form-control.outline-style1 {
  border: 2px solid rgba(255, 255, 255, 0.1);
  background-color: transparent;
  color: #fff;
}

.form-select.outline-style1 {
  border: 2px solid rgba(255, 255, 255, 0.1);
  background-color: transparent;
  color: #fff;
}

.form-select.outline-style1 option {
  color: #222;
}

.aone-category-style-1 {
  border: 1px solid #efefef;
  padding: 50px 30px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.aone-category-style-1-content {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #efefef;
}

.aone-category-style-1-content .aon-title {
  margin-bottom: 20px;
}

.aone-category-style-1-content:last-child {
  border-bottom: 0px;
  margin: 0px;
  padding: 0px;
}

.aone-category-style-1-content ul {
  margin-bottom: 0px;
}

.aone-category-style-1-content ul li {
  margin-bottom: 10px;
}

.aone-category-style-1-content ul li label {
  font-size: 14px;
}

.aone-category-style-1-content ul li:hover label {
  color: var(--primary);
}

.aon-tour-list-content>.aon-tours-listing {
  margin: 0px;
}

.aon-tour-list-content>ul>li {
  margin-bottom: 30px;
}

.aon-tour-list-content>ul>li:last-child {
  margin-bottom: 0px;
}

.aon-popular-sign {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}

.aon-popular-label {
  padding: 10px 30px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.aon-popular-sign {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  width: 90px;
  height: 90px;
}

.aon-popular-label {
  padding: 8px 60px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  display: flex;
  justify-content: center;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  margin-top: 15px;
  margin-right: -30px;
}

.aon-polular2-tours-col.box-list-style .aon-polular2-tours-box {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}


.aon-polular2-tours-col.box-list-style .aon-polular2-tours-box .aon-polular2-tours-info {
  flex: 1;
  padding: 10px 0px 0px;
}

.aon-polular2-tours-col.box-list-style .aon-polular2-tours-box .aon-polular2-tours-pic {
  max-width: 350px;
  width: 100%;
  margin-right: 20px;
  margin-bottom: 0px;
}

.aon-polular2-tours-col.box-list-style .aon-polular2-tours-box .aon-polular2-tours-pic img {
  width: 100%;
  border-radius: 5px;
}


.aon-polular2-tours-col.box-list-style .aon-polular2-tours-box .aon-pop2-to-pri-col {
  display: flex;
}


.aon-polular2-tours-col.box-list-style .aon-polular2-tours-box .aon-pop2-to-pri-col .aon-pop2-tou-rate {
  margin-right: 5px;
}

.aon-polular2-tours-col.box-list-style .aon-polular2-tours-box .aon-polular2-tours-info .aon-pop2-tour-pri-row {
  display: flex;
}

.aon-polular2-tours-col.box-list-style .aon-polular2-tours-box .aon-polular2-tours-info .aon-pop2-tour-pri-detail {
  margin-bottom: 25px;
}

.aon-polular2-tours-col.box-list-style .aon-polular2-tours-box .aon-polular2-tours-info .aon-pop2-tour-pri-detail p:last-child {
  margin: 0px;
}

.aon-polular2-tours-col.box-list-style .aon-polular2-tours-box .aon-polular2-tours-info .aon-pop2-tour-pri-row2 {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

.aon-polular2-tours-col.box-list-style .aon-polular2-tours-box .aon-polular2-tours-info .aon-pop2-to-off-row {
  border-top: 0px;
  padding-top: 0px;
}

@media only screen and (max-width:991px) {
  .aon-polular2-tours-col.box-list-style .aon-polular2-tours-box .aon-polular2-tours-pic {
    max-width: 270px;
  }
}

@media only screen and (max-width:767px) {
  .aon-polular2-tours-col.box-list-style .aon-polular2-tours-box .aon-polular2-tours-pic {
    max-width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width:400px) {
  .aon-polular2-tours-col.box-list-style .aon-polular2-tours-box .aon-polular2-tours-info .aon-pop2-tour-pri-row2 {
    display: block;
  }

  .aon-polular2-tours-col.box-list-style .aon-polular2-tours-box .aon-polular2-tours-info .aon-pop2-to-off-row {
    margin-bottom: 20px;
  }
}



.shop-list-btn2 {
  padding: 0px;
  background: var(--primary-light);
  border: none;
  font-size: 20px;
  width: 48px;
  height: 40px;
  border-radius: 5px;
  color: #000;
}

.shop-list-btn2:hover,
.shop-list-btn2:active,
.shop-list-btn2:focus {
  color: #fff;
  background: #fc7c44;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fc7c44 0%, #cf480d 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #fc7c44 0%, #cf480d 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #fc7c44 0%, #cf480d 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc7c44', endColorstr='#cf480d', GradientType=0);
  /* IE6-9 */
}

.aon-pro-search2 {
  position: relative;
  display: flex;
}

.aon-pro-search2 .form-control {
  border-radius: 5px;
  height: 40px;
  background: var(--primary-light);
  width: 100%;
  border-color: var(--primary-light);
  flex: content;
  font-size: 14px;
}

.aon-pro-search2 .pro-search-btn {
  color: #fff;
  border: none;
  font-size: 14px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  line-height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  -webkit-box-shadow: 0px 8px 9px 0px RGBA(255, 142, 43, 0.44);
  box-shadow: 0px 8px 9px 0px RGBA(255, 142, 43, 0.44);
}

.product-filter-wrap {
  margin-bottom: 60px;
}

@media only screen and (max-width:991px) {
  .product-filter-wrap {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width:767px) {
  .product-filter-wrap {
    display: block !important;
    margin-bottom: 30px;
  }

  .product-filter-wrap .product-filter-left {
    justify-content: space-between;
    margin-bottom: 30px;
  }

  .aon-pro-search2 {
    width: 100%;
  }
}

.woocommerce-ordering.aon-filter-dropdown-1 {
  width: 180px;

}

.woocommerce-ordering.aon-filter-dropdown-1 .form-select {
  background-color: var(--primary-light);
  border: none;
  height: 40px;
  font-size: 14px;
}

.woocommerce-ordering.aon-filter-dropdown-1 .form-select option {
  background-color: #fff;
}

.aon-pop-rating2 {
  border-radius: 5px;
  padding: 5px 10px;
  margin-bottom: 10px;
  line-height: 1;
  font-size: 12px;
  color: #fff;
  display: inline-block;
}

.tour-detail-price-address {
  display: flex;
}

.tour-detail-price-address .aon-destination-location {
  margin-right: 50px;
}

.tour-detail-price-address .aon-pop2-to-pri-col {
  display: flex;
  align-items: baseline;
}

.tour-detail-price-address .aon-pop2-to-pri-col .aon-pop2-tou-rate {
  margin-right: 5px;
}

.tour-detail-price-address .aon-pop2-to-pri-col .aon-pop2-tou-rate span {
  font-size: 24px;
}


.tour-detail-offer-zone.aon-pop2-tour-pri-row2 {
  margin: 30px 0px;
  padding: 30px;
  display: flex;
  background-color: var(--primary-light);
  border-radius: 6px;
  justify-content: space-between;
}

@media only screen and (max-width:480px) {
  .tour-detail-offer-zone.aon-pop2-tour-pri-row2 {
    display: block;
  }

  .tour-detail-offer-zone.aon-pop2-tour-pri-row2 .aon-pop2-to-off-row {
    margin-bottom: 10px;
  }
}

.tour-detail-offer-zone.aon-pop2-tour-pri-row2 .aon-pop2-to-pri-time span {
  width: 35px;
  height: 35px;
}

.tour-detail-offer-zone.aon-pop2-tour-pri-row2 .aon-pop2-to-off-row {
  padding-top: 0px;
  border: 0px;
}

.tour-detail-offer-zone.aon-pop2-tour-pri-row2 .aon-pop2-tour-day {
  background: #fff;
  color: var(--primary);
  border-radius: 5px;
}



.aon-dydr-line {
  margin: 30px 0px;
  border-top: 1px solid #f0f0f0;
}

.aon-dydr-line2 {
  border-top: 1px solid #f0f0f0;
}

.aon-detail-checked-list {
  margin: 30px 0px 10px;
}

.aon-detail-checked-list-content {
  margin: 30px 0px 0px;
}

.aon-detail-checked-list-content .checkbox.sf-radio-checkbox {
  margin-bottom: 20px;
}



.aon-blockquote1 {
  padding: 40px;
  display: table;
  position: relative;
  margin: 30px 0px;
  border: 2px solid #ECECEC;
  border-radius: 5px;
  background: #FAFAFA;
}

.aon-blockquote1:before {
  content: '';
  width: 10px;
  height: calc(100% - 40px);
  left: 0px;
  top: 20px;
  position: absolute;
  background: #104CBA;
}

.aon-blockquote1 .media-col {
  display: table-cell;
  vertical-align: top;
  padding-left: 0px;
}

.aon-blockquote1 .media-pic {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  position: relative;
}

.aon-blockquote1 .media-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 100%;
}

.aon-blockquote1 .media-pic .quote-icon {
  background: var(--primary);
  font-size: 14px;
  width: 24px;
  height: 24px;
  color: #fff;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aon-blockquote1 .content-col {
  display: table-cell;
  vertical-align: top;
  padding-left: 30px;
}

.aon-blockquote1 .content-col .quote-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.aon-blockquote1 .content-col p {
  font-size: 20px;
  line-height: 28px;
  color: #676767;
  margin-bottom: 0px;
}

@media only screen and (max-width:991px) {
  .aon-blockquote1 .content-col p {
    font-size: 16px;
  }

}

@media only screen and (max-width:575px) {
  .aon-blockquote1 .media-col {
    display: block;
    margin-bottom: 20px;
    padding-left: 30px;
  }

  .aon-blockquote1 .content-col {
    display: block;
  }

  .aon-blockquote1 {
    display: block;
    padding-left: 10px;
  }
}



.aon-blockquote2 {
  padding: 50px;
  display: table;
  position: relative;
  margin: 30px 0px 60px;
  border-radius: 5px;
  background: var(--primary);
}

.aon-blockquote2 .media-col {
  display: table-cell;
  vertical-align: top;
}

.aon-blockquote2 .media-pic {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  position: relative;
}

.aon-blockquote2 .media-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 100%;
}

.aon-blockquote2 .media-pic .quote-icon {
  background: var(--primary);
  font-size: 14px;
  width: 24px;
  height: 24px;
  color: #fff;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}



.aon-blockquote2 .content-col {
  display: table-cell;
  vertical-align: top;
  padding-left: 30px;
}

.aon-blockquote2 .content-col .quote-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.aon-blockquote2 .content-col p {
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 0px;
}

.aon-quote-social-icon {
  list-style: none;
  margin: 0px 0px 0px;
  position: absolute;
  top: 50px;
  right: 50px;
}

.aon-quote-social-icon li {
  display: inline-block;
  margin-right: 25px;
  line-height: 1;
}

.aon-quote-social-icon li:last-child {
  margin-right: 0px;
}

.aon-quote-social-icon li a {
  color: #fff;
  font-size: 18px;
  opacity: 0.8;
}

.aon-quote-social-icon li a:hover {
  opacity: 1;
}

@media only screen and (max-width:991px) {
  .aon-blockquote2 {
    padding: 30px;
  }

  .aon-blockquote2 .media-pic {
    width: 80px;
    height: 80px;
  }

  .aon-quote-social-icon {
    margin: 20px 0px;
    position: static;
  }

  .aon-blockquote2 .content-col p {
    font-size: 16px;
  }
}

@media only screen and (max-width:575px) {
  .aon-blockquote2 .media-col {
    display: block;
    margin-bottom: 20px;
  }

  .aon-blockquote2 .content-col {
    display: block;
    padding-left: 0px;
  }

  .aon-blockquote2 {
    display: block;
    padding-left: 30px;
  }
}


.aon-bd-mid-2 .post-meta ul {
  margin-bottom: 0px;
}

.aon-bd-mid-2 .post-meta ul li {
  color: #777;
  position: relative;
  display: inline-block;
  margin-right: 10px;
  padding-right: 15px;
  line-height: 1;
}

.aon-bd-mid-2 .post-meta ul li:after {
  content: "l";
  font-family: arial;
  position: absolute;
  top: 2px;
  right: 0;
}

.aon-bd-mid-2 .post-meta ul li:last-child {
  margin-right: 0px;
}

.aon-bd-mid-2 .post-meta ul li:last-child:after {
  display: none;
}

.aon-bd-mid-2 .post-meta ul li img {
  padding-right: 10px;
}

.aon-bd-mid-2 .post-meta ul li a {
  color: var(--primary);
}

.aon-bd-mid-2 .post-title {
  margin-bottom: 0px;
}

@media only screen and (max-width:767px) {
  .aon-bd-mid-2 .post-title {
    font-size: 24px;
  }
}

.aon-bd-mid-2 .post-title a {
  color: #000222;
}

.aon-bd-mid-2 .post-text {
  padding: 10px 0px 0px 0px;
}

.aon-bd-mid-2 .aon-post-control {
  display: flex;
  justify-content: space-between;
}

.aon-bd-mid-2 .date-before-circle {
  width: 10px;
  height: 10px;
  background-color: #d04a0f;
  border-radius: 50%;
}

.aon-bd-mid-2 .aon-post-date {
  color: #d04a0f;
}

.aon-post-date-inline {
  display: flex;
  align-items: center;
}

.date-before-circle {
  width: 10px;
  height: 10px;
  background-color: #d04a0f;
  border-radius: 50%;
  margin-right: 5px;
}

.aon-post-date {
  color: #d04a0f;
}

.aon-blog-top-media2 {
  margin-bottom: 45px;
}

.aon-blog-top-media2 img {
  border-radius: 5px;
}

.post-area-tags-wrap2 {
  border-top: 1px solid #e7e7e7;
  margin: 30px 0px;
  padding-top: 30px;
}

.aon-sidebar-tags-wrap2 {
  display: flex;
  align-items: center;
}

@media only screen and (max-width:575px) {
  .aon-sidebar-tags-wrap2 {
    display: block;
  }

  .aon-sidebar-tags-wrap2 .aon-bd-title2 {
    margin-bottom: 20px;
  }
}

.aon-sidebar-tags-wrap2 .aon-bd-title2 {
  margin-right: 30px;
}

.aon-sidebar-tags-wrap2 .tagcloud a {
  border-radius: 5px;
  padding: 6px 20px;
  background-color: #ECECEC;
  display: inline-block;
  margin-right: 4px;
  color: #777;
  margin-bottom: 4px;
}

.aon-sidebar-tags-wrap2 .tagcloud a:hover {
  color: #fff;
  background: var(--primary);
}

.post-social-icons-wrap2 {
  float: right;
}

.post-social-icons2 li {
  display: inline-block;
}

.post-social-icons2 li a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  padding: 0px;
  color: #BAB9B6;
  font-size: 16px;
  text-align: center;
  margin-right: 3px;
  list-style: none;
  background-color: #ECECEC;
  border-radius: 30px;
}

.post-social-icons2 li a:hover {
  color: var(--primary);
}

@media only screen and (max-width:1199px) {
  .post-social-icons-wrap2 {
    float: none;
    margin-top: 30px;
  }

  .post-social-icons2 li a {
    border: 1px solid #f3f3f3;
  }
}

/*= comment list = */
.comments-area2 {
  padding: 0;
  clear: both;
  max-width: 860px;
}

.comments-area2 .comments-title {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.comments-area2 ol.comment-list {
  list-style: none;
  margin: 0;
}

.comments-area2 ol.comment-list li.comment {
  position: relative;
  padding: 0;
  border-bottom: 0px;
  margin-bottom: 20px;
}

.comments-area2 ol.comment-list li.comment .comment-body {
  position: relative;
  padding: 25px 20px;
  border-bottom: 1px solid #e9e9e9;
  padding-left: 120px;
  position: relative;
}

.comments-area2 ol.comment-list ol.children li.comment:last-child .comment-body {
  border-bottom: none;
}

@media only screen and (max-width:991px) {
  .commen-date {
    position: static;
    margin: 10px 0px;
  }
}

@media only screen and (max-width:575px) {
  .comments-area2 ol.comment-list li.comment .comment-body {
    margin-left: 0px;
  }

  ol.comment-list li .children {
    margin-left: 0px;
  }

  .comments-area2 ol.comment-list li.comment .comment-body {
    padding: 20px 0px;
  }

}



/*========================
Comment Form 
==========================*/
.comments-area2 .comment-respond {
  margin-top: 30px;
  padding: 40px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.comments-area2 .comment-respond .comment-reply-title {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.comments-area2 .comment-form {
  margin: 0 -15px;
}

.comments-area2 .comment-form .comment-form-info {
  margin-bottom: 30px;
  clear: both;
  display: block;
  float: left;
  width: 100%;
  margin-top: 10px;
}

.comments-area2 .comment-form .comment-form-info span {
  color: red;
}

.comment-form-info .comments-area2 .comment-form .comment-notes {
  display: none;
}

.comments-area2 .comment-form p {
  width: 50%;
  float: left;
  padding: 0 15px;
  margin-bottom: 30px;
  position: relative;
}

.comments-area2 .comment-form .comment-form-email {
  width: 100%;
  float: none;
  clear: both;
}

.comments-area2 .comment-form p.form-allowed-tags {
  width: 100%;
}

ol.comment-list li.comment .comment-respond .comment-form p {
  padding: 0 15px !important;
}

.comments-area2 .comment-form p label {
  display: block;
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 10px;
  color: #000;
  font-weight: 400;
}

.comments-area2 .comment-form .form-control {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0px;
}

.comments-area2 .comment-form p input[type="text"],
.comments-area2 .comment-form p textarea {
  width: 100%;
  height: 50px;
  line-height: 1.2;
}

.comments-area2 .comment-form p.comment-form-comment {
  width: 100%;
  display: block;
  clear: both;
}

.comments-area2 .comment-form p textarea {
  height: 120px;
}

.comments-area2 .comment-form p.form-submit {
  clear: both;
  float: none;
  width: 100%;
  margin: 0;
}

.comments-area2 .comment-form p input[type="submit"] {
  background-color: #022278;
  border-color: #1f82bd;
  border-width: 0;
  border-bottom-width: 3px;
  border-style: solid;
  color: #fff;
  padding: 9px 20px;
  line-height: 1.42857;
  text-transform: uppercase;
}

.comments-area2 .comment-form p input[type="submit"]:hover,
.comments-area2 .comment-form p input[type="submit"]:focus,
.comments-area2 .comment-form p input[type="submit"]:active {
  background-color: #1f82bd;
  border-color: #0c6faa;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .comments-area2 .comment-form p {
    width: 100% !important;
    float: none;
    margin-bottom: 20px;
  }
}



.aon-large-apce-siderbar {
  border: 1px solid #f0f0f0;
  border-radius: 5px;
  padding: 40px 50px 50px;
}

.aon-large-apce-siderbar .aon-title {
  margin-bottom: 20px;
}

@media only screen and (max-width:1199px) {
  .aon-large-apce-siderbar {
    padding: 20px;
  }
}

/*Latest News*/
.aon-farm-blog-2.aon-lt-news {
  padding: 0px;
  border: 0px;
}

.aon-farm-blog-2.aon-lt-news .post-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}





.social-large-icon {
  margin-bottom: 0px;
}

.social-large-icon li {
  display: inline-block;
  margin-right: 15px;
}

@media only screen and (max-width:1199px) {
  .social-large-icon li {
    margin-right: 4px;
  }
}


.social-large-icon li a {
  height: 45px;
  width: 45px;
  line-height: 45px;
  border-radius: 50%;
  background-color: var(--primary-light);
  padding: 0px;
  color: #BAB9B6;
  font-size: 16px;
  text-align: center;
  margin-right: 3px;
  list-style: none;
}

.social-large-icon li a:hover {
  color: #fff;
  background: linear-gradient(to bottom, #fc7c44 0%, #cf480d 100%);
}





.animate-v1 {
  -webkit-animation: upNdown 2s infinite linear;
  animation: upNdown 2s infinite linear;
}

@-webkit-keyframes upNdown {
  0% {}

  50% {
    transform: translateY(-30px);
  }

  100% {}
}

@keyframes upNdown {
  0% {}

  50% {
    transform: translateY(30px);
  }

  100% {}
}

.animate-v2 {
  -webkit-animation: upNdown2 2s infinite linear;
  animation: upNdown2 2s infinite linear;
}

@-webkit-keyframes upNdown2 {
  0% {}

  50% {
    transform: translateY(30px);
  }

  100% {}
}

@keyframes upNdown2 {
  0% {}

  50% {
    transform: translateY(-30px);
  }

  100% {}
}


.animate-v11 {
  -webkit-animation: upNdown11 5s infinite linear;
  animation: upNdown11 5s infinite linear;
}

@-webkit-keyframes upNdown11 {
  0% {}

  50% {
    transform: translateY(-10px);
  }

  100% {}
}

@keyframes upNdown11 {
  0% {}

  50% {
    transform: translateY(10px);
  }

  100% {}
}

.animate-v22 {
  -webkit-animation: upNdown22 5s infinite linear;
  animation: upNdown22 5s infinite linear;
}

@-webkit-keyframes upNdown22 {
  0% {}

  50% {
    transform: translateY(10px);
  }

  100% {}
}

@keyframes upNdown22 {
  0% {}

  50% {
    transform: translateY(-10px);
  }

  100% {}
}




.plus-v1 {
  -webkit-animation: plus 2s infinite linear;
  animation: plus 2s infinite linear;
}

@-webkit-keyframes plus {
  0% {}

  50% {
    transform: scale(1);
  }

  100% {}
}

@keyframes plus {
  0% {}

  50% {
    transform: scale(1.1);
  }

  100% {}
}

.plus-v2 {
  -webkit-animation: plus2 5s infinite linear;
  animation: plus2 5s infinite linear;
}

@-webkit-keyframes plus2 {
  0% {}

  50% {
    transform: scale(1);
  }

  100% {}
}

@keyframes plus2 {
  0% {}

  50% {
    transform: scale(1.1);
  }

  100% {}
}

.roted-v1 {
  -webkit-animation: roted 4s infinite linear;
  animation: roted 4s infinite linear;
}

@-webkit-keyframes roted {
  0% {}

  50% {
    transform: rotate(0deg);
  }

  100% {}
}

@keyframes roted {
  0% {}

  50% {
    transform: rotate(15deg);
  }

  100% {}
}

.spin-v1 {
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 20s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*Corner icon css start*/
@font-face {
  font-family: 'icomoon';
  src: url('../fonts/icomoon.eot');
  src: url('../fonts/icomoon.eot') format('embedded-opentype'),
    url('../fonts/icomoon.ttf') format('truetype'),
    url('../fonts/icomoon.woff') format('woff'),
    url('../fonts/icomoon.svg') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-rev-corner-1:before {
  content: "\e900";
  color: #fff;
}

/* Corner icon css End*/

/*Header Style 2*/
@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1344px;
  }
}


/* .ao-bg-white {
  background-color: #e8e5f4;
} */

.ao-bg-primary {
  background-color: var(--primary);
}

.ao-bg-secondary {
  background-color: var(--secondary);
}

.page-wraper {
  padding: 30px;
  background: #e9f4e4;
  /* background: #e8e5f4; */
}

@media only screen and (max-width:1280px) {
  .page-wraper {
    padding: 20px;
  }
}

@media only screen and (max-width:767px) {
  .page-wraper {
    padding: 10px;
  }
}

.page-content {
  position: relative;
}

.aon-bnrs-area {
  padding: 150px 0px 150px;
  background-image: url("../images/home1/banner/banner-bg.jpg");
  border-radius: 30px;
}

.ao-baner-label {
  background: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  padding: 12px 25px;
  line-height: 1;
  align-items: center;
  border-radius: 0px 20px 20px 0px;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--title-family2);
  margin-bottom: 20px;
  position: relative;
  font-weight: 600;
  margin-left: 25px;
}

.ao-baner-label:before {
  position: absolute;
  left: -20px;
  top: 8px;
  width: 5px;
  height: 20px;
  background-color: #fff;
  border-radius: 2px;
  content: '';
  transform: translateY(0);
  opacity: 0.2;
  animation: wooo 3.5s infinite;
}

.ao-baner-label:after {
  position: absolute;
  left: -10px;
  top: 4px;
  width: 5px;
  height: 30px;
  background-color: #fff;
  border-radius: 2px;
  content: '';
  transform: translateY(0);
  opacity: 0.2;
  animation: wooo 3.5s infinite;
}

.ao-baner-title {
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.ao-baner-title span {
  color: #ffce44;
}

.ao-baner-title span {
  color: #fbdc84;
}

.ao-baner-text {
  font-size: 18px;
  color: #fff;
  margin-bottom: 40px;
}

.ao-baner-btn {
  display: flex;
}

.ao-follow-box {
  display: flex;
  margin-left: 30px;
  align-items: center;
}

.ao-follow-pic {
  width: 50px;
  height: 50px;
  display: inline-flex;
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid #fff;
  margin-left: -10px;
}

.ao-follow-text {
  margin-left: 10px;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
}

.aon-bnrs-right {
  position: relative;
  margin-right: -95px;
}

.top-bar-pic-one {
  position: relative;
  z-index: 1;
  text-align: center;
  top: 60px;
}

.top-bar-pic-two {
  position: absolute;
  top: 0;
  right: 0;
}


@media only screen and (max-width:1600px) {
  .aon-bnrs-right {
    margin-right: 0px;
  }

  .top-bar-pic-one {
    max-width: 442px;
    margin: 0px auto;
  }
}

@media only screen and (max-width:1440px) {
  .aon-bnrs-right {
    margin-right: 0px;
  }

  .top-bar-pic-one {
    max-width: 400px;
  }
}

@media only screen and (max-width:1366px) {
  .ao-baner-title {
    font-size: 70px;
  }

  .top-bar-pic-one {
    max-width: 350px;
  }
}

@media only screen and (max-width:1280px) {
  .ao-baner-title {
    font-size: 54px;
  }

  .top-bar-pic-one {
    max-width: 280px;
  }

  .ao-baner-btn {
    display: block;
  }

  .ao-follow-box {
    margin-left: 10px;
  }

  .ao-follow-box {
    margin-top: 20px;
  }
}

@media only screen and (max-width:991px) {
  .ao-baner-title {
    font-size: 60px;
  }

  .top-bar-pic-one {
    max-width: 320px;
  }

  .ao-baner-title {
    font-size: 40px;
  }

  .ao-baner-text {
    font-size: 16px;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.6;
  }

  .ao-baner-label {
    padding: 12px 25px;
    font-size: 14px;
  }

  .ao-baner-text {
    margin-bottom: 30px;
  }

  .top-bar-pic-one {
    max-width: 200px;
  }
}

@media only screen and (max-width:767px) {
  .ao-baner-title {
    font-size: 40px;
  }

  .top-bar-pic-one {
    max-width: 250px;
  }
}

@media only screen and (max-width:575px) {
  .ao-baner-title {
    font-size: 32px;
  }
}



.ao-servitype-area {
  padding: 80px 0px 60px;
  /* background: var(--primary); */
  background: #d0e2cd;
  margin-top: -20px;
  border-radius: 0px 0px 30px 30px;
}

.ao-servitype-box {
  display: flex;
}

.ao-servitype-icon {
  width: 80px;
  height: 80px;
  position: relative;
  transition: all 0.2s linear;
}

.ao-servitype-icobg {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0px;
  left: 0px;
}

.ao-servitype-icopic {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ao-servitype-icopic img {
  height: 40px;
}

.ao-servitype-info {
  width: calc(100% - 80px);
  padding-left: 15px;
}

.ao-servitype-title {
  text-transform: uppercase;
}

.ao-servitype-text {
  color: #111;
  line-height: 1.6;
}

.ao-servitype-box:hover .ao-servitype-icon {
  transform: scale(1.1);
}


@media only screen and (max-width:1200px) {
  .ao-servitype-box {
    margin-bottom: 15px;
    margin-top: 15px;
  }
}

@media only screen and (max-width:575px) {
  .ao-servitype-title {
    font-size: 16px;
  }
}

@media only screen and (max-width:360px) {
  .ao-servitype-box {
    display: block;
  }

  .ao-servitype-icon {
    margin-bottom: 20px;
  }

  .ao-servitype-info {
    width: calc(100% - 0px);
    padding-left: 5px;
  }
}

.ygr-about-wrap {
  padding: 79px 0px;
  background-color: #e9f4e4;
  /* background-color: #e8e5f4; */
}

/* .ygr-collage-3-coulmn-wrap {
  padding-left: 88px;
} */

.ygr-collage-3-coulmn {
  position: relative;
}

.ygr-collage-3-l-pic {
  border-radius: 30px;
  overflow: hidden;
}

.ygr-collage-3-l-pic img {
  width: 100%;
  transition: all 0.2s linear;
}

.ygr-collage-3-l-pic:hover img {
  transform: scale(1.1);
}

.about-us-box {
  background: #fff;
  padding: 6%;
  border-radius: 30px;
}

.inner-page-heading-3 {
  font-size: 28px !important;
}

.studio-class-pg {
  border: 2px solid #ffffff;
  border-radius: 30px;
  background: #ecf7eb;
}

.varity-yoga-card {
  border-radius: 30px;
  min-height: 315px;
  background: #ecf7eb;
  border: 2px solid #fff;
}

.hatha-yoga-card-box {
  margin-bottom: 5%;
}

.varity-yoga-card .icon {
  display: flex;
  margin: 13px auto;
}

.circle {
  height: 24px;
  width: 24px;
  background: #759d82;
  /* margin: 0 auto; */
  margin-bottom: 8%;
  transform: rotate(45deg);
  border: 2px solid #fff;
}


@media only screen and (max-width:1200px) {
  .ygr-collage-3-coulmn-wrap {
    padding-left: 0px;
  }

  .ygr-about-content {
    margin-bottom: 40px;
  }
}


.ygr-collage-3-t-pic {
  border-radius: 30px;
  width: 240px;
  position: absolute;
  top: -20px;
  right: -20px;
  border: 20px solid #e9f4e4;
  background-color: #e9f4e4;
}

.ygr-collage-3-t-pic img {
  width: 100%;
  border-radius: 30px;
  animation: wooo 3.5s infinite;
}

.ygr-collage-3-t-pic .icon-rev-corner-1.t-left:before {
  color: #e9f4e4;
  font-size: 40px;
  position: absolute;
  left: -58px;
  top: 0px;
  transform: rotate(-90deg);
}

.ygr-collage-3-t-pic .icon-rev-corner-1.b-right:before {
  color: #e9f4e4;
  font-size: 40px;
  position: absolute;
  right: -2px;
  bottom: -58px;
  transform: rotate(-90deg);
}

.ygr-collage-3-vid-wrap {
  border-radius: 20px;
  background-color: #e9f4e4;
  position: absolute;
  left: -20px;
  bottom: -20px;
}

.ygr-collage-3-vid {
  margin: 20px;
  border-radius: 20px;
  background-color: #fbdc84;
  text-align: center;
  padding: 40px 40px;
}

.ygr-collage-3-vid .ygr-title {
  color: #000;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0px;
}

.ygr-collage-3-vid span {
  color: #40846e;
  font-size: 58px;
  margin-bottom: 20px;
  display: block;
  Stroke-width: 0.5px
}

.ao-play-btn {
  border: 4px solid var(--secondary);
  display: flex;
  width: 65px;
  height: 65px;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: var(--secondary);
  font-size: 55px;
  margin: 0px auto 25px;
  transition: all 0.2s ease;
}

.ao-play-btn i {
  margin-right: -5px;
  color: var(--secondary);
}

.ao-play-btn:hover {
  background: var(--secondary);
  color: #fff;
  transform: scale(1.2);
}

.ao-play-btn:hover i {
  color: #fff;
}

.ygr-collage-3-vid-wrap .icon-rev-corner-1.t-left:before {
  color: #e9f4e4;
  font-size: 40px;
  position: absolute;
  left: 18px;
  top: -38px;
  transform: rotate(90deg);
}

.ygr-collage-3-vid-wrap .icon-rev-corner-1.b-right:before {
  color: #e9f4e4;
  font-size: 40px;
  position: absolute;
  right: -38px;
  bottom: 18px;
  transform: rotate(90deg);
}

.ygr-main-head-sm-title {
  text-transform: uppercase;
  font-size: 14px;
  color: #181a17;
  padding: 10px 24px 10px 14px;
  border: 1px solid #fff;
  border-radius: 0px 50px 50px 0px;
  background-color: #ecf7eb;
  display: inline-flex;
  margin: 0px 0px 30px 20px;
  position: relative;
}

.ygr-main-head-sm-title:before {
  position: absolute;
  left: -20px;
  top: 8px;
  width: 5px;
  height: 20px;
  background-color: #fff;
  border-radius: 2px;
  content: '';
  transform: translateY(0);
  animation: wooo 3.5s infinite;
}

.ygr-main-head-sm-title:after {
  position: absolute;
  left: -10px;
  top: 4px;
  width: 5px;
  height: 30px;
  background-color: #fff;
  border-radius: 2px;
  content: '';
  transform: translateY(0);
  animation: wooo 3.5s infinite;
}

.ygr-main-head-lg-title {
  font-size: 52px;
  font-weight: 600;
  font-family: "Sora", sans-serif;
  margin-bottom: 14px;
}

.ygr-pgf-text {
  font-weight: 500;
  font-size: 19px;
  font-family: "Lato", sans-serif;
  color: #111;
  margin: 20px 0px;
}

.ygr-iconset-wrap {
  margin-bottom: 50px;
}

.ygr-icon-bx-1 .ygr-media {
  width: 70px;
  height: 70px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/home1/icon-bg.png");
  background-size: cover;
  transition: all 0.2s linear;
}

.ygr-icon-bx-1 .ygr-media img {
  width: auto;
}

.ygr-icon-bx-1 .ygr-title {
  color: #181a17;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Sora", sans-serif;
}

.ygr-icon-bx-1 p {
  font-size: 16px;
  font-family: "Lato", sans-serif;
  color: #111;
  padding-right: 30px;
  margin-bottom: 0px;
}

.ygr-icon-bx-1:hover .ygr-media {
  transform: scale(1.1);
}


@media only screen and (max-width:1200px) {
  .ygr-main-head-lg-title {
    font-size: 46px;
    font-weight: 600;
    font-family: "Sora", sans-serif;
    margin-bottom: 14px;
  }

  .ygr-collage-3-coulmn-wrap {
    padding-left: 0px;
  }

  .ygr-about-content {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width:1200px) {
  .ygr-main-head-lg-title {
    font-size: 36px;
  }
}

@media only screen and (max-width:767px) {
  .ygr-iconset-wrap .row [class*='col-'] {
    margin-bottom: 30px;
  }

  .ygr-iconset-wrap .row [class*='col-']:last-child {
    margin-bottom: 0px;
  }

}

@media only screen and (max-width:575px) {
  .ygr-main-head-lg-title {
    font-size: 26px;
  }
}



.ao-section-head {
  text-align: center;
  margin-bottom: 60px;
}

.ao-section-head-tagline {
  text-transform: uppercase;
  font-size: 14px;
  color: #181a17;
  padding: 8px 24px 8px 14px;
  border: 1px solid #fff;
  border-radius: 0px 50px 50px 0px;
  background-color: #ecf7eb;
  display: inline-flex;
  margin: 0px 0px 30px 20px;
  position: relative;
  font-weight: 600;
}

.ao-section-head-tagline:before {
  position: absolute;
  left: -20px;
  top: 8px;
  width: 5px;
  height: 20px;
  background-color: #fff;
  border-radius: 2px;
  content: '';
  transform: translateY(0%);
  animation: wooo 3.5s infinite;
}

.ao-section-head-tagline:after {
  position: absolute;
  left: -10px;
  top: 4px;
  width: 5px;
  height: 30px;
  background-color: #fff;
  border-radius: 2px;
  content: '';
  transform: translateY(0%);
  animation: wooo 3.5s infinite;
}

.ao-section-head-title {
  margin: 0px;
}

.ao-section-head.ao-left-align {
  text-align: left;
  border-bottom: 1px solid #c9c2dd;
  padding-bottom: 35px;
}

.ao-section-head.ao-left-align .ao-section-head-title {
  padding-right: 120px;
}

.ao-section-head+.ao-section-content {
  padding-top: 0px;
}

@media only screen and (max-width:1200px) {
  .ao-section-head-title {
    font-size: 46px;
  }
}

@media only screen and (max-width:767px) {
  .ao-section-head-title {
    font-size: 36px;
  }
}

@media only screen and (max-width:575px) {
  .ao-section-head-title {
    font-size: 26px;
  }

  .ao-section-head.ao-left-align .ao-section-head-title {
    padding-right: 0px;
  }

  .ao-section-head {
    text-align: center;
    margin-bottom: 40px;
  }

}

.ao-main-servi-box {
  border: 1px solid #fff;
  padding: 40px;
  background: #ecf7eb;
  border-radius: 30px;
  position: relative;
  margin-bottom: 30px;
  transition: all 0.5s linear;
}

.ao-main-servi-title {
  min-height: 100px;
  margin: 0px 0px 0px;
  position: relative;
  text-transform: capitalize;
}

.ao-main-servi-title a {
  font-size: 20px;
}

.ao-main-servi-title:after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 2px;
  height: 50%;
  background: var(--primary);
}

.ao-main-servi-icon img {
  max-height: 68px;
}

.ao-main-servi-link {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px 0px 20px 0px;
  background: #e9f4e4;
  color: var(--primary);
  font-size: 30px;
  position: absolute;
  bottom: -2px;
  right: -2px;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
}

.ao-main-servi-link:before {
  content: "\e900";
  color: #e9f4e4;
  font-size: 30px;
  position: absolute;
  right: -2px;
  top: -30px;
  transform: rotate(0deg);
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.ao-main-servi-link:after {
  content: "\e900";
  color: #e9f4e4;
  font-size: 30px;
  position: absolute;
  left: -30px;
  bottom: 0px;
  transform: rotate(0deg);
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.ao-main-servi-box:hover {
  background: var(--primary);
}

.ao-main-servi-box:hover .ao-main-servi-title {
  color: #fff;
}

.ao-main-servi-box:hover .ao-main-servi-title:after {
  background: #fff;
}

.ao-main-servi-box:hover .ao-main-servi-icon img {
  filter: brightness(100);
}

.ao-main-servi-box:hover {
  transform: scale(1.02);
}


@media only screen and (max-width:991px) {
  .ao-main-servi-box {
    padding: 30px;
  }
}



.ao-why-choo-area {
  border-radius: 30px;
  overflow: hidden;
}

.ao-yoga-prod-box {
  border: 1px solid #fff;
  padding: 30px;
  background: #f3efff;
  border-radius: 30px;
  position: relative;
  margin-bottom: 30px;
  transition: all 0.5s linear;
}

.ao-yoga-prod-title {
  margin: 0px 75px 0px 0px;
  position: relative;
  text-transform: uppercase;
  display: inline-flex;
}

.ao-yoga-prod-title:after {
  content: "";
  position: absolute;
  left: 100%;
  top: 12px;
  width: 50px;
  height: 2px;
  background: var(--secondary);
  margin-left: 15px;
}

.ao-yoga-prod-price {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--title-family2);
}

.ao-yoga-prod-pic {
  position: relative;
  height: 460px;
  border-radius: 30px 30px 30px 30px;
  border: 1px solid #ebf7f4;
  margin-bottom: 30px;
}

.ao-yoga-prod-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 30px 30px 30px 30px;
}

.ao-yoga-prod-bot {
  line-height: 1;
}

.ao-yoga-prod-link {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px 0px 20px 0px;
  background: #f3efff;
  color: var(--secondary);
  font-size: 40px;
  position: absolute;
  bottom: -2px;
  right: -2px;
}

.ao-yoga-prod-link:before {
  content: "\e900";
  color: #f3efff;
  font-size: 30px;
  position: absolute;
  right: -2px;
  top: -30px;
  transform: rotate(0deg);
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.ao-yoga-prod-link:after {
  content: "\e900";
  color: #f3efff;
  font-size: 30px;
  position: absolute;
  left: -30px;
  bottom: 0px;
  transform: rotate(0deg);
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.ao-yoga-prod-box:hover {
  transform: scale(1);
}

@media only screen and (max-width:1200px) {
  .ao-yoga-prod-box {
    padding: 20px;
  }

  .ao-yoga-prod-pic {
    position: relative;
    height: 400px;
  }

  .ao-yoga-prod-box {
    padding: 20px;
  }
}

@media only screen and (max-width:575px) {
  .ao-yoga-prod-title {
    font-size: 18px;
  }
}


.ao-why-choo-area {
  position: relative;
}

.ao-why-choo-area .ao-section-head-tagline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(235, 247, 244, 0.35);
}

.ao-why-choo-area .ao-section-head-tagline:before {
  background-color: rgba(235, 247, 244, 0.35);
  animation: wooo 3.5s infinite;
}

.ao-why-choo-area .ao-section-head-tagline:after {
  background-color: rgba(235, 247, 244, 0.35);
  animation: wooo 3.5s infinite;
}


.ao-why-choo-area .container {
  position: relative;
  z-index: 1;
}

.ao-why-choo-box {
  padding: 30px;
  background: #b8d1aa;
  border-radius: 20px;
  position: relative;
  margin-bottom: 30px;
  color: #fff;
  transition: all 0.4s linear;
}

.ao-why-choo-box:last-child {
  margin-bottom: 0px;
}

.ao-why-choo-title {
  margin: 0px 15px 0px 0px;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.ao-why-choo-text {
  color: #fff;
  font-size: 18px;
}

.ao-why-choo-link {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px 0px 20px 0px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 40px;
  position: absolute;
  bottom: -2px;
  right: -2px;
}

.ao-why-choo-link:before {
  content: "\e900";
  color: var(--secondary);
  font-size: 30px;
  position: absolute;
  right: -2px;
  top: -30px;
  transform: rotate(0deg);
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.ao-why-choo-link:after {
  content: "\e900";
  color: var(--secondary);
  font-size: 30px;
  position: absolute;
  left: -30px;
  bottom: 0px;
  transform: rotate(0deg);
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.ao-why-choo-link:hover {
  color: #fff;
}


.ao-why-choo-box:hover {
  background: var(--primary);
}

.ao-why-choo-box:hover .ao-why-choo-title {
  color: #222;
}

.ao-why-choo-box:hover .ao-why-choo-text {
  color: #222;
}

.ao-how-it-right {
  display: inline-grid;
  justify-content: flex-end;
}

.ao-how-it-pic {
  width: 340px;
  border-radius: 200px 200px 25px 25px;
  overflow: hidden;
}

.ao-why-bg-pic {
  position: absolute;
  bottom: 50px;
  right: 50px;
}

.ao-why-choo-box:hover {
  transform: scale(0.9);
}

@media only screen and (max-width:1600px) {
  .ao-why-bg-pic {
    width: 24%;
  }
}

@media only screen and (max-width:1200px) {
  .ao-why-choo-box {
    padding: 40px;
  }
}

@media only screen and (max-width:991px) {
  .ao-how-it-right {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
}

@media only screen and (max-width:575px) {
  .ao-why-choo-title {
    font-size: 18px;
  }
}



.ao-our-testimo-area .container {
  position: relative;
  z-index: 1;
}

.ao-our-testimo-box {
  padding: 40px 40px 0px 125px;
  background: #ecf7eb;
  border: 1px solid #fff;
  border-radius: 20px;
  position: relative;
  margin-bottom: 30px;
  color: #fff;
}

.ao-our-testimo-box:last-child {
  margin-bottom: 0px;
}

.ao-our-testimo-icon {
  font-size: 90px;
  line-height: 1;
  color: var(--primary);
  position: relative;
  margin-left: -18px;
}

.ao-our-testimo-icon::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 50px;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.ao-our-testimo-text {
  color: #555;
  font-size: 18px;
  margin-bottom: 50px;
}

.ao-our-testimo-bot {
  display: flex;
  margin-left: -126px;
  margin-bottom: -1px;
  align-items: center;
}

.ao-our-testimo-media {
  width: 100px;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 0px 20px 0px 20px;
  background: #e9f4e4;
  position: relative;
}

.ao-our-testimo-media:before {
  content: "\e900";
  color: #e9f4e4;
  font-size: 30px;
  position: absolute;
  left: -2px;
  top: -30px;
  transform: rotate(90deg);
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.ao-our-testimo-media:after {
  content: "\e900";
  color: #e9f4e4;
  font-size: 30px;
  position: absolute;
  right: -30px;
  bottom: 0px;
  transform: rotate(90deg);
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.ao-our-testimo-pic {
  width: 75px;
  height: 75px;
  border-radius: 100%;
  overflow: hidden;
}

.ao-our-testimo-pic img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
  object-position: center;
}

.ao-our-testimo-info {
  padding-left: 25px;
}

.ao-our-testimo-name {
  margin: 0px 0px 0px 0px;
  color: #222;
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1;
}

.ao-our-testimo-posin {
  color: #616161;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  align-items: center;
}

.ao-our-testimo-posin i {
  font-size: 8px;
  color: var(--primary);
  margin-right: 5px;
}

.ao-yoga-categori-area {
  border-radius: 30px;
  padding: 60px 30px;
}

.ao-yoga-categori-box {
  display: flex;
  align-items: center;
}

.ao-yoga-categori-box img {
  animation: spin 10s linear infinite;
}

.ao-our-categori-name {
  padding-left: 20px;
  font-size: 25px;
  color: #222;
  text-transform: uppercase;
  font-weight: 600;
}


.ao-our-testimo-icon {
  width: auto !important;
  height: 40px;
}

.ao-our-testimo-icon img {
  width: auto !important;
  height: 40px;
}

@media only screen and (max-width:575px) {
  .ao-yoga-categori-area {
    padding: 36px 20px;
  }

  .ao-our-testimo-icon::after {
    display: none;
  }

  .ao-our-testimo-name {
    font-size: 18px;
  }

  .ao-our-categori-name {
    font-size: 18px;
  }
}


.ao-our-team-left {
  max-width: 424px;
}

.ao-our-team-box {
  border: 1px solid #fff;
  padding: 30px;
  background: #ecf7eb;
  border-radius: 30px;
  position: relative;
}

.ao-our-team-pic {
  position: relative;
  height: 460px;
  border-radius: 30px 30px 30px 30px;
  border: 1px solid #ebf7f4;
  margin-bottom: 30px;
  overflow: hidden;
}

.ao-our-team-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 30px 30px 30px 30px;
}

.ao-our-team-pic:hover img {
  transform: scale(1.1);
  transition: all 0.2s linear;
}

.ao-our-team-curve {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px 0px 20px 0px;
  background: #ecf7eb;
  color: var(--secondary);
  font-size: 40px;
  position: absolute;
  bottom: -2px;
  right: -2px;
}

.ao-our-team-curve:before {
  content: "\e900";
  color: #ecf7eb;
  font-size: 30px;
  position: absolute;
  right: -2px;
  top: -29px;
  transform: rotate(0deg);
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.ao-our-team-curve:after {
  content: "\e900";
  color: #ecf7eb;
  font-size: 30px;
  position: absolute;
  left: -30px;
  bottom: 0px;
  transform: rotate(0deg);
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.ao-our-team-bot {
  padding-right: 50px;
  position: relative;
}

.ao-our-team-name {
  margin: 0px 0px 0px 0px;
  color: #222;
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1;
}

.ao-our-team-posin {
  color: #616161;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  align-items: center;
}

.ao-our-team-posin i {
  font-size: 8px;
  color: var(--primary);
  margin-right: 5px;
  margin-top: 3px;
}

.ao-team-social-icons {
  display: flex;
  list-style: none;
  margin: 0;
  position: absolute;
  top: -10px;
  right: -25px;
  transform: rotate(-90deg);
  transform-origin: top;
}

.ao-team-social-icons li {
  margin-right: 20px;
  font-size: 15px;
  font-weight: 600;
}

.ao-team-social-icons li:last-child {
  margin-right: 0px;
}

.ao-team-social-icons li a {
  text-transform: uppercase;
  color: #222;
}

.ao-team-social-icons li a:hover {
  color: var(--primary);
}


@media only screen and (max-width:991px) {
  .ao-our-team-left {
    margin-bottom: 50px;
  }

  .ao-team-social-icons {
    right: -10px;
  }

  .ao-team-social-icons li {
    margin-right: 15px;
  }

  .ao-our-team-box {
    padding: 20px;
  }
}

@media only screen and (max-width:575px) {
  .ao-why-choo-title {
    font-size: 18px;
  }

  .ao-our-testimo-box {
    padding: 30px 30px 0px 30px;
  }

  .ao-our-testimo-bot {
    margin-left: -31px;
  }

  .ao-our-testimo-box {
    margin-bottom: 30px !important;
  }

  .ao-our-team-name {
    font-size: 18px;
  }

}



.ao-our-staff-box {
  position: relative;
}

.ao-our-staff-pic {
  position: relative;
  height: 460px;
  border-radius: 30px 30px 30px 30px;
  border: 1px solid #f9f7ff;
  margin-bottom: 0px;
  overflow: hidden;
}

.ao-our-staff-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 30px 30px 30px 30px;
  transition: all 0.2s linear;
}

.ao-our-staff-pic:hover img {
  transform: scale(1.1);
}


.ao-lats-news-area {
  position: relative;
}

.f-margin {
  margin-bottom: 30px;
}

.ao-lats-news-box {
  padding: 30px;
  /* background: #f3efff; */
  border: 1px solid #fff;
  border-radius: 20px;
  position: relative;
  margin-bottom: 30px;
  color: #fff;
}

.ao-lats-news-box .ao-lats-news-pic {
  border-radius: 30px;
  overflow: hidden;
}

.ao-lats-news-box .ao-lats-news-pic img {
  border-radius: 30px;
  width: 100%;
}

.ao-lats-news-box .ao-lats-news-pic:hover {
  border-radius: 30px;
}

.ao-lats-news-box .ao-lats-news-pic img {
  border-radius: 30px;
  width: 100%;
  transition: all 0.2s linear;
}

.ao-lats-news-box .ao-lats-news-pic:hover img {
  border-radius: 30px;
  width: 100%;
  transform: scale(1.1);
}


.ao-lats-news-box .ao-lats-news-info {
  padding-top: 30px;
}

.ao-lats-news-box .ao-lats-news-title a {
  color: #222;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
}

.ao-lats-news-box .post-meta {
  margin-bottom: 25px;
}

.ao-lats-news-box .post-meta ul {
  margin: 0px;
  line-height: 1;
}

.ao-lats-news-box .post-meta ul li {
  color: #222;
  position: relative;
  display: inline-block;
  margin-right: 5px;
  text-transform: uppercase;
  margin-left: 25px;
  margin-right: 10px;
}

.ao-lats-news-box .post-meta ul li:after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 5px;
  width: 15px;
  height: 2px;
  background: var(--primary);
  margin-right: 10px;
}

.ao-lats-news-btn {
  padding-top: 30px;
  border-top: 1px solid #b7b7d4;
}

.ao-lats-news-btn {
  padding-top: 30px;
  border-top: 1px solid #b7b7d4;
}

.ao-lats-news-btnlink {
  text-transform: uppercase;
  color: #000;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.ao-lats-news-btnlink i {
  margin-left: 5px;
  font-size: 20px;
}

@media only screen and (max-width:991px) {
  .ao-lats-news-box {
    padding: 20px;
  }
}

@media only screen and (max-width:767px) {
  .ao-our-staff-box {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width:575px) {
  .ao-lats-news-box .post-meta ul li {
    margin-left: 15px;
    margin-right: 10px;
    margin-bottom: 5px;
  }

  .ao-lats-news-box .post-meta ul li::after {
    bottom: 4px;
    width: 6px;
    height: 6px;
  }
}



.ao-site-footer {
  background-color: var(--secondary);
  border-radius: 30px;
}

.footer-top {
  padding: 50px 0px 50px 0px;
  background-color: var(--primary);
  border-radius: 30px 30px 0px 0px;
  position: relative;
  z-index: 1;
}

.footer-top-left {
  display: flex;
  justify-content: flex-start;
}

.footer-top-right {
  display: flex;
  justify-content: flex-end;
}

@media only screen and (max-width:991px) {
  .footer-top-left h2 {
    font-size: 24px;
    margin: 0px;
  }
}

@media only screen and (max-width:991px) {
  .footer-top-left {
    margin-bottom: 30px;
  }

  .footer-top-right {
    justify-content: flex-start;
  }

  .ao-foo-top-animate-pic {
    left: 80% !important;
  }
}

.footer-main {
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
  background-image: url("../images/home1/banner/banner-bg.jpg");
  border-radius: 0px 0px 30px 30px;
  overflow: hidden;
}

.footer-main-top {
  padding: 120px 0px 65px;
  position: relative;
  z-index: 1;
}

.aon-f-title-2 {
  font-size: 26px;
  color: #fff;
  margin-bottom: 55px;
}

#news-latter {
  position: relative;
  margin-bottom: 55px;
}

#news-latter .form-control {
  background: none;
  font-size: 16px;
  padding: 10px 0px;
  border: none;
  border-bottom: 1px solid var(--primary);
  border-radius: 0;
}

#news-latter .form-control::placeholder {
  color: #fff;
  opacity: 1;
}

#news-latter .form-control::-ms-input-placeholder {
  color: #fff;
}

#news-latter .news-latter-btn {
  position: absolute;
  top: 11px;
  right: 0px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  border: none;
  font-size: 21px;
  line-height: 1;
  border-radius: 5px;
  width: 40px;
  height: 40px;
}

.aon-ftr-info-wrap.f-margin {
  padding-left: 40px;
}

.aon-ftr-info {
  margin: 0px;
  color: #fff;
  list-style: none;
}

.aon-ftr-info li {
  margin-bottom: 20px;
}

.aon-ftr-info li a {
  color: #fff;
}

.aon-ftr-info li a:hover {
  color: #fff;
}

.aon-ftr-info .aon-f-title-2 {
  margin-bottom: 5px;
}

.aon-ftr-info li p {
  color: #706C83;
  margin-bottom: 5px;
}

.aon-ftr-info li p.hilite {
  color: #cf480d;
}

@media only screen and (max-width:1200px) {
  .aon-ftr-info-wrap.f-margin {
    padding-left: 0px;
  }
}


.aon-widget-foo-list-2 {
  list-style: none;
  margin: 0px;
  display: flex;
  flex-wrap: wrap;
}

.aon-widget-foo-list-2 li {
  padding: 0px 0px 0px 0px;
  display: block;
  width: 50%;
  margin-bottom: 20px;
}

.aon-widget-foo-list-2 li a {
  color: #fff;
  font-size: 16px;
}

.aon-widget-foo-list-2 li a:hover {
  color: var(--primary);
}


.footer-main-bot {
  background-color: rgba(255, 255, 255, 0.22);
  padding: 15px 0px;
  position: relative;
  z-index: 2;
}

.ao-copyright-line {
  color: #fff;
  font-size: 16px;
}

.aon-social-icon-2 {
  list-style: none;
  margin: 0px;
  display: flex;
  justify-content: center;
}

.aon-social-icon-2 li {
  display: inline-block;
  margin: 0px 10px;
}

.aon-social-icon-2 li:last-child {
  margin-right: 0px;
}

.aon-social-icon-2 li a {
  color: #fff;
  font-size: 22px;
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 30px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aon-social-icon-2 li a:hover {
  color: var(--secondary);
  background: var(--primary);
  border: 2px solid var(--primary);
}

.aon-privacy-links {
  list-style: nono;
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: flex-end;
}

.aon-privacy-links li {
  display: inline-flex;
  padding: 0px 35px;
  border-right: 1px solid #fff;
  line-height: 1;
  margin: 0px;
  font-size: 16px;
}

.aon-privacy-links li:last-child {
  border-right: none;
  padding-right: 0px;
}

.aon-privacy-links li a {
  color: #fff;
}

.aon-privacy-links li a:hover {
  color: var(--primary);
}

.ao-foo-animate-pic1 {
  position: absolute;
  top: 30px;
  right: 11vw;
  width: 346px;
  height: 346px;
}

.ao-foo-animate-pic2 {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 30%
}

.ao-foo-top-animate-pic {
  position: absolute;
  bottom: 40px;
  left: 50%;
  width: auto;
}

@media only screen and (max-width:991px) {
  .ao-copyright-line {
    color: #fff;
    font-size: 16px;
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }

  .aon-social-icon-2 {
    list-style: none;
    margin: 0px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    text-align: center;
  }

  .aon-privacy-links {
    margin: 0px 0px 10px;
    justify-content: center;
  }

  .aon-f-title-2 {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width:767px) {
  .ao-foo-animate-pic1 {
    top: auto;
    right: 10vw;
    bottom: 30px;
  }
}

@media only screen and (max-width:575px) {
  .aon-privacy-links li {
    display: inline-flex;
    padding: 0px 10px;
  }

  .ao-foo-animate-pic1 {
    top: auto;
    right: 10%;
    width: 80%;
  }
}

/*================
	Home Two
================*/
.header-style-2 .navbar-collapse {
  justify-content: center;
}

.header-style-2 .header-nav .nav>li>a {
  color: #444444;
  font-size: 15px;
  padding: 15px 30px;
  cursor: pointer;
}

@media only screen and (max-width:1200px) {
  .header-style-2 .header-nav .nav>li>a {
    padding: 15px 15px;
  }
}


.ao-section2-head {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 50px;
}

.ao-section2-head-tagline {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 500;
  position: relative;
  margin-bottom: 20px;
  margin-left: 24px;
  margin-right: 24px;
  display: inline-flex;
  line-height: 1;
}

.ao-section2-head-tagline:before {
  content: "";
  position: absolute;
  top: 0px;
  left: -24px;
  width: 18px;
  height: 14px;
  display: block;
  background: url("../images/home2/icon.png");
  animation: wooo 3.5s infinite;
}

.ao-section2-head-tagline:after {
  content: "";
  position: absolute;
  top: 0px;
  right: -24px;
  width: 18px;
  height: 14px;
  display: block;
  background: url("../images/home2/icon.png");
  animation: wooo 3.5s infinite;
}

.ao-section2-head-title {
  margin-bottom: 30px;
}

.ao-section2-head p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width:1200px) {
  .ao-section2-head-title {
    font-size: 48px;
  }
}

@media only screen and (max-width:767px) {
  .ao-section2-head-title {
    font-size: 36px;
  }
}

@media only screen and (max-width:575px) {
  .ao-section2-head-title {
    font-size: 26px;
  }
}


.ao-section3-head {
  margin-bottom: 0px;
}

.ao-section3-head-tagline {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 500;
  position: relative;
  margin-bottom: 20px;
  margin-left: 24px;
  margin-right: 24px;
  display: inline-flex;
  line-height: 1;
}

.ao-section3-head-tagline:before {
  content: "";
  position: absolute;
  top: 0px;
  left: -24px;
  width: 18px;
  height: 14px;
  display: block;
  background: url("../images/home2/icon.png");
  animation: wooo 3.5s infinite;
}

.ao-section3-head-title {
  margin-bottom: 20px;
}

.ao-section3-head p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ao-section4-head-wrap {
  margin-bottom: 50px;
}

.ao-section4-head-tagline {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 500;
  position: relative;
  margin-bottom: 20px;
  margin-left: 24px;
  margin-right: 24px;
  display: inline-flex;
  line-height: 1;
}

.ao-section4-head-tagline:before {
  content: "";
  position: absolute;
  top: 0px;
  left: -24px;
  width: 18px;
  height: 14px;
  display: block;
  background: url("../images/home2/icon.png");
  animation: wooo 3.5s infinite;
}

.ao-section4-head-title {
  margin-bottom: 0px;
}

.ao-section4-head p {
  margin: 0px;
}

.ao-section4-head-right {
  display: flex;
  justify-content: flex-end;
  padding-top: 50px;
}

@media only screen and (max-width:1200px) {
  .ao-section4-head-title {
    font-size: 46px;
  }
}

@media only screen and (max-width:991px) {
  .ao-section4-head-right {
    justify-content: flex-start;
    padding-top: 30px;
  }
}

@media only screen and (max-width:767px) {
  .ao-section4-head-title {
    font-size: 36px;
  }
}

@media only screen and (max-width:575px) {
  .ao-section4-head-title {
    font-size: 26px;
  }
}



/* Wood Animation */

span.wood-animation img {
  animation: wooo 3.5s infinite;
}

/*wood animation*/
@keyframes wooo {
  0% {
    transform: rotate3d(0, 0, 0);
  }

  50% {
    transform: rotate3d(0, 1, 0, 180deg);
  }

  100% {
    transform: rotate3d(0, 1, 0, 359deg);
  }
}


.ao-top-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: var(--primary);
  color: #000;
  padding: 10px 30px;
  line-height: 1;
}

.top-bar-left {
  max-width: 50%;
  display: flex;
}

.top-bar-address {
  padding: 0px 25px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.top-bar-time {
  padding: 0px 25px;
}

.top-bar-right {
  max-width: 50%;
  display: flex;
  justify-content: flex-start;
}

.top-bar-mail {
  padding: 0px 25px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.top-bar-soical-icon {
  display: flex;
  list-style: none;
  margin: 0px;
  padding: 0px 25px;
}

.top-bar-soical-icon li {
  padding: 0px 7px;
}

.header-style-2 {
  position: relative;
  width: calc(100% + 60px);
  top: -30px;
  left: 0;
  z-index: 999;
  margin: 0px -30px;
}

.header-style-2 .main-bar {
  background: #e3f3ef;
  padding: 10px 50px;
}

@media only screen and (max-width:1280px) {
  .top-bar-address {
    padding: 0px 10px;
  }

  .top-bar-time {
    padding: 0px 10px;
  }

  .top-bar-mail {
    padding: 0px 10px;
  }

  .top-bar-soical-icon {
    padding: 0px 5px;
  }

  .header-style-2 {
    top: -20px;
  }

  .header-style-2 {
    width: calc(100% + 40px);
    margin: 0px -20px;
  }
}

@media only screen and (max-width:991px) {
  .header-style-2 .main-bar {
    padding: 10px 15px;
  }

  .top-bar-left {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .top-bar-right {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.13);
    margin-top: 10px;
  }

  .top-bar-address {
    border-right: none;
    padding: 0px;
  }

  .top-bar-mail {
    border-right: none;
    padding: 0px;
  }

  .top-bar-time {
    padding: 0px;
  }

  .top-bar-soical-icon {
    padding: 0;
  }

  .top-bar-soical-icon li {
    padding: 0px 0px;
    margin-left: 10px;
  }
}

@media only screen and (max-width:767px) {
  .top-bar-left {
    display: none;
  }

  .top-bar-right {
    padding-top: 10px;
    border-top: none;
    margin-top: 0px;
  }

  .header-style-2 {
    width: calc(100% + 20px);
    margin: 0px -10px;
  }

}

.aon-bnrs2-area {
  padding: 0px 30px 0px;
  background-image: url("../images/home1/banner/banner-bg.jpg");
  border-radius: 30px;
  margin-top: -30px;
}

@media only screen and (max-width:1280px) {
  .aon-bnrs2-area {
    margin-top: -20px;
  }
}

@media only screen and (max-width:575px) {
  .aon-bnrs2-area {
    padding: 0px 10px 0px;
  }
}

.aon-bnrs2-area .container {
  max-width: 100%;
}

.aon-bnrs2-area .container .row {
  width: calc(100% + 24px);
}

.aon-bnrs2-left {
  padding: 30px 0px;
}

.ao-baner2-label {
  line-height: 1;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
  font-family: var(--title-family2);
  margin-bottom: 20px;
  position: relative;
  font-weight: 600;
  margin-left: 30px;
  display: table;
}

.ao-baner2-label:before {
  content: "";
  position: absolute;
  top: 0px;
  left: -24px;
  width: 18px;
  height: 14px;
  display: block;
  background: url("../images/home2/banner/icon2.png");
  animation: wooo 3.5s infinite;
}

.ao-baner2-title {
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-right: -50px;
}

.ao-baner2-title span {
  color: #e0b650;
}

.ao-baner2-text {
  font-size: 18px;
  color: #fff;
  margin-bottom: 40px;
}

.ao-baner2-btn {
  display: flex;
}

.ao-follow2-box {
  display: flex;
  margin-left: 30px;
  align-items: center;
}

.ao-follow2-pic {
  width: 50px;
  height: 50px;
  display: inline-flex;
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid #fff;
  margin-left: -10px;
}

.ao-follow2-text {
  margin-left: 10px;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
}

.aon-bnrs2-right {
  position: relative;
  margin-right: 0px;
}

.top-bar2-pic-one {
  position: relative;
  z-index: 1;
  text-align: center;
  top: 0px;
}

.top-bar2-pic-two {
  position: absolute;
  top: 0;
  right: 0;
}

@media only screen and (max-width:1440px) {
  .ao-baner2-title {
    font-size: 50px;
  }
}

@media only screen and (max-width:1280px) {
  .ao-baner2-title {
    font-size: 40px;
  }

  .ao-baner2-text {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width:991px) {
  .ao-baner2-title {
    margin-right: 0px;
  }

  .ao-baner2-title {
    font-size: 28px;
  }

  .top-bar2-pic-one {
    border: 4px solid #e5c466;
    border-radius: 10px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width:575px) {
  .ao-baner2-title {
    font-size: 26px;
  }
}



.ao-featue-area {
  background-color: #e3f3ef;
}

.ao-featue-box {
  border: 1px solid #fff;
  padding: 40px;
  background: #ebf7f4;
  border-radius: 30px;
  position: relative;
  text-align: center;
  transition: all 0.5s linear;
  margin-bottom: 30px;
}

.ao-featue-icon {
  width: 80px;
  height: 80px;
  background: #eaefdf;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  margin: 0px auto 20px;
  transition: all 0.5s linear;
}

.ao-featue-text {
  margin-bottom: 20px;
}

.ao-featue-box:hover {
  transform: scale(0.9);
}



.ao-featue-link {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  color: #1f3d2f;
  font-size: 16px;
}

.ao-featue-link i {
  margin-left: 5px;
  font-size: 20px;
}

.ao-featue-box:hover {
  background-color: #fff;
  border: 1px solid var(--secondary);
}

.ao-featue-box:hover .ao-featue-icon {
  background-color: var(--secondary);
}

.ao-featue-box:hover .ao-featue-icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7484%) hue-rotate(279deg) brightness(111%) contrast(104%);
}

.ao-about-left-area {
  padding-right: 30px;
  margin-left: -30px;
}

.ao-about-yogar-list {
  list-style: none;
  margin: 0px 0px 30px;
}

.ao-about-yogar-list li {
  font-size: 26px;
  font-weight: 600;
  color: #222;
  padding: 10px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-family: var(--title-family2);
}

.ao-about-yogar-list li:last-child {
  border-bottom: none;
}

@media only screen and (max-width:991px) {
  .ao-about-left-area {
    padding-right: 0px;
    margin-left: 0px;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width:575px) {
  .ao-about-yogar-list li {
    font-size: 18px;
  }
}

.ao-yoga-categori2-area {
  border-radius: 0;
  padding: 60px 30px;
  margin: 0px -30px;
}

.ao-yoga-categori2-box {
  display: flex;
  align-items: center;
}

.ao-yoga-categori2-icon {
  width: auto !important;
  height: 40px;
}

.ao-yoga-categori2-icon img {
  width: auto !important;
  height: 40px;
  animation: spin 10s linear infinite;
}

.ao-yoga-categori2-name {
  padding-left: 20px;
  font-size: 28px;
  color: #222;
  text-transform: uppercase;
  font-weight: 600;
}

@media only screen and (max-width:575px) {
  .ao-yoga-categori2-area {
    padding: 30px 30px;
  }

  .ao-yoga-categori2-name {
    font-size: 18px;
  }
}

@media only screen and (max-width:1280px) {
  .ao-yoga-categori2-area {
    margin: 0px -20px;
  }
}

@media only screen and (max-width:767px) {
  .ao-yoga-categori2-area {
    margin: 0px -10px;
  }
}




/*Latest Blog 2*/
.ao-lats-news-box-2 {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 30px;
  height: 490px;
  background: #ddd;
}

.ao-lats-news-pic-2 {
  display: block;
  height: 490px;
  width: 100%;
}

.ao-lats-news-pic-2>a {
  display: block;
  width: 100%;
  height: 100%;
}

.ao-lats-news-pic-2>a>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.2s linear;
}

.ao-lats-news-pic-2:hover>a>img {
  transform: scale(1.2);
}


.ao-lats-news-box-2 .ao-lats-news-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #e3f3ef;
  border-radius: 10px;
  padding: 5px 20px;
}

.ao-lats-news-box-2 .ao-lats-news-date img {
  margin-right: 10px;
}

.ao-lats-news-box-2 .ao-lats-news-info-2 {
  position: absolute;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background-color: #e3f3ef;
  border-radius: 30px;
  padding: 30px;
  text-align: center;
}

.ao-lats-news-box-2 .ao-lats-news-info-2 .ao-lats-news-title2 a {
  font-size: 24px;
}

.ao-lats-news-box-2 .ao-lats-news-info-2 p {
  margin-bottom: 0px;
}

@media only screen and (max-width:1200px) {
  .ao-lats-news-box {
    padding: 20px;
  }

  .ao-lats-news-box-2 .ao-lats-news-info-2 p {
    margin-bottom: 0px;
    line-height: 1.4;
  }

  .ao-lats-news-box-2 .ao-lats-news-info-2 .ao-lats-news-title2 a {
    font-size: 18px;
  }
}

@media only screen and (max-width:991px) {
  .ao-lats-news-box-2 .ao-lats-news-info-2 p {
    margin-bottom: 0px;
    line-height: 1.4;
  }

  .ao-lats-news-box-2 .ao-lats-news-info-2 .ao-lats-news-title2 a {
    font-size: 18px;
  }
}

/*Testimonial Style 2*/
.ao-testimonial-st2-wrap {
  border-radius: 20px;
}

.ao-our-testimo-box2 {
  padding: 0px 120px 0px;
  text-align: center;
}

.ao-our-testimo-box2:last-child {
  margin-bottom: 0px;
}

.ao-our-testimo-text2 {
  color: #555;
  font-size: 16px;
  margin-bottom: 50px;
}

.ao-our-testimo-pic2 {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  overflow: hidden;
  margin: 30px auto 0px;
}

.ao-our-testimo-pic2 img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
  object-position: center;
}

.ao-our-testimo-info2 {
  padding-left: 0px;
}

.ao-our-testimo-name2 {
  margin: 0px 0px 0px 0px;
  color: #222;
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1;
  font-family: var(--title-family2);
}

.ao-our-testimo-posin2 {
  color: #616161;
  font-size: 18px;
  line-height: 1;
}

.ao-our-testimo-box2-rating {
  margin-bottom: 20px;
  line-height: 1;
}

.ao-our-testimo-box2-rating span {
  color: var(--secondary);
  display: inline-flex;
  margin: 0px 5px;
}

@media only screen and (max-width:1200px) {
  .ao-our-testimo-box2 {
    padding: 0px 60px 0px;
  }
}

@media only screen and (max-width:575px) {
  .ao-our-testimo-box2 {
    padding: 0px 0px 0px;
  }

  .ao-our-testimo-text2 {
    margin-bottom: 30px;
  }
}

.owl-btn-rounded .owl-nav button.owl-prev {
  border-radius: 50%;
  background: transparent;
}

.owl-btn-rounded .owl-nav button.owl-next {
  border-radius: 50%;
  background: transparent;
}

/*Pricing*/
.ao-pricing-bx {
  border-radius: 20px;
  border: 1px solid #fff;
  padding: 40px;
  margin-bottom: 30px;
  background: #ecf7eb;
}

.ao-pricing-bx .ao-pricing-bx-top-section {
  border-bottom: 1px solid #c9ddc2;
  padding-bottom: 35px;
  margin-bottom: 25px;
}

.ao-pricing-bx .ao-pricing-bx-top-section .ao-pricing-title {
  font-size: 24px;
  color: #181a17;
  font-weight: 600;
  margin-bottom: 10px;
}

.ao-pricing-bx .ao-pricing-bx-top-section p {
  margin-bottom: 20px;
}

.ao-pricing-bx .ao-pricing-price-bx {
  display: flex;
  align-items: end;
  margin-bottom: 20px;
  font-size: 18px;
  color: #6fbd83;
  font-weight: 600;
}

.ao-pricing-bx .ao-pricing-price-bx .ao-price {
  font-size: 52px;
  color: #5e826a;
  line-height: 1;
  margin: 0px 10px 0px 0px;
  font-weight: 700;
}

.ao-pricing-bx .ao-pricing-bx-top-section .ao-pricing-btn a {
  display: block;
  text-align: center;
  background-color: #5e826a;
  color: #fff;
}

.ao-pricing-bx .ao-pricing-bx-top-section .ao-pricing-btn a:hover {
  background-color: var(--primary);
  color: #000;
}


.ao-checked-list-st-1 {
  list-style: none;
  margin-bottom: 0px;
}

.ao-checked-list-st-1 li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 40px;
}

.ao-checked-list-st-1 li i {
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 22px;
  line-height: 1;
}

.ao-pricing-bx.ao-plan-active {
  border: 2px solid #5e826a;
}

.ao-pricing-bx.ao-plan-active .ao-pricing-bx-top-section .ao-pricing-btn a {
  background-color: var(--primary);
}

.ao-pricing-bx.ao-plan-active .ao-pricing-bx-top-section .ao-pricing-btn a:hover {
  background-color: var(--secondary);
  color: #fff;
}

@media only screen and (max-width:1199px) {
  .ao-pricing-bx .ao-pricing-price-bx {
    display: block;
  }
}

@media only screen and (max-width:575px) {
  .ao-pricing-bx .ao-pricing-price-bx .ao-price {
    font-size: 36px;
  }

  .ao-pricing-bx {
    padding: 30px;
  }
}


/*Upcoming classes*/
.ao-uc-classes-left {
  border-radius: 30px;
  background-color: #e3ecdb;
  padding: 40px;
}

.ao-uc-classes-left .nav {
  display: block;
}

.ao-uc-classes-left .nav .nav-item {
  margin-bottom: 30px;
}

.ao-uc-classes-left .nav .nav-link {
  padding: 0px;
  cursor: pointer;
}

.ao-uc-classes-right {
  margin-left: 50px;
}

.ao-uc-classes-media {
  overflow: hidden;
  border-radius: 30px;
}

.ao-uc-classes-media img {
  width: 100%;
}

@media only screen and (max-width:1365px) {
  .ao-uc-classes-right {
    margin-left: 0px;
  }
}

.ao-up-class-bx {
  border-radius: 30px;
  border: 1px solid #fff;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #616161;
  transition: all 0.5s linear;
}

.ao-up-class-bx .ao-up-class-date {
  text-align: center;
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
}

.ao-up-class-bx .ao-up-class-date:after {
  content: '';
  position: absolute;
  right: 0px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background-color: rgba(97, 97, 97, 0.15);
}

.ao-up-class-bx .ao-up-class-date .ao-date {
  font-size: 52px;
  line-height: 1;
  margin-bottom: 0px;
}

.ao-up-class-bx .ao-up-class-date .ao-month {
  font-size: 16px;
}

@media only screen and (max-width:420px) {
  .ao-up-class-bx .ao-up-class-date:after {
    display: none;
  }
}

.ao-up-class-bx .ao-up-class-info {
  margin-right: 20px;
}

.ao-up-class-bx .ao-up-class-info .ao-title {
  font-size: 24px;
  margin-bottom: 0px;
}

.ao-up-class-bx .ao-up-class-info p {
  margin-bottom: 0px;
}

.ao-up-class-bx .ao-up-cl-btn {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  font-size: 28px;
  transition: all 0.5s linear;
}

.ao-uc-classes-left .nav .nav-link.active .ao-up-class-bx {
  border: 1px solid var(--secondary-btn);
}

.ao-uc-classes-left .nav .nav-link.active .ao-up-class-bx .ao-up-cl-btn {
  border: 1px solid var(--secondary-btn);
  background-color: var(--secondary-btn);
  color: #fff;
  transform: rotate(-45deg);
}

@media only screen and (max-width:991px) {
  .ao-uc-classes-left {
    margin-left: 0px;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width:767px) {
  .ao-uc-classes-left {
    padding: 30px;
  }

  .ao-up-class-bx {
    border-radius: 20px;
    padding: 15px;
  }
}

@media only screen and (max-width:575px) {
  .ao-uc-classes-left {
    padding: 15px;
  }

  .ao-up-class-bx .ao-up-class-info .ao-title {
    font-size: 18px;
  }

  .ao-up-class-bx .ao-up-class-date .ao-date {
    font-size: 28px;
  }

  .ao-up-class-bx .ao-up-cl-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

@media only screen and (max-width:420px) {
  .ao-up-class-bx {
    display: block;
  }

  .ao-up-class-bx .ao-up-class-date {
    margin-right: 0px;
    padding-right: 0px;
  }

  .ao-up-class-bx .ao-up-class-info {
    margin: 10px 0px 0px 0px;
    text-align: center;
  }

  .ao-up-class-btn {
    display: none;
  }
}


/*Video Section*/
.ao-large-vid-swction {
  overflow: hidden;
  border-radius: 30px;
  position: relative;
}

.ao-large-vid-swction img {
  width: 100%;
}

.ao-large-vid-swction .vid-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ao-vid-btn {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  border-radius: 50%;
}

.ao-vid-btn i {
  color: #fff;
  font-size: 24px;
}

@media only screen and (max-width:767px) {
  .ao-vid-btn {
    width: 70px;
    height: 70px;
  }
}

@media only screen and (max-width:575px) {
  .ao-large-vid-swction img {
    height: 400px;
    object-fit: cover;
    object-position: center;
  }
}

/*______Play button circle Animation______*/
.btn-animation {
  position: relative;
}

.btn-animation::before {
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #000;
  content: '';
  animation: pulse 1s infinite;
  border: 8px solid var(--secondary);
}

@keyframes pulse {
  from {
    transform: scale(1);
    opacity: .4;
  }

  to {
    transform: scale(1.5);
    opacity: 0;
  }
}

/*Our Classes*/
.site-button-underline {
  text-transform: uppercase;
  display: inline-flex;
  border-bottom: 1px solid #000;
  font-size: 16px;
  color: #1f3d2f;
}

.ao-our-classes-st1-wrap {
  border-radius: 20px;
}

.ao-our-classes-bx {
  border-radius: 20px;
  border: 1px solid #fff;
  padding: 30px;
  background-color: #e3f3ef;
  transition: all 0.2s linear;
}

.ao-our-classes-bx .ao-title {
  font-size: 24px;
}

.ao-our-classes-bx .ao-icon-media {
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary);
  border-radius: 50%;
}

.ao-our-classes-bx .ao-our-class-summery {
  margin-bottom: 40px;
}

.ao-our-classes-bx .ao-our-class-summery ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.ao-our-classes-bx .ao-our-class-summery ul li {
  margin-right: 20px;
  font-size: 15px;
  color: #181a17;
}

.ao-our-classes-bx .ao-our-class-summery ul li i {
  margin-right: 10px;
  font-size: 14px;
  color: var(--secondary);
}

.ao-our-classes-bx:hover {
  transform: scale(0.9);
}

@media only screen and (max-width:767px) {
  .ao-our-classes-bx .ao-our-class-summery {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width:575px) {
  .ao-our-classes-bx .ao-title {
    font-size: 18px;
  }
}


/*====================
inner banner 
=====================*/
.breadcumb-area {
  background: url(../images/inner-banner/pic1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 200px 0 136px;
  overflow: hidden;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}

.breadcrumb-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-color: #759d82;
  opacity: 0.8;
  z-index: -1;
}

.breadcumb-content {
  text-align: center;
}

.breadcumb-content h4 {
  font-size: 52px;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 20px;
  font-family: var(--title-family2);
  font-weight: 700;
}

.breadcumb-content ul li {
  display: inline-block;
  color: #ffff;
  font-family: var(--title-family2);
  text-transform: uppercase;
  font-size: 14px;
  padding-right: 10px;
}

.breadcumb-content ul li:last-child {
  padding-right: 0px;
}

.breadcumb-content ul li a {
  display: inline-block;
  color: var(--primary-color);
}

.breadcumb-content-list {
  text-transform: uppercase;
  font-size: 14px;
  color: #181a17;
  padding: 8px 24px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.40);
  border-radius: 0px 50px 50px 0px;
  background-color: var(--secondary);
  display: inline-flex;
  margin: 0px 0px 0px 20px;
  position: relative;
  font-weight: 600;
}

.breadcumb-content-list:before {
  position: absolute;
  left: -20px;
  top: 50%;
  width: 5px;
  height: 20px;
  background-color: var(--secondary);
  border-radius: 2px;
  content: '';
  transform: translateY(-50%);
}

.breadcumb-content-list:after {
  position: absolute;
  left: -10px;
  top: 50%;
  width: 5px;
  height: 30px;
  background-color: var(--secondary);
  border-radius: 2px;
  content: '';
  transform: translateY(-50%);
}

.inner-page-heading {
  font-size: 44px;
}

@media only screen and (max-width:767px) {
  .breadcumb-content h4 {
    font-size: 28px;
  }
}

@media only screen and (max-width:420px) {
  .breadcumb-area {
    padding: 150px 10px 75px 10px;
  }
}

/*
====================
 Blog Details Area Css 
====================*/
.blog-details-area {
  padding: 120px 0px 120px;
}

.meta-blog ul {
  list-style: none;
  margin: 0px;
}

.blog-details-thumb {
  border-radius: 20px;
  overflow: hidden;
}

.blog-details-thumb img {
  width: 100%;
}

.blog-details-content {
  margin-top: 35px;
}

.blog-details-content .meta-blog {
  margin-bottom: 10px;
}

.blog-details-area .meta-blog ul li {
  display: inline-block;
  color: #616161;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 16px;
  margin-right: 4px;
}

.blog-details-title {
  display: inline-block;
  font-size: 32px;
  line-height: 1.2;
  color: #1e1e1e;
  font-weight: 600;
  font-family: var(--title-family2);
}

.blog-details-desc p {
  width: 97%;
  margin: 10px 0 27px;
}

.blog-details-title h4 {
  font-size: 28px;
  margin-bottom: 14px;
  margin-top: 48px;
}

.blog-details-rules-item {
  margin-top: 34px;
}

.blog-details-rules-item ul {
  list-style: none;
}

.blog-details-rules-item ul li {
  color: #1e1e1e;
  font-size: 16px;
  margin-bottom: 10px;
  font-family: var(--title-family2);
  font-weight: 500;
}

.blog-details-rules-item ul li i {
  color: var(--secondary);
  font-size: 16px;
  margin-right: 9px;
}

.blog-details-thumb-2 img {
  width: 100%;
  margin-top: 39px;
  margin-bottom: 8px;
  border-radius: 20px;
}

.row.akta-boder-add-korlam {
  border-top: 1px solid #22222214;
  padding-top: 26px;
  border-bottom: 1px solid #22222214;
  padding-bottom: 26px;
  margin-bottom: 66px;
}

.blog-details-tag ul {
  margin: 0px;
}

.blog-details-tag ul li {
  display: inline-block;
  color: #101010;
  font-size: 18px;
  font-family: var(--title-family2);
  margin-right: 13px;
  margin-bottom: 3px;
}

.blog-details-tag ul li a {
  display: inline-block;
  color: #616161;
  font-size: 15px;
  border: 1px solid #d8d8d8;
  padding: 2px 20px;
  border-radius: 8px;
  transition: 0.5s;
  background-color: #fff;
}

.blog-details-tag ul li a:hover {
  background: var(--primary);
  color: #fff;
}

.blog-details-social {
  text-align: right;
}

.blog-details-social ul {
  margin: 0px;
}

.blog-details-social ul li {
  display: inline-block;
  color: #101010;
  font-size: 18px;
  font-family: var(--title-family2);
}

.blog-details-social ul li a {
  display: inline-block;
  color: #1e1e1e;
  font-family: var(--title-family2);
  text-transform: uppercase;
  font-size: 14px;
  margin-left: 14px;
  transition: 0.5s;
  position: relative;
}

.blog-details-social ul li a:hover {
  color: var(--primary-color);
}

.blog-details-social ul li a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  left: 0;
  bottom: 2px;
  background: var(--primary);
  transition: 0.5s;
}

.blog-details-social ul li a:hover:before {
  width: 100%;
}

.blog-related-box {
  display: flex;
  background: #fff;
  align-items: center;
  padding: 30px 20px 30px 20px;
  gap: 19px;
  border-radius: 20px;
  border: 1px solid var(--secondary);
}

.blog-related-thumb {
  min-width: 80px;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
}

.blog-related-box.style-two {
  text-align: right;
  padding: 30px 20px 30px 20px;
}

.blog-related-content a {
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  color: #1e1e1e;
  font-weight: 500;
  font-family: var(--title-family2);
}

.blog-related-content p {
  font-size: 14px;
  margin: 0;
}

.blog-related-box:hover {
  background-color: #e3ecdb;
  border: 1px solid #fff;
}

@media only screen and (max-width:991px) {
  .blog-related-box {
    padding: 20px 15px 20px 15px;
    gap: 19px;
    border-radius: 20px;
    border: 1px solid var(--secondary);
  }

  .blog-details-social {
    text-align: left;
  }

  .blog-details-tag {
    margin-bottom: 20px;
  }

  .blog-details-title h4 {
    margin-top: 0px;
  }
}

@media only screen and (max-width:767px) {
  .blog-details-title {
    font-size: 28px;
  }

  .blog-related-box.style-two {
    margin-top: 30px;
  }
}

@media only screen and (max-width:400px) {
  .blog-related-box {
    padding: 10px;
    gap: 10px;
  }

  .blog-related-box.style-two {
    padding: 10px;
  }

  .blog-related-thumb {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .blog-related-content a {
    font-size: 14px;
    line-height: 18px;
  }
}



/* Comment CSS */

.blog-details-comment-title h4 {
  font-size: 26px;
  font-weight: 500;
  color: #1e1e1e;
  margin: 83px 0 28px;
}

.blog-details-comment {
  margin-bottom: 19px;
  position: relative;
  border: 1px solid #d8d8d8;
  padding: 29px 29px 25px;
  background-color: #fff;
  border-radius: 30px;
}

.blog-details-comment.style-two {
  margin-left: 105px;
}

.blog-details-comment-thumb {
  float: left;
  margin-right: 30px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}

.blog-details-comment-content {
  overflow: hidden;
}

.blog-details-comment-content h2 {
  font-size: 18px;
  margin-top: 0;
  display: inline-block;
  margin-right: 40px;
  font-weight: normal;
  position: relative;
  margin-bottom: 0px;
}

.blog-details-comment-content h2:after {
  content: '';
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #000;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}

.blog-details-comment-content p {
  font-size: 15px;
  margin: 8px 0 0;
}

.blog-details-comment-reply {
  position: absolute;
  right: 22px;
  top: 21px;
}

.blog-details-comment-reply a {
  font-size: 15px;
  color: #1e1e1e;
  display: inline-block;
  text-transform: uppercase;
  border-bottom: 1px solid #1e1e1e;
}

.blog-details-comment-reply a:hover {
  color: var(--secondary);
}

.blog-details-comment.reply {
  margin-left: 70px;
  padding-top: 35px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.blog-details-contact-title h4 {
  font-size: 26px;
  font-weight: 500;
  padding-bottom: 22px;
  color: #1e1e1e;
  margin: 83px 0 10px;
}

.blog-details-area .contact-input-box input {
  background: #f8f8f8;
  border: transparent;
  width: 100%;
  height: 60px;
  padding: 22px;
  outline: 0;
  margin-bottom: 11px;
  border-radius: 10px;
}

.blog-details-area .contact-input-box textarea {
  background: #f8f8f8;
  border: transparent;
  width: 100%;
  height: 170px;
  padding: 12px 22px 0;
  outline: 0;
  margin-top: 11px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.input-check-box span {
  font-size: 15px;
  margin-left: 7px;
}

.blog-details-submi-button {
  margin-top: 40px;
}


@media only screen and (max-width:1200px) {
  .blog-details-submi-button {
    margin-bottom: 50px;
  }

  .blog-details-area {
    padding: 80px 0px 30px;
  }
}

@media only screen and (max-width:767px) {
  .blog-details-comment-reply {
    position: absolute;
    right: auto;
    top: 104px;
    left: 43px;
  }

  .blog-details-comment.style-two {
    margin-left: 50px;
  }

  .blog-details-comment-thumb {
    margin-right: 20px;
  }

  .blog-details-contact-title h4 {
    margin: 40px 0 10px;
  }

}

@media only screen and (max-width:420px) {
  .blog-details-comment {
    padding: 20px;
  }

  .blog-details-comment-thumb {
    float: none;
    margin: 0px auto 30px;
  }

  .blog-details-comment-reply {
    top: auto;
    left: auto;
    right: 20px;
    bottom: 20px;
  }

  .blog-details-comment-content p {
    margin-bottom: 30px;
  }

  .blog-details-comment.style-two {
    margin-left: 0px;
  }
}



/*Blog-details-sidbar*/

.widget_search {
  padding: 13px 40px 37px;
  border-radius: 20px;
  margin-bottom: 30px;
  background: #e3ecdb;
  border: 1px solid #fff;
}

.widget_search form {
  position: relative;
  margin-top: 25px;
}

.widget_search input {
  border-radius: 10px;
  padding-left: 20px !important;
  height: 60px;
  width: 100% !important;
  position: relative;
  color: #012549;
  outline: 0 !important;
  border: transparent !important;
}

@media only screen and (max-width:1199px) {
  .widget_search {
    padding: 20px
  }

  .widget_search form {
    margin-top: 0px;
  }
}

button.icons {
  border: 0;
  font-size: 16px;
  position: absolute;
  right: 14px;
  top: 18px;
  color: #1e1e1e;
  background: transparent;
  opacity: 0.7;
}

/* Sidber Recent Post */

.widget-categories-box {
  background: #e3ecdb;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 21px 37px 15px;
  margin-bottom: 32px;
}

@media only screen and (max-width:1199px) {
  .widget-categories-box {
    padding: 20px;
  }
}

.categories_title h4 {
  font-size: 22px;
  color: #1e1e1e;
  font-weight: 500;
  margin-bottom: 42px;
  position: relative;
  font-family: var(--title-family2);
}

.categories_title h4:before {
  position: absolute;
  content: "";
  width: 55px;
  height: 1px;
  left: 0;
  bottom: -6px;
  background: #1e1e1e;
}

.sidber-widget-recent-post {
  margin-bottom: 27px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.sidber-widget-recent-post .recent-widget-thumb {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 6px;
  overflow: hidden;
}

@media only screen and (max-width:360px) {
  .sidber-widget-recent-post {
    gap: 10px;
  }

  .sidber-widget-recent-post .recent-widget-thumb {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
}

.recent-widget-content a {
  transition: 0.5s;
  color: #101010 !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  display: block;
  font-family: var(--title-family2);
}

.recent-widget-content a:hover {
  color: var(--secondary);
}

@media only screen and (max-width:360px) {
  .recent-widget-content a {
    font-size: 14px;
    line-height: 20px;
  }
}


.sidber-widget-recent-post:hover .recent-widget-content a {
  color: var(--primary-color) !important;
}

.recent-widget-content p {
  font-size: 14px;
  margin: 0;
}

.widget-catefories-list ul {
  list-style: none;
}

.widget-catefories-list ul li {
  border-bottom: 1px solid rgba(16, 16, 16, 0.1);
  margin-bottom: 11px;
  padding-bottom: 14px;
}

.widget-catefories-list ul li:last-child {
  border: transparent;
  margin: 0px;
  padding: 0px;
}

.widget-catefories-list ul li a {
  display: block;
  color: #1e1e1e;
  font-weight: normal;
  font-family: var(--title-family2);
  font-size: 16px;
  transition: 0.5s;
  padding-right: 20px;
  position: relative;
}

.widget-catefories-list ul li a:after {
  position: absolute;
  transition: 0.5s;
  right: 0px;
  top: -2px;
  transform: translateX(20px);
  font-family: bootstrap-icons !important;
  content: "\f138";
  opacity: 0;
  font-size: 18px;
}

.widget-catefories-list ul li a:hover {
  color: var(--secondary);
}

.widget-catefories-list ul li a:hover:after {
  transform: translateX(0px);
  opacity: 1;
}

.widget-catefories-list ul li i {
  display: inline-block;
  font-size: 14px;
  margin-right: 9px;
  transition: 0.5s;
}

.widget-catefories-list ul li a:hover i {
  color: var(--primary-color);
}

.widget-catefories-tags a {
  display: inline-block;
  color: #101010;
  font-weight: 500;
  font-family: var(--title-family2);
  background: #fff;
  padding: 6px 19px;
  margin: 6px 3px;
  position: relative;
  z-index: 1;
  font-size: 15px;
  border-radius: 5px;
  transition: 0.5s;
}

.widget-catefories-tags a:hover {
  background-color: var(--secondary);
  color: #fff;
}

.widget-catefories-tags a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 50%;
  top: 0;
  background: var(--primary-color);
  transition: 0.5s;
  z-index: -1;
}

.widget-catefories-tags a:hover:before {
  width: 100%;
  left: 0;
}

.blog-side-bar-thumb {
  padding: 28px 54px 6px;
  background: #F8F6F3;
  margin-bottom: 31px;
}

.single-blog-sibar-box {
  background: #ffff;
  padding: 0 0 40px;
  text-align: center;
  border-radius: 170px;
  margin-bottom: 26px;
}

.sibar-thumb img {
  width: 100%;
}

.sidbar-team-content {
  padding: 0 46px 0;
}

.sidbar-team-contentt h4 {
  font-size: 22px;
  text-transform: uppercase;
  margin: 27px 0 0;
}

.sidbar-team-content p {
  color: #686868;
  margin: 8px 0 22px;
  font-size: 18px;
  font-family: var(--fonts-title);
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 16px;
}

.seibar-social-icon ul li {
  display: inline-block;
}

.seibar-social-icon ul li i {
  display: inline-block;
  background: #fff;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  font-size: 15px;
  color: var(--primary-color);
  margin: 0 2px 0;
  border: 1px solid #6868686e;
  transition: 0.5s;
}

.seibar-social-icon ul li i:hover {
  background: var(--primary-color);
  color: #fff;
}

/*Contact Us Page Start*/
.con-icon-bx {
  text-align: center;
  border-radius: 20px;
  border: 1px solid #fff;
  background-color: #eefaed;
  padding: 40px;
  margin-bottom: 30px;
}

.single-contact-form {
  background: #dbe6d6;
  padding: 5%;
  border-radius: 25px;
}

.con-icon-bx .con-icon-media {
  height: 60px;
  margin: 0px auto 30px;
}

.con-icon-bx .con-icon-bx-title {
  font-size: 22px;
  font-family: var(--title-family2);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.con-icon-bx p {
  font-size: 18px;
  margin-bottom: 0px;
}

.con-icon-bx p:last-child {
  margin-bottom: 0px;
}

@media only screen and (max-width:575px) {
  .con-icon-bx .con-icon-bx-title {
    font-size: 18px;
  }
}

.contact-us-large-media {
  border-radius: 20px;
  overflow: hidden;
  margin-right: 60px;
}

.contact-us-large-media img {
  width: 100%;
}

@media only screen and (max-width:1024px) {
  .contact-us-large-media {
    margin-right: 0px;
  }
}


.single-contact-box {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 41px;
  position: relative;
}

.contact-content {
  margin-bottom: 10px;
}

.contact-content .con-form-title {
  font-size: 40px;
  font-weight: 600;

}

.single-input-box input {
  border: 1px solid #1b343430;
  outline: 0;
  width: 100%;
  height: 60px;
  position: relative;
  padding: 0 21px;
  border-radius: 6px;
  background-color: #fff;
  color: #181a17;
}

.single-input-box input::placeholder {
  color: #868681;
}

.single-input-box textarea::placeholder {
  color: #868681;
}

.single-input-box textarea {
  border: 1px solid #1b343430;
  outline: 0;
  width: 100%;
  height: 120px;
  position: relative;
  padding: 9px 19px;
  border-radius: 6px;
  background-color: #fff;
  color: #181a17;
}

.single-input-box textarea::placeholder {
  color: #acacac;
}

.google-map iframe {
  width: 100%;
  height: 460px;
  border-radius: 30px;
}

.home-contact-bg {
  background: #d0e2cd;
  border-radius: 30px;
}

@media only screen and (max-width:1200px) {
  .contact-us-large-media {
    margin-bottom: 30px;
  }

  .contact-content .con-form-title {
    font-size: 46px;
  }

  .con-icon-bx {
    padding: 30px 15px;
  }
}

@media only screen and (max-width:1024px) {
  .contact-content .con-form-title {
    font-size: 36px;
  }
}

@media only screen and (max-width:991px) {
  .contact-us-large-media {
    margin-right: 0px;
  }

}

@media only screen and (max-width:575px) {
  .contact-content .con-form-title {
    font-size: 26px;
  }

  .logo-header .logo-header-inner img {
    max-width: 70%;
  }

  .aon-bnrs-left {
    text-align: center;
  }

  .ygr-title-head-section {
    text-align: center;
  }

  .ao-section-head.ao-left-align {
    text-align: center;
  }
}



/*Checked Input*/
.form-check-input {
  width: 18px;
  height: 18px;
  background: transparent;
  border: 1px solid var(--primary);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: #e5c466;
}

.form-check-input:checked[type=radio] {
  background-image: none;
  position: relative;
}

.form-check-input:checked[type=radio]:after {
  background-color: #e5c466;
  width: 10px;
  height: 10px;
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 50%;
}

.form-check-input[type=radio] {
  background-color: transparent;
}

/*Event Section*/

.ao-event-column-section [class*='col-']:nth-child(even) .ao-event-column {
  margin-left: auto;
}

.ao-event-column {
  position: relative;
  max-width: 590px;
  height: 720px;
  background-color: #e3f3ef;
  border-radius: 30px 30px 30px 0px;
  overflow: hidden;
}

.ao-event-column .ao-event-column-info {
  position: absolute;
  bottom: -20px;
  right: 110px;
  left: 0px;
  background-color: #e3f3ef;
  border-radius: 0px 30px 30px 0px;
  padding: 20px 20px 20px 0px;
}

.ao-event-column .ao-event-title a {
  font-size: 22px;
  margin-bottom: 0px;
}

.ao-event-colum-date {
  list-style: none;
  margin: 0px 0px 10px 0px;
  display: flex;
  flex-wrap: wrap;
}

.ao-event-colum-date li {
  margin-right: 5px;
  color: #19171a;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
}

.ao-event-column-info-inner {
  padding: 30px;
  border: 1px solid #fff;
  background-color: #ebf7f4;
  border-radius: 30px;
  position: relative;
  transition: all 0.5s ease;
}

.ao-event-media {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-size: cover;
  background-position: center center;
}

.ao-event-column-info-inner .icon-rev-corner-1.t-left:before {
  color: #e3f3ef;
  font-size: 40px;
  position: absolute;
  left: -2px;
  top: -60px;
  transform: rotate(90deg);
}

.ao-event-column-info-inner .icon-rev-corner-1.b-right:before {
  color: #e3f3ef;
  font-size: 40px;
  position: absolute;
  right: -60px;
  bottom: -2px;
  transform: rotate(90deg);
}

.ao-event-column:hover .ao-event-column-info-inner {
  background-color: var(--primary);
}

@media only screen and (max-width:991px) {
  .ao-event-column {
    height: 450px;
  }
}

/*Add to cart Section*/
.ao-ad-to-cart-section {
  background-color: #ebf7f4;
  border-radius: 30px;
  border: 1px solid #fff;
  padding: 60px;
}

.ad-ad-to-cart-list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  background-color: #e3f3ef;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 30px 40px;
  margin-bottom: 30px;
}

.ad-ad-to-cart-list .ad-c-media {
  border-radius: 20px;
  overflow: hidden;
  min-width: 120px;
  width: 120px;
  height: 120px;
}

.ad-ad-to-cart-list .ad-c-media img {
  width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ad-ad-to-cart-list .ad-c-title-wrap {
  width: 300px;
  position: relative;
  overflow: hidden;
}

.ad-ad-to-cart-list .ad-c-title {
  font-size: 22px;
  margin-bottom: 0px;
  font-weight: 500;
  position: relative;
  margin-right: 60px;
  display: inline-block;
  padding-right: 30px;
}

.ad-ad-to-cart-list .ad-c-title:after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background-color: var(--primary);
  width: 1000px
}

.ad-ad-to-cart-list .ad-item-bx {
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 10px 40px;
  background-color: #ebf7f4;
  text-align: center;
  font-size: 16px;
  color: #19171a;
}

.ad-item-qty {
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 10px 30px;
  background-color: #ebf7f4;
  text-align: center;
  font-size: 14px;
  color: #19171a;
}

@media only screen and (max-width:1200px) {
  .ad-ad-to-cart-list {
    flex-wrap: wrap;
  }

  .ad-ad-to-cart-list .ad-c-media {
    min-width: 120px;
    width: 120px;
  }

  .ad-ad-to-cart-list .ad-c-title-wrap {
    width: calc(100% - 150px);
  }

  .ad-ad-to-cart-list .ad-item-bx {
    padding: 10px 10px;
    width: 20%;
  }
}

@media only screen and (max-width:991px) {
  .ao-ad-to-cart-section {
    padding: 30px;
  }

  .ad-ad-to-cart-list .ad-item-bx {
    padding: 5px 10px;
    width: 45%;
  }

  .ad-ad-to-cart-list {
    padding: 30px 30px;
  }

  .ao-event-column .ao-event-column-info {
    right: 60px;
  }

  .ao-event-column .ao-event-title a {
    font-size: 20px;
    margin-bottom: 0px;
  }

  .ao-event-column-info-inner {
    padding: 20px;
  }
}

@media only screen and (max-width:767px) {
  .ad-ad-to-cart-list .ad-c-media {
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 10px;
  }

  .ad-ad-to-cart-list .ad-c-title-wrap {
    width: calc(100% - 90px);
  }

  .ao-ad-to-cart-section {
    padding: 15px;
  }

  .ad-ad-to-cart-list {
    padding: 15px;
    gap: 20px;
  }

  .ao-ad-to-cart-section {
    border-radius: 20px;
  }
}

@media only screen and (max-width:575px) {
  .ad-ad-to-cart-list .ad-c-title {
    font-size: 16px;
  }

  .ao-event-column .ao-event-column-info {
    right: 0px;
  }
}


/*Team Section*/

.ao-team-column-bx {
  border-radius: 20px;
  border: 1px solid #fff;
  padding: 20px;
  background-color: #ecf7eb;
  text-align: center;
}

.ao-team-column-bx .ao-team-media {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 30px;
}

.ao-team-column-bx .ao-team-media img {
  width: 100%;
}

.ao-team-column-bx .ao-team-info .ao-team-name {
  font-size: 24px;
}

.ao-team-column-bx .ao-team-info .ao-team-position {
  display: block;
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media only screen and (max-width:767px) {
  .ao-team-column-bx .ao-team-info .ao-team-name {
    font-size: 18px;
  }
}

.ao-team-social {
  list-style: none;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.ao-team-social li {
  margin-right: 14px;
  padding-right: 14px;
  position: relative;
}

.ao-team-social li:after {
  content: '';
  width: 10px;
  height: 2px;
  background-color: var(--secondary);
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
}

.ao-team-social li:last-child {
  margin-right: 0px;
  padding-right: 0px;
}

.ao-team-social li:last-child:after {
  display: none;
}

.ao-team-social li a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: 0.5s all ease;
  background: #92ab84;
}

.ao-team-social li a:hover {
  color: #fff;
  border: 2px solid var(--secondary);
  background-color: var(--secondary);
}


@media only screen and (max-width:1200px) {
  .p-t120 {
    padding-top: 70px;
  }

  .p-b120 {
    padding-bottom: 70px;
  }

  .p-b90 {
    padding-bottom: 40px;
  }

  .footer-main-top {
    padding: 80px 0px 30px;
  }
}


.ao-service-banner {
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 30px;
}

.ao-service-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ao-service-title {
  font-size: 28px;
  font-weight: 600px;
}

.ao-service-des {
  margin-bottom: 50px;
}

.ao-servi-box {
  display: flex;
  padding: 30px;
  background: #ebf7f4;
  border-radius: 30px;
  border: 1px solid #fff;
  margin-bottom: 30px;
}

.ao-servi-icon {
  width: 85px;
  height: 85px;
  border-radius: 50px;
  display: flex;
  background: #fff;
  justify-content: center;
  align-items: center;
}

.ao-servi-icon img {
  height: 35px;
}

.ao-servi-des {
  width: calc(100% - 85px);
  padding-left: 15px;
}

.ao-servi-des p {
  margin: 0px;
  line-height: 1.4;
}


.ao-service-des {
  margin-bottom: 30px;
}

.ao-servi-box {
  display: flex;
  padding: 30px;
  background: #ebf7f4;
  border-radius: 30px;
  border: 1px solid #fff;
}

.ao-servi-icon {
  width: 85px;
  height: 85px;
  border-radius: 50px;
  display: flex;
  background: #fff;
  justify-content: center;
  align-items: center;
}

.ao-servi-icon img {
  height: 35px;
}

.ao-servi-des {
  width: calc(100% - 85px);
  padding-left: 15px;
}

.ao-servi-des p {
  margin: 0px;
  line-height: 1.4;
}

.ao-serviquate-box {
  background: #41836d;
  padding: 30px;
  border-radius: 20px;
  color: #fff;
  display: flex;
}

.ao-serviquate-icon {
  padding-right: 30px;
  border-right: 1px solid #ffffff40;
  margin-right: 30px;
}

.ao-serviquate-icon img {
  height: 50px;
  width: auto;
}

.ao-serviquate-box h4 {
  color: #fff;
  margin-bottom: 0px;
  font-size: 22px;
  font-weight: 500;
}

.ao-serviquate-box p {
  color: #fff;
  margin-bottom: 0px;
}

.ao-serviquate-des {
  width: calc(100% - 110px)
}

.ao-servi2-wrap {
  padding: 30px 0px;
}

.ao-servi2-box {
  margin-bottom: 100px;
  position: relative;
}

.ao-servi2-pic {
  overflow: hidden;
  border-radius: 30px;
  height: 376px;
}

.ao-servi2-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ao-servi2-info {
  background: #fff;
  margin: 0px 30px;
  padding: 30px;
  border-radius: 20px;
  position: absolute;
  bottom: -70px;
  width: calc(100% - 60px);
}

.ao-servi2-info .ao-servi2-title a {
  font-size: 24px;
}

.ao-servi2-info .ao-servi2-des {
  line-height: 1.6;
}

@media only screen and (max-width:1200px) {
  .ao-servi2-info .ao-servi2-title a {
    font-size: 18px;
  }

  .ao-servi2-info .ao-servi2-des {
    line-height: 1.4;
  }
}


.widget-coinfo-box {
  padding: 30px;
  border-radius: 30px;
  text-align: center;
  background: var(--secondary);
  margin-bottom: 30px;
}

.ao-widget-coinfo-pic {
  margin-bottom: 30px;
}

.widget-coinfo-title {
  color: #fff;
}

.ao-widget-coinfo-title {
  color: #fff;
  margin-bottom: 25px;
}

.ao-widget-coinfo-call {
  color: #fff;
  margin-bottom: 30px;
}

.ao-widget-coinfo-call i {
  color: var(--primary);
  margin-right: 10px;
}

.widget-docdown-box {
  background: #e3ecdb;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 21px 37px 15px;
  margin-bottom: 30px;
}

.widget-docdown-box h4 {
  font-size: 22px;
  color: #1e1e1e;
  font-weight: 500;
  margin-bottom: 42px;
  position: relative;
  font-family: var(--title-family2);
}

.widget-docdown-box ul {
  list-style: none;
  margin: 0px;
}

.widget-docdown-box ul li {
  background: #000;
  border-radius: 30px;
  margin-bottom: 20px;
}

.widget-docdown-box ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5px 5px 25px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
}

.widget-docdown-box ul li a .ao-doc-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #e3f3ef;
  color: var(--secondary);
}

.widget-docdown-box ul li a:hover {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5px 5px 25px;
  border-radius: 30px;
  background: var(--primary);
  color: #000;
}

.widget-docdown-box ul li a:hover .ao-doc-icon {
  background: var(--secondary);
  color: #fff;
}




/*Team Detail*/
.ao-team-mem-bx {
  margin-right: 112px;
}

@media only screen and (max-width:1199px) {
  .ao-team-mem-bx {
    margin-right: 0px;
  }
}


.ao-team-column-bx2 {
  border-radius: 30px;
  border: 1px solid #fff;
  padding: 40px;
  background-color: #ebf7f4;
  text-align: center;
  margin-bottom: 30px;
}

@media only screen and (max-width:360px) {
  .ao-team-column-bx2 {
    padding: 20px;
  }
}

.ao-team-column-bx2 .ao-team-media {
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 30px;
}

.ao-team-column-bx2 .ao-team-media img {
  width: 100%;
}

.ao-team-column-bx2 .ao-team-info .ao-team-name {
  font-size: 20px;
  text-transform: uppercase;
}

.ao-team-column-bx2 .ao-team-info .ao-team-position {
  display: block;
  text-transform: uppercase;
  margin-bottom: 20px;
}


.ao-team-social2 {
  list-style: none;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
}

.ao-team-social2 li {
  margin-right: 14px;
  position: relative;
}

.ao-team-social2 li:last-child {
  margin-right: 0px;
}


.ao-team-social2 li a {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: 0.5s all ease;
}

.ao-team-social2 li a:hover {
  color: #fff;
  border: 2px solid var(--secondary);
  background-color: var(--secondary);
}

@media only screen and (max-width:360px) {
  .ao-team-social2 li a {
    width: 35px;
    height: 35px;
  }
}

.ygr-team-d-info-wrap ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 15px;
  margin: 40px 0px;
}

.ygr-team-d-info-wrap ul li {
  width: 48%;
}

.ygr-team-d-info-wrap ul li span {
  text-transform: uppercase;
  font-size: 20px;
  color: #181a17;
  display: inline-block;
  font-weight: 600;
  margin-right: 10px;
}

@media only screen and (max-width:767px) {
  .ygr-team-d-info-wrap ul {
    display: block;
  }

  .ygr-team-d-info-wrap ul li {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width:575px) {
  .ygr-team-d-info-wrap ul li span {
    font-size: 16px;
  }
}

/*Qualification Skills section*/
.ao-qua-skills-bx {
  border: 1px solid #fff;
  padding: 40px;
  border-radius: 30px;
  background-color: #e3f3ef;
  margin-bottom: 30px;
}

.ao-qua-skills-bx .ao-qua-skill-title {
  font-weight: 600;
  text-transform: uppercase;
  color: 181a17;
  font-size: 26px;
  margin-bottom: 30px;
}

.ao-qua-skill-inner .ao-title {
  font-weight: 400;
  color: 181a17;
  font-size: 20px;
  margin-bottom: 10px;
}

.ao-qua-skill-inner p:last-child {
  margin-bottom: 0px;
}

@media only screen and (max-width:767px) {
  .ao-qua-skill-inner {
    margin-bottom: 30px;
  }

  .ao-qua-skills-bx [class*='col-']:last-child .ao-qua-skill-inner {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width:360px) {
  .ao-qua-skills-bx {
    padding: 20px;
  }
}

.ao-checked-list-st-2 {
  list-style: none;
  margin-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
}

.ao-checked-list-st-2 li {
  width: 48%;
  margin-bottom: 10px;
  position: relative;
  padding-left: 40px;
  color: #181a17;
}

.ao-checked-list-st-2 li:last-child {
  margin-bottom: 0px;
}

.ao-checked-list-st-2 li i {
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 22px;
  line-height: 1;
  color: #41836d;
}

@media only screen and (max-width:767px) {
  .ao-checked-list-st-2 {
    display: block;
  }

  .ao-checked-list-st-2 li {
    width: 100%;
  }
}

.ao-qua-skills-area-media {
  margin-left: 30px;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 30px;
}

.ao-qua-skills-area-media img {
  width: 100%;
}

@media only screen and (max-width:1199px) {
  .ao-qua-skills-area-media {
    margin-left: 0px;
  }
}


/*Hover Animation*/
.blog-related-box {
  transition: all 0.2s linear;
}

.contact-us-large-media img {
  transition: all 0.2s linear;
}

.contact-us-large-media:hover img {
  transform: scale(1.1);
}

.blog-details-thumb img {
  transition: all 0.2s linear;
}

.blog-details-thumb:hover img {
  transform: scale(1.1);
}

.blog-details-thumb-2 {
  overflow: hidden;
  border-radius: 30px;
  margin: 20px 0px;
}

.blog-details-thumb-2 img {
  transition: all 0.2s linear;
  margin-top: 0px;
}

.blog-details-thumb-2:hover img {
  transform: scale(1.1);
}

.con-icon-bx {
  transition: all 0.2s linear;
}

.con-icon-bx:hover {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.10)
}

.sidber-widget-recent-post .recent-widget-thumb {
  overflow: hidden;
}

.sidber-widget-recent-post .recent-widget-thumb img {
  transition: all 0.2s linear;
}

.sidber-widget-recent-post:hover .recent-widget-thumb img {
  transform: scale(1.1);
}

.ao-pricing-bx {
  transition: all 0.2s linear;
}

.ao-pricing-bx:hover {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.10);
  background-color: #fff;
}

.ao-team-media img {
  transition: all 0.2s linear;
}

.ao-team-media:hover img {
  transform: scale(1.1);
}

.ao-qua-skills-area-media img {
  transition: all 0.2s linear;
}

.ao-qua-skills-area-media:hover img {
  transform: scale(1.1);
}

.ao-our-testimo-box {
  transition: all 0.2s linear;
}

.ao-our-testimo-box:hover {
  background-color: #fff;
}

.ao-yoga-prod-pic {
  overflow: hidden;
}

.ao-yoga-prod-pic img {
  transition: all 0.2s linear;
}

.ao-yoga-prod-pic:hover img {
  transform: scale(1.1);
}

.ad-ad-to-cart-list .ad-c-media img {
  transition: all 0.2s linear;
}

.ad-ad-to-cart-list:hover .ad-c-media img {
  transform: scale(1.1);
}

.ao-service-banner img {
  transition: all 0.2s linear;
}

.ao-service-banner:hover img {
  transform: scale(1.1);
}

.ao-servi-box {
  transition: all 0.2s linear;
}

.ao-servi-box:hover {
  background-color: #e3ecdb;
}

.ao-servi2-pic img {
  transition: all 0.2s linear;
}

.ao-servi2-pic:hover img {
  transform: scale(1.1);
}




/*cursor Css Start */
/* Start  Curser pointer CSS */

.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
  border-radius: 50%;
  border: 2px solid var(--secondary-btn-hover);
  transition: 0.3s;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1000;
}

.cursor2 {
  position: fixed;
  width: 4px;
  height: 4px;
  margin-left: -20px;
  margin-top: -20px;
  border-radius: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%);
  transition: 0.1s;
  pointer-events: none;
  z-index: 1000;
}

.grow,
.grow-small {
  transform: scale(3);
  background: white;
  mix-blend-mode: difference;
  border: none;
}

.grow-small {
  transform: scale(1.7);
}





.loadind-box {
  margin-top: -170px;
  padding: 0;
  font-family: ‘Arial Narrow’, sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: #1750bd;

}

.loadind-box span {
  position: relative;
  top: 0px;
  display: inline-block;
  text-transform: uppercase;
  opacity: 0;
  transform: rotateX(-90deg);
}

.let1 {
  animation: drop 1.2s ease-in-out infinite;
  animation-delay: 1.2s;
}

.let2 {
  animation: drop 1.2s ease-in-out infinite;
  animation-delay: 1.3s;
}

.let3 {
  animation: drop 1.2s ease-in-out infinite;
  animation-delay: 1.4s;
}

.let4 {
  animation: drop 1.2s ease-in-out infinite;
  animation-delay: 1.5s;

}

.let5 {
  animation: drop 1.2s ease-in-out infinite;
  animation-delay: 1.6s;
}

.let6 {
  animation: drop 1.2s ease-in-out infinite;
  animation-delay: 1.7s;
}

.let7 {
  animation: drop 1.2s ease-in-out infinite;
  animation-delay: 1.8s;
}

@keyframes drop {
  10% {
    opacity: 0.5;
  }

  20% {
    opacity: 1;
    top: 3.78em;
    transform: rotateX(-360deg);
  }

  80% {
    opacity: 1;
    top: 3.78em;
    transform: rotateX(-360deg);
  }

  90% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    top: 6.94em
  }
}





/*Loading*/
.loading-area {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  overflow: hidden;
}

.loading-area .loading-box {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 9999;
}

.loading-area .loading-pic {
  width: 100%;
  position: absolute;
  top: 50%;
  z-index: 99999;
  text-align: center;
  transform: translateY(-50%);
}

/*Loading Animation Start*/
.wrapper {
  margin: 0px auto;
  display: block;
}

.wrapper .cssload-loader {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin: 48px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  background-color: var(--secondary);
  animation: 1.15s infinite linear;
}

.wrapper .cssload-loader:before,
.wrapper .cssload-loader:after {
  content: "";
  animation: 1.15s infinite linear;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

.wrapper .cssload-loader:before {
  content: "";
  border: 7px solid #fff;
  top: 0px;
  left: 0px;
  animation-name: cssload-animation;
}

@keyframes cssload-animation {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(2);
  }
}

/*===================================*
 START CLASSES TIMETABLE SECTION
*===================================*/
.schedule-container {
  max-width: 100%;
  margin: 0 auto;
  background: #ecf7eb;
  border-radius: 30px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  /* padding: 2% 12%; */
  border: 1px solid #fff;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: #ecf7eb;
  padding: 20px 20px 0 20px;
  justify-content: center;
  margin-bottom: 20px !important;
}

.filter-btn {
  border: none;
  background: transparent;
  padding: 5px 35px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  border-radius: 32px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 6px;
}

.filter-btn.active {
  background: #fbdc84;
  color: #000;
  transform: translateY(1px);
}

.filter-btn:hover:not(.active) {
  background: #42941638;
  color: #0e0e0e;
}

.schedule-table {
  width: 100%;
  margin: 0;
  background: #ecf7eb;
}

.schedule-table th {
  background: #a8c39a;
  font-weight: 600;
  color: #fff;
  padding: 16px 12px;
  text-align: center;
  /* border-bottom: 2px solid #dbebd3; */
  font-size: 14px;
}

.schedule-table td {
  padding: 16px 12px;
  text-align: center;
  border-bottom: 1px solid #dbebd3;
  vertical-align: middle;
  transition: all 0.3s ease;
}

.time-cell {
  background: #f8f9fa;
  font-weight: 700;
  color: #6b8160;
  width: 100px;
}

.class-cell {
  position: relative;
  overflow: hidden;
}

.class-info {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  opacity: 1;
}

.class-info.slide-up {
  transform: translateY(-100%);
  opacity: 0;
}

.class-name {
  font-weight: 600;
  color: #111;
  font-size: 15px;
  margin-bottom: 2px;
}

.class-time {
  color: #6b8160;
  font-size: 13px;
  margin-bottom: 2px;
}

.instructor-name {
  color: #333;
  font-size: 11px;
}

.hatha {
  border-left: 4px solid #4CAF50;
}

.kundalini {
  border-left: 4px solid #FF9800;
}

.pilates {
  border-left: 4px solid #2196F3;
}

.alignment {
  border-left: 4px solid #9C27B0;
}

.yoga-dance {
  border-left: 4px solid #E91E63;
}

.empty-cell {
  background: #fafafa;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .filter-tabs {
    padding: 15px 15px 0 15px;
  }

  .filter-btn {
    padding: 10px 16px;
    font-size: 13px;
    flex: 1;
    min-width: auto;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 12px 8px;
    font-size: 12px;
  }

  .class-name {
    font-size: 13px;
  }

  .class-time {
    font-size: 11px;
  }

  .instructor-name {
    font-size: 10px;
  }
}

@media (max-width: 576px) {
  .schedule-container {
    margin: 0 10px;
    border-radius: 8px;
  }

  .filter-tabs {
    padding: 10px 10px 0 10px;
  }

  .filter-btn {
    padding: 10px 30px;
    font-size: 10px;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 8px 4px;
    font-size: 11px;
  }

  .time-cell {
    width: 70px;
  }

  .class-name {
    font-size: 12px;
  }

  .class-time,
  .instructor-name {
    font-size: 10px;
  }
}

.table-responsive {
  border-radius: 0 0 12px 12px;
  overflow-x: auto;
}

/* studio class yoga card with model */

.yoga-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid #cecbcb;
  margin-bottom: 30px;
  height: 400px;
}

/* .yoga-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        } */

.card-image {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.yoga-card:hover .card-image img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(231, 76, 60, 0.1), rgba(52, 152, 219, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.yoga-card:hover .card-overlay {
  opacity: 1;
}

.card-title-section {
  padding: 15px 20px;
  text-align: center;
  background: white;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card-title-section:hover {
  background: #f8f9fa;
}

.card-title {
  color: #5f7f62;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Modal Styles */
.modal-content {
  border-radius: 20px;
  border: none;
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(45deg, #4b1d85, #26064f);
  color: white;
  border: none;
  padding: 20px 30px;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}

.btn-close {
  filter: brightness(0) invert(1);
}

.modal-body {
  padding: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
  background: #dfd8ff;
}

.benefit-item {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  border-left: 4px solid #e74c3c;
}

.steps-list {
  counter-reset: step-counter;
}

.step-item {
  counter-increment: step-counter;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 2px solid #ecf0f1;
  position: relative;
  padding-left: 50px;
}

.step-item::before {
  content: counter(step-counter);
  position: absolute;
  left: 15px;
  top: 15px;
  background: #e74c3c;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .yoga-card {
    height: 350px;
  }

  .card-image {
    height: 270px;
  }

  .section-title {
    font-size: 2rem;
  }

  .modal-body {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .container-custom {
    padding: 0 15px;
  }

  .yoga-card {
    height: 320px;
  }

  .card-image {
    height: 240px;
  }

  .card-title {
    font-size: 1rem;
  }
}

/* main service area*/

.ao-main-service-area {
  background: #d0e2cd;
  border-radius: 30px;
}

    .floating-whatsapp-container {
      position: fixed;
      bottom: 20px;
      left: 20px;
      z-index: 1050;
    }
    #whatsappIconBtn {
      background-color: #25D366;
      border: none;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
    }
    #whatsappIconBtn img {
      width: 30px;
      height: 30px;
      filter: brightness(0) invert(1);
    }