/* =Import Required styles
========================================================================================*/

@import url(normalize.css);

:root {
    /* Site global colours */

    --primary: #B4281B;
    /* Primary color */
    --secondary: #056839;
    /* Secondary color */
    --tertiary: #abd58d;
    /* Tertiary color */
    --quaternary: #0c9ab3;
    /* Quaternary color */
    --dark: #000000;
    /* Body text color */
    --black: #000000;
    /* Black color */
    --white: #ffffff;
    /* White color */
    --light: #f1f1f1;
    /* Blockquote background or lighter */
    --gray: #f0f0f0;
    --text-color: rgba(0, 0, 0, 0.52);

    --primary400: #a13b19;
    --primary600: #fa612e;
    --secondary400: #181e36;
    --secondary600: #233791;
    /* Heading and body font sizes */

    --body-font: 18px;
    /* 18px */
    --body-lineheight: 2;

    --h1: clamp(2.75rem, 4.166666666666667vw, 5rem);
    /* 80px */
    --h2: clamp(1.5rem, 3.333333333333333vw, 4rem);
    /* 64px */
    --h3: clamp(1.5rem, 3.020833333333333vw, 3.625rem);
    /* 58px */
    --h4: clamp(1rem, 1.25vw, 1.5rem);
    /* 24px */
    --h5: clamp(1rem, 1.041666666666667vw, 1.25rem);
    /* 20px */
    --h6: clamp(1rem, 0.9375vw, 1.125rem);
    /* 18px */

    --wrap: 1596px;
    --wrapspace: 30px;

    /* For heading font */
    --font-heading: "Poppins", sans-serif;
    /* Site global fonts */
    --font-body: "Rubik", sans-serif;
    /* For body font */
    --headerHeight: 107px;
    --appHeight: 100vh;
}

html {
    scroll-behavior: smooth
}


/* =Box Sizing
========================================================================================*/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

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

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea,
select,
input[type="button"],
input[type="submit"],
button {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* =Deafult Tag & General Classes
========================================================================================*/

html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    font-smoothing: antialiased;
    /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

body {
    font: var(--body-font)/var(--body-lineheight) var(--font-body);
    color: var(--text-color);
    padding-top: var(--headerHeight);
}

img {
    vertical-align: top;
    border: 0;
}

a,
input[type="button"],
input[type="submit"],
button,
table th,
table td {
    -webkit-transition: background-color 350ms cubic-bezier(0, .34, .74, .99), color 350ms cubic-bezier(0, .34, .74, .99);
    transition: background-color 350ms cubic-bezier(0, .34, .74, .99), color 350ms cubic-bezier(0, .34, .74, .99);
}

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

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

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
    a:active {
        background-color: transparent;
    }
}


strong {
    font-weight: bold;
}

p {
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.5;
    margin: 0 0 34px;
    font-weight: 700;
    color: #000;
    display: block;
}

h1,
h2 {
    font-size: var(--h2);
    font-weight: 900;
    color: #383632;
}

h3 {
    font-size: var(--h3);
}

h4 {
    font-size: var(--h4);
}

h5 {
    font-size: var(--h5);
}

h6 {
    font-size: var(--h6);
}

ul li {
    line-height: 24px;
}

.cf:after,
.wrap:after {
    content: "";
    display: table;
    clear: both;
}

:focus {
    outline: none;
}


.custom-arrow-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 1.1rem;
    display: table;
    margin: 24px 0;
    font-family: var(--font-heading);
}

.custom-arrow-list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 50px;
    color: #000000;
    font-size: 26px;
    font-weight: 500;
}

.custom-arrow-list li:last-child {
    margin-bottom: 0;
}

.custom-arrow-list li:before {
    content: '\f105';
    font-size: 16px;
    position: absolute;
    left: 0;
    top: -4px;
    text-transform: none;
    line-height: 1;
    font-family: "FontAwesome";
    width: 36px;
    height: auto;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
}


/* =Layout Width
========================================================================================*/

.wrap {
    max-width: calc(var(--wrap) + (var(--wrapspace) * 2));
    width: 100%;
    margin: 0 auto;
    padding-left: var(--wrapspace);
    padding-right: var(--wrapspace);
}

#primary {
    float: left;
    width: 700px;
}

#sidebar {
    float: right;
    width: 200px;
}

.one-column {
    width: auto !important;
    float: none !important;
}


/* = On scroll animations
========================================================================================*/

.ani-element {
    opacity: 0;
    position: relative;
    transition: opacity 600ms cubic-bezier(0.15, 0.3, 0.2, 0.9), transform 600ms cubic-bezier(0.15, 0.3, 0.2, 0.9), top 600ms cubic-bezier(0.15, 0.3, 0.2, 0.9);
}

.ani-element.show {
    opacity: 1;
}

.ani-element.up {
    transform: translateY(40px);
}

.ani-element.up.show {
    transform: translateY(0);
}

.ani-element.down {
    transform: translateY(-40px);
}

.ani-element.down.show {
    transform: translateY(0);
}

.ani-element.left {
    transform: translateX(40px);
}

.ani-element.left.show {
    transform: translateX(0);
}

.ani-element.right {
    transform: translateX(-40px);
}

.ani-element.right.show {
    transform: translateX(0);
}

/* Delays */

.delay-1 {
    transition-delay: 30ms;
}

.delay-2 {
    transition-delay: 60ms;
}

.delay-3 {
    transition-delay: 90ms;
}

.delay-4 {
    transition-delay: 120ms;
}

.delay-5 {
    transition-delay: 150ms;
}

.delay-6 {
    transition-delay: 180ms;
}

.delay-7 {
    transition-delay: 210ms;
}

.delay-8 {
    transition-delay: 240ms;
}

.delay-9 {
    transition-delay: 270ms;
}

.delay-10 {
    transition-delay: 300ms;
}

.delay-11 {
    transition-delay: 330ms;
}

.delay-12 {
    transition-delay: 360ms;
}

.delay-13 {
    transition-delay: 390ms;
}

.delay-14 {
    transition-delay: 420ms;
}

.delay-15 {
    transition-delay: 450ms;
}

.delay-16 {
    transition-delay: 480ms;
}

.delay-17 {
    transition-delay: 510ms;
}

.delay-18 {
    transition-delay: 540ms;
}

.delay-19 {
    transition-delay: 570ms;
}

.delay-20 {
    transition-delay: 30ms;
}


/* =Form Style
========================================================================================*/

button,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea,
select,
input[type="submit"],
input[type="button"] {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
    vertical-align: middle;
}

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

button,
input {
    line-height: normal;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="time"],
input[type="number"],
textarea,
select {
    background: transparent;
    padding: 4px 10px;
    height: 35px;
    line-height: 1.55;
    border: solid 1px rgba(0, 0, 0, 0.2);
    color: var(--text-color);
    width: 100%;
    font-family: var(--font-body);
    transition: border-color 200ms ease-in;
    overflow: hidden;
    border-radius: 6px;
    font-size: 14px;
    background-color: var(--white);


    &::placeholder {
        color: var(--text-color);
    }
}

input[type="text"].input-lg,
input[type="password"].input-lg,
input[type="email"].input-lg,
input[type="tel"].input-lg,
input[type="search"].input-lg,
input[type="url"].input-lg {
    height: 58px;
}

input[type="text"].input-sm,
input[type="password"].input-sm,
input[type="email"].input-sm,
input[type="tel"].input-sm,
input[type="search"].input-sm,
input[type="url"].input-sm {
    height: 38px;
}

textarea {
    width: 100%;
    height: 175px;
    overflow: auto;
    resize: vertical;
    padding: 10px 15px;
    font-family: var(--font-body)
}

select {
    padding: 8px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    position: relative;
    /* z-index: 1; */
    background: none;
    line-height: 1.25;
    color: var(--text-color);

    option {
        color: #000;
    }
}

input::-webkit-datetime-edit-fields-wrapper {
    color: var(--text-color);
}

select::-ms-expand {
    display: none;
}

.custom-select {
    display: block;
    margin: 0;
    position: relative;
    /* background: var(--white); */
}

.custom-select:after {
    content: "\f107";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-family: "FontAwesome";
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);
}

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

input[type="button"],
input[type="submit"],
button {
    transition: all .4s ease-in-out;
    color: var(--white);
    border: 0;
    cursor: pointer;
    width: auto;
    overflow: visible;
    padding: 10px ;
    vertical-align: middle;
    text-decoration: none;
    line-height: normal;
    font-family: var(--font-body);
    font-weight: bold;
    background-color: var(--primary);
    width: 100%;
    font-weight: 600;
    border-radius: 6px;
}

input[type="button"]:hover,
input[type="submit"]:hover,
button:hover {
    color: var(--white);
    background-color: var(--secondary);
}

input[type="checkbox"],
input[type="radio"] {
    margin: 4px 8px 0;
    vertical-align: top;
}

::-webkit-input-placeholder {
    opacity: 1;
}

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

:-ms-input-placeholder {
    opacity: 1;
}

:-moz-placeholder {
    opacity: 1;
}

/* =Form list
========================================================================================*/

.form-block {
    margin: 0;
}

.form-group {
    padding: 0;
    position: relative;
    width: 100%;

    .icon-clock {
        position: absolute;
        top: 20px;
        right: 20px;
    }
}

.form-group:after {
    clear: both;
    content: '';
    display: table;
}

.formlist .form-group ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.forgot-link {
    float: right;
}

.form-block .form-group label {
    display: inline-block;
    padding: 0 0 15px;
    line-height: 1.58;
    color: var(--black);
    font-size: 14px;
}

.form-block .form-group label sup {
    color: var(--primary);
}

.form-inline .form-group label {
    float: left;
    width: 30%;
    padding: 10px 10px 10px 0;
    line-height: 1.5
}

.form-inline .form-group .field-box {
    width: 70%;
    float: left;
}

/* =Common button CSS
========================================================================================*/

.button {
    font-size: 18px;
    background-color: var(--primary);
    color: var(--white);
    display: inline-block;
    line-height: 1.2;
    padding: 16px 35px;
    vertical-align: bottom;
    font-weight: 600;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    border-radius: 6px;


    &.btn-radius {
        border-radius: 50px;
    }

    &.btn-secondary {
        background-color: var(--secondary);
        border-color: var(--secondary);

        span {
            background-color: var(--white);
        }

        &:hover {
            background-color: var(--white);
            color: var(--secondary);
        }
    }

    &.btn-white-outline {
        background-color: transparent;
        border-color: var(--white);

        span {
            background-color: var(--primary);
        }

        &:hover {
            background-color: var(--primary);
            border-color: var(--primary);
        }
    }
}

.button span {
    position: absolute;
    background-color: var(--secondary);
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
    transform: translate(-50%, -50%);
    z-index: -1
}

.button:hover {
    background-position: 100% 0;
    text-decoration: none;
    color: var(--white);
}

.button:hover span {
    width: 250%;
    height: 400px
}

.button.btn-lightgray span {
    background-color: var(--primary);
}

.button.btn-outline span {
    background-color: var(--primary);
}

.button.btn-white {
    background-color: var(--white);
    color: var(--primary);

    &:hover {
        color: var(--white);
    }
}

.button.btn-white span {
    background-color: var(--primary);
}

/* =Table CSS
========================================================================================*/

table {
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #ddd;
}

table {
    width: 100%;
    margin-bottom: 30px;
}

table th,
table td {
    padding: 14px 15px;
    line-height: 1.5;
    text-align: left;
    vertical-align: top;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

table th {
    background: #ececec;
    font-weight: 700;
    padding: 17px 15px;
    font-size: 16px;
}

table tr:hover td {
    background: var(--primary);
    color: #fff;
}

table tr.selected td {
    background: var(--primary);
    color: #fff;
}

table thead th {
    vertical-align: middle;
}

table caption+thead tr:first-child th,
table caption+thead tr:first-child td,
table colgroup+thead tr:first-child th,
table colgroup+thead tr:first-child td,
table thead:first-child tr:first-child th,
table thead:first-child tr:first-child td {
    border-top: 0;
}

/* =tabnav CSS
========================================================================================*/

.tabnav {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
}

.tabnav li {
    position: relative;
    margin: 0;
    text-align: center;
}

.tabnav li:first-child {
    margin: 0;
}


.tabnav li a {
    display: block;
    padding: 7px 23px;
    text-decoration: none;
    line-height: 1.25;
    color: #AFAFAF;
    font-size: 20px;
    font-weight: 400;
}

.tabnav li:first-child a {
    border-left: 0;
}

.tabnav li.active a {
    font-weight: 600;
}

.tabnav li.active a,
.tabnav li a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.tabnav li.active a:after {
    display: block;
}


.tabcontent .quicklist li,
.tabcontent .quicklist {
    margin: 0;
}

.tabcontent {
    display: none;
}

.tabcontent p {
    color: #666;
    margin: 20px 0 0;
}

.tabcontent p:first-child {
    margin-top: 0;
}

.tabcontent p a,
.accordion-data p a {
    color: var(--black);
    text-decoration: underline;
}

.tabcontent p a:hover,
.accordion-data p a:hover {
    color: #00305d
}

.tabcontent h4 {
    margin: 0 0 15px;
}


figure {
    margin: 0;
}


/* contact form 7 style */

.wpcf7-form span.wpcf7-not-valid-tip {
    border: 0;
    color: #f00;
    line-height: 1.2;
    padding: 2px 0;
    z-index: 5;
    margin-top: 5px;
    font-size: 16px;
    border-radius: 0;
}

.wpcf7-form div.wpcf7-response-output {
    margin: 15px 0;
    padding: 15px;
    color: #f00;
    background: #fdeeee;
    border: solid 1px #f2c9c9 !important;
    clear: both;
    border-radius: 0;
    text-align: center;
}

form.wpcf7-form div.wpcf7-response-output {
    font-weight: normal;
    color: #468847;
    background: #dff0d8;
    border: solid 1px #d6e9c6 !important;
    font-size: 16px;
    border-radius: 30px;
    text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #ec9a9a !important;
    margin: 20px 0 0;
    padding: 10px;
    color: red;
    background: #fff6f6;
    font-size: 16px;
    text-align: center;
    border-radius: 30px;
}

.wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed
}


.section-row {
    padding: 75px 0;
    background-color: var(--white);
    overflow: clip;
}

.wpcf7-spinner {
    position: absolute !important;
    top: 50%;
    left: auto;
    transform: translateY(-50%);
    background-color: var(--black) !important
}

.img-hover {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.img-hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.img-hover:hover::after {
    opacity: 1;
    visibility: visible;
}

.img-hover:hover img {
    transform: scale(1.03);
}

.img-hover img {
    transition: transform 0.3s ease-in-out;
    width: 100%
}



.grids {
    display: grid;
    grid-gap: 30px
}

.no-gap {
    grid-gap: 0
}

.grids2 {
    grid-template-columns: 1fr 1fr
}

.grids3 {
    grid-template-columns: repeat(3, 1fr)
}

.grids4 {
    grid-template-columns: repeat(4, 1fr)
}

.grids5 {
    grid-template-columns: repeat(5, 1fr)
}

.grids6 {
    grid-template-columns: repeat(6, 1fr)
}

body.admin-bar .header {
    top: 32px;
}

.custom-logo-link {
    max-width: 186px;
    display: flex;
    width: 100%;

    img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
}

#menu-main-menu {
    display: flex;
    align-items: center;
    grid-gap: 150px;

    li {
        a {
            color: var(--white);
            position: relative;
            display: inline-flex;
            align-items: center;
            grid-gap: 5px;
            font-size: 20px;
            font-weight: 600;
            font-family: var(--font-heading);


            &:hover {
                color: #FEBF00;
            }

            &::after {
                content: '';
                position: absolute;
                width: 100%;
                height: 2px;
                background: #FEBF00;
                top: 100%;
                left: 0;
                transform-origin: 100% 50%;
                transform: scaleX(0);
                transition: transform 0.3s cubic-bezier(.76, 0, .24, 1);
            }
        }
    }
}

#menu-main-menu li.active a {
    color: #FEBF00;
}

#menu-main-menu li a:hover:after,
#menu-main-menu li.active a:after {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}

#mainmenu li a:hover {
    .hasarrow {
        border-top-color: var(--black);
        transform: rotate(-180deg);
        transform-origin: center center;
    }
}


#mainmenu ul li.has-menu {
    position: relative;

    a {
        &::after {
            width: calc(100% - 20px);
        }
    }
}

#mainmenu ul li.has-menu {
    position: relative;
    z-index: 1;
}

#mainmenu li.has-menu {
    li {
        margin-bottom: 10px;
    }
}

#mainmenu>ul>li.has-menu .sub-menu {
    display: none;

    li {
        a {

            &::after {
                width: 100%;
                transform-origin: 100% 50%;
                transform: scaleX(0);
            }

            &:hover {
                &::after {
                    transform-origin: 0% 50%;
                    transform: scaleX(1);
                }
            }

        }

        &.active {
            a {
                &::after {
                    transform-origin: 0% 50%;
                    transform: scaleX(1);
                }
            }
        }
    }
}



.hasarrow {
    display: inline-flex;
    transition: all 350ms ease-in-out;
}

#mainmenu>ul li.has-menu li.has-menu .sub-menu {
    left: calc(100% + 15px);
}

#mainmenu ul li.has-menu {
    a {
        &::after {
            width: calc(100% - 20px);
        }
    }

    .sub-menu {
        display: none;

        a {
            &::after {
                display: none;
                color: var(--black) !important;
            }
        }

        .current-menu-item {
            a {
                display: block;
            }
        }
    }
}

.menubox {
    display: flex;
    align-items: center;
    grid-gap: 125px;
}

.header {
    & .current-menu-item {
        a {
            color: var(--primary) !important;

            &::after {
                transform-origin: 0% 50% !important;
                transform: scaleX(1) !important;
            }
        }

        .hasarrow {
            transform: rotate(-180deg);
        }

        .sub-menu {
            display: block !important;

            a {
                color: var(--black) !important;
            }
        }
    }
}

.header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 111;
    transition: all 350ms ease-in-out;
    background-color: #820300;
    padding: 34px 0;

    .wrap {
        --wrap: 1411px;
    }
}

.header.sticky {
    border-bottom: 1px solid rgb(255 255 255 / .6);
    transition: all 250ms cubic-bezier(0, .34, .74, .99);
    will-change: transform;
}


.accordion-databox {
    counter-reset: my-sec-counter;
}

.accordion-databox .accordion-row {
    border: 1px solid var(--primary);
    margin: 0 0 20px;
}

.accordion-databox .accordion-row:last-child {
    margin-bottom: 0;
}

.accordion-databox .accordion-row h5 {
    cursor: pointer;
    margin: 0;
    background: var(--white);
    color: var(--primary);
    position: relative;
    padding: 20px 40px 20px 60px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 350ms ease-in-out;
    display: flex;
}


.accordion-databox .accordion-row h5:after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    margin-top: -4px;
    border-top: solid 8px var(--primary);
    border-left: solid 8px transparent;
    border-right: solid 8px transparent;
    z-index: 2
}

.accordion-databox .accordion-row h5.open {
    background: var(--primary);
    color: var(--white);
}

.accordion-databox .accordion-row h5.open:after {
    border-top: 0;
    border-bottom: solid 8px var(--white);
}

.accordion-databox .accordion-row h5.open:before {
    border-color: var(--white);
}

.accordion-data {
    display: none;
    padding: 28px 30px;
    background-color: var(--white);
}

.accordion-data p {
    margin: 0 0 20px;
    color: var(--black);
}


.accordion-databox .accordion-row h5:before {
    counter-increment: my-sec-counter;
    content: counter(my-sec-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    border-radius: 4px;
    width: 26px;
    height: 26px;
    border: 1.5px solid var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}



.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0;
    visibility: hidden;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    transition: all 350ms ease-in-out;
    margin-top: 0;
    transform: translateY(-50%);
    width: 60px;
    height: auto;
    aspect-ratio: 1;
    background-color: rgba(0, 0, 0, 0.26);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primary);
    color: var(--white);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 22px;
}


.swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    transition: all 250ms cubic-bezier(.75, .1, .6, 1);
    opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary)
}


.swiper-pagination {
    display: none;
    align-items: center;
    justify-content: center;
}

.link-hover {
    transition: background-size 250ms cubic-bezier(.15, .3, .2, .9), color 250ms cubic-bezier(.15, .3, .2, .9) !important;
    background-image: linear-gradient(transparent calc(100% - 1px), var(--secondary) 1px);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 0% 100%;
}

.link-hover:hover {
    background-size: 100% 100%;
    background-position: left bottom;
    text-decoration: none;
}

.social-icons {
    display: flex;
    align-items: center;
    grid-gap: 14px;
    overflow: hidden;
}

.social-icons li {
    display: flex;
}

.social-icons li a {
    position: relative;
    width: 50px;
    height: auto;
    aspect-ratio: 1;
    border: 1px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 20px;
}

.social-icons li a:hover {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

.social-icons li a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: 2;
    background-color: var(--primary);
}

.social-icons li a:hover:before {
    top: 0;
}

.social-icons li a:hover i {
    color: var(--white);
    transform: rotateY(360deg);
}

.social-icons li a i {
    position: relative;
    transition: .5s;
    z-index: 3;
}

.section-title {

    .sub-title {
        color: var(--primary);
        font-size: 24px;
        font-weight: 600;
        padding-left: 100px;
        position: relative;
        z-index: 1;
        display: inline-block;
        vertical-align: top;
        margin-bottom: 21px;

        &::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            background-color: var(--primary);
            height: 4px;
            width: 75px;
            border-radius: 10px;
        }
    }

    h2 {
        position: relative;
        z-index: 1;

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

    .buttons {
        display: flex;
        align-items: center;
        grid-gap: 45px;

        .button {
            margin-top: 0;
        }
    }

    .button {
        margin-top: 48px;
    }

    &.center {
        text-align: center;
        display: table;
        margin: 0 auto;
    }

    &.section-title2 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        grid-gap: 20px;
        margin-bottom: 60px;

        h2 {
            margin-bottom: 0;
            flex: 1;
            font-weight: 900;
        }


        .view-all {
            display: flex;
            align-items: center;
            grid-gap: 10px;
            text-transform: uppercase;
            font-weight: 700;

            &:hover {
                color: var(--secondary);

                i {
                    background-color: var(--secondary);
                }
            }

            i {
                width: 30px;
                height: auto;
                aspect-ratio: 1;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: var(--primary);
                color: var(--white);
                font-size: 16px;
                transition: all 350ms ease-in-out;
            }
        }
    }

    h3 {
        margin-bottom: 20px;
    }

    h2,
    h3 {
        strong {
            color: var(--primary);
        }

        span {
            color: var(--secondary);
        }
    }

    ul {
        margin-bottom: 0;
    }
}

/* footer */


#footer {
    background: var(--primary);
    color: var(--white);
    padding: 66px 0 100px;
    border-bottom: 38px solid var(--secondary);

    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span {
        color: inherit;
    }


    .social-icons {
        li {
            a {
                border-color: var(--white);
                color: var(--white);

                &:hover {
                    border-color: var(--primary);
                }
            }
        }
    }

    .footer-sec {

        &.contact-details {
            .ftr-links {
                grid-gap: 25px;
            }

            address {
                color: #FFB1B1;
            }

        }

        h5 {
            margin-bottom: 20px;
        }

        p {
            font-weight: 300;

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


footer {
    & .current-menu-item {
        a {
            color: var(--primary) !important;
            background-size: 100% 100%;
            background-position: left bottom;
        }
    }
}


.logo {
    margin-bottom: 30px;
    display: inline-flex;

    figure {
        max-width: 186px;
        width: 100%;
        display: inline-block;

        img {
            width: 100%;
            height: auto;
            object-fit: cover
        }
    }
}



.fmenu {
    ul {
        flex-direction: column;
        grid-gap: 10px;

        li {
            a {
                font-size: 16px;
                color: #FFB1B1;
                font-weight: 500;
                background-image: linear-gradient(transparent calc(100% - 1px), var(--white) 1px);
            }
        }
    }

    .ftr-links {
        display: inline-flex;

        li {
            display: flex;
            grid-gap: 12px;

            i {
                display: flex;
                margin-top: 6px;
            }
        }
    }
}

.follow-us {
    ul {
        display: flex;
        align-items: center;
        grid-gap: 30px;
        flex-wrap: wrap;

        li {

            a {
                color: #fff;
                background-image: none;
                font-size: 40px;

                &:hover {
                    color: #FEBF00;
                }
            }
        }
    }
}

address {
    font-style: normal;
    line-height: 1.7;
}


.fmenu li a:hover,
.fmenu li.active a {
    text-decoration: none;
    color: var(--white);
}

.copyright {
    margin-bottom: 0;
}


.footer-row {
    display: grid;
    grid-template-columns: 395px auto;
    grid-gap: 166px;
    align-items: center;
}

.footer-sec-row {
    display: grid;
    grid-template-columns: 110px 168px 84px auto;
    grid-gap: 145px;
}

/* footer */



.banner-slider .swiper-pagination {
    position: static;
    display: none;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.banner-slider .swiper-slide {
    display: flex;
    height: auto;
}

.banner-slider .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    -webkit-transition: all 250ms cubic-bezier(.75, .1, .6, 1);
    transition: all 250ms cubic-bezier(.75, .1, .6, 1);
    opacity: 1
}

.banner-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.banner-slider .swiper-pagination .swiper-pagination-bullet:hover {
    background: #FEBF00;
}

.banner-slider .banner-slider-img {
    padding-top: 33.25%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    color: #fff;
    display: flex;
    align-items: center;
    background-position: center center;
    width: 100%;

    >figure {
        position: absolute;
        top: 15px;
        left: 20px;
        z-index: 1;
        max-width: 127px;

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


.banner-info-row {
    display: flex;
    width: 100%;
}

.default-banner.baner-slider-main-sec {
    background-color: #B4281B;
    position: relative;
    padding: 72px 0;
}

.banner-shape {
    position: absolute;
    bottom: -140px;
    left: 0;
    width: 100%;

    img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.banner-image {
    img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

.banner-row {
    display: flex;
    grid-gap: 158px;
    align-items: center;

    .banner-info {
        max-width: 640px;
    }

    .sub-title {
        letter-spacing: 0.06em;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span {
        color: #fff;
    }
}

.banner-info {

    h1,
    h2 {
        font-size: var(--h1);
        /* font-family: "Outfit", sans-serif; */
        line-height: 1.35;
        font-weight: 900;
        letter-spacing: 0.06em;

        span {
            -webkit-text-stroke: 2px #FEBF00;
            paint-order: stroke fill;
            color: transparent;
        }
    }

    .button {
        margin-top: 50px;
        padding: 18px 35px;
        letter-spacing: 0.06em;
    }

    p {
        font-size: 20px;
        letter-spacing: 0.06em;
    }

}

.sub-title {
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-weight: 500;
}



.banner-badge {
    position: absolute;
    top: 20px;
    left: 0;
    width: 174px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    background-color: var(--secondary);
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    box-shadow: 0 0px 53px 31px rgba(0, 0, 0, 0.09);
}

.banner-price {
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed #fff;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-price span {
    font-size: 33px;
    line-height: 20px
}

.banner-image {
    position: relative;

    figure {
        max-width: 787px;

        img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
    }
}

.baner-slider-main-sec {
    +div {
        padding-top: 312px;
    }
}

.about-us-row {
    display: grid;
    grid-template-columns: 674px auto;
    grid-gap: 180px;
    align-items: flex-start;
}

.about-img {
    figure {
        max-width: 538px;
        display: flex;
        margin: 0 auto;
        width: 100%;

        img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
    }
}


.img-bg {
    padding: 60px 30px;
    position: relative;
    z-index: 1;

    &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background-color: var(--secondary);
        z-index: -1;
        pointer-events: none;
        transition: all 350ms ease-in-out;
        border-radius: 0 0 140px 140px;
    }

    &:hover {
        &::after {
            height: 100%;
            border-radius: 140px;
        }
    }
}


.call {
    color: #000000;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    grid-gap: 28px;

    i {
        font-size: 34px;
        color: var(--primary);
        display: flex;
        align-items: center;
    }
}

.banefit-info {
    h4 {
        text-transform: uppercase;
    }

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


.bg-primary {
    background-color: var(--primary);
    color: var(--white);

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span {
        color: inherit;
    }

    +div {
        padding: 150px 0;
    }
}

.bg-secondary {
    background-color: var(--secondary);
    color: var(--white);

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span {
        color: inherit;
    }

    +div {
        padding: 150px 0;
    }
}

.banefit-img {
    width: 145px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 16px 5px rgba(0, 0, 0, 0.06);

    figure {
        max-width: 75px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;

        img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
    }
}

.banefits-col {
    display: flex;
    grid-gap: 33px;
    align-items: center;

    h4 {
        margin-bottom: 20px;
    }
}

.banefits-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

.banefits-section-main {
    padding: 125px 0;
}


.events-img {

    figure {
        max-width: 538px;
        border-radius: 50%;
        overflow: hidden;
        display: flex;
        width: 100%;
        background-color: var(--primary);
        padding: 44px;

        img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
    }
}


.events-row {
    display: grid;
    grid-template-columns: auto 582px;
    grid-gap: 224px;
}

.special-menu-main-sec {
    padding: 100px 0;

    .section-title {
        max-width: 1000px;
        margin: 0 auto 100px;

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

    .swiper-slide {
        display: flex;
        height: auto;
    }
}

.special-menu-info {
    padding: 24px 15px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;

    h4 {
        font-size: calc(var(--h4) + 8px);
        margin-bottom: 20px;
        color: var(--primary);
    }

    .button {
        margin-top: auto;
    }
}

.special-menu-box {
    background-color: var(--white);
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.special-menu-img figure {
    position: relative;
    display: flex;
    width: 100%;
    padding-top: 102.56%;
    /* overflow: hidden;
    border-radius: 30px 30px 0 0; */

    img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.welcome-img {
    figure {
        max-width: 900px;
        display: flex;
        width: 100%;

        img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
    }
}

.welcome-row {
    display: flex;
    grid-gap: 170px;
    align-items: flex-start;

    .welcome-img {
        max-width: 800px;
        min-width: 800px;
        display: flex;
        width: 100%;

        figure {
            display: flex;
            width: 100%;

            img {
                width: 100%;
                height: auto;
                object-fit: cover;
            }
        }
    }

    .button {
        margin-top: 58px;
    }


    .section-title {
        ul {
            padding-top: 20px;
            margin: 0;
        }

        h2,
        h3 {
            margin-bottom: 50px;
            line-height: 1.5;
        }
    }
}

.contact-us-img {
    min-width: 500px;
    max-width: 500px;
    display: flex;
    width: 100%;

    figure {
        display: flex;
        width: 100%;

        img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
    }
}

.contact-us-row {
    display: flex;
    grid-gap: 290px;
    padding: 60px 70px;
}

.contact-us-info {
    width: 100%;

    h2,
    h3 {
        font-family: "Inter", sans-serif;
        position: relative;
        z-index: 1;
        display: inline-block;
        margin-bottom: 0;
        color: var(--black);

        &::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 100%;
            right: 0;
            width: 193px;
            height: 7px;
            background-color: var(--black);
        }
    }

    ul {
        margin-top: 60px;

        li {
            display: flex;
            grid-gap: 25px;
            margin-bottom: 60px;
            color: #000;
            font-family: var(--font-heading);

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

            i {
                width: 70px;
                height: 70px;
                background-color: var(--primary);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 36px;
                color: var(--white);
            }
        }
    }

    .contact-us-info-col {
        span {
            display: block;
            margin-bottom: 10px;
        }

        a {
            color: #000;

            &:hover {
                color: var(--secondary);
            }
        }

        a,
        address {
            font-weight: 700;
            font-size: calc(var(--h4) + 4px);
        }
    }
}


.contact-us-main-sec {
    position: relative;
    z-index: 1;

    .right-img {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        z-index: -1;
        max-width: 300px;
        width: 100%;
        height: auto;

        img {
            filter: blur(10px);
        }
    }

    .secondary-cirlce {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: -360px;
        z-index: -1;
    }
}


.secondary-cirlce {
    width: 600px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
}


.whatsapp-icon {
    background-color: #0DC143;
    position: fixed;
    bottom: 20px;
    right: 222px;
    z-index: 900;
    width: 100px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 58px;

    &:hover {
        background-color: var(--secondary);
        color: var(--white);
    }

    i {
        display: flex;
        align-items: center;
    }
}

/* 	Scroll back to top */

.progress-wrap {
    position: fixed;
    top: 85%;
    /* @media only screen and (min-width: 1400px) {
        top: 70%;
    } */
    transform: translateY(-50%);
    right: 222px;
    z-index: 900;
    width: 100px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #FEBF00;
    transition: all 350ms ease-in-out;
    cursor: pointer;
    transform: scale(0);
    transform-origin: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 50px;

    &:hover {
        background-color: var(--primary);
    }

    i {
        display: flex;
        align-items: center;
    }
}

.progress-wrap.active-progress {
    transform: scale(1);
    transform-origin: center center;
}
