html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0px;
  border: 0;
  outline: 0;
}

:root {
  --blue: #007abf;
  --white: #ffffff;
  --black: #000000;
  --yellow: #ffcc33;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat';
}

body {
  font-family: 'Montserrat';
  font-size: 18px;
  color: var(--black);
  font-weight: 500;
}

h1 {
  position: relative;
}

h2 {
  position: relative;
  font-size: 36px;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 44px;
}

h3 {
  position: relative;
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
}

h4 {
  position: relative;
  font-size: 24px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 30px;
}

h4 strong{
  font-weight: inherit;
  color: var(--black);
}

h5 {
  position: relative;
  font-size: 20px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
}

h6 {
    position: relative;
    font-size: 18px;
    text-transform: inherit;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    line-height: 34px;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: var(--black);
  transition: all 0.3s ease-in-out;
}

.yellow-btn {
    background: var(--yellow);
    padding: 18px 22px;
    font-size: 20px;
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}
.yellow-btn:hover {
    background: var(--blue);
    color: var(--white);
    transition: all 0.3s ease-in-out;
}
/*
  --------------------------------------------------------
  Header style
  --------------------------------------------------------
  */
#contact-us {
    scroll-margin-top: 227px;
}
header {
    padding: 15px 0;
    border-bottom: 2px solid var(--white);
    position: sticky;
    z-index: 999;
    left: 0;
    top: 0;
    right: 0;
    background: var(--white);
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header .log img {
    max-width: 260px;
}
#mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item:last-child {
    margin-right: 0px;
}
.main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item .mega-menu-link {
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item .mega-menu-link:hover {
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
header.header.sticky {
    border-color: var(--blue);
}
.main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.header-btn .mega-menu-link {
    background: var(--blue);
    padding: 0px 22px;
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    height: 60px;
    line-height: 60px;
}
.main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.header-btn .mega-menu-link:hover {
    background: var(--yellow);
    color: var(--black);
    transition: all 0.3s ease-in-out;
}
/*
  --------------------------------------------------------
  Body style
  --------------------------------------------------------
  */

  .banner-area {
    position: relative;
}
  .banner-area::after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.banner-area img {
  position: relative;
    width: 100%;
    height: 830px;
    object-fit: cover;
}
.banner-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    z-index: 1;
    color: var(--white);
}
.banner-text h1, .banner-text h2 {
    font-size: 100px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    line-height: 80px;
}
.banner-text h1 strong:last-child, .banner-text h2 strong:last-child {
    color: var(--yellow);
}
.banner-text h1 strong, .banner-text h2 strong {
    display: block;
    font-size: 56px;
    font-weight: inherit;
}
.banner-text {
    font-size: 36px;
}
.banner-text p {
    line-height: 50px;
    margin-bottom: 30px;
}



.counter-area {
    background: var(--black);
    padding: 15px 0;
    margin-bottom: 5px;
}

.counter-area .time_left {
    background: var(--white) !important;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px !important;
    font-family: 'Montserrat' !important;
    margin-top: -63px;
    position: relative;
    margin-bottom: 10px;
}
.counter-area span.time_description {
    color: var(--yellow) !important;
    font-size: 30px !important;
    font-family: 'Montserrat' !important;
    font-weight: 600;
    text-transform: uppercase;
}
.counter-area .element_conteiner {
    margin: 0 35px;
}

.ribbon-area {
  position: relative;
}
.ribbon-area::before{
  content: "";
  position: absolute;
  background: var(--black);
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
}
.ribbon-area::after{
  content: "";
  position: absolute;
  background: var(--blue);
  width: 50%;
  height: 100%;
  right: 0;
  top: 0;
  bottom: 0;
}
.ribbon-row {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}
.ribbon-text {
    position: relative;
    width: 73%;
    background: var(--black);
    padding: 44px 0;
}
.ribbon-btn {
    width: 27%;
    background: var(--blue);
    text-align: right;
}
.ribbon-btn .yellow-btn {
    margin-right: -30px;
}
.ribbon-text::after {
    content: "";
    position: absolute;
    background: url(/wp-content/uploads/2025/07/ribbon-arrow.png) no-repeat;
    width: 203px;
    height: 100%;
    right: -120px;
    top: 0px;
    background-size: 100% 100%;
}
.ribbon-text h2 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0;
}
.ribbon-btn .yellow-btn:hover {
    background: var(--black);
}



.info-area {
    padding: 80px 0;
    text-align: center;
    background: url(/wp-content/uploads/2025/07/info-bg.jpg) no-repeat;
    background-size: 100% 100%;
}
.heading-div {
    margin-bottom: 60px;
}
.info-area h2 {
    margin-bottom: 0;
    font-weight: 700;
}

.heading-div strong {
    color: var(--blue);
}
.info-icon {
    background: url(/wp-content/uploads/2025/07/info-tab-bg.png) no-repeat;
    background-size: 100% 100%;
    width: 132px;
    height: 145px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.info-tab:hover .info-icon {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}
.info-icon img {
    padding-bottom: 24px;
}
.info-div {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}
.info-tab strong {
    color: var(--blue);
    display: block;
    font-weight: inherit;
}
.info-div p {
    line-height: 34px;
}




.joining-area {
    padding: 80px 0;
    text-align: center;
}
.joining-tabs {
    display: flex;
    justify-content: space-between;
}
.joining-area h2 {
    font-weight: 700;
}
.joining-tab {
    font-size: 20px;
    position: relative;
    font-weight: 600;
    max-width: 20%;
    padding: 0px 28px;
    text-transform: uppercase;
    background: url(/wp-content/uploads/2025/07/dog-footmark-image.jpg) no-repeat;
    background-size: 186px 195px;
    transition: background-size 0.3s ease-in-out;
}
.joining-tab p span {
    display: block;
}
.joining-tab:hover {
    background-size: 150px 159px;
}
.joining-tabs .joining-tab:nth-child(odd)::before {
    content: "";
    position: absolute;
    background: url(/wp-content/uploads/2025/07/top-arrow-line.png) no-repeat;
    width: 255px;
    height: 133px;
    left: 0;
    right: 0;
    top: 0;
    background-size: 100% 100%;
    z-index: -1;
}
.joining-tabs .joining-tab:nth-child(odd) {
    padding-top: 50px;
    background-position: 50% 50%;
    z-index: 0;
}
.joining-tabs .joining-tab:nth-child(even){
  background-position: top center;
}
.joining-tabs .joining-tab:nth-child(even)::before {
    display: none;
}
.joining-tabs .joining-tab:nth-child(even)::after {
    content: "";
    position: absolute;
    background: url(/wp-content/uploads/2025/07/bottom-arrow-line.png) no-repeat;
    width: 247px;
    height: 107px;
    background-size: 100% 100%;
    bottom: 25px;
    left: 4px;
    right: 0;
    z-index: -1;
}
.joining-tab strong {
    color: var(--blue);
    font-weight: inherit;
    display: block;
}
.joining-tab p {
    line-height: 34px;
}




.stories-area {
    padding: 120px 0;
    text-align: center;
    background: url(/wp-content/uploads/2025/07/stories-bg.jpg) no-repeat;
    background-size: 100% 100%;
}
.stories-area h2 {
    font-weight: 700;
}
.story-img {
    position: relative;
    margin-bottom: -15px;
    transition: all 0.3s ease-in-out;
}
.story-tab:hover .story-img {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}
.story-description {
    background: var(--white);
    padding: 30px;
    box-shadow: 0 0 4px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    min-height: 450px;
}
.story-tab:hover .story-description {
    box-shadow: 0 0 4px 5px #007abf61;
    transition: all 0.3s ease-in-out;
}
.story-description h4 strong {
    display: block;
}
.story-description p {
    margin-bottom: 0;
}




.form-area {
  padding: 70px 0;
  background: var(--black);
  text-align: center;
  color: var(--white);
}
.form-area .heading-div {
    font-size: 16px;
    margin-bottom: 0;
}
.form-area h2 {
    color: var(--yellow);
    font-size: 48px;
    line-height: 56px;
}

.form-area input {
    background: transparent;
    outline: none;
    border: inherit;
    border-bottom: 1px solid var(--white);
    font-size: 16px !important;
    padding: 10px 0 !important;
    color: var(--white);
}
.form-area span.gfield_required {
    display: none !important;
}
.form-area input::placeholder {
    color: var(--white);
    font-size: 16px;
}

.form-area .gfield--type-checkbox {
    display: flex !important;
    align-items: center;
    justify-content: center;
    column-gap: 0;
    flex-wrap: wrap;
}

.form-area .gfield--type-checkbox .gform-field-label {
    width: auto;
    margin-bottom: 0 !important;
    font-weight: inherit !important;
}
.form-area .gfield--type-checkbox .gfield_checkbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
}
.form-area .gfield--type-checkbox .gfield_checkbox .gchoice {
    width: 169px;
}
.form-area input[type="checkbox"] {
    width: 22px;
    height: 17px;
    accent-color: var(--yellow);
    cursor: pointer;
    appearance: none;
    background-color: transparent;
    border: 1px solid var(--white);
    position: relative;
}
.form-area input[type="checkbox"]:checked::before {
    content: "";
    position: absolute;
    left: 7px;
    top: -1px;
    width: 7px;
    height: 17px;
    border: solid var(--yellow);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
.form-area div#field_1_8 {
    margin-bottom: 25px;
}
.form-area fieldset#field_1_9 {
    margin-bottom: 25px;
}
.form-area .gform_wrapper.gravity-theme .gform_fields {
    column-gap: 50px;
}
.form-area .gform_wrapper.gravity-theme .ginput_complex {
    gap: 30px;
}
.form-area input[type="submit"] {
    margin: 0 auto;
    background: var(--yellow);
    padding: 12px 34px !important;
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    font-size: 20px !important;
    transition: all 0.3s ease-in-out;
}

.form-area input[type="submit"]:hover{
  background: var(--white);
  transition: all 0.3s ease-in-out;
}
.form-area .gform_validation_errors
 {
    background: transparent !important;
    border: none !important;
    text-align: left;
    outline: none !important;
    padding-inline-start: 35px !important;
}
.form-area .gform_wrapper.gravity-theme .gform_validation_errors>h2 {
    font-size: 15px !important;
}
.gform-icon--circle-error:before {
    left: -50px;
    position: absolute;
}
.form-area .gform_validation_error input {
    border: inherit !important;
    border-bottom: 1px solid #c02b0a !important;
}
.form-area .validation_message {
    background: transparent !important;
    border: none !important;
    text-align: left;
    padding-left: 0 !important;
}
.form-area .gform_validation_error .gfield-choice-input {
    border: 1px solid #c02b0a !important;
}
.form-area .gform_validation_error div#validation_message_1_9 {
    text-align: center;
}
.form-area .gform_validation_error .gform-field-label {
    color: var(--white) !important;
}
fieldset#field_1_9 {
    column-gap: 70px;
}
div#input_1_9 {
    column-gap: 70px;
}
div#field_2_8 {
    margin-bottom: 25px;
}
fieldset#field_2_9 {
    margin-bottom: 40px;
}


footer {
  text-align: center;
}
.main-footer {
    padding: 15px 0;
}
.main-footer .logo {
    margin-bottom: 10px;
}
.main-footer .logo img {
    max-width: 300px;
}
.footer-text h2 {
    font-size: 48px;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-text h3 {
    font-size: 30px;
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-text ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
    margin-bottom: 20px;
}

.footer-text ul li {
  position: relative;
}

.footer-text ul li::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: var(--black);
  right: -15px;
  top: 0;
}

.footer-text ul li:last-child::before {
  display: none;
}

.footer-menu ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 30px;
  padding: 0;
}

.footer-menu ul li a {
  text-decoration: none;
  color: var(--blue);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  font-family: 'Montserrat';
}

.footer-menu ul li a:hover {
  color: var(--black);
  transition: all 0.3s ease-in-out;
}

.copyright {
    background: var(--blue);
    padding: 15px 0;
    color: var(--white);
}
.copyright p {
    margin-bottom: 0;
}
.copyright a {
    color: var(--white);
}
.copyright a:hover {
    color: var(--black);
}


/*
  --------------------------------------------------------
  Sponsars Page Style
  --------------------------------------------------------
*/
.inner-banner {
    position: relative;
}
.inner-banner img {
    width: 100%;
    object-fit: cover;
    object-position: 100% 10%;
}
.inner-banner::after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.inner-banner h1, .inner-banner h2 {
    margin-bottom: 30px;
}

.strip-area {
    text-align: center;
    padding: 50px 10px;
    background: var(--black);
}
.strip-area h2, .strip-area h1 {
    font-size: 56px;
    color: var(--yellow);
    line-height: 56px;
    margin-bottom: 0;
    font-weight: bold;
}


.welcome-area {
    background: #F2F2F2;
    padding: 80px 0;
    text-align: center;
}
.welcome-area .heading-div{
    margin-bottom: 0;
}
.welcome-area .heading-div h2 {
    font-weight: 700;
}
.welcome-area .heading-div p:last-child {
    margin-bottom: 0;
}

.sponsars-area {
    /* background: url(/wp-content/uploads/2025/07/sponsars-bg.png); */
    /* background-repeat: repeat-y; */
    padding-bottom: 200px;
    /* background-size: auto calc(50%); */
    position: relative;
}
.sponsars-div {
    text-align: center;
    padding-top: 100px;
}
.sponsars-div h2 {
    margin-bottom: 60px;
    font-weight: 700;
}
.sponsars-row {
    display: flex;
    justify-content: center;
    gap: 80px;
}
.sponsar-tab {
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    box-shadow: 0 0 4px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}
.sponsar-tab:hover {
    box-shadow: 0 0 4px 5px #007abf61;
    transition: all 0.3s ease-in-out;
}
.sponsars-div:nth-child(2) .sponsar-tab {
    width: 259px;
    height: 259px;
}
.sponsars-div:nth-child(3) .sponsar-tab {
    width: 205px;
    height: 205px;
}
.sponsars-div:nth-child(5) .sponsar-tab, .sponsars-div:nth-child(4) .sponsar-tab, .sponsars-div:nth-child(6) .sponsar-tab {
    width: 170px;
    height: 170px;
}
.sponsars-area:after {
    content: "";
    position: absolute;
    background: url(https://themuttstrut.org/wp-content/uploads/2025/07/sponsars-bg.png) no-repeat;
    width: 100%;
    height: 908px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-position: bottom;
}
.sponsars-area::before {
    content: "";
    position: absolute;
    background: url(https://themuttstrut.org/wp-content/uploads/2025/07/sponsars-bg.png) no-repeat;
    width: 100%;
    height: 908px;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
}

/*
  --------------------------------------------------------
  Sponsars Page Style End
  --------------------------------------------------------
*/

/*
  --------------------------------------------------------
  Want to Sponsar Page Style
  --------------------------------------------------------
*/

.benefits-area {
    position: relative;
    text-align: center;
    background: #F2F2F2;
}
.benefits-area::after {
    position: absolute;
    content: "";
    background: var(--white) url(/wp-content/uploads/2025/07/benefits-bg-img.png) no-repeat;
    width: 100%;
    height: 760px;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    background-size: 100% 100%;
    z-index: 0;
}
.benefits-div {
    position: relative;
    padding: 50px 0 80px;
    z-index: 2;
}
.benefits-area .heading-div {
    margin-bottom: 0;
}
.benefits-area h2 {
    margin-bottom: 40px;
    font-weight: 700;
}

.benefits-area h2 strong {
    display: block;
    font-weight: inherit;
    font-size: 24px;
    color: var(--black);
    font-style: italic;
}
.benefits-row {
    display: flex;
    justify-content: center;
    column-gap: 50px;
}
.benefit-tab {
    width: 250px;
    height: 250px;
    background: var(--blue) url(/wp-content/uploads/2025/07/sponsor-tab-bg.png) center center no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    padding: 15px;
    margin-bottom: 20px;
    transition: background-size 0.3s ease-in-out;
    background-size: 185px 186px;
}
.benefit-tab:hover {
    background-size: 230px 230px;
}

.benefits-row .benefit-tab:nth-child(2) {
    background: var(--yellow) url(/wp-content/uploads/2025/07/sponsor-tab-bg.png) center center no-repeat;
    transition: background-size 0.3s ease-in-out;
    background-size: 185px 186px;
}
.benefits-row .benefit-tab:nth-child(2):hover {
    background-size: 230px 230px;
}
.benefit-tab p {
    margin-bottom: 0;
}
.benefits-div:last-child {
    padding-bottom: 20px;
}

.pricing-area {
    text-align: center;
    padding-bottom: 80px;
}
.pricing-area .heading-div {
    background: var(--blue);
    padding: 80px 0 30px;
    color: var(--white);
    margin-bottom: -19px;
}
.pricing-area .heading-div h2 {
    color: var(--yellow);
    margin-bottom: 0;
}
.pricing-area .info-div {
    color: var(--blue);
}
.pricing-info-tab {
    position: relative;
    text-align: left;
    margin-bottom: 50px;
}
.tab-heading h3 strong {
    font-weight: inherit;
    display: block;
}
.pricing-info-tab .tab-heading {
    max-width: 430px;
    background: var(--blue);
    border-radius: 10px 10px 0 0;
    padding: 15px 15px;
    margin: 0 0 0 15px;
    position: relative;
    z-index: 0;
}
.pricing-info-tab .tab-heading h3 {
    color: var(--white);
}
.pricing-tab-text {
    padding: 30px;
    background: var(--white);
    box-shadow: 0 0 4px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}
.pricing-info-tab:hover .pricing-tab-text {
    box-shadow: 0 0 4px 5px #007abf61;
    transition: all 0.3s ease-in-out;
}
.pricing-info-tab::after {
    content: "";
    position: absolute;
    background: url(/wp-content/uploads/2025/07/pricing-paw-icon.png) no-repeat;
    width: 95px;
    height: 98px;
    right: 34px;
    top: 20px;
    background-size: cover;
    z-index: 9;
    transition: all 0.3s ease-in-out;
}
.pricing-info-tab:hover::after {
    width: 130px;
    height: 133px;
    transition: all 0.3s ease-in-out;
    top: 0;
}
.pricing-tab-text p {
    margin-bottom: 0;
    line-height: 30px;
}

/*
  --------------------------------------------------------
  Want to Sponsar Page Style End
  --------------------------------------------------------
*/

.thankyou-area {
    background: #F2F3F2;
    padding: 80px 0;
    text-align: center;
}
.thankyou-area .heading-div {
    margin-bottom: 0;
}
.thankyou-area .heading-div p:last-child{
    margin-bottom: 0;
}
.page-template-default .inner-banner h1, .page-template-default .inner-banner h2 {
    font-size: 60px;
}
.thankyou-area ul {
    margin-bottom: 30px;
}
.thankyou-area ul li {
    margin-bottom: 8px;
    list-style: none;
}
.thankyou-area ul li::marker {
    color: var(--blue);
}
.error404 .inner-banner h1, .error404 .inner-banner h2 {
    font-size: 60px;
}
.error404 .heading-div{
    text-align: center;
}
.error404 .heading-div h2 {
    margin-bottom: 50px;
}









/* animation */

.joining-tabs .joining-tab:nth-child(even)[data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: translateZ(0);
}

/* .joining-tabs .joining-tab:nth-child(even)[data-aos=fade-up] {
    transform: translate3d(0, -100px, 0);
} */
/* animation-end */


/*
  --------------------------------------------------------
                 registration
  --------------------------------------------------------
  */
.work-row {
    max-width: 1480px;
    padding: 0 15px;
    margin: 0 auto;
}

.work-content {
    background: var(--white);
    box-shadow: 0 0 7px 4px rgba(0, 0, 0, 0.13);
    border-radius: 10px;
    max-width: 580px;
    min-height: 220px;
    display: flex
;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    padding: 20px 33px;
    transition: all 0.3s ease-in-out;
}

.work-content p:last-child {
    margin-bottom: 0;
}

.work-row .work-tab:nth-child(even) {
    margin-left: auto;
}

.work-row .work-tab:nth-child(even) .work-content {
    margin-left: auto;
}

.work-row .work-tab {
    width: 57%;
    position: relative;
    margin-bottom: 25px;
}

.work-row .work-tab:nth-child(even)::before {
    position: absolute;
    content: "";
    background: url(/wp-content/uploads/2025/07/left-circle.png) no-repeat;
    width: 137px;
    height: 262px;
    left: -20px;
    top: -20px;
    background-size: 100% 100%;
}

.work-row .work-tab:nth-child(odd)::before {
    position: absolute;
    content: "";
    background: url(/wp-content/uploads/2025/07/right-circle.png) no-repeat;
    width: 110px;
    height: 250px;
    right: -28px;
    top: -17px;
    background-size: 100% 100%;
}
.work-row .work-tab:nth-child(even)::after {
    position: absolute;
    content: "";
    background: url(/wp-content/uploads/2025/07/left-hand.png) no-repeat;
    width: 183px;
    height: 189px;
    left: 20px;
    top: 20px;
}
.work-row .work-tab:nth-child(odd)::after {
    position: absolute;
    content: "";
    background: url(/wp-content/uploads/2025/07/right-hand.png) no-repeat;
    width: 183px;
    height: 189px;
    right: 30px;
    top: 20px;
}
.work-area {
    padding: 100px 0;
}
.work-area .heading-div {
    margin: 0;
    max-width: 580px;
    text-align: center;
}
.work-area .heading-div h2 {
    margin-bottom: 0;
    text-transform: uppercase;
}
.pricing-area.registration .heading-div {
    background: transparent;
    padding: 0;
    color: var(--black);
    margin-bottom: 80px;
}

.pricing-area.registration .heading-div h2 {
    color: var(--blue);
    margin-bottom: 10px;
}
.pricing-area.registration {
    position: relative;
    padding: 100px 0;
    background: #f2f2f2;
    margin-top: 92px;
}
.pricing-area.registration::after {
    position: absolute;
    content: "";
    background: url(/wp-content/uploads/2025/07/wave-after.png) no-repeat;
    width: 100%;
    top: -92px;
    left: 0;
    right: 0;
    height: 92px;
    background-size: 100% 100%;
}
.pricing-area.registration .pricing-tab-text .text-link {
    font-size: 24px;
    display: block;
    font-weight: bold;
    margin-top: 30px;
}
.pricing-area.registration .pricing-tab-text {
    height: auto !important;
    min-height: 310px;
}
.work-row .work-tab:hover::after {
    transform: scale(1.1);
}
.work-row .work-tab::after {
    transition: all 0.3s ease-in-out;
}
.work-row .work-tab:hover .work-content {
    box-shadow: 0 0 4px 5px #007abf61;
}
.welcome-area.registration {
    background: transparent;
}
.welcome-area.registration p {
    margin-bottom: 0;
}
/*
  --------------------------------------------------------
              blog and blog detail
  --------------------------------------------------------
  */
.news-page-tab {
    position: relative;
    display: block;
    width: 100%;
    vertical-align: top;
    overflow: hidden;
}
.news-page-image {
    display: block;
}
.news-page-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.white-image-title {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    text-align: center;
}
.white-image-title h3 {
    font-size: 24px;
    color: var(--white);
    line-height: 26px;
    text-shadow: 0 2px 5px rgb(24 24 24 / 70%);
    margin-bottom: 0px;
    font-weight: 600;
}
.hover-image-title {
    background: var(--white);
    padding: 0.625em 1.875em 1.5625em;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    -webkit-transition: 400ms ease all;
    -moz-transition: 400ms ease all;
    transition: 400ms ease all;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
}
.news-page-tab .triangle-starter {
    position: absolute;
    background: var(--white);
    height: 50em;
    left: 0;
    right: 0;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    margin-top: -0.625em;
    -webkit-transition: 500ms ease transform;
    -moz-transition: 500ms ease transform;
    transition: 500ms ease transform;
    z-index: 1;
}
.news-page-tab .triangle-starter .triangle-plus {
    width: 1.875em;
    height: 1.875em;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex
;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 1.875em;
    top: 0.875em;
    -webkit-transform: scale(2) skewY(15deg);
    -moz-transform: scale(2) skewY(15deg);
    -ms-transform: scale(2) skewY(15deg);
    transform: scale(2) skewY(15deg);
    opacity: 0;
    -webkit-transition: 300ms ease all;
    -moz-transition: 300ms ease all;
    transition: 300ms ease all;
    -webkit-transition-delay: 0;
    -moz-transition-delay: 0;
    transition-delay: 0;
    z-index: 1;
}
.news-page-tab .triangle-starter .triangle-plus:before, .news-page-tab .triangle-starter .triangle-plus:after {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    content: "";
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    position: absolute;
}
.news-page-tab .triangle-starter .triangle-plus:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.news-page-tab .triangle-starter:after {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 120px 100px 0;
    border-color: transparent var(--blue) transparent transparent;
    position: absolute;
    right: 0;
    top: -0.5px;
}
.hover-image-title h3 {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: var(--yellow);
    line-height: 26px;
    margin-bottom: 0px;
    z-index: 2;
    font-weight: 600;
}
a.news-page-tab:hover {
    transform: translateY(0) !important;
}
.news-page-tab:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}
.news-page-tab:hover .white-image-title {
    display: none;
}
.news-page-tab:hover .hover-image-title {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}
.news-page-tab:hover .triangle-starter {
    -webkit-transform: skewY(-15deg);
    -moz-transform: skewY(-15deg);
    -ms-transform: skewY(-15deg);
    transform: skewY(-15deg);
}
.news-page-tab:hover .triangle-plus {
    -webkit-transform: scale(1) skewY(15deg);
    -moz-transform: scale(1) skewY(15deg);
    -ms-transform: scale(1) skewY(15deg);
    transform: scale(1) skewY(15deg);
    opacity: 1;
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    transition-delay: 300ms;
}
ul.team-list {
    display: flex
;
    list-style: none;
    margin-bottom: 50px;
    border-bottom: 0px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
ul.team-list li.active a {
    background: var(--blue);
    color: var(--white);
}
ul.team-list li a {
    background: none;
    display: block;
    color: var(--blue);
    font-weight: 500;
    border: 2px solid var(--blue);
    border-radius: 50px;
    padding: 5px 20px;
}
ul.team-list li a:hover, ul.team-list li a:focus {
    background: var(--blue);
    color: var(--white);
    border: 2px solid var(--blue);
}
.blogs {
    padding: 80px 0;
}
.abh_box .abh_tabs {
    padding: 0 !important;
    border-bottom: 0 !important;
}
.abh_box .abh_tabs li.abh_active a, .abh_box .abh_tabs li.abh_active a:hover, .abh_box .abh_tabs li a:hover {
    background-color: var(--yellow) !important;
    border-bottom: none !important;
    padding: 10px 30px !important;
}
.abh_box .abh_tabs li a {
    background: #f5f5f5 !important;
    font-size: 16px !important;
    text-decoration: none !important;
    display: inline-block !important;
    padding: 10px 30px !important;
    font-family: 'Montserrat';
    font-weight: 600;
}
.abh_box .abh_tab_content {
    border: 2px solid var(--yellow) !important;
    padding: 30px !important;
}
div#post-nav {
    display: flex
;
    justify-content: space-between;
}
div#post-nav .post-previous a, div#post-nav .post-next a {
    display: flex
;
    align-items: center;
}
div#post-nav .post-previous a .post-img {
    margin-right: 15px;
}
.post-img {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    min-width: 80px;
    height: 80px;
}
.post-img img {
    object-position: center;
    width: 100%;
    height: 100%;
}
.hover-arrow {
    position: absolute;
    z-index: 9;
    background: var(--yellow);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 25px;
    color: var(--white);
    border-radius: 50%;
    display: flex
;
    opacity: 0;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    -webkit-transform: scale(.5);
    -moz-transform: scale(.5);
    -ms-transform: scale(.5);
    transform: scale(.5);
}
.post-text h4 {
    font-size: 15px;
    color: var(--black);
    transition: all 0.5s;
}
.post-text h4 span {
    display: block;
    font-weight: normal;
    color: var(--black);
    text-transform: uppercase;
}
div#post-nav .post-next a {
    flex-direction: row-reverse;
    text-align: right;
}
div#post-nav .post-next a .post-img {
    margin-left: 15px;
}
div#post-nav a:hover .post-text h4 {
    color: var(--yellow);
}
div#post-nav a:hover .hover-arrow {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.blog-detail {
    padding: 100px 0;
}
.default-img {
    margin-bottom: 30px;
}
.default-img img {
    max-width: 100%;
    height: auto;
}
.post-content-description ul li, .post-content-description ol li {
    margin-bottom: 6px;
}
.post-content-description ul, .post-content-description ol {
    padding-left: 20px;
    margin-bottom: 20px;
}
/*
  --------------------------------------------------------
  responsive
  --------------------------------------------------------
  */
    @media (min-width: 1536px) {
.sponsars-area::before {
        background-size: cover;
    }
.sponsars-area::after {
   background-size: cover;
}
    }
  /* @media (min-width: 1536px) {
.sponsars-area::before {
    background-size: cover;
}
.sponsars-area::after {
    background-size: cover;
}
  } */
@media (max-width: 1440px) {
.main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item .mega-menu-link {
        font-size: 16px;
    }
    .main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.header-btn .mega-menu-link {
    font-size: 15px;
    height: 50px;
    line-height: 50px;
    padding: 0 15px;
}
h2 {
  font-size: 32px;
  line-height: 40px;
}
h3 {
  font-size: 28px;
  line-height: 36px;
}
    .main-header .log img {
        max-width: 177px;
    }
.banner-text h1, .banner-text h2 {
    font-size: 80px;
}
.banner-text h1 strong, .banner-text h2 strong {
    font-size: 46px;
}
.banner-text p {
    line-height: 43px;
}
.yellow-btn {
    padding: 14px 22px;
    font-size: 18px;
}
.banner-area img {
    height: 730px;
}
.counter-area span.time_description {
    font-size: 26px !important;
}
.ribbon-btn .yellow-btn {
    margin-right: 0;
}
.ribbon-text::after {
    width: 163px;
    right: -80px;
}
.info-div p {
    line-height: 30px;
}
.info-div {
    font-size: 18px;
}
.joining-tab {
    font-size: 17px;
    padding: 0px 30px;
    background-size: 156px;
}
.joining-tabs .joining-tab:nth-child(odd)::before {
    width: 235px;
    height: 133px;
}
.joining-tabs .joining-tab:nth-child(even)::after {
    width: 227px;
}
body {
    font-size: 17px;
}
p {
    line-height: 28px;
}
.footer-text h2 {
    font-size: 40px;
}
.footer-text h3 {
    font-size: 28px;
}
.footer-menu ul li a {
    font-size: 18px;
}
.benefits-area h2 {
    margin-bottom: 20px;
}
.story-description {
    min-height: 415px;
}
.work-content {
    max-width: 480px;
}
.work-row .work-tab:nth-child(even)::after {
    width: 143px;
    height: 147px;
    top: 50%;
    background-size: cover;
    transform: translateY(-50%);
}
.work-row .work-tab:nth-child(odd)::after {
    width: 143px;
    height: 147px;
    right: 10px;
    top: 50%;
    background-size: cover;
    transform: translateY(-50%);
}
.work-row .work-tab:nth-child(even)::before {
    left: -40px;
}
.work-row .work-tab:nth-child(odd)::before {
    right: -48px;
}
.work-area {
    padding: 80px 0;
}
.work-area .heading-div {
    max-width: 480px;
}
.work-row {
    max-width: 1200px;
}
.pricing-area.registration .pricing-tab-text .text-link {
    font-size: 20px;
}
}

@media (max-width: 1199px) {
h2 {
  font-size: 28px;
  line-height: 38px;
}
h3 {
  font-size: 26px;
  line-height: 33px;
}
body {
    font-size: 16px;
}
p {
    line-height: 26px;
}
h4 {
    font-size: 22px;
    line-height: 28px;
}
    .main-header .log img {
        max-width: 177px;
    }
    .main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item .mega-menu-link {
        font-size: 14px;
    }
    .main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item {
        margin: 0 10px 0 0;
    }
    .news-page-image img {
    height: 230px;
}
    .main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.header-btn .mega-menu-link {
    padding: 0px 12px;
    font-size: 12px;
    height: 45px;
    line-height: 45px;
}
.white-image-title h3 {
    font-size: 22px;
}
    .footer-menu ul li a {
        font-size: 16px;
    }
.hover-image-title h3 {
    font-size: 22px;
}
        .banner-text h1, .banner-text h2 {
        font-size: 70px;
        line-height: 68px;
    }
        .banner-text h1 strong, .banner-text h2 strong {
        font-size: 40px;
    }
    .banner-text {
    font-size: 32px;
}
    .banner-text p {
        line-height: 40px;
    }
        .banner-area img {
        height: 680px;
    }
    .counter-area .time_left {
    width: 140px;
    height: 140px;
    font-size: 55px !important;
    margin-top: -53px;
}
.counter-area .element_conteiner {
    margin: 0 20px;
}
    .counter-area span.time_description {
        font-size: 22px !important;
    }
        .ribbon-text::after {
        width: 123px;
        right: -60px;
    }
        .yellow-btn {
        padding: 12px 20px;
        font-size: 16px;
    }
        .info-div {
        font-size: 16px;
    }
        .info-div p {
        line-height: 26px;
    }
        .joining-tab {
        font-size: 14px;
        padding: 0px 20px;
        background-size: 126px;
    }
    .joining-tab p {
    line-height: 25px;
}
        .joining-tabs .joining-tab:nth-child(odd)::before {
        width: 185px;
        height: 93px;
    }
        .joining-tabs .joining-tab:nth-child(even)::after {
        width: 197px;
        height: 87px;
    }
        .joining-tabs .joining-tab:nth-child(even)::after {
        width: 186px;
        height: 67px;
    }
    .joining-area {
    padding: 60px 0;
}
.story-description {
    padding: 20px;
}
.stories-area {
    padding: 110px 0 80px 0;
}
.form-area h2 {
    color: var(--yellow);
    font-size: 38px;
}
div#input_1_9 {
    column-gap: 20px;
}
fieldset#field_1_9 {
    column-gap: 30px;
}
    .footer-text h2 {
        font-size: 34px;
    }

        .footer-text h3 {
        font-size: 24px;
    }
    .form-area input[type="submit"] {
    padding: 10px 30px !important;
    font-size: 18px !important;
}
.form-area {
    padding: 60px 0;
}
.gform-footer.gform_footer.top_label {
    padding-bottom: 0 !important;
}
.form-area input[type="submit"] {
    margin-bottom: 0 !important;
}
.info-area {
    padding: 60px 0 80px 0;
}
.ribbon-text h2 {
    max-width: 630px;
}
.strip-area h2, .strip-area h1 {
    font-size: 46px;
}
.sponsars-div {
    padding-top: 70px;
}
.sponsars-div h2 {
    margin-bottom: 40px;
}
.sponsar-tab {
    width: 30%;
    height: auto;
    min-height: 270px;
    padding: 20px;
}
.sponsars-div:nth-child(2) .sponsar-tab {
    width: 25%;
    height: auto;
    min-height: 259px;
}
.sponsars-row {
    gap: 20px;
}
.sponsars-div:nth-child(2) .sponsar-tab {
    width: 25%;
    height: auto;
    min-height: 199px;
}
.sponsars-div:nth-child(3) .sponsar-tab {
    width: 20%;
    height: auto;
    min-height: 176px;
}   
.sponsars-div:last-child .sponsars-row {
    flex-wrap: wrap;
    justify-content: center;
}
.sponsars-div:nth-child(4) .sponsar-tab {
    width: 23%;
    height: auto;
    min-height: 170px;
}
.sponsars-area {
    padding-bottom: 100px;
}
.benefit-tab {
    font-size: 18px;
}
.pricing-info-tab .tab-heading {
    max-width: 300px;
}
.pricing-info-tab::after {
    right: 4px;
}
.pricing-info-tab {
    margin-bottom: 0;
}
.inner-banner img {
    height: 355px;
}
.thankyou-area {
    padding: 55px 0;
}
   .work-area {
    padding: 70px 0;
}
.work-content {
    max-width: 440px;
    font-size: 18px;
    padding: 20px;
}
.work-area .heading-div {
    max-width: 440px;
}
.work-row .work-tab:nth-child(even)::before {
    left: -66px;
}
.work-row .work-tab:nth-child(odd)::before {
    right: -58px;
}
.work-row .work-tab:nth-child(odd)::after {
    width: 123px;
    height: 127px;
    right: -30px;
}
.work-row .work-tab:nth-child(even)::after {
    width: 123px;
    height: 127px;
    left: -40px;
}
.work-row {
    max-width: 992px;
}
.pricing-area.registration .pricing-tab-text .text-link {
    font-size: 18px;
    margin-top: 20px;
}
.pricing-area.registration {
    padding: 50px 0 80px 0;
}
}

@media (max-width: 1024px) {}

@media (max-width: 991px) {
    .footer-menu ul {
    gap: 15px;
}
    h2 {
  font-size: 26px;
  line-height: 34px;
}
h3 {
  font-size: 24px;
  line-height: 30px;
}
body {
    font-size: 15px;
}
p {
    line-height: 22px;
}
h4 {
    font-size: 20px;
    line-height: 25px;
}
        .main-header .log img {
        max-width: 160px;
    }
        .main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item .mega-menu-link {
        font-size: 14px;
        padding: 0 2px;
    }
        .banner-text h1, .banner-text h2 {
        font-size: 55px;
        line-height: 55px;
    }
        .banner-text h1 strong, .banner-text h2 strong {
        font-size: 35px;
    }
            .banner-text {
        font-size: 24px;
    }
        .banner-text p {
        line-height: 35px;
    }    .banner-area img {
        height: 510px;
    }
        .counter-area .time_left {
        width: 130px;
        height: 120px;
        font-size: 45px !important;
        margin-top: -33px;
    }
.ribbon-text h2 {
    max-width: 430px;
}
.ribbon-text {
    width: 65%;
    padding: 30px 0;
}
    .ribbon-text::after {
        width: 103px;
        right: -60px;
    }
    .ribbon-btn {
    width: 35%;
}
    .info-area {
        padding: 50px 0 80px 0;
    }
        .info-div {
        font-size: 14px;
    }
        .info-div p {
        line-height: 21px;
    }
    .info-icon {
    width: 112px;
    height: 125px;
}
.info-icon img {
    padding-bottom: 14px;
    max-width: 52px;
}
.col-md-3:nth-child(2) .info-tab .info-icon img {
    padding-bottom: 14px;
    max-width: 42px;
}
.joining-tabs {
    flex-wrap: wrap;
}
.joining-tab {
    max-width: 32%;
}
.joining-tabs {
    flex-wrap: wrap;
    justify-content: center;
}
    .joining-tabs .joining-tab:nth-child(odd)::before {
        width: 225px;
        height: 113px;
    }
        .joining-tabs .joining-tab:nth-child(even)::after {
        width: 216px;
        height: 87px;
    }    .joining-area {
        padding: 50px 0 40px 0;
    }
.story-img {
    max-width: 250px;
    margin: 0 auto -15px;
}
.heading-div {
    margin-bottom: 40px;
}
.col-lg-4.col-md-6:last-child .story-tab {
    margin-top: 40px;
}
    .stories-area {
        padding: 110px 0 60px 0;
    }
    .form-area h2 {
        font-size: 32px;
        line-height: 43px;
    }
        .form-area {
        padding: 50px 0;
    }
        .footer-text h2 {
        font-size: 28px;
    }
        .footer-text h3 {
        font-size: 21px;
    }
        .footer-menu ul li a {
        font-size: 14px;
    }
    .gfield--type-checkbox legend.gfield_label.gform-field-label {
    margin-bottom: 20px !important;
}
    .gform-footer.gform_footer.top_label {
        padding-top: 0 !important;
    }
.strip-area h2, .strip-area h1 {
    font-size: 36px;
    margin-bottom: 0;
}
.strip-area {
    padding: 30px 20px;
}
.sponsars-div {
    padding-top: 50px;
}
.sponsar-tab {
    min-height: 220px;
}
.sponsars-div:nth-child(2) .sponsar-tab {
    min-height: 139px;
}
.sponsars-div:nth-child(3) .sponsars-row {
    flex-wrap: wrap;
    justify-content: center;
}
.sponsars-div:nth-child(3) .sponsars-row .sponsar-tab {
    width: 22%;
    min-height: 156px;
}
.sponsars-div:nth-child(4) .sponsar-tab {
    width: 22%;
    min-height: 150px;
}
.sponsars-area {
    padding-bottom: 70px;
}
.welcome-area {
    padding: 70px 0;
}
.form-area .gfield--type-checkbox .gfield_checkbox {
    row-gap: 16px;
}
.pricing-area .row.g-5 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 2rem;
}
.pricing-tab-text {
    padding: 20px;
}
.pricing-tab-text p {
    line-height: 25px;
}
    .pricing-info-tab .tab-heading {
        max-width: 310px;
        margin: 0 0 0 10px;
        padding: 12px;
    }
.form-area .gfield--type-checkbox .gfield_checkbox {
    flex-wrap: wrap;
    justify-content: center;
}
.benefits-div {
    padding: 50px 0 60px;
}
.benefits-row {
    column-gap: 30px;
}
    .benefit-tab {
        font-size: 17px;
    }
        .strip-area {
        padding: 20px 20px;
    }
    .pricing-area .heading-div {
    padding: 40px 0 30px;
}
.pricing-info-tab .tab-heading h3 {
    font-size: 21px;
}
       .pricing-info-tab::after {
        top: 10px;
        height: 85px;
        width: 82px;
    }
    .inner-banner img {
    height: 275px;
}
    .thankyou-area {
        padding: 40px 0;
    }
    .page-template-default .inner-banner h1, .page-template-default .inner-banner h2 {
    font-size: 55px;
    line-height: 55px;
}
.joining-tab p span {
    display: inline-block;
}
.joining-tabs .joining-tab:nth-child(odd) {
    padding-top: 85px;
}
.story-description {
    min-height: 305px;
}
    .work-area {
        padding: 50px 0;
    }
        .work-row .work-tab:nth-child(even)::before {
        left: -86px;
    }
    .work-row .work-tab:nth-child(odd)::before {
        right: -98px;
    }
        .work-row .work-tab:nth-child(odd)::after {
        width: 93px;
        height: 97px;
        right: -74px;
    }
        .work-row .work-tab:nth-child(even)::after {
        width: 93px;
        height: 97px;
        left: -70px;
    }
        .work-content {
        font-size: 16px;
    }
        .work-area .heading-div {
        max-width: 100%;
        margin-bottom: 38px;
    }
        .pricing-area.registration {
        padding: 30px 0 70px 0;
    }
    .pricing-area.registration .heading-div {
    margin-bottom: 45px;
}
.pricing-area.registration .pricing-tab-text .text-link {
        font-size: 16px;
        margin-top: 15px;
    }
    .pricing-area.registration::after {
    top: -62px;
    height: 62px;
}
.blogs {
    padding: 50px 0;
}
ul.team-list {
    margin-bottom: 30px;
}
    .news-page-image img {
        height: 250px;
    }
        .main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.header-btn .mega-menu-link {
        padding: 0px 2px;
        font-size: 14px;
        height: 50px;
        line-height: 50px;
        background: transparent !important;
        border-radius: 0 !important;
        color: var(--white) !important;
    }
    .main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item.mega-current-menu-item .mega-menu-link,
    .main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item .mega-menu-link:hover {
    color: var(--yellow) !important;
}
.main-nav #mega-menu-wrap-max_mega_menu_1 .mega-menu-toggle + #mega-menu-max_mega_menu_1 {
    padding: 10px 20px 8px 20px !important;
}
    .main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item .mega-menu-link {
        border-bottom: 1px solid var(--white);
        line-height: 50px;
        height: 50px;
    }
    .main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 li.mega-menu-item:last-child .mega-menu-link {
    border: 0;
}
.blog-detail {
    padding: 60px 0;
}
}

@media (max-width: 767px) {
        .joining-tabs {
        column-gap: 20px;
    }
        h2 {
  font-size: 24px;
  line-height: 30px;
}
h3 {
  font-size: 22px;
  line-height: 27px;
}
body {
    font-size: 14px;
}
p {
    line-height: 20px;
}
h4 {
    font-size: 18px;
    line-height: 22px;
}
        .banner-text h1, .banner-text h2 {
        font-size: 35px;
        line-height: 35px;
    }
        .banner-text h1 strong, .banner-text h2 strong {
        font-size: 24px;
    }
        .banner-text {
        font-size: 20px;
    }
        .banner-text p {
        line-height: 27px;
    }
        .yellow-btn {
        padding: 11px 18px;
        font-size: 14px;
    }
        .banner-area img {
        height: 420px;
    }
        .counter-area .time_left {
        width: 120px;
        height: 110px;
        font-size: 37px !important;
        margin-top: 0;
    }
        .counter-area span.time_description {
        font-size: 20px !important;
    }
        .counter-area .element_conteiner {
        margin: 0 10px 14px;
    }
    .counter-area {
    padding: 40px 0 18px 0;
}
.ribbon-text::after {
    display: none;
}
    .ribbon-text {
        width: 100%;
        padding: 15px 0;
    }
    .ribbon-row {
    display: block;
}
.ribbon-area::after, .ribbon-area::before {
    display: none;
}
    .ribbon-area .container {
        padding: 0;
        max-width: 100%;
    }
    .ribbon-text h2 {
        max-width: 100%;
        text-align: center;
        padding: 0 20px;
    }
    .yellow-btn {
    display: inline-block;
}
    .ribbon-btn {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }
        .info-area {
        padding: 40px 0 40px 0;
        background-image: none;
        background-color: #f2f2f2;
    }
    .info-tab {
    margin-bottom: 30px;
}
.info-area .col-md-3:last-child .info-tab {
    margin-bottom: 0;
}
.info-div p:last-child {
    margin-bottom: 0;
}
    .joining-tab {
        max-width: 100%;
        box-shadow: 0 0 9px 0px rgba(0, 0, 0, 0.1);
        width: 340px;
        padding: 30px 30px !important;
        margin-bottom: 20px;
        border-radius: 10px;
        display: flex
;
        align-items: center;
        justify-content: center;
        background-position: center center !important;
        background-size: 86px !important;
    }
    .joining-tabs .joining-tab:nth-child(odd)::before, .joining-tabs .joining-tab:nth-child(even)::after {
        display: none;
    }
    .joining-tabs .joining-tab:nth-child(odd) {
    padding: 0;
}
.joining-tab p:last-child {
    margin-bottom: 0;
}
.stories-area {
    padding: 40px 0 40px 0;
    background-image: none;
    background-color: #f2f2f2;
}
.joining-tab:last-child {
    margin-bottom: 0 !important;
}
    .col-lg-4.col-md-6:last-child .story-tab {
        margin-top: 0;
        margin-bottom: 0;
    }
    .stories-area .story-tab {
    margin-bottom: 30px;
}
       .form-area h2 {
        font-size: 22px;
        line-height: 30px;
    }
    .form-area .gform_wrapper.gravity-theme .gform_fields {
        column-gap: 20px;
    }
    .form-area .gform_wrapper.gravity-theme .ginput_complex {
    gap: 7px;
}
.form-area .gfield--type-checkbox .gfield_checkbox {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0 !important;
    row-gap: 17px !important;
}
.form-area .gfield--type-checkbox .gfield_checkbox .gchoice {
    width: 50%;
    text-align: left;
}
    .gfield--type-checkbox legend.gfield_label.gform-field-label {
        display: block !important;
        width: 100% !important;
        text-align: left;
    }
        .form-area input[type="submit"] {
        padding: 7px 21px !important;
        font-size: 14px !important;
    }
    .footer-menu ul {
        flex-wrap: wrap;
        row-gap: 10px;
    }
    .footer-menu ul li a {
        font-size: 14px;
    }
        .footer-text h2 {
        font-size: 25px;
    }
        .footer-text h3 {
        font-size: 18px;
    }
    .footer-text ul {
    flex-wrap: wrap;
    gap: 10px;
}
.copyright {
    padding: 10px;
}
.footer-text ul li::before {
    display: none;
}
.main-footer .logo img {
    max-width: 240px;
    margin-bottom: 7px;
}
.form-area .gfield--type-checkbox {
    display: block !important;
}

    .strip-area h2, .strip-area h1 {
        font-size: 24px;
    }
        .strip-area {
        padding: 20px;
    }
    .welcome-area {
    padding: 40px 0;
}
    .sponsar-tab {
        min-height: 180px !important;
        width: 47.5% !important;
    }
.sponsars-row {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center !important;
}
    .sponsars-area {
        padding-bottom: 50px;
    }
        .sponsars-div {
        padding-top: 40px;
    }
    .inner-banner img {
    height: 325px;
    object-position: center
}
    .benefits-row {
        column-gap: 0px;
        flex-wrap: wrap;
    }
   .strip-area h2, .strip-area h1 {
        font-size: 24px;
        line-height: 34px;
    }
        .benefits-div {
        padding: 30px 0 0px 0;
    }
    .pricing-area .row.justify-content-center.mb-5 {
    margin-bottom: 10px !important;
}
    .pricing-info-tab::after {
        top: 10px;
        height: 75px;
        width: 73px;
        right: 0;
    }
    .pricing-area {
    text-align: center;
    padding-bottom: 40px;
}
    .form-area {
        padding: 35px 0 40px 0;
    }
         .strip-area h2, .strip-area h1 {
        font-size: 22px;
        line-height: 30px;
    }
        .pricing-info-tab .tab-heading h3 {
        font-size: 19px;
        line-height: 24px;
    }
    .form-area .gfield--type-checkbox .gform-field-label
 {
    font-size: 14px !important;
}
    .page-template-default .inner-banner h1, .page-template-default .inner-banner h2 {
        font-size: 35px;
        line-height: 42px;
    }
        .inner-banner img {
        height: 260px;
    }
        .thankyou-area {
        padding: 30px 0;
    }
    .thankyou-area .heading-div h2 {
    font-size: 22px;
    line-height: 28px;
}
.form-area .gform_wrapper.gravity-theme .gform_validation_errors>h2 {
    font-size: 14px !important;
}
.form-area .gform_wrapper.gravity-theme .gform_validation_errors {
    margin-block-end: 0px !important;
    padding-inline-end: 0px !important;
    padding-block: 0px !important ;
}
.form-area .validation_message {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.story-description {
    min-height: auto;
}
.work-row .work-tab:nth-child(even)::after, .work-row .work-tab:nth-child(even)::before, .work-row .work-tab:nth-child(odd)::after, .work-row .work-tab:nth-child(odd)::before {
    display: none;
}
    .work-content {
        max-width: 100%;
    }
    .work-row .work-tab {
    width: 100%;
    margin-bottom: 15px;
}
    .work-area {
        padding: 40px 0;
    }
    .pricing-area.registration::after {
    top: -40px;
    height: 40px;
}
    .pricing-area.registration {
        padding: 30px 0 40px 0;
        margin-top: 40px;
    }
/* 	.footer-menu ul li {
    width: 48%;
    text-align: left;
} */
 ul.team-list {
    gap: 8px;
}
.blog-detail {
    padding: 40px 0;
}
.abh_box .abh_tabs li.abh_active a, .abh_box .abh_tabs li.abh_active a:hover, .abh_box .abh_tabs li a:hover {
    padding: 8px 20px !important;
}
.abh_box .abh_tabs li a {
    font-size: 14px !important;
}
.abh_box .abh_tab_content {
    padding: 10px !important;
}
.abh_tab_content .abh_posts_tab .abh_text .abh_name {
    font-size: 16px !important;
}
div#post-nav .post-img img {
    display: none;
}
div#post-nav .post-img .hover-arrow {
    position: relative;
    z-index: 9;
    background: transparent;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 33px;
    color: var(--yellow);
    border-radius: 0;
    opacity: 1;
    transform: none;
}
.post-img {
    min-width: 30px;
    height: 40px;
}
.post-text h4 {
    font-size: 0;
}
.post-text h4 span {
    font-size: 15px;
}
.post-text {
    height: 22px;
}
}