/*!
Theme Name: La Plaza
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: la-plaza
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

La Plaza is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

1. Clean Base
2. Base Typography
3. Images
4. Links
5. Forms
6. Tables
7. Framework

*/

:root {
    --g-primary: #1a9bac;
    --g-primary-light: #eafdff;
    --g-secondary: #95c23d;
    --g-secondary-light: #f5ffe2;
    --g-tertiary: #fbae42;
    --g-tertiary-light: #fff9f6;
    --g-light: #ffffff;
    --g-dark: #2e2e2e;
    --g-mardigras: #282728;
    --g-black: #000000;
    --g-gray: #797979;


    --bs-font-body: 'DM Sans', sans-serif;
    --bs-font-heading: 'Staatliches', cursive;
    --bs-font-figtree: 'Figtree', sans-serif;
}


/* 1. Clean Base
------------------------------------------------------------------------------ */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
a,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    list-style: none;
    outline: none;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
    -webkit-text-size-adjust: none;
    height: 100%;
}

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

iframe {
    vertical-align: top;
}

textarea:focus,
input:focus,
a,
div,
img {
    outline: none;
}

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

/* 2. Base Typography
------------------------------------------------------------------------------ */
body {
    color: var(--g-davygrey);
    font-size: 16px;
    font-family: var(--bs-font-body);
    font-weight: 400;
    line-height: 1.5;
    background-color: var(--g-light);
    display: flex;
    flex-wrap: wrap;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1;
    font-weight: 400;
    font-family: var(--bs-font-heading);
}

.h1,
h1 {
    font-size: 85px;
    margin-bottom: 30px;
}

.h2,
h2 {
    font-size: 72px;
    margin-bottom: 30px;
}

.h3,
h3 {
    font-size: 40px;
    margin-bottom: 20px;
}

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

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

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

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
    color: inherit;
    text-decoration: none;
}

p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
}

p:last-child {
    margin-bottom: 0;
}

ul {
    margin: 0;
    margin-left: 20px;
    margin-bottom: 20px;
    padding: 0;
}

ul li {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    padding: 0;
    margin-bottom: 8px;
}

ul li:last-child {
    margin-bottom: 0;
}

ul>li {
    list-style: outside disc;
}

ol {
    margin: 0;
    margin-left: 20px;
    padding: 0;
    list-style: none;
}

ol li {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    padding: 0;
    margin-bottom: 8px;
}

ol>li {
    list-style: outside decimal;
}

blockquote {
    display: block;
    text-align: left;
    margin-bottom: 20px;
    position: relative;
    background: #f3f3f3;
    padding: 20px 20px;
    border-left: 4px solid #1589cb;
    line-height: 2;
    font-size: 20px;
    font-style: italic;
    margin-bottom: 25px;
}

blockquote p {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

hr {
    border: 0 var(--g-dark) solid;
    border-top-width: 1px;
    clear: both;
    height: 0;
    margin: 10px auto 40px;
}

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

img[src$=".svg"] {
    width: 100%;
}

.heading_h1 {
    font-weight: 400;
    font-size: 85px;
    line-height: 1.07;
}

.heading_h1 span {
    font-weight: 700;
}

.heading_h2 {
    font-weight: 400;
    font-size: 72px;
    line-height: 1.1;
}

.heading_h2 span {
    font-weight: 700;
}

.heading_h3 {
    font-weight: 400;
    font-size: 40px;
    line-height: 1.1;
}

.heading_h3 span {
    font-weight: 700;
}

.heading_h4 {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.1;
}

.heading_h5 {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
}

.heading_h6 {
    font-weight: 500;
    font-size: 23px;
    line-height: 1.23;
}

.gray_color {
    color: var(--g-gray);
}

.light_color {
    color: var(--g-light);
}

.dark_color {
    color: var(--g-dark);
}

.primary_color {
    color: var(--g-primary);
}

.secondary_color {
    color: var(--g-secondary);
}

.dark_box,
.dark_box .h1,
.dark_box .h2,
.dark_box .h3,
.dark_box .h4,
.dark_box .h5,
.dark_box .h6,
.dark_box h1,
.dark_box h2,
.dark_box h3,
.dark_box h4,
.dark_box h5,
.dark_box h6 {
    color: var(--g-light);
}



/* 4. Link
------------------------------------------------------------------------------ */
a {
    color: #4777ac;
    transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
}

a:hover {
    color: var(--g-dark);
    text-decoration: underline;
}

a:focus {
    outline: none;
}

/* 5. Forms
------------------------------------------------------------------------------ */
label {
    color: var(--g-dark);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 10px;
    display: block;
}

input,
textarea,
button {
    font-family: 'Open Sans', sans-serif;
}

input[type="text"],
input[type="submit"],
input[type="button"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea {
    -webkit-appearance: none;
    outline: none;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="number"],
textarea {
    border: 1px solid #dedede;
    padding: 0 15px;
    color: var(--g-dark);
    font-size: 16px;
    height: 46px;
    font-weight: 400;
    width: 100%;
}

textarea {
    height: 150px;
    resize: none;
    overflow: auto;
    padding: 20px 15px;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
textarea:focus {
    border-color: #66afe9
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    background-color: #cbcbcb;
    padding: 0 15px;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.52857143;
    text-align: center;
    border: none;
    border-radius: 0px;
    color: var(--g-light);
    background-color: var(--g-secondary);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background-color: #66afe9;
    color: var(--g-light);
}

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

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

::-webkit-input-placeholder {
    opacity: 1 !important;
    color: var(--g-dark);
}

:-moz-placeholder {
    opacity: 1 !important;
    color: var(--g-dark);
}

::-moz-placeholder {
    opacity: 1 !important;
    color: var(--g-dark);
}

:-ms-input-placeholder {
    opacity: 1 !important;
    color: var(--g-dark);
}

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

body img.gform_ajax_spinner {
    display: none !important;
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 45px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    text-align: center;
    border: none;
    border-radius: 25px;
    color: var(--g-light);
    background-color: var(--g-dark);
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

.btn:hover,
.btn:focus {
    color: var(--g-light);
    background-color: var(--g-primary);
    border-color: var(--g-primary);
    text-decoration: none;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

.btn-primary {
    color: var(--g-light);
    background-color: var(--g-primary);
    border-color: var(--g-primary);
}

.btn-primary-border {
    color: var(--g-light);
    background-color: transparent;
    border-color: var(--g-light);
    border-width: 1px;
    border-style: solid;
}

.btn-primary:hover,
.btn-primary:focus {
    color: var(--g-light);
    background-color: var(--g-secondary);
    border-color: var(--g-secondary);
}

.btn-secondary {
    color: var(--g-light);
    background-color: var(--g-secondary);
    border-color: var(--g-secondary);
}

.btn-secondary:hover,
.btn-secondary:focus {
    color: var(--g-light);
    background-color: var(--g-primary);
    border-color: var(--g-primary);
}

.btn svg {
    fill: var(--g-light);
    margin-left: 10px;
}

.btn-hover-light:hover svg,
.btn-hover-light:focus svg {
    fill: var(--g-primary);
}

.btn-sm {
    padding: 10px 10px;
}

.btn-md {
    padding: 14px 27px;
}

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

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

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

.btn-link {
    text-decoration: none;
    color: var(--g-primary);
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.btn-link img {
    margin-left: 10px;
    transition: 0.3s;
    margin-bottom: -2px;
}

.btn-link svg {
    fill: var(--g-secondary);
    margin-left: 12px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-link:hover,
.btn-link:focus {
    color: var(--g-primary);
    text-decoration: none;

}

.btn-link:hover img {
    margin-left: 15px;
    transition: 0.3s;
}

.btn-link:hover svg,
.btn-link:focus svg {
    fill: var(--g-primary);
    margin-left: 15px;
}


/* 6. Tables
------------------------------------------------------------------------------ */
table {
    border-spacing: 0;
    border-collapse: collapse;
}

td {
    text-align: left;
    font-weight: normal;
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar
}

.table-bordered {
    width: 100%;
    max-width: 100%;
    text-align: left;
}

.table-bordered th,
.table-bordered td {
    vertical-align: bottom;
    border-bottom: 1px solid #ddd;
    padding: 10px;
}

/* 7. Layout Framework
------------------------------------------------------------------------------*/
section {
    width: 100%;
    overflow: hidden;
}

/* main container */
#wrapper {
    width: 100%;
    display: flex;
    min-height: 100%;
    position: relative;
    flex-wrap: wrap;
    background-color: var(--g-light);
    justify-content: space-between;
    align-content: space-between;
}

.main-container {
    width: 100%;
}

.container,
.container-fluid {
    padding-right: 40px;
    padding-left: 40px;
    width: 100%;
    max-width: 1440px;
    margin: auto;
}

.container-fluid {
    max-width: 100%
}

/* row and column */
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

[class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    width: 100%;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

/* align item */
.d-flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-content-center {
    -ms-flex-line-pack: center;
    align-content: center;
}

.align-items-end {
    -ms-flex-align: end;
    align-items: flex-end;
}

.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

/* column structure */
/* ----- Extra small devices ≤640px ----- */
.col-12 {
    width: 100%
}

.col-11 {
    width: 91.66666667%
}

.col-10 {
    width: 83.33333333%
}

.col-9 {
    width: 75%
}

.col-8 {
    width: 66.66666667%
}

.col-7 {
    width: 58.33333333%
}

.col-6 {
    width: 50%
}

.col-5 {
    width: 41.66666667%
}

.col-4 {
    width: 33.33333333%
}

.col-3 {
    width: 25%
}

.col-2 {
    width: 16.66666667%
}

.col-1 {
    width: 8.33333333%
}

.col-offset-12 {
    margin-left: 100%
}

.col-offset-11 {
    margin-left: 91.66666667%
}

.col-offset-10 {
    margin-left: 83.33333333%
}

.col-offset-9 {
    margin-left: 75%
}

.col-offset-8 {
    margin-left: 66.66666667%
}

.col-offset-7 {
    margin-left: 58.33333333%
}

.col-offset-6 {
    margin-left: 50%
}

.col-offset-5 {
    margin-left: 41.66666667%
}

.col-offset-4 {
    margin-left: 33.33333333%
}

.col-offset-3 {
    margin-left: 25%
}

.col-offset-2 {
    margin-left: 16.66666667%
}

.col-offset-1 {
    margin-left: 8.33333333%
}

.col-offset-0 {
    margin-left: 0
}

/* ----- Small devices ≥641px ----- */
@media (min-width:641px) {
    .col-sm-12 {
        width: 100%
    }

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

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

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

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

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

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

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

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

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

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

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

    .col-sm-offset-12 {
        margin-left: 100%
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%
    }

    .col-sm-offset-9 {
        margin-left: 75%
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%
    }

    .col-sm-offset-6 {
        margin-left: 50%
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%
    }

    .col-sm-offset-3 {
        margin-left: 25%
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%
    }

    .col-sm-offset-0 {
        margin-left: 0
    }
}

/* ----- Medium devices ≥768px ----- */
@media (min-width:768px) {
    .col-md-12 {
        width: 100%
    }

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

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

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

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

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

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

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

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

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

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

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

    .col-md-offset-12 {
        margin-left: 100%
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%
    }

    .col-md-offset-9 {
        margin-left: 75%
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%
    }

    .col-md-offset-6 {
        margin-left: 50%
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%
    }

    .col-md-offset-3 {
        margin-left: 25%
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%
    }

    .col-md-offset-0 {
        margin-left: 0
    }
}

/* ----- Large devices ≥992px ----- */
@media (min-width:992px) {
    .col-lg-12 {
        width: 100%
    }

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

    .col-lg-10 {
        width: 83.33333333%
    }

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

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

    .col-lg-7 {
        width: 58.33333333%
    }

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

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

    .col-lg-4 {
        width: 33.33333333%
    }

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

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

    .col-lg-1 {
        width: 8.33333333%
    }

    .col-lg-offset-12 {
        margin-left: 100%
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%
    }

    .col-lg-offset-9 {
        margin-left: 75%
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%
    }

    .col-lg-offset-6 {
        margin-left: 50%
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%
    }

    .col-lg-offset-3 {
        margin-left: 25%
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%
    }

    .col-lg-offset-0 {
        margin-left: 0
    }
}

/* ----- Extra Large devices ≥1200px ----- */
@media (min-width:1200px) {
    .col-xl-12 {
        width: 100%
    }

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

    .col-xl-10 {
        width: 83.33333333%
    }

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

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

    .col-xl-7 {
        width: 58.33333333%
    }

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

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

    .col-xl-4 {
        width: 33.33333333%
    }

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

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

    .col-xl-1 {
        width: 8.33333333%
    }

    .col-xl-offset-12 {
        margin-left: 100%
    }

    .col-xl-offset-11 {
        margin-left: 91.66666667%
    }

    .col-xl-offset-10 {
        margin-left: 83.33333333%
    }

    .col-xl-offset-9 {
        margin-left: 75%
    }

    .col-xl-offset-8 {
        margin-left: 66.66666667%
    }

    .col-xl-offset-7 {
        margin-left: 58.33333333%
    }

    .col-xl-offset-6 {
        margin-left: 50%
    }

    .col-xl-offset-5 {
        margin-left: 41.66666667%
    }

    .col-xl-offset-4 {
        margin-left: 33.33333333%
    }

    .col-xl-offset-3 {
        margin-left: 25%
    }

    .col-xl-offset-2 {
        margin-left: 16.66666667%
    }

    .col-xl-offset-1 {
        margin-left: 8.33333333%
    }

    .col-xl-offset-0 {
        margin-left: 0
    }
}

/* hidden element */
.hidden {
    display: none;
}

/* ----- Extra small devices ≤640px ----- */
@media (max-width: 640px) {
    .hidden-xs-down {
        display: none;
    }
}

/* ----- Small devices ≥641px ----- */
@media (min-width: 641px) {
    .hidden-sm-up {
        display: none;
    }
}

/* ----- Small devices ≤767px ----- */
@media (max-width: 767px) {
    .hidden-sm-down {
        display: none;
    }
}

/* ----- Medium devices ≥992px ----- */
@media (min-width: 992px) {
    .hidden-md-up {
        display: none;
    }
}

/* ----- Medium devices ≤ 991px ----- */
@media (max-width: 991px) {
    .hidden-md-down {
        display: none;
    }
}

/* ----- Large devices ≥1024px ----- */
@media (min-width: 1024px) {
    .hidden-xl-up {
        display: none;
    }
}

/* Wordpress align class */
.alignnone {
    float: none;
    margin: 20px 0;
}

.aligncenter {
    display: block;
    clear: both;
    margin: 20px auto;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

/* text alignment */
.text-center {
    text-align: center;
}

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

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

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

/* images */
.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-full {
    width: 100%;
    display: block;
}

/* float class */
.float-left {
    float: left
}

.float-right {
    float: right
}

.float-none {
    float: none
}

/* mange spacing */
.space-small {
    padding-top: 30px;
    padding-bottom: 30px;
}

.space-medium {
    padding-top: 50px;
    padding-bottom: 50px;
}

.space-large {
    padding-top: 70px;
    padding-bottom: 70px;
}

.no-bdr {
    border-width: 0
}

/* padding */
.no-padding {
    padding: 0;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pl-0 {
    padding-left: 0;
}

.pr-0 {
    padding-right: 0;
}

.pt-1 {
    padding-top: 20px;
}

.pb-1 {
    padding-bottom: 20px;
}

.pl-1 {
    padding-left: 20px;
}

.pr-1 {
    padding-right: 20px;
}

/* margin */
.no-margin {
    margin: 0;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.ml-0 {
    margin-left: 0;
}

.mr-0 {
    margin-right: 0;
}

.mt-1 {
    margin-top: 20px;
}

.mb-1 {
    margin-bottom: 20px;
}

.ml-1 {
    margin-left: 20px;
}

.mr-1 {
    margin-right: 20px;
}

/* clear element when using */
.cf:before,
.cf:after {
    content: "";
    display: table;
}

.cf:after {
    clear: both;
}


/* Contact Information Section :: START */
.font-18 {
    font-size: 18px;
    line-height: 1.445;
}

.font-24 {
    font-size: 24px;
    line-height: 1.417;
}

.ci-box-icon-main {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background-color: #95c23d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px;
}

.icon-top-layout .ci-box-icon-main {
    margin: -67px auto 0;
    display: flex;
    justify-content: center;
}

.heading_h2_bs {
    color: var(--g-dark);
}

.heading_h2_bs span {
    font-weight: inherit;
    color: var(--g-primary);
}

.contact-information-box.icon-top-layout .contact-information-box-inner {
    box-shadow: -5.917px 12.688px 39.5px rgba(0, 0, 0, 0.03);
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    padding: 0 30px 41px;
    min-height: 290px;
    background-color: #ffffff;
}

.contact-information-box {
    margin-top: 30px;
}

.contact-information-box.icon-top-layout {
    margin-top: 127px;
    text-align: center;
}

.contact-information-box.icon-top-layout .ci-box-main-heading:not(:last-child) {
    margin: 23px 0 17px;
}

.contact-information-box.icon-top-layout .ci-box-extra-info:not(:last-child) {
    margin: 0 0 6px;
}

.contact-information-box.icon-top-layout .ci-box-heading:not(:last-child) {
    margin: 0 0 2px;
}

.contact-information-box.icon-left-layout .contact-information-box-inner {
    width: 100%;
    height: 100%;
    background-color: #eafdff;
    padding: 59px 50px;
    display: flex;
    align-items: center;
}

.contact-information-box.icon-left-layout:nth-child(odd) .contact-information-box-inner {
    background-color: #eafdff;
}

.contact-information-box.icon-left-layout:nth-child(even) .contact-information-box-inner {
    background-color: #f5ffe2;
}

.contact-information-section {
    padding: 136px 0;
}

.contact-information-section .section-main-heading {
    margin: 0 0 35px;
}

.contact-information-box.icon-left-layout .ci-box-icon-main {
    margin: 0 30px 0 0;
    flex-shrink: 0;
}

.contact-information-box .ci-box-icon-details {
    width: 100%;
}

.contact-information-box .ci-box-main-heading,
.contact-information-box .ci-box-extra-info,
.contact-information-box .ci-box-heading {
    margin: 0;
}

.contact-information-box.icon-left-layout .ci-box-main-heading:not(:last-child) {
    margin: 0 0 3px;
}

.contact-information-box.icon-left-layout .ci-box-extra-info:not(:last-child) {
    margin: 0 0 5px;
}

.contact-information-box.icon-left-layout .ci-box-heading:not(:last-child) {
    margin: 0 0 2px;
}

.contact-information-section.section_row_column-25 {
    padding-bottom: 185px;
}

/* .section-default-pm-0{padding: 100px 0;} */
.pmt-0 {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.pmb-0 {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.pmtb-0 {
    padding-top: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.contact-information-section.section_row_column-21 {
    position: relative;
}

.contact-information-section.section_row_column-21:before {
    content: '';
    position: absolute;
    background-image: url('images/contact-top-bg.png');
    left: 0;
    top: 65px;
    right: auto;
    bottom: auto;
    max-width: 633px;
    max-height: 683px;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-size: contain;

}

.contact-information-section.section_row_column-21:after {
    content: '';
    position: absolute;
    background-image: url('images/contact-bottom-bg.png');
    left: auto;
    top: auto;
    right: 0;
    bottom: 0;
    max-width: 633px;
    max-height: 683px;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-size: contain;
}

.contact-information-section .font-24[href^="tel:"] {
    letter-spacing: 1px;
    font-size: 35px;
    font-weight: 500;
}

.contact-information-section.section_row_column-21 .container.row_column-21 {
    position: relative;
    z-index: 1;
}

.inner-page-banner+.contact-information-section .section-top-50-b {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 2px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.20);
    margin: 0 auto;
    display: block;
}

/* Contact Information Section :: END */
/* Get In Touch Section :: START */
.contact-page-form-style-hide {
    display: none;
}

.section-bgImg-opacity-before {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.078;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.section-bgImg {
    position: relative;
}

.inquiry_form.contact-page-form-style {
    background-color: transparent;
    margin: 0 auto;
    max-width: 1020px;
    width: 100%;
}

.inquiry_form.contact-page-form-style .inquiry_form-inner {
    background: transparent;
    padding: 0;
}

.inquiry_form.contact-page-form-style .inquiry_form-inner::after {
    display: none;
}


.get-in-touch-section .section-main-heading {
    margin: 0 0 43px;
}

.get-in-touch-section {
    padding: 77px 0 77px;
}

/* Get In Touch Section :: END */
.footer-btm-border {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.05);
    margin: 0;
    border: 0;
}

.google_map_iframe iframe {
    width: 100%;
    height: 550px;
}

.google-map-section {
    padding: 165px 0;
}

.contact-information-box,
.contact-information-box * {
    font-family: var(--bs-font-body);
}

.position-relative {
    position: relative;
}

.center-section .two-common-section-inner {
    justify-content: center;
}





.progress_bar_with_content .card {
    position: relative;
    width: 220px;
    height: 250px;
    background: #2a2a2a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress_bar_with_content .card .percent {
    position: relative;
    width: 150px;
    height: 150px;
}

.progress_bar_with_content .card .percent svg {
    position: relative;
    width: 150px;
    height: 150px;
    transform: rotate(270deg);
}

.progress_bar_with_content .card .percent svg circle {
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke-width: 2;
    stroke: #1a9bac;
    transform: translate(5px, 5px);
}

.progress_bar_with_content .card .percent svg circle:nth-child(2) {
    stroke: var(--clr);
    stroke-dasharray: 440;
    stroke-dashoffset: calc(440 - (440 * var(--num)) / 100);
    opacity: 0;
    animation: fadeIn 1s linear forwards;
    animation-delay: 2s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.progress_bar_with_content .dot {
    position: absolute;
    inset: 5px;
    z-index: 10;
    /* 360deg / 100 = 3.6  */
    animation: animateDot 2s linear forwards;

}

/*.progress_bar_with_content .card:hover .dot {
    animation: animateDot 2s linear forwards;
}*/
@keyframes animateDot {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(calc(3.6deg * var(--num)));
    }
}

.progress_bar_with_content .dot::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--clr);
    box-shadow: 0 0 10px var(--clr), 0 0 30px var(--clr);
}

.progress_bar_with_content .number {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 1;

}

.progress_bar_with_content .number h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1a9bac;
    font-weight: 700;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.progress_bar_with_content .number h2 span {
    font-weight: 300;
    color: #1a9bac;
    font-size: 0.5em;
}

.progress_bar_with_content .number p {
    font-weight: bold;
    font-size: 0.75em;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #95c23d;
    text-align: center;
    width: 85%;
}

.progress_bar_with_content .two-common-main {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-flow: row wrap;
}

.progress_bar_with_content .two-common-main {
    background-color: transparent !important;
}

.progress_bar_with_content .card {
    position: relative;
    width: 220px;
    height: 250px;
    background: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 8px 3px rgb(0 0 0 / 11%);
    border-radius: 10px;
    margin: 10px 10px 10px;
}

.progress_bar_with_content h4 {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 20px;
    width: 100%;
}

.progress_bar_with_content .two-common-section-inner {
    justify-content: center;
}

.progress_bar_with_content .card-content {
    text-align: center;
    margin: 30px 0 0;
    width: 100%;
}

iframe {
    max-width: 100%;
    margin-top: 15px;
}

.header__search--btn {
    margin-left: 15px;
}

.progress_bar_left,
.progress_bar_right {
    display: flex;
    flex-wrap: wrap;
    width: 49%;
    justify-content: flex-start;
    box-shadow: 0 0 8px 3px rgb(0 0 0 / 11%);
    border-radius: 10px;
    padding: 15px 15px 15px;
    margin-top: 50px;
    justify-content: center;
}

.progress_bar_left h4,
.progress_bar_right h4 {
    width: 100%;
    text-align: left;
    margin: unset;
    max-width: 100%;
    color: #1a9bac;
}

section.two-common-section.progress_bar_with_content.section-design-two-div .two-common-section-inner {
    justify-content: space-between;
}

section.two-common-section.progress_bar_with_content.section-design-two-div .two-common-section-inner p.two-div-content {
    width: 100%;
    max-width: 100%;
    font-weight: bold;
    font-size: 0.75em;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #95c23d;
    text-align: center;
    width: 85%;
}

section.two-common-section.progress_bar_with_content.section-design-two-div .two-common-section-inner p.one-div-content {
    display: none;
}

section.two-common-section.progress_bar_with_content.section-design-two-div .two-common-section-inner .card {
    flex-wrap: wrap;
}

section.two-common-section.progress_bar_with_content.section-design-two-div .card {
    width: 192px;
}

section.two-common-section.progress_bar_with_content.section-design-two-div h4.card-title {
    width: 41%;
    text-align: left;
    margin: 0;
}

section.two-common-section.progress_bar_with_content.section-design-two-div .card-content {
    width: 44%;
    text-align: left;
    padding-top: 0;
    margin-top: 0;
}

section.two-common-section.progress_bar_with_content.section-design-two-div {
    background: #f1f1f1;
}

section.two-common-section.progress_bar_with_content.section-design-two-div .number h2 span {
    padding-top: 12px;
}

section.two-common-section.progress_bar_with_content.section-design-two-div .number h2 {
    font-size: 3em;
}

.c24 {
    max-width: 100%;
}

nav.navigation.posts-navigation {
    width: 100%;
    display: flex;
    justify-content: center;
}

nav.navigation.posts-navigation a {
    display: inline-flex;
    align-items: center;
    padding: 14px 45px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    text-align: center;
    border: none;
    border-radius: 25px;
    color: var(--g-light);
    background-color: #267d8e;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    text-decoration: none;
    margin: 10px;
}

nav.navigation.posts-navigation a:hover {
    background-color: #95c23d;
}

nav.navigation.posts-navigation .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}



section.history-section {
    background: #f3f3f3;
    padding-left: 35px;
    padding-right: 35px;
}

.history-list-new-main-image {
    width: 100%;
    padding-bottom: 25px;
}

.history-list-new-main-icon img {
    width: 50px;
}

.history-list-new-main-icon {
    background: #86eae9;
    padding: 20px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 90px;
    height: 90px;
    margin-top: 50px;
}

.history-list-new-main-description {
    padding-top: 25px;
}

.history-list-new-main-icon:after {
    content: "\2192";
    position: absolute;
    left: 160px;
    font-size: 50px;
    color: #86eae9;
}

.history-list-new-main:last-child .history-list-new-main-icon:after {
    display: none;
}

.history-list-new-main:nth-child(7n+2) .history-list-new-main-icon {
    background: #48dad8;
}

.history-list-new-main:nth-child(7n+3) .history-list-new-main-icon {
    background: #44c8ef;
}

.history-list-new-main:nth-child(7n+4) .history-list-new-main-icon {
    background: #3aaed6;
}

.history-list-new-main:nth-child(7n+5) .history-list-new-main-icon {
    background: #2f88cf;
}

.history-list-new-main:nth-child(7n+6) .history-list-new-main-icon {
    background: #1a538a;
}

.history-list-new-main:nth-child(7n+7) .history-list-new-main-icon {
    background: #1a538a;
}

.history-list-new-main:nth-child(7n+2) .history-list-new-main-icon:after {
    color: #48dad8;
}

.history-list-new-main:nth-child(7n+3) .history-list-new-main-icon:after {
    color: #44c8ef;
}

.history-list-new-main:nth-child(7n+4) .history-list-new-main-icon:after {
    color: #3aaed6;
}

.history-list-new-main:nth-child(7n+5) .history-list-new-main-icon:after {
    color: #2f88cf;
}

.history-list-new-main:nth-child(7n+6) .history-list-new-main-icon:after {
    color: #1a538a;
}

.history-list-new-main:nth-child(7n+7) .history-list-new-main-icon:after {
    color: #1a538a;
}


.history-list-new-main-image img {
    width: 100%;
    height: 100%;
    border: 3px solid #3999aa;
    object-fit: cover;
    object-position: top;
    min-height: 300px;
    max-height: 300px;
    border-radius: 15px;
}

.history-list-new-main {
    width: 14.28%;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.history-list-new {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

section.common-section.top-padding-zero a.btn {
    margin-bottom: 10px;
}

/* Hide the popup by default */
section.popup-form-on-click-button-section #popupForm {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0 0 0 / 76%);
}

section.popup-form-on-click-button-section {
    width: 100%;
}

/* Popup content box */
section.popup-form-on-click-button-section .popup-content {
    background-color: #fff;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 900px;
    position: relative;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    top: 15%;
}

/* Close button */
section.popup-form-on-click-button-section .close {
    position: absolute;
    top: -15px;
    right: -15px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    background: red;
    padding: 0px 11px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.popup-form-on-click-button-section form {
    text-align: left;
}

section.popup-form-on-click-button-section .close:hover,
section.popup-form-on-click-button-section .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

section.popup-form-on-click-button-section input[type="text"],
section.popup-form-on-click-button-section input[type="password"],
section.popup-form-on-click-button-section input[type="email"],
section.popup-form-on-click-button-section input[type="tel"],
section.popup-form-on-click-button-section input[type="search"],
section.popup-form-on-click-button-section input[type="number"],
section.popup-form-on-click-button-section textarea {
    border: 1px solid #1a9bac !important;
    padding: 5px 15px !important;
    color: var(--g-dark);
    font-size: 18px !important;
    height: auto !important;
    font-weight: 400;
    width: 100%;
}

section.popup-form-on-click-button-section textarea {
    min-block-size: 7rem !important;
}

section.popup-form-on-click-button-section .gform-theme--foundation .gform_fields {
    row-gap: 20px !important;
}

section.popup-form-on-click-button-section>.container {
    text-align: center;
}

section.popup-form-on-click-button-section input.gform_button {
    display: inline-flex !important;
    align-items: center !important;
    padding: 14px 45px !important;
    font-size: 16px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    text-align: center !important;
    border: none !important;
    border-radius: 25px !important;
    color: var(--g-light) !important;
    background-color: #95c23d !important;
    transition: 0.3s !important;
    -webkit-transition: 0.3s !important;
}

section.popup-form-on-click-button-section input.gform_button:hover {
    background-color: #1a9bac !important;
}

button.btn.load-more-button {
    margin-top: 20px;
    margin-right: 10px;
}

section.full-image-content-section.right .d-flex.inner-wrap {
    flex-direction: row-reverse;
}

section.full-image-content-section.right .right-detail {
    padding-right: 50px;
    padding-left: calc((100% - 1360px) / 2);
    padding-bottom: 30px;
}




section.our-team-section-section .popup {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-color: rgb(0 0 0 / 88%);
}

/*section.our-team-section-section .popup-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 1450px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 20%;
}*/
section.our-team-section-section .popup-content {
    background-color: #fff;
    padding: 35px 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 1450px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0;
    max-height: 80vh;
    overflow-y: auto;
}

section.our-team-section-section a.openPopup {
    text-decoration: none;
    cursor: pointer;
}

section.our-team-section-section .popup-content-right {
    width: 73%;
    text-align: left;
}

section.our-team-section-section .popup-content-left {
    width: 25%;
}

section.our-team-section-section .our-team-section-main-img img {
    width: 100%;
}

section.our-team-section-section .popup-content-right .popup-content-name {
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 10px;
    color: #00344F;
}

section.our-team-section-section .popup-content-designation {
    font-weight: 600;
}

section.our-team-section-section .popup-content-other_details {
    padding-bottom: 10px;
    border-bottom: 1px solid #0000002b;
    margin-bottom: 10px;
}

section.our-team-section-section .close {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    background: red;
    border-radius: 0;
    line-height: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 26px;
    width: 26px;
    padding-bottom: 3px;
    padding-left: 2px;
}

section.our-team-section-section .our-team-section-main-other_details {
    width: 100%;
    color: #000;
}

section.our-team-section-section .close:hover,
section.our-team-section-section .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.footer__subscribe_link a.main-btn {
    display: inline-block;
    margin: 20px 0;
    border-bottom: 1px solid;
    color: #319bac;
    text-decoration: none;
    cursor: pointer;
}

.footer__subscribe_link a.main-btn:hover {
    color: #95c23d;
}

.footer__address {
    font-weight: 700;
}

.footerlink__list img {
    width: 90%;
    max-width: 250px;
}

section.footer__inner a.info_heading {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 20px;
}

section.footer__inner a.info_heading>img {
    padding-right: 10px;
}

/*
section.history-section .timeline {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  position: relative;
}
section.history-section .timeline__event {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  margin: 20px 0;
  border-radius: 6px;
  align-self: center;
  width: 100%;
}
section.history-section .timeline__event:nth-child(2n+1) {
  flex-direction: row-reverse;
}
section.history-section .timeline__event:nth-child(2n+1) .timeline__event__date {
  border-radius: 0 6px 6px 0;
}
section.history-section .timeline__event:nth-child(2n+1) .timeline__event__content {
  border-radius: 6px 0 0 6px;
}
section.history-section .timeline__event:nth-child(2n+1) .timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 400px;
  background: #7ce7e5;
  position: absolute;
  top: 0%;
  left: 50%;
  right: auto;
  z-index: 1;
  transform: translateX(-50%);
  -webkit-animation: fillTop 2s forwards 4s ease-in-out;
          animation: fillTop 2s forwards 4s ease-in-out;
}
section.history-section .timeline__event:nth-child(2n+1) .timeline__event__icon:after {
  content: "";
  width: 400px;
  height: 2px;
  background: #7ce7e5;
  position: absolute;
  right: 0;
  z-index: 1;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  -webkit-animation: fillLeft 2s forwards 4s ease-in-out;
          animation: fillLeft 2s forwards 4s ease-in-out;
}

section.history-section .timeline__event__content {
    padding: 30px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
    background: #fff;
    width: 65%;
    border-radius: 0 6px 6px 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
}
section.history-section .timeline__event__date {
  color: #f6a4ec;
  font-size: 1.5rem;
  font-weight: 600;
  background: #7ce7e5;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 15px;
  border-radius: 6px 0 0 6px;
  position: relative;
  z-index: 99;
  width: 30%;
}
section.history-section .timeline__event__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  align-self: center;
  margin: 0 25px;
  background: #7ce7e5;
  border-radius: 100%;
  width: 50px;
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
  padding: 50px;
  height: 50px;
  position: relative;
  z-index: 9;
}
section.history-section .timeline__event__icon i {
  font-size: 32px;
}
section.history-section .timeline__event__icon:before {
  content: "";
  width: 2px;
  height: 400px;
  background: #f6a4ec;
  position: absolute;
  top: 0%;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  -webkit-animation: fillTop 2s forwards 4s ease-in-out;
          animation: fillTop 2s forwards 4s ease-in-out;
}
section.history-section .timeline__event__icon:after {
  content: "";
  width: 400px;
  height: 2px;
  background: #f6a4ec;
  position: absolute;
  left: 0%;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  -webkit-animation: fillLeftOdd 2s forwards 4s ease-in-out;
          animation: fillLeftOdd 2s forwards 4s ease-in-out;
}
section.history-section .timeline__event--type2:after {
  background: #555ac0;
}
section.history-section .timeline__event--type2 .timeline__event__date,
section.history-section .timeline__event--type2:nth-child(2n+1) .timeline__event__icon:before, 
section.history-section .timeline__event--type2:nth-child(2n+1) .timeline__event__icon:after,
section.history-section .timeline__event--type2 .timeline__event__icon ,
section.history-section .timeline__event--type2 .timeline__event__icon:before, 
section.history-section .timeline__event--type2 .timeline__event__icon:after{
  background: #39d5d2;
}
section.history-section .timeline__event--type3:after {
  background: #2fc2ea;
}
section.history-section .timeline__event--type3:nth-child(2n+1) .timeline__event__icon:before, 
section.history-section .timeline__event--type3:nth-child(2n+1) .timeline__event__icon:after,
section.history-section .timeline__event--type3 .timeline__event__icon,
section.history-section .timeline__event--type3 .timeline__event__date {
  background: #2fc2ea;
  color: #2fc2ea;
}
section.history-section .timeline__event--type4:nth-child(2n+1) .timeline__event__icon:before, 
section.history-section .timeline__event--type4:nth-child(2n+1) .timeline__event__icon:after,
section.history-section .timeline__event--type4 .timeline__event__icon,
section.history-section .timeline__event--type4 .timeline__event__date,
section.history-section .timeline__event--type4 .timeline__event__icon:before, 
section.history-section .timeline__event--type4 .timeline__event__icon:after {
  background: #14a6ce;
  color: #14a6ce;
}
section.history-section .timeline__event--type5:nth-child(2n+1) .timeline__event__icon:before, 
section.history-section .timeline__event--type5:nth-child(2n+1) .timeline__event__icon:after,
section.history-section .timeline__event--type5 .timeline__event__icon,
section.history-section .timeline__event--type5 .timeline__event__date,
section.history-section .timeline__event--type5 .timeline__event__icon:before, 
section.history-section .timeline__event--type5 .timeline__event__icon:after {
  background: #117ec5;
  color: #117ec5;
}
section.history-section .timeline__event--type6:nth-child(2n+1) .timeline__event__icon:before, 
section.history-section .timeline__event--type6:nth-child(2n+1) .timeline__event__icon:after,
section.history-section .timeline__event--type6 .timeline__event__icon,
section.history-section .timeline__event--type6 .timeline__event__date,
section.history-section .timeline__event--type6 .timeline__event__icon:before, 
section.history-section .timeline__event--type6 .timeline__event__icon:after {
  background: #0e4a7c;
  color: #0e4a7c;
}
section.history-section .timeline__event--type7:nth-child(2n+1) .timeline__event__icon:before, 
section.history-section .timeline__event--type7:nth-child(2n+1) .timeline__event__icon:after,
section.history-section .timeline__event--type7 .timeline__event__icon,
section.history-section .timeline__event--type7 .timeline__event__date,
section.history-section .timeline__event--type7 .timeline__event__icon:before, 
section.history-section .timeline__event--type7 .timeline__event__icon:after {
  background: #0e4a7c;
  color: #0e4a7c;
}
section.history-section .timeline__event__description p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #1a9bac;
}
section.history-section .timeline__event--type3 .timeline__event__icon:before, 
section.history-section .timeline__event--type3 .timeline__event__icon:after {
  background: #aff1b6;
}

section.history-section .timeline__event:last-child .timeline__event__icon:before {
  content: none;
}


@-webkit-keyframes fillLeft {
  100% {
    right: 100%;
  }
}
@keyframes fillLeft {
  100% {
    right: 100%;
  }
}
@-webkit-keyframes fillTop {
  100% {
    top: 100%;
  }
}
@keyframes fillTop {
  100% {
    top: 100%;
  }
}
@-webkit-keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}
@keyframes fillLeftOdd {
  100% {
    left: 100%;
  }
}
section.history-section .timeline__event__icon img {
    width: 50px;
    height: 50px;
    z-index: 9;
    position: absolute;
}
section.history-section .timeline__event__date img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 350px;
    border-radius: 5px;
    object-position: top;
    min-height: 350px;
}

/* New fiesta page CSS Start 04-12-24 */
.new-inner-page-banner {
    padding-top: 100px;
    position: relative;
    z-index: 0;
}

.new-inner-page-banner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 23.5%;
    left: 0;
    bottom: 0px;
    background-color: #f5ffe2;
    z-index: -1;
}

.new-inner-page-banner-title .hero_banner--title {
    color: #000;
    text-transform: capitalize;
    text-align: center;
}

.new-inner-page-banner-box {
    background-color: #1a9bac;
    border-radius: 20px;
    padding: 100px;
    align-items: center;
}
.new-inner-page-banner-sub-title h3 , .new-inner-page-banner-content p {
color: #fff;
}
.new-inner-page-banner-content p a {
    text-decoration: underline;
	color: #fff;
}
.header-banner.inner-page-banner img {
    height: 150px;
}

.header-banner.inner-page-banner::after {
    display: none;
}

section.logo-slider {
    padding: 70px 0px;
    background-color: #f5ffe2;
}
.logo-slide {
    padding: 0 10px;
}
.logo-slide img {
    /* filter: contrast(0.1); */
    transition: all 0.6s linear;
    margin: 0 auto;
    max-width: 202px;
}

/* .logo-slide:hover img {
    filter: contrast(1);
} */

section.upcoming-events-section {
    padding: 150px 0px;
}

.upcoming-events-title-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 73px;
}

.upcoming-events-title h2 {
    margin-bottom: 20px;
}

.upcoming-events-section .events-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.upcoming-events-section .event-card {
    width: 25%;
    padding: 0px 10px;
}

.event-card h3 {
    font-size: 22px;
    padding: 20px 0px 16px;
    margin: 0px;
}

.event-card p {
    font-size: 16px;
}

/* .event-image {
    padding: 10px 19px;
    background: #EFEFEF;
    text-align: center;
    border-radius: 20px;
} */
.event-image img {
    width: 100%;
    height: 100%;
    border: 3px solid #3999aa;
    object-fit: cover;
    object-position: top;
    min-height: 400px;
    max-height: 400px;
    border-radius: 15px;
}

section.sponsors-page-logo-section-block.image-galley-section {
    padding: 90px 0px;
}

.image-galley-section .two-common-section-title {
    margin-bottom: 0px;
}

.footer-cta-section.new-cta-section {
    padding: 50px 0px;
}

.new-cta-section .cta-btn {
    justify-content: flex-end;
}

.cta-heading p {
    margin-bottom: 0px;
}

.cta-heading h3 {
    font-size: 33px;
    margin-bottom: 10px;
}

.new-inner-page-banner-box-img {
    text-align: right;
}

.new-inner-page-banner-box-img img {
    max-height: 514px;
    max-width: 514px;
}
.contact-box-img {
    width: 65px;
    height: 65px;
    background: #2392A2;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-box-img img {
    max-width: 22px;
}
.contact-section-box {
    width: 42.9%;
    padding-right: 100px;
}
.contact-map {
    width: 57.1%;
}
.contact-section-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact-map .map iframe {
    width: 100%;
    border-radius: 20px !important;
    margin: 0px;
}
section.contact-section {
    padding: 100px 0px;
    background-color: #eafdff;
}
.contact-box-item {
    display: flex;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.contact-box-item:last-child {
    border-bottom: 0px solid rgb(0 0 0 / 10%);
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.contact-box-link a {
    font-size: 20px;
    color: #1a9bac;
    display: inline-block;
}
.new-inner-page-banner-wrapper {
    padding: 0px 15px;
}
.upcoming-events-title-text {
    width: 87%;
}
.upcoming-events-button {
    width: 13%;
    text-align: right;
}
.upcoming-events-main {
    padding: 0 10px;
}
.newsletter-section form#gform_2 {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.newsletter-section.get-in-touch-section .section-main-heading {
    margin: 0 0 20px;
    font-size: 50px;
}
.newsletter-section .gform-body {
    width: 100%;
    max-width: 600px;
}
.newsletter-section .gform_footer {
    /* width: 20%; */
    padding: 0px ! important;
    margin: 0px !important;
}
.newsletter-section .inquiry_form.contact-page-form-style .inquiry_form-inner .gform_footer .gform_button {
    margin: 0px !important;
    padding-top: 25px;
    padding-bottom: 25px;
    border-radius: 0px;
    background-color: #1a9bac;
    color: #fff;
}
.newsletter-section .inquiry_form.contact-page-form-style .inquiry_form-inner .gform_footer .gform_button:hover {
  
    background-color: #f26539;
}
.newsletter-section #gform_2 .gfield_validation_message{
    position: absolute;
}
/* New fiesta page CSS End 04-12-24 */
.custom-password-protect-section form {
    height: 80vh;
    background: #d2d2d2;
    width: 100%;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    display: flex;
}
.custom-password-protect-section form > * {
    width: 100%;
    max-width: 450px;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}
.footer__subscribe_link_in #popupForm {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0 0 0 / 76%);
}
.footer__subscribe_link_in .popup-content {
    background-color: #fff;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 900px;
    position: relative;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    top: 15%;
}
.footer__subscribe_link_in .close {
    position: absolute;
    top: -15px;
    right: -15px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    background: red;
    padding: 0px 11px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__subscribe_link_in form input[type=text],
.footer__subscribe_link_in form input[type="email"] {
    border: 1px solid #1a9bac !important;
    padding: 5px 15px !important;
    color: var(--g-dark);
    font-size: 18px !important;
    font-weight: 400;
    width: 100%;
}
.footer__subscribe_link_in  .gform-footer.gform_footer.top_label {
    padding-bottom: 0;
}
.footer__subscribe_link_in input#gform_submit_button_5 {
    display: inline-flex !important;
    align-items: center !important;
    padding: 14px 45px !important;
    font-size: 16px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    text-align: center !important;
    border: none !important;
    border-radius: 25px !important;
    color: var(--g-light) !important;
    background-color: #95c23d !important;
    transition: 0.3s !important;
    -webkit-transition: 0.3s !important;
    margin-bottom: 0 !important;
    margin: 0 auto;
}
.footer__subscribe_link_in .popup-content h3 {
    text-align: center;
}
.footer__subscribe_link_in input#gform_submit_button_5:hover {
    background: #1a9bac !important;
}
.post-type-archive-tribe_events .main-header{
	position: unset;
    background-image: url('https://www.laplazaindy.org/wp-content/uploads/2023/02/inner-page-banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:hover {
    color: #fff;
}
/* spanish Page Woocommerce */
.page-id-2255 header.entry-header , .page-id-2859 header.entry-header {
    position: relative;
    background-image: url('https://www.laplazaindy.org/wp-content/uploads/2023/02/inner-page-banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    color: #fff;
    height: 400px;
    width: 100%;
    object-fit: cover;
    position: relative;
}
.single-tribe_events h1.tribe-events-single-event-title {
    position: relative;
    background-image: url(https://www.laplazaindy.org/wp-content/uploads/2025/03/inner-page-banner-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    color: #fff;
    min-height: 400px;
    width: 100%;
    object-fit: cover;
    position: relative;
    font-size: 85px;
    margin-bottom: 30px;
    padding-top: 244px;
    padding-bottom: 119px;
    padding-right: 87.5px;
    padding-left: 87.5px;
    text-transform: uppercase;
}
.single-tribe_events .tribe-events-event-image img {
    width: 100%;
    max-width: 500px;
}
.single-tribe_events .tribe-events-single >.tribe_events {
    padding-right: 40px;
    padding-left: 40px;
    width: 100%;
    max-width: 1440px;
    margin: auto;
    padding-top: 100px;
    padding-bottom: 100px;
}
.single-tribe_events p.tribe-events-back,
.single-tribe_events .tribe-events.tribe-common,
.single-tribe_events div#tribe-events-footer,
.single-tribe_events .tribe-events-schedule.tribe-clearfix {
    display: none;
}
.single-tribe_events .tribe-events-single-section {
    width: 100%;
}
.single-tribe_events .tribe-events-event-meta dl {
    margin-top: var(--tec-spacer-1);
    font-size: 19px;
    color: #000000;
    font-weight: 400;
    line-height: normal;
}
.single-tribe_events h2.tribe-events-single-section-title {
    display: flex;
    align-items: center;
    color: #000000;
    font-weight: 600;
    font-size: 21px;
    line-height: normal;
    margin: 0 0 10px;
    font-family: "DM Sans";
}
.page-id-2255 h1.entry-title , .page-id-2859 h1.entry-title {
    position: absolute;
    top: 52%;
    width: 100%;
    left: 0;
    text-align: center;
    z-index: 9;
}
.page-id-2255 .entry-content , .page-id-2859 .entry-content{
    padding: 100px 40px;
    width: 100%;
    max-width: 1440px;
    margin: auto;
}
.page-id-2255 #secondary , .page-id-2859 #secondary{
    display: none;
}
.page-id-2255 header.entry-header:after , .page-id-2859 header.entry-header:after {
    content: '';
    background: linear-gradient(180deg, rgb(0, 0, 0) 20%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.4;
}
.page-id-2255 header.entry-header:before , .page-id-2859 header.entry-header:before {
    width: 2px;
    height: 48px;
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,0%);
    background-color: #000;
    opacity: 0.200;
    z-index: 99;
}
html[lang="es-ES"] .single-tribe_events .tribe-events-single-event-title {
    /* display: none; */
}
button.tribe-common-c-btn.tribe-events-c-search__button {
    display: none;
}
