/* Varialbes */

@import url('https://fonts.googleapis.com/css2?family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
    --font-default: "Sarabun", sans-serif;
    --font-heading: "Sarabun", sans-serif;
    --fontawesome: "Font Awesome 5 Pro";
    --black: #000000;
    --dark: #1f2b38;
    --dark-secondary: #022b6d;
    --dark-optional: #3e00a7;
    --white: #ffffff;
    --color-primary: #f94735;
    --color-secondary: #0846C6;
    --color-optional: #ff214a;
    --color-style-two: #f94735;
    --color-heading: #04000b;
    --color-paragraph: #666666;
    --box-shadow-primary: -1px 3px 10px 0 rgba(0, 0, 0, 0.6);
    --box-shadow-secondary: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
    --box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
    --bg-gray: #F7F7F7;
    --bg-gray-secondary: #D8E7EF;
    --bg-gradient: linear-gradient(90deg, var(--color-primary) 0%, var(--dark-optional) 100%);
    --bg-gradient-reverse: linear-gradient(90deg, var(--color-style-two) 0%, var(--color-optional) 100%);
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    height: 100%;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

html,
body,
div,
span,
img,
ol,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
option,
legend,
label,
table,
th,
td,
tr,
article,
aside,
caption,
figure,
footer,
header,
hgroup,
mark,
nav,
section,
time,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.wrapper {
    height: 100%;
}

img {
    border: none;
    outline: none;
    max-width: 100%;
}

label {
    display: inline-block;
    font-weight: normal;
    margin-bottom: 5px;
    max-width: 100%;
}

a {
    outline: none;
    text-decoration: none;
    color: var(--color-heading);
}

a img {
    border: none;
}

a:active {
    outline: none;
    text-decoration: none;
    color: var(--color-heading);
    opacity: 1;
}

a:focus {
    outline: none;
    text-decoration: none;
    color: var(--color-heading);
}

a:hover {
    outline: none;
    text-decoration: none;
    color: var(--color-primary);
    opacity: 1;
}

.color-style-two a:hover {
    color: var(--color-style-two);
}

button {
    outline: medium none;
}

iframe {
    border: none;
}

hr {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    border-top: 1px solid #eeeeee;
}

pre {
    display: block;
    margin: 0 0 30px;
    padding: 9.5px;
    word-wrap: break-word;
    word-break: break-all;
    color: #333333;
    border: 1px solid #ededed;
    border-radius: inherit;
    background-color: #f9f9f9;
    font-size: 13px;
    line-height: 1.42857143;
}

input {
    border: 1px solid #e7e7e7;
    border-radius: inherit;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    min-height: 50px;
}

input:focus {
    outline: none;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

textarea:focus {
    outline: none;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

select:focus {
    outline: none;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

ul {
    list-style-type: none;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

b {
    font-weight: 600;
}

strong {
    font-weight: 600;
}

.row {
    --bs-gutter-x: 30px;
}

i::before {
    line-height: inherit !important;
}

body {
    font-family: var(--font-default);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    overflow-x: hidden;
    background-color: var(--white);
    color: var(--color-paragraph);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-heading);
    font-weight: normal;
    line-height: 1.2;
    font-family: var(--font-heading);
    letter-spacing: 0;
    margin: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

h1 {
    font-size: 40px;
    margin-bottom: 25px;
}

h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 14px;
}

a,
.btn,
button {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    outline: medium none;
    text-decoration: none;
    font-weight: 600;
    line-height: 26px;
}

p {
    color: var(--color-paragraph);
    margin: 0 0 25px;
    text-transform: none;
    font-weight: 400;
    font-family: var(--font-default);
}

.container-full {
    padding: 0 15px;
    margin: auto;
    max-width: 1400px;
}

@media (min-width: 576px) {
    .container-full {
        max-width: 540px;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .container-full {
        max-width: 720px;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .container-full {
        max-width: 960px;
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .container-full {
        max-width: 95%;
        width: 95%;
    }
}

.container-fill {
    padding: 0 15px;
    margin: auto;
    max-width: 100%;
}

@media (min-width: 576px) {
    .container-fill {
        max-width: 540px;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .container-fill {
        max-width: 720px;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .container-fill {
        max-width: 960px;
        width: 100%;
    }

    .nav-container {
        width: 95%;
        margin: auto;
    }
}

@media (min-width: 1200px) {
    .container-fill {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 1199px) {
    .container-fill {
        padding: 0 25px;
        width: 100%;
    }
}

@media only screen and (min-width: 1400px) {
    .container-stage {
        margin-left: calc((100% - 1320px)/ 2);
        width: auto;
        min-width: auto;
        max-width: inherit;
        padding-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .row {
        --bs-gutter-x: 1.5rem;
    }
}

.bg-cover {
    background-position: center center !important;
    background-size: cover !important;
}

.bg-contain {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: left top !important;
}

.bg-fixed {
    background-attachment: fixed !important;
    background-position: center center !important;
    background-size: cover !important;
}

.bg-fit {
    background-size: 100% 100% !important;
    background-position: center !important;
}

.bg-gray {
    background: var(--bg-gray);
}

.bg-gray-secondary {
    background: var(--bg-gray-secondary);
}

.bg-light {
    background-color: var(--white);
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-theme {
    background-color: var(--color-primary);
}

.bg-theme-secodnary {
    background-color: var(--color-secondary);
}

.bg-gradient {
    background-color: var(--color-primary);
    background: var(--bg-gradient) !important;
}

.bg-gradient-secondary {
    background-color: var(--color-secondary);
    background: var(--bg-gradient-secondary) !important;
}

.gradient-bg {
    background-color: var(--color-primary);
    background: var(--gradient-bg) !important;
}

.text-light {
    color: var(--white);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light span,
.text-light a {
    color: var(--white);
}

.bg-dark p {
    color: #cccccc;
}

.shadow {
    -webkit-box-shadow: inherit !important;
    box-shadow: inherit !important;
}

.shadow.dark {
    position: relative;
    z-index: 1;
}

.shadow.dark:after {
    background: var(--dark);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.shadow.dark-hard {
    position: relative;
    z-index: 1;
}

.shadow.dark-hard:after {
    background: var(--black);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.45;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.shadow.theme {
    position: relative;
    z-index: 1;
}

.shadow.theme:after {
    background: var(--color-primary) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.7;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.shadow.light {
    position: relative;
    z-index: 1;
}

.shadow.light:after {
    background: var(--white) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.default-padding,
.default-padding-top,
.default-padding-bottom,
.default-padding-mx {
    position: relative;
}

.default-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media only screen and (max-width: 767px) {
    .default-padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.default-padding-big {
    padding: 250px 0;
}

@media only screen and (max-width: 767px) {
    .default-padding-big {
        padding: 70px 0;
    }
}

.default-padding-top {
    padding-top: 120px;
}

@media only screen and (max-width: 767px) {
    .default-padding-top {
        padding-top: 70px;
    }
}

.default-padding-bottom {
    padding-bottom: 120px;
}

@media only screen and (max-width: 767px) {
    .default-padding-bottom {
        padding-bottom: 70px;
    }
}

.default-padding.bottom-less {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .default-padding.bottom-less {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.default-padding-bottom.bottom-less {
    margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
    .default-padding-bottom.bottom-less {
        margin-bottom: 0;
    }
}

.default-padding-top.bottom-less {
    margin-bottom: -30px;
}

@media only screen and (max-width: 767px) {
    .default-padding-top.bottom-less {
        margin-bottom: -30px;
    }
}

@media only screen and (min-width: 1200px) {
    .align-center {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.border-top {
    border-top: 1px solid #e7e7e7;
}

.border-bottom {
    border-bottom: 1px solid #e7e7e7;
}

.border-left {
    border-left: 1px solid #e7e7e7;
}

.border-right {
    border-right: 1px solid #e7e7e7;
}

.heading {
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: -5px;
    font-size: 42px;
    line-height: 1.3;
}

.heading span {
    font-weight: 400;
}

.site-heading {
    margin-bottom: 60px;
}

.title {
    font-weight: 600;
    font-size: 40px;
}

@media (max-width: 767px) {
    .title {
        font-size: 26px;
        margin-top: 0;
    }
}

.site-heading .title {
    margin-bottom: 0;
}

.sub-title {
    text-transform: uppercase;
    color: var(--color-heading);
    font-weight: 500;
    display: inline-block;
    position: relative;
    z-index: 1;
    background: var(--bg-gray-secondary);
    padding: 7px 15px;
    font-size: 20px;
    border-radius: 4px;
}

.bg-dark .sub-title {
    color: var(--color-heading);
}

.color-style-two .bg-gray .sub-title {
    background: #ffdedb;
    color: var(--color-heading);
}

.bg-gray-secondary .sub-title {
    background: rgba(255, 255, 255, 0.5);
}

.site-heading p {
    margin-bottom: 0;
    margin-top: 18px;
    padding: 0 10%;
}

.site-heading .devider {
    display: inline-block;
    width: 50px;
    height: 2px;
    background: var(--color-primary);
    position: relative;
    z-index: 1;
    left: 10px;
}

.site-heading.light .devider,
.bg-theme .site-heading .devider,
.bg-gradient .site-heading .devider,
.shadow .site-heading .devider,
.bg-dark .site-heading .devider {
    background: var(--white);
}

.site-heading .devider:before {
    position: absolute;
    left: -15px;
    top: 0;
    content: "";
    height: 2px;
    width: 10px;
    background: var(--color-primary);
}

.site-heading.light .devider:before,
.bg-theme .site-heading .devider:before,
.bg-gradient .site-heading .devider:before,
.shadow .site-heading .devider:before,
.bg-dark .site-heading .devider:before {
    background: var(--white);
}

@media (max-width: 767px) {
    .site-heading p {
        padding: 0;
    }
}

@media only screen and (max-width: 767px) {
    .site-heading {
        margin-bottom: 30px;
    }
}

.heading-left {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.heading-left .heading {
    font-weight: 600;
    margin-bottom: 0;
}

.heading-left .right-content {
    border-left: 1px solid #e7e7e7;
    padding-left: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .heading-left .heading {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .heading-left .heading {
        margin-bottom: 15px;
    }
}

.heading-left p {
    margin-bottom: 0;
}

.heading-left .btn {
    margin-top: 30px;
}

@media only screen and (max-width: 767px) {
    .heading-left {
        margin-bottom: 30px;
    }
}

.bg-dark .heading-left p {
    opacity: 0.8;
}

.sub-heading {
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 500;
    background: var(--bg-gradient-reverse);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.bg-gradient .sub-heading {
    color: var(--white);
    background: transparent;
    -webkit-background-clip: inherit;
    background-clip: inherit;
    -webkit-text-fill-color: inherit;
    opacity: 0.9;
}

.video-play-button {
    display: inline-block;
    position: relative;
    height: 120px;
    width: 120px;
    line-height: 120px;
    background: var(--color-primary);
    border-radius: 50%;
    font-size: 30px;
    font-weight: 100;
    color: var(--white);
    text-align: center;
}

.color-style-two .video-play-button {
    background: var(--color-style-two);
}

.color-style-three .video-play-button {
    background: var(--color-style-three);
}

.color-style-four .video-play-button {
    background: var(--color-style-four);
}

.video-play-button i {
    font-weight: 100;
    color: var(--white);
}

.video-play-button::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 105%;
    width: 105%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: pulse-border 3s linear infinite;
    border-radius: 50%;
}

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}


/* Video Paly */

@-webkit-keyframes video-play {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes video-play {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}


/*Zoom Animation */

.zoom-animation {
    -webkit-animation: zoom 2000ms ease-out infinite;
    animation: zoom 2000ms ease-out infinite;
}


/* Slider Zoom Effect */

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1, 1);
    }

    to {
        -webkit-transform: scale(1.2, 1.2);
    }
}

@keyframes zoom {
    from {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    to {
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
    }
}


/* Spiner Animation */

.spiner-animation {
    -webkit-animation: spinner 20s infinite linear;
    animation: spinner 20s infinite linear;
}


/*Preloader Spiner Animation */

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}


/* Spiner Animation */

.spiner-reverse-animation {
    -webkit-animation: spinnerReverse 20s infinite linear;
    animation: spinnerReverse 20s infinite linear;
}


/*Preloader Spiner Animation */

@-webkit-keyframes spinnerReverse {
    to {
        -webkit-transform: rotateZ(-360deg);
        transform: rotateZ(-360deg);
    }
}

@keyframes spinnerReverse {
    to {
        -webkit-transform: rotateZ(-360deg);
        transform: rotateZ(-360deg);
    }
}


/* Infinite Up Down Animation */

@keyframes UpDown {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}


/* Animation UpDown */

.updown-animation {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
    -webkit-animation-name: UpDown;
    animation-name: UpDown;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

@-webkit-keyframes UpDown {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}


/* Animation Left Right */

.leftRight-animation {
    -webkit-animation: fadeLeftRight 10s ease-out infinite;
    animation: fadeLeftRight 10s ease-out infinite;
}


/* Fade Left Right */

@keyframes fadeLeftRight {

    0%,
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
}

@-webkit-keyframes fadeLeftRight {

    0%,
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
}


/* Animation Right Left */

.rightLeft-animation {
    -webkit-animation: fadeRightLeft 10s ease-out infinite;
    animation: fadeRightLeft 10s ease-out infinite;
}

@keyframes fadeRightLeft {

    0%,
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
}

@-webkit-keyframes fadeRightLeft {

    0%,
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
}


/* Animation Zoom Up Down */

.zoomUpDown-animation {
    -webkit-animation: zoomUpDown 10s ease-out infinite;
    animation: zoomUpDown 10s ease-out infinite;
}


/* Zoom Up Down */

@keyframes zoomUpDown {

    0%,
    100% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    50% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
}

@-webkit-keyframes zoomUpDown {

    0%,
    100% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}


/* Animation Moving */

.moving-animation {
    -webkit-animation: moving 10s ease-out infinite;
    animation: moving 10s ease-out infinite;
}


/* Mooving Animation */

@-webkit-keyframes moving {
    0% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

    20% {
        -webkit-transform: translate(0px, -30px);
        transform: translate(0px, -30px);
    }

    50% {
        -webkit-transform: translate(-100px, -30px);
        transform: translate(-100px, -30px);
    }

    70% {
        -webkit-transform: translate(-100px, 0px);
        transform: translate(-100px, 0px);
    }

    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@keyframes moving {
    0% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }

    20% {
        -webkit-transform: translate(0px, -30px);
        transform: translate(0px, -30px);
    }

    50% {
        -webkit-transform: translate(-100px, -30px);
        transform: translate(-100px, -30px);
    }

    70% {
        -webkit-transform: translate(-100px, 0px);
        transform: translate(-100px, 0px);
    }

    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}


/* Animation Rotation */

@keyframes infinite-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes infinite-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* Button Border Animation */

@-webkit-keyframes open {
    0% {
        width: 0;
        height: 0;
    }

    50% {
        width: 100px;
        height: 0;
    }

    100% {
        width: 100px;
        height: 55px;
    }
}

@keyframes open {
    0% {
        width: 0;
        height: 0;
    }

    50% {
        width: 100px;
        height: 0;
    }

    100% {
        width: 100px;
        height: 55px;
    }
}

@-webkit-keyframes openB {
    0% {
        width: 0px;
    }

    100% {
        width: 100px;
    }
}

@keyframes openB {
    0% {
        width: 0px;
    }

    100% {
        width: 100px;
    }
}


/* Animation Shine (A shine color will move inside the text) */

@-webkit-keyframes shine {
    0% {
        margin-right: 0;
    }

    100% {
        margin-right: -100px;
    }
}

@keyframes shine {
    0% {
        margin-right: 0;
    }

    100% {
        margin-right: -100px;
    }
}

@-webkit-keyframes infiniteMove {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes infiniteMove {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@-webkit-keyframes infiniteMove2 {
    0% {
        border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
    }

    50% {
        border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
    }

    100% {
        border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
    }
}

@keyframes infiniteMove2 {
    0% {
        border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
    }

    50% {
        border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
    }

    100% {
        border-radius: 60% 30% 70% 40% / 60% 40% 30% 70%;
    }
}

.orange-color {
    color: var(--color-style-two);
}

.btn {
    display: inline-block;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.35s ease-in-out;
    overflow: hidden;
    border-radius: 7px;
    border: 2px solid transparent;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    font-size: 16px;
    letter-spacing: 0;
    padding: 13px 30px;
    background: #E7EDF8;
    position: relative;
    z-index: 1;
}

.btn:focus,
.btn.active {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    border: 2px solid transparent;
}

.btn:hover {
    background-color: var(--color-primary);
    color: var(--white);
}

.btn.radius {
    border-radius: 6px;
}

.btn.btn-border {
    border: 2px solid var(--color-heading);
    background: transparent;
}

.btn.btn-border.btn-md {
    padding: 14px 52px;
}

.btn.btn-border:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.btn.btn-border.animation::after {
    position: absolute;
    top: 0;
    right: inherit;
    bottom: inherit;
    left: 0;
    content: "";
    height: 100%;
    width: 0;
    z-index: -1;
    background: var(--dark);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.btn.btn-border.animation:hover {
    border-color: var(--dark);
    color: var(--white);
}

.btn.btn-border.animation:hover::after {
    width: 100%;
}

.btn.btn-border-dark {
    border: 2px solid var(--dark);
    background: transparent;
}

.btn.btn-border-dark:hover {
    background: var(--dark);
    border-color: var(--dark);
}

.btn.btn-border-dark.animation::after {
    position: absolute;
    top: 0;
    right: inherit;
    bottom: inherit;
    left: 0;
    content: "";
    height: 100%;
    width: 0;
    z-index: -1;
    background: var(--dark);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.btn.btn-border-dark.animation:hover {
    border-color: var(--dark);
    color: var(--white);
}

.btn.btn-border-dark.animation:hover::after {
    width: 100%;
}

.btn.btn-border-theme {
    border: 2px solid var(--color-primary);
    background: transparent;
}

.btn.btn-border-theme:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.btn.btn-border-theme.animation::after {
    position: absolute;
    top: 0;
    right: inherit;
    bottom: inherit;
    left: 0;
    content: "";
    height: 100%;
    width: 0;
    z-index: -1;
    background: var(--color-primary);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.btn.btn-border-theme.animation:hover {
    border-color: var(--color-primary);
    color: var(--white);
}

.btn.btn-border-theme.animation:hover::after {
    width: 100%;
}

.btn.btn-border-light {
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
}

.btn.btn-border-light:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--dark);
}

.btn.btn-border-light.animation::after {
    position: absolute;
    top: 0;
    right: inherit;
    bottom: inherit;
    left: 0;
    content: "";
    height: 100%;
    width: 0;
    z-index: -1;
    background: var(--white);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.btn.btn-border-light.animation:hover {
    border-color: var(--white);
    color: var(--dark);
}

.btn.btn-border-light.animation:hover::after {
    width: 100%;
}

.btn.btn-gradient {
    border: none;
    color: var(--white);
}

.btn.btn-gradient::after {
    position: absolute;
    top: 0;
    right: inherit;
    bottom: inherit;
    left: 0;
    content: "";
    height: 100%;
    width: 100%;
    z-index: -1;
    background-image: linear-gradient(to right, #f94735, #a200be, #f94735);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    background-size: 220%;
}

.btn.btn-gradient:hover::after {
    background-position: -70% 0;
}

.btn.btn-gradient.active {
    background-position: -70% 0;
}

.btn.btn-theme {
    color: var(--white);
    border: none;
    background: var(--color-primary);
}

.color-style-two .btn.btn-theme {
    color: var(--white);
    border: none;
    background: var(--color-style-two);
}

.btn.btn-theme::after {
    position: absolute;
    top: inherit;
    right: inherit;
    bottom: inherit;
    left: -5%;
    content: "";
    height: 150px;
    width: 115%;
    z-index: -1;
    background-color: var(--dark);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -webkit-transform: translateY(-45%) skew(25deg) scale(0);
    transform: translateY(-45%) skew(25deg) scale(0);
}

.text-light .btn.btn-theme::after {
    background-color: var(--white);
}

.text-light .btn.btn-theme:hover {
    color: var(--color-heading);
}

.btn.btn-theme:hover::after {
    -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
    transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-theme.secondary {
    color: var(--white);
    border: none;
    background: var(--color-optional);
}

.btn.btn-theme.secondary::after {
    position: absolute;
    top: inherit;
    right: inherit;
    bottom: inherit;
    left: -5%;
    content: "";
    height: 150px;
    width: 115%;
    z-index: -1;
    background-color: var(--dark);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -webkit-transform: translateY(-45%) skew(25deg) scale(0);
    transform: translateY(-45%) skew(25deg) scale(0);
}

.text-light .btn.btn-theme.secondary::after {
    background-color: var(--white);
}

.text-light .btn.btn-theme.secondary:hover {
    color: var(--color-heading);
}

.btn.btn-theme.secondary:hover::after {
    -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
    transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-theme.hover-light::after {
    background-color: var(--white);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.btn.btn-theme.hover-light:hover {
    color: var(--dark);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.btn.btn-theme.hover-light:hover::after {
    -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
    transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-light {
    color: var(--color-heading);
    border: none;
    background: var(--white);
    border: 2px solid transparent;
}

.btn.btn-light.btn-md {
    padding: 13px 52px;
}

.btn.btn-light:hover {
    color: var(--white);
    background: transparent;
    border: 2px solid var(--white);
}

.btn.btn-dark {
    color: var(--white);
    background: var(--dark);
    border: none;
}

.btn.btn-dark::after {
    position: absolute;
    top: 0;
    right: inherit;
    bottom: inherit;
    left: 0;
    content: "";
    height: 100%;
    width: 0;
    z-index: -1;
    background-color: var(--color-primary);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.shadow .btn.btn-dark::after {
    background-color: var(--white);
}

.shadow .btn.btn-dark:hover {
    color: var(--color-heading) !important;
}

.btn.btn-dark:hover::after {
    width: 100%;
}

.btn.btn-dark.secondary {
    color: var(--white);
    border: none;
    background: var(--dark-optional);
}

.btn.btn-dark.secondary::after {
    position: absolute;
    top: inherit;
    right: inherit;
    bottom: inherit;
    left: -5%;
    content: "";
    height: 150px;
    width: 115%;
    z-index: -1;
    background-color: var(--white);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -webkit-transform: translateY(-45%) skew(25deg) scale(0);
    transform: translateY(-45%) skew(25deg) scale(0);
}

.btn.btn-dark.secondary:hover::after {
    -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
    transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn.btn-dark.secondary:hover {
    color: var(--color-heading);
}

.btn i {
    position: relative;
    margin-left: 5px;
    font-weight: 100;
    font-size: 20px;
    transform: rotate(-45deg);
    top: 2px;
}

.btn.text-slide {
    min-width: 150px;
    height: 55px;
    line-height: 55px;
}

.btn.text-slide span {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
}

.btn.animate-border {
    overflow: inherit;
    z-index: inherit;
    width: 200px;
    height: 55px;
    line-height: 55px;
    padding: 0;
}

.btn.animate-border:hover {
    background: transparent;
    color: var(--dark);
}

.btn.animate-border:hover .hover-border::after,
.btn.animate-border:hover .hover-border::before {
    opacity: 1;
    -webkit-animation: open 0.4s;
    /* Chrome, Safari, Opera */
    animation: open 0.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
    animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
    -webkit-animation-direction: normal;
    animation-direction: normal;
}

.btn.animate-border:hover .hover-border-bottom::after,
.btn.animate-border:hover .hover-border-bottom::before {
    opacity: 1;
    -webkit-animation: openB 0.4s;
    /* Chrome, Safari, Opera */
    animation: openB 0.4s;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
    animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
    -webkit-animation-direction: normal;
    animation-direction: normal;
}

.btn.animate-border .hover-border {
    position: absolute;
    left: 0;
    top: -1px;
    height: 100%;
    width: 100%;
}

.btn.animate-border .hover-border::before {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    display: block;
    opacity: 0;
    border-top: solid 2px var(--color-primary);
    border-left: solid 2px var(--color-primary);
    right: 98px;
    top: -1px;
}

.btn.animate-border .hover-border::after {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    display: block;
    opacity: 0;
    border-top: solid 2px var(--color-primary);
    border-right: solid 2px var(--color-primary);
    left: 98px;
    top: -1px;
}

.btn.animate-border .hover-border-bottom {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.btn.animate-border .hover-border-bottom::before {
    position: absolute;
    content: "";
    width: 0;
    display: block;
    opacity: 0;
    height: 55px;
    border-bottom: solid 2px var(--color-primary);
    right: -1px;
    bottom: -2px;
}

.btn.animate-border .hover-border-bottom::after {
    position: absolute;
    content: "";
    width: 0;
    display: block;
    opacity: 0;
    height: 100%;
    border-bottom: solid 2px var(--color-primary);
    left: 0;
    bottom: -2px;
}

.btn.animated-arrow {
    border: none;
    background: transparent;
    min-width: 14rem;
    height: auto;
    padding: 0;
}

.btn.animated-arrow .circle {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--color-primary);
    border-radius: 2rem;
}

.btn.animated-arrow .circle .icon {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 15px;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.btn.animated-arrow .circle .icon::before {
    position: absolute;
    content: "";
    top: -0.25rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid var(--white);
    border-right: 0.125rem solid var(--white);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn.animated-arrow .button-text {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px 0;
    margin: 0 0 0 70px;
    color: var(--dark);
    line-height: 2;
    text-align: left;
    width: 100%;
    font-size: 14px;
}

.btn.animated-arrow:hover {
    color: var(--white);
}

.btn.animated-arrow:hover .circle {
    width: 100%;
}

.btn.animated-arrow:hover .circle .icon.arrow {
    background: var(--white);
    -webkit-transform: translate(1.5rem, 0);
    transform: translate(1.5rem, 0);
}

.btn.animated-arrow:hover .button-text {
    color: var(--white);
}

.btn.circle {
    border-radius: 30px !important;
}

.btn-simple {
    line-height: 1;
    text-transform: uppercase;
    display: inline-block;
    color: var(--color-paragraph);
}

.btn-simple i {
    transform: rotate(-45deg);
    display: inline-block;
    margin-left: 2px;
}

.btn-simple:hover {
    color: var(--color-primary);
}

.video-btn i {
    display: inline-block;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 55px;
    background: var(--color-primary);
    border-radius: 50%;
    position: relative;
    margin-right: 20px;
    color: var(--white);
}

.text-light .video-btn i {
    background: var(--white);
    color: var(--color-primary);
}

.video-btn i::after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--color-primary) repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
    z-index: -1;
}

.text-light .video-btn i::after {
    background: var(--white) repeat scroll 0 0;
}

.text-shine {
    background: linear-gradient(to right, var(--dark) 0, var(--white) 10%, var(--color-primary) 20%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: shine 3s infinite linear;
    animation: shine 3s infinite linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap;
    padding: 12px 48px;
}

.animate-inout {
    background: -webkit-gradient(linear, left top, right top, from(#8A6552), to(#472d20));
    background: linear-gradient(90deg, #8A6552 0%, #472d20 100%);
    color: var(--white);
    font-size: 12px;
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: solid 2px var(--color-primary);
    cursor: pointer;
}

.btn-icon {
    position: relative;
    padding-left: 20px;
}

.btn-icon:hover {
    color: var(--color-primary);
}

.btn-icon::after {
    position: absolute;
    right: 10px;
    top: 50%;
    content: "";
    height: 2px;
    left: 0;
    background: var(--color-heading);
    transform: translateY(-50%);
    margin-top: -1px;
    transition: all 0.35s ease-in-out;
}

.btn-icon:hover::after {
    background: var(--color-primary);
}

.btn-icon i {
    font-weight: 500;
}

.btn-icon:hover {
    padding-left: 40px;
}

.animate-inout span {
    z-index: 1;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    line-height: 20px;
}

.animate-inout::before,
.animate-inout::after {
    width: 0%;
    height: 0%;
    position: absolute;
    content: "";
    border-radius: 100%;
}

.animate-inout:after {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-color: var(--white);
}

.animate-inout:before {
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    background: var(--color-primary);
}

.animate-inout.animate-inout-borde {
    background: transparent;
    color: var(--dark);
}

.animate-inout.animate-inout-borde::after {
    background: -webkit-gradient(linear, left top, right top, from(#8A6552), to(#472d20));
    background: linear-gradient(90deg, #8A6552 0%, #472d20 100%);
}

.animate-inout.animate-inout-borde:hover {
    color: var(--white);
}

.animate-inout.animate-inout-borde:hover::before {
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}

.animate-inout.animate-inout-borde:hover::after {
    -webkit-transition: all 0.7s ease-in;
    transition: all 0.7s ease-in;
}

.animate-inout:hover {
    color: var(--dark);
}

.animate-inout:hover::before,
.animate-inout:hover::after {
    width: 200px;
    height: 200px;
    border-radius: 4px;
}

.animate-inout:hover::before {
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}

.animate-inout:hover::after {
    -webkit-transition: all 0.7s ease-in;
    transition: all 0.7s ease-in;
}

.btn-md {
    padding: 16px 52px;
    font-size: 16px;
}

.btn-sm {
    padding: 16px 50px;
    font-size: 14px;
}

.gutter-xl {
    --bs-gutter-x: 150px;
}

.banner-style-one-area {
    position: relative;
    z-index: 1;
    background-size: 120%, cover;
    background-repeat: no-repeat;
    background-position: bottom left;
    height: 100%;
}

.banner-style-one-area div {
    height: 100%;
}

.banner-style-one .row div {
    height: auto;
}

.banner-style-one .row div.banner-one-thumb {
    height: 100%;
}

.banner-style-one .thumb img {
    object-fit: cover;
    height: 100%;
}

.banner-style-one-area .shape-blury {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    height: 600px;
    width: 600px;
    background: red;
    z-index: -1;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
}

.banner-style-one .content {
    padding-top: 100px;
}

.banner-style-one .thumb {
    height: 100% !important;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    padding-top: 80px;
}

.banner-style-one .thumb::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 500px;
    width: 500px;
    transform: translate(-50%, -50%);
    border: 100px solid var(--color-primary);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.04;
}

.banner-style-one .thumb::before {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 500px;
    width: 500px;
    transform: translate(-50%, -50%);
    border: 1px solid var(--color-primary);
    z-index: -1;
    margin-left: 20px;
    margin-top: -20px;
    border-radius: 50%;
    opacity: 0.3;
}

.banner-style-one .row.align-center {
    align-items: center;
}

.banner-style-one .strategy .item {
    position: absolute;
    left: -50px;
    bottom: 30%;
    display: flex;
    background: var(--white);
    padding: 10px 15px;
    border-radius: 10px;
    align-items: center;
    border: 1px solid #e7e7e7;
}

.banner-style-one .strategy .item:nth-child(2) {
    left: auto;
    right: -88px;
    top: 50%;
    bottom: auto;
    margin-top: -160px;
}

.banner-style-one .strategy .item i {
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    background: var(--color-style-two);
    border-radius: 10px;
    color: var(--white);
    font-size: 30px;
    margin-right: 15px;
    font-weight: 100;
}

.banner-style-one .strategy .item p {
    margin: 0;
}

.banner-style-one .strategy .item strong {
    display: block;
    font-size: 30px;
    letter-spacing: 0.6px;
    color: var(--color-heading);
    margin-bottom: 3px;
}

.banner-style-one .information {
    margin-top: -30px;
}

.banner-style-one .information h2 {
    font-size: 60px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 30px;
}

.banner-style-one .information h4 {
    text-transform: uppercase;
    font-weight: 600;
}

.banner-style-one .information p {
    padding-right: 10%;
    line-height: 1.8;
}

.banner-style-one .information h2 strong {
    font-weight: 500;
    color: var(--color-style-two);
}

.banner-style-one .information {
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
}

.banner__shape-wrap img {
    position: absolute;
    z-index: -1;
}

.banner__shape-wrap img:nth-child(1) {
    left: -270px;
    top: 6%;
    -webkit-animation-duration: 35s;
    animation-duration: 35s;
    max-width: 506px;
}

@media (max-width: 1800px) {
    .banner__shape-wrap img:nth-child(1) {
        max-width: 450px;
    }
}

@media (max-width: 1500px) {
    .banner__shape-wrap img:nth-child(1) {
        max-width: 400px;
        left: -220px;
        top: 15%;
    }
}

@media (max-width: 1199.98px) {
    .banner__shape-wrap img:nth-child(1) {
        max-width: 300px;
        top: 20%;
    }
}

@media (max-width: 991.98px) {
    .banner__shape-wrap img:nth-child(1) {
        max-width: 350px;
        top: 31%;
    }
}

@media (max-width: 767.98px) {
    .banner__shape-wrap img:nth-child(1) {
        max-width: 300px;
    }
}

@media (max-width: 991.98px) {
    .banner__shape-wrap img:nth-child(2) {
        display: none;
    }
}

.rotateme {
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.brand-style-one-items {
    background: #273545;
    padding: 30px 10px;
    border-radius: .5rem;
    position: relative;
    z-index: 0;
}

.brand-style-one-items::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/shape/01-3-scaled.webp);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.brand-style-one-items h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
}

.brand-one img {
    height: 35px;
}

.brand-one {
    text-align: center;
}


/* ============================================================== 
    # About Style Three
=================================================================== */
.about-style-one-area {
    padding-top: 120px;
}

.split-text {
    position: relative;
}

.split-text .line {
    overflow: hidden;
    display: none;
}

.thumb-style-two {
    position: relative;
}

.thumb-style-two img {
    border-radius: 10px;
}

.about-style-three-info .fun-fact-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-style-three-info .fun-fact-items .fun-fact-card-two {
    border: 1px solid #e7e7e7;
    background: var(--bg-gray-secondary);
}

.about-style-three-info .fun-fact-items .fun-fact-card-two:nth-child(2) {
    background: transparent;
}

.about-style-three-info .fun-fact-items .fun-fact-card-two:nth-child(2) .sub-title {
    background: var(--dark);
}

.about-style-three-info .fun-fact-items .fun-fact-card-two:nth-child(2) .counter {
    color: var(--color-heading);
}

.about-style-three-info .info-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    margin-right: -40%;
    position: relative;
    z-index: 1;
    gap: 30px;
}

.about-style-three-info .fun-fact-card-two {
    background: var(--bg-gray-secondary);
}

.about-style-three-info .fun-fact-card-two .sub-title {
    background: var(--dark);
}

.about-style-three-info .fun-fact-card-two .operator {
    font-size: 60px;
    margin-top: 2px;
}

.fun-fact-card-two {
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}

.fun-fact-card-two .counter {
    display: inline-flex;
    font-size: 120px;
    line-height: 1;
    font-weight: 600;
    color: var(--color-style-two);
}

.fun-fact-card-two span.medium {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-heading);
}

.fun-fact-card-two .sub-title {
    background: var(--bg-gradient);
    color: var(--white);
    margin-bottom: 50px;
}

.about-style-three-info .right-info {
    border-radius: 10px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.about-style-three-info .right-info::after {
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: url(../images/shape/22.png);
    z-index: -1;
    background-repeat: no-repeat;
    background-position: right bottom;
}

ul.list-style-three {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.list-style-three li {
    font-size: 20px;
    line-height: 1.8;
    font-weight: 500;
    position: relative;
    z-index: 1;
    padding-left: 37px;
}

ul.list-style-three li::after {
    position: absolute;
    left: 0;
    top: 7px;
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    height: 23px;
    width: 23px;
    line-height: 23px;
    background: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-size: 12px;
    border-radius: 50%;
    color: var(--color-heading);
}

.btn-custom {
    padding: 6px 20px !important;
    border-radius: 5px;
    font-size: 16px;
    color: var(--white);
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-weight: 400;
    border: 1px solid #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.btn-custom::after {
    position: absolute;
    top: inherit;
    right: inherit;
    bottom: inherit;
    left: -5%;
    content: "";
    height: 150px;
    width: 115%;
    z-index: -1;
    background-color: var(--dark);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -webkit-transform: translateY(-45%) skew(25deg) scale(0);
    transform: translateY(-45%) skew(25deg) scale(0);
}

.btn-custom:hover::after {
    -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
    transform: translateY(-45%) skew(25deg) scale(1.2);
}

.btn-custom:hover {
    background: var(--color-style-two);
}


/* ============================================================== 
    # Footer
=================================================================== */

footer.bg-gray {
    border-top: 1px solid #dddddd;
}

ul.link-list li a:hover {
    color: var(--color-primary);
}

.f-item.address {
    position: relative;
    z-index: 1;
    padding-right: 30px;
}

.f-item.address::after {
    position: absolute;
    right: 0;
    top: -120px;
    content: "";
    height: 300%;
    width: 2px;
    border-right: 1px solid #dddddd;
    z-index: -1;
    border-radius: 30px;
}

ul.contact-address {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

ul.contact-address li {
    margin-bottom: 30px;
}

ul.contact-address li:last-child {
    margin-bottom: 0;
}

ul.contact-address li p {
    margin-bottom: 7px;
    text-transform: uppercase;
}

ul.contact-address li h4 {
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0;
}

ul.contact-address li a {
    font-weight: 500;
}

ul.contact-address li a:hover {
    color: var(--color-primary);
}

.color-style-two ul.contact-address li a:hover {
    color: var(--color-style-two);
}

footer .widget-title {
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 24px;
}

footer .f-item.link li {
    display: block;
    margin-top: 12px;
}

footer .f-item.link li:first-child {
    margin-top: 0;
}

footer .f-item.link li a {
    font-weight: 400;
}

footer .f-item.link li a:hover {
    color: var(--color-primary);
}

.f-item.newsletter {
    background: #ededed;
    padding: 50px;
}

.f-item.newsletter form {
    position: relative;
    z-index: 1;
    background: var(--white);
    overflow: hidden;
    border-radius: 30px;
    margin-top: 25px;
}

.f-item.newsletter form input {
    background: transparent;
    border: none;
    border-radius: 30px;
    padding: 0 30px;
    padding-right: 60px;
}

.f-item.newsletter form button {
    position: absolute;
    height: 40px;
    width: 40px;
    text-align: center;
    right: 5px;
    top: 5px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--white);
    border: none;
}

.color-style-two .f-item.newsletter form button {
    background: var(--color-style-two);
}

.f-item.newsletter fieldset input {
    height: 15px;
    min-height: auto;
    position: relative;
    top: 2px;
    margin-right: 10px;
}

.f-item.newsletter fieldset {
    margin-top: 20px;
    display: flex;
    align-items: baseline;
}

.bg-gray .f-item.newsletter form {
    box-shadow: 0 5px 3px rgb(3 27 78 / 8%);
}

.bg-gray .f-item.newsletter form input {
    min-height: 60px;
}

.bg-gray .f-item.newsletter form button {
    height: 50px;
    width: 50px;
}

.bg-gray .f-item.address::before {
    position: absolute;
    right: 0;
    top: -120px;
    height: 300%;
    width: 500%;
    background: var(--white);
    content: "";
    z-index: -1;
}

.f-item.address img {
    height: 50px;
    margin-bottom: 30px;
}

ul.footer-social li {
    display: inline-block;
    margin-right: 5px;
}

ul.footer-social {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 20px;
}

ul.footer-social li a {
    display: inline-block;
    height: 45px;
    width: 45px;
    line-height: 45px;
    background: var(--color-primary);
    text-align: center;
    color: var(--white);
    border-radius: 50%;
}
ul.footer-social li a svg{    width: 18px;
    fill: #fff;}
.bg-gray ul.contact-address {
    border-top: 1px solid #dddddd;
    margin-top: 20px;
    padding-top: 20px;
}


/* Footer Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 0;
    background: var(--dark);
    position: relative;
    z-index: 1;
}

ul.link-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.link-list li {
    display: inline-block;
    margin-left: 25px;
}

ul.link-list li a {
    font-weight: 400;
    color: #cccccc;
}

.color-style-two ul.link-list li a:hover {
    color: var(--color-style-two);
}

.footer-bottom p {
    margin: 0;
}

/* ============================================================== 
    # About Style Two
=================================================================== */
.about-style-two-thumb .thumb img {
    border-radius: 50%;
}

.about-style-two-thumb .thumb {
    padding: 50px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.about-style-two-thumb .thumb::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    border-top: 5px solid var(--color-primary);
    border-radius: 50%;
    border-right: 5px solid var(--color-primary);
    z-index: -1;
}

.shape-card {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 300px;
    width: 300px;
}

.about-style-two-thumb .shape-card {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(90deg, rgba(249, 71, 53, 1) 0%, rgba(249, 71, 53, 1) 50%, rgba(162, 0, 190, 1) 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.about-style-two-thumb .shape-card h4 {
    margin: 0;
    max-width: 190px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
}

.shape-card .fun-fact .counter {
    align-items: flex-start;
    justify-content: center;
    font-size: 80px;
    line-height: 1;
    font-weight: 600;
    max-width: 200px;
}

.shape-card .fun-fact h3 {
    font-size: 20px;
    margin: 0;
}

.shape-card .fun-fact .counter .operator {
    font-size: 45px;
    margin-top: 5px;
}

.shape-card .fun-fact {
    margin-top: -30px;
}

.about-style-two-area h2.title {
    margin-bottom: 8px;
    font-size: 28px;
}

.card-style-two {
    display: grid;
    grid-template-columns: .8fr 3fr;
    background: var(--white);
    box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
    border-radius: 10px;
    padding: 30px 20px;
    grid-column-gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}

.card-style-two .thumb {
    position: relative;
    z-index: 1;
    max-width: 120px;
}

.card-style-two .thumb img {
    border-radius: 10px;
    width: 100px;
}

.card-style-two .thumb a.popup-youtube.video-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 80px;
    width: 80px;
    line-height: 80px;
}

.card-style-two .thumb a.popup-youtube.video-play-button i {
    font-size: 24px;
    position: relative;
    left: 3px;
}

.card-style-two h5 {
    margin: 0;
    font-size: 20px;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 15px;
    padding-bottom: 10px;
    margin-top: -15px;
    color: var(--color-primary);
}

.card-style-two p {
    margin: 0;
}

.choose-us-style-one-area {
    position: relative;
    z-index: 1;
}


.choose-us-one-thumb {
    padding: 60px 30px;
    padding-top: 0;
    position: relative;
    z-index: 1;
    background: var(--white);
    border-top-left-radius: 10px;
}

.process-style-one {
    display: grid;
    gap: 50px;
    position: relative;
    z-index: 1;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.process-style-one-item h4 {
    font-size: 18px;
}


.process-style-one-item span {
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    background: var(--bg-gray-secondary);
    text-align: center;
    color: var(--color-heading);
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 30px;
}

.process-style-one::after {
    position: absolute;
    left: 5px;
    right: 5px;
    content: "";
    height: 3px;
    border-top: 2px dashed #cccccc;
    top: 22px;
    z-index: -1;
}

.process-style-one-item p {
    margin: 0;
    opacity: 0.9;
}

/* ============================================================== 
    # Testimonial
=================================================================== */
.testimonial-two-info .review-card {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
}

.testimonial-style-two {
    background: var(--white);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonial-two-info .icon img {
    height: 70px;
    margin-bottom: 30px;
}

.testimonial-style-two .content {
    display: flex;
    align-items: center;
    padding: 25px 50px;
    background: var(--bg-gradient);
    position: relative;
    z-index: 1;
}

.testimonial-style-two .content img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin-right: 20px;
    min-width: 60px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.testimonial-style-two .content h4 {
    font-size: 20px;
    margin-bottom: 3px;
    color: var(--white);
}

.testimonial-style-two .content span {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--white);
}

.testimonial-style-two p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-paragraph);
}

.testimonial-style-two .text-info {
    padding: 50px;
    position: relative;
    z-index: 1;
}

.testimonial-style-two .text-info::after {
    position: absolute;
    right: 50px;
    bottom: 30px;
    content: "\f10e";
    font-family: "Font Awesome 5 Pro";
    color: var(--color-heading);
    font-size: 50px;
    z-index: -1;
    opacity: 0.05;
}

.testimonial-style-two .text-info p {
    margin: 0;
}

.testimonial-style-two .content::after {
    position: absolute;
    left: 0;
    top: -29px;
    content: "";
    height: 30px;
    width: 30px;
    background: var(--color-primary);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

/* ============================================================== 
    # Quote
=================================================================== */
.quote-style-one {
    background: var(--white);
    padding: 40px;
    position: relative;
    z-index: 1;
    box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
    border-radius: 10px 10px 0px 0px;
}

.quote-style-one .title {
    font-size: 40px;
    margin-bottom: 10px;
}

.quote-style-one form {
    margin-top: 30px;
}

.quote-style-one form input,
.quote-style-one form textarea {
    background: #eff2f5;
    border: none;
    box-shadow: none;
}

.quote-style-one form label {
    font-weight: 600;
    color: var(--color-heading);
}

.quote-style-one form .form-group {
    margin-bottom: 15px;
}

.quote-style-one form textarea {
    height: 160px;
}

.quote-style-one form button {
    width: 100%;
    border: none;
    background: var(--bg-gradient-reverse);
    color: var(--white);
    padding: 15px;
    border-radius: 5px;
    text-transform: uppercase;
}



@media (min-width: 1024px) {
    .quote-style-one {
        margin-left: -50px;
    }
}


.quote-style-one-area .shape {
    position: absolute !important;
    right: 0;
    bottom: 0;
    max-width: 30%;
}

.home-blog-thumb {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

ul.home-blog-meta {
    position: absolute;
    left: 0;
    bottom: -1px;
    background: var(--white);
    margin: 0;
    list-style: none;
    padding: 0;
    border-top-right-radius: 10px;
    padding-top: 20px;
    padding-right: 25px;
}

ul.home-blog-meta::after {
    position: absolute;
    right: -20px;
    bottom: 0;
    content: "";
    height: 33px;
    width: 20px;
    border-bottom-left-radius: 17px;
    box-shadow: 0 20px 0 0 var(--white);
}

.bg-gray ul.home-blog-meta::after {
    box-shadow: 0 20px 0 0 var(--bg-gray);
}

ul.home-blog-meta::before {
    position: absolute;
    left: -1px;
    top: -26px;
    content: "";
    height: 26px;
    width: 20px;
    border-bottom-left-radius: 12px;
    box-shadow: 0 20px 0 0 var(--white);
}

.bg-gray ul.home-blog-meta::before {
    box-shadow: 0 20px 0 0 var(--bg-gray);
}

ul.home-blog-meta li {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
}

.bg-gray ul.home-blog-meta {
    background: var(--bg-gray);
}

.home-blog-style-one-item .content h4 {
    font-size: 20px;
    line-height: 1.4;
}

.home-blog-thumb img {
    border-radius: 10px;
}

ul.home-blog-meta li a {
    display: inline-block;
    border: 1px solid #cccccc;
    border-radius: 30px;
    padding: 0 15px;
    font-weight: 400;
    text-transform: capitalize;
    padding-bottom: 2px;
    margin-right: 10px;
}

a.btn-read-more {
    text-transform: uppercase;
    color: var(--color-primary);
}

a.btn-read-more i {
    display: inline-block;
    font-weight: 100;
    transform: rotate(-45deg);
    font-size: 20px;
    position: relative;
    top: 2px;
}

a.btn-read-more:hover {
    color: var(--color-primary);
}

.color-style-two a.btn-read-more:hover {
    color: var(--color-style-two);
}

@media (min-width: 1024px) {
    .blog-2-col .row {
        --bs-gutter-x: 60px;
    }
}

/* ============================================================== 
    # Contact Us
=================================================================== */

.contact-stye-one {
    position: relative;
}

.shape-animated-arrow {
    position: absolute;
    left: -12%;
    top: 0;
}

.contact-shape {
    position: absolute;
    right: 0;
    bottom: 50px;
    max-width: 30%;
}

.half-shape-top {
    position: relative;
    z-index: 1;
}

.half-shape-top::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 120px;
    width: 100%;
    background: var(--bg-gray);
    z-index: -1;
}

.contact-style-one-area {
    padding-top: 120px;
}

.contact-area {
    background-size: 20%;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.contact-area .shape-left-top {
    max-width: 30%;
    top: 60px;
    opacity: 0.1;
}



.contact-style-one-info.header p {
    font-size: 18px;
}

.contact-style-one-info li {
    display: flex;
    margin-top: 30px;
}

.contact-style-one-info li i {
    display: inline-block;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 25px;
    margin-right: 20px;
}

.contact-style-one-info li:nth-child(2) i {
    background: var(--color-secondary);
}

.contact-style-one-info li:nth-child(3) i {
    background: var(--dark);
}

.contact-style-one-info li p {
    margin: 0;
}

.contact-style-one-info .social-icon {
    display: flex;
    gap: 12px;
}

.contact-style-one-info .social-icon span {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.contact-style-one-info .social-icon span:hover {
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-duration: 1s;
    animation-name: hvr-wobble-horizontal;
}

.contact-style-one-info li h5 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 20px;
}

.contact-style-one-info li a {
    font-weight: 400;
}

.contact-style-one-info h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1;
}

.contact-style-one-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 50px;
}

.contact-form-style-one {
    box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
    padding: 60px 80px;
    border-radius: 10px;
    position: relative;
    background: var(--white);
}

.contact-form-style-one .illustration {
    position: absolute;
    left: -130px;
    bottom: -60px;
    z-index: -1;
}

.contact-form-style-one .sub-heading {
    margin-bottom: 15px;
}

.contact-form-style-one .heading {
    margin-bottom: 30px;
    font-size: 36px;
}

.contact-form-style-one input,
.contact-form-style-one textarea {
    margin-bottom: 15px;
    padding: 15px 0;
    border: none;
    background: transparent;
    border-bottom: 2px solid #d6d6d6;
    border-radius: 0;
    font-size: 18px;
}

.contact-form-style-one input:focus,
.contact-form-style-one textarea:focus {
    box-shadow: inherit;
}

.contact-form-style-one textarea {
    min-height: 180px;
}

.contact-form-style-one button {
    display: inline-block;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.35s ease-in-out;
    overflow: hidden;
    border-radius: 6px;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    font-size: 17px;
    letter-spacing: 0;
    position: relative;
    z-index: 1;
    color: var(--white);
    border: none;
    background: var(--color-primary);
    padding: 16px 52px;
}

.contact-form-style-one button::after {
    position: absolute;
    top: inherit;
    right: inherit;
    bottom: inherit;
    left: -5%;
    content: "";
    height: 150px;
    width: 115%;
    z-index: -1;
    background-color: var(--dark);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -webkit-transform: translateY(-45%) skew(25deg) scale(0);
    transform: translateY(-45%) skew(25deg) scale(0);
}

.contact-form-style-one button:hover::after {
    -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
    transform: translateY(-45%) skew(25deg) scale(1.2);
}

.contact-form-style-one button:hover {
    color: var(--white);
}

img.loader {
    margin-left: 8px;
}

.contact-style-one-info h2 span {
    position: relative;
    z-index: 1;
}

.contact-style-one-info h2 span svg {
    position: absolute;
    top: auto;
    left: 50%;
    width: 80%;
    height: 100%;
    transform: translate(-50%);
    overflow: visible;
    bottom: 0;
    z-index: -1;
}

.contact-style-one-info h2 span path {
    stroke: var(--color-secondary);
    stroke-width: 10;
    stroke-dasharray: 1500;
    fill: none;
}

.maps-area iframe {
    min-height: 550px;
    margin-bottom: -10px;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.error-box h1 {
    font-size: 200px;
    font-weight: 600;
    line-height: 150px;
    margin-bottom: 30px;
}

.error-box h2 {
    font-weight: 600;
    margin-bottom: 20px;
}

.alert-notification {
    margin-top: 30px;
}

.alert-notification .alert {
    margin: 0;
}

.alert-notification h3 {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 22px;
    color: red;
}

.alert-notification p {
    margin: 0;
}

.alert-notification p strong {
    color: #232323;
}

.alert-notification .alert.alert-success h3 {
    color: green;
}

/* ============================================================== 
    # Project
=================================================================== */

.fixed-half-thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 45%;
    height: 100%;
}

.fixed-half-thumb img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.project-style-one-items .accordion-item button.accordion-button strong {
    display: inline-block;
    background: var(--white);
    padding: 2px 30px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 20px;
    color: var(--color-style-two);
    border: 1px solid #e7e7e7;
}

.project-style-one-items .accordion-item button.accordion-button:not(.collapsed) strong {
    background: var(--color-style-two);
    border-color: transparent;
    color: var(--white);
}

.project-style-one-info {
    background: var(--bg-gray-secondary);
    padding: 50px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.project-style-one-info a.btn-style-two {
    position: absolute;
    right: -1px;
    bottom: -1px;
    display: inline-block;
    background: var(--bg-gray);
    border-radius: 30px 0 0;
    color: var(--color-heading);
    text-transform: uppercase;
    padding: 15px;
}

.project-style-one-info a.btn-style-two::after {
    position: absolute;
    right: 0;
    top: -40px;
    content: "";
    height: 40px;
    width: 20px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 20px 0 0 var(--bg-gray);
}

.project-style-one-info a.btn-style-two::before {
    position: absolute;
    left: -20px;
    bottom: 0;
    content: "";
    height: 40px;
    width: 20px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 20px 0 0 var(--bg-gray);
}

.project-style-one-info::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--color-primary);
    z-index: -1;
    border-radius: 10px;
    mix-blend-mode: multiply;
}

.project-style-one-info a.btn-style-two i {
    display: inline-block;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    transform: rotate(-45deg);
}

.project-style-one-info h3 {
    margin-bottom: 20px;
}

ul.list-style-two {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

ul.list-style-two li {
    padding-left: 27px;
    margin-top: 10px;
    position: relative;
    font-weight: 600;
    font-size: 18px;
}

ul.list-style-two li:first-child {
    margin-top: 0;
}

ul.list-style-two li::after {
    position: absolute;
    left: 0;
    top: 9px;
    content: "";
    height: 16px;
    width: 16px;
    background: url(../images/thumb/check-mark.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.text-light ul.list-style-two li::after {
    filter: brightness(0) invert(1);
}

.project-style-one-items .accordion-item {
    border: none;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
}

.project-style-one-items .accordion-item:last-child .accordion-body {
    padding-bottom: 0;
}

.project-style-one-items .accordion-item .accordion-body {
    padding: 0;
    padding-left: 82px;
    border-bottom: 1px solid;
    padding-bottom: 30px;
    padding-top: 15px;
}

.project-style-one-items .accordion-item:first-child {
    margin-top: 0;
}

.project-style-one-items .accordion-item button.accordion-button {
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--color-heading);
    font-weight: 400;
    font-size: inherit;
    box-shadow: none;
    padding: 15px 0;
    border-bottom: 1px solid;
}

.project-style-one-items .accordion-item button.accordion-button span {
    font-size: 16px;
    text-transform: uppercase;
}

.project-style-one-items .accordion-item button.accordion-button span {
    min-width: 60px;
    margin-right: 20px;
    display: flex;
}

.project-style-one-items .accordion-item b {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    display: block;
    position: relative;
    top: -3px;
}

.project-style-one-items .accordion-item button.accordion-button:not(.collapsed) {
    border: none;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 0;
}

.project-style-one-items .accordion-item:last-child .accordion-body {
    border: none;
}

.project-style-one-items .accordion-item strong a:hover {
    color: var(--color-heading);
}

.project-style-one-items .accordion-item .accordion-body img {
    border-radius: 10px;
}

.project-style-one-items .accordion-item button.accordion-button::after {
    display: none;
}

.portfolio-style-one-thumb {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.portfolio-style-one-thumb a {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 60px;
    width: 60px;
    background: var(--bg-gradient);
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    color: var(--white);
    margin-top: -30px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.portfolio-style-one-thumb:hover a {
    margin: 0;
    opacity: 1;
    visibility: visible;
}

.portfolio-style-one-thumb a i {
    font-weight: 100;
}

.portfolio-style-one-thumb::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 80%;
    width: 100%;
    background: var(--dark);
    opacity: 0;
    transition: all 0.25s ease-in-out;
    visibility: hidden;
}

.portfolio-style-one-thumb:hover::after {
    height: 100%;
    width: 100%;
    opacity: 0.5;
    visibility: visible;
}

.solution-build .card .card-icon {
    width: 50px;
    display: inline-block;
    margin-bottom: 12px;
    box-shadow: 0px 10px 13px -7px #000000, 5px 5px 6px 5px rgba(105, 105, 105, 0);
    border-radius: 50%;
    padding: 11px;
}

.term-condition-bg {
    margin-top: 88px;
    padding: 70px 0px 60px 0px;
    background: linear-gradient(90deg, rgba(249, 71, 53, 1) 0%, rgba(249, 71, 53, 1) 50%, rgba(162, 0, 190, 1) 100%);
}

.term-condition-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/shape/dotted-map.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    opacity: .1;
    z-index: -1;
}

.term-condition-bg h2 {
    color: var(--bg-gray);
    margin-bottom: 12px;
}

.term-condition-bg p {
    color: var(--white);
    font-size: 20px;
}

.post-tag {
    gap: 50px
}

.post-tag li {
    position: relative;
}

.post-tag li::before {
    content: '';
    position: absolute;
    top: 0;
    right: -24px;
    width: 1px;
    height: 100%;
    background: var(--bg-gray);
}

.apply-job {
    position: absolute;
    top: 0;
    right: 0;
}

.apply-job .apply-job-btn {
    padding: 6px 20px;
    border: 0;
    border-radius: 30px;
    font-size: 14px;
    transition: .3s all ease;
}

.apply-job .apply-job-btn:hover {
    background: var(--color-optional);
    color: var(--bg-gray);
}

.post-tag li h5 {
    font-size: 14px;
    margin-bottom: 2px;
    color: var(--bg-gray);
    font-weight: 300;
}

.post-tag li p {
    font-size: 16px;
    margin-bottom: 2px;
    font-weight: 900;
}

.terms-sec {}

.terms-sec h2 {
    margin-bottom: 0;
}

.terms-sec .sub-head {
    font-size: 18px;
}

.terms-sec {}

.des ul {
    padding-left: 16px;
    margin-bottom: 20px;
}

.des ul li {
    position: relative;
    padding-left: 26px;
    line-height: 36px;
}

.des ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(../images/thumb/checklist.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 18px;
    height: 18px;
}

.careers-bg {
    padding: 60px 40px;
    border-radius: 10px;
    z-index: 1;
    position: relative;
    background: url(../images/shape/careers.jpg);
    background-size: cover;
    background-position: center center;


}

.careers-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 69%);
    z-index: -1;
    backdrop-filter: blur(20px);
}

.careers {
    background-color: var(--white);
    padding: 30px;
    border-radius: .5rem;
}

.careers-tab ul {}

.careers-tab ul li {
    display: flex;
    align-items: start;
    justify-content: space-between;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.careers-tab ul li h3 {
    margin-bottom: 4px;
    font-size: 18px;
}

.careers-tab ul li p {
    margin-bottom: 8px;
}

.careers-tab ul li .left-sec {
    max-width: 80%;
}

.careers-tab ul li .apply-btn {
    border: 1px solid #333;
    border-radius: .5rem;
    padding: 2px 12px;
    font-size: 12px;
}

.careers-tab ul li .apply-btn img {
    width: 22px;
    transition: .3s all ease;
    transform: rotate(0);
}

.careers-tab ul li .apply-btn:hover {
    border-color: var(--color-primary);
}

.careers-tab ul li .apply-btn:hover img {
    filter: invert(8%) sepia(97%) saturate(7488%) hue-rotate(12deg) brightness(92%) contrast(114%);
    transform: rotate(-45deg);
}

.job-details {}

.job-details ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.job-details li {
    line-height: 34px;
    font-size: 14px;
    list-style: decimal;
}

.job-details li::marker {
    color: var(--black);
    font-weight: 700;
}

#Job_Apply button.btn {
    color: var(--white);
    border: 0;
    background: linear-gradient(90deg, rgba(249, 71, 53, 1) 0%, rgba(249, 71, 53, 1) 50%, rgba(162, 0, 190, 1) 100%);
}

#Job_Apply button.btn:hover {
    background: linear-gradient(90deg, rgba(162, 0, 190, 1) 0%), rgba(249, 71, 53, 1) 50%, rgba(249, 71, 53, 1) 100%;
}

.new-list {}

.new-list h5 {
    position: relative;
    padding-left: 26px;
    margin-bottom: 6px;
}

.new-list h5:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(../images/thumb/tick-inside.png);
    background-size: cover;
}

.new-list p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 12px;
}

.speciality-style-one-area {
    position: relative;
    background: #f1f3f4;
}

.speciality-style-one-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: url(../images/journey.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.speciality-items .d-grid {
    display: grid;
}

.speciality-items ul.list-style-two li {
    margin-top: 15px;
}

.speciality-items ul.list-style-two li:first-child {
    margin-top: 0;
}


@media (max-width:767px) {
    body{font-size: 14px;}
    .banner-style-one-area {
        height: auto;
        padding-bottom: 30px;
        padding-top: 50px;
    }

    .banner-style-one .content {
        padding-top: 4px;
    }

    .banner-style-one .information h2 {
        font-size: 40px;
    }

    .banner-style-one .information h4 {
        font-size: 18px;
    }

    .brand-style-one-items h2 {
        font-size: 18px;
        font-weight: 600;
    }



    .banner-style-one .information {
        padding-bottom: 0px;
        text-align: center;
    }

    .banner-style-one .row div.banner-one-thumb {
        height: auto;
    }

    .brand-one img {
        height: 20px;
    }

    .banner-style-one .thumb::before {
        height: 350px;
        width: 350px;
    }

    .banner-style-one .thumb {
        padding-top: 0;
    }

    .banner-style-one .strategy .item {
        left: auto;
        right: 0;
        bottom: 100px;
        display: none;
    }
#process{padding-top: 0px;}
    .about-style-three-info .info-grid {
        margin: 0;
        grid-template-columns: 1fr;
    }

    .about-style-three-info .right-info {
        padding: 50px 37px;
    }

    .thumb-style-two {
        margin-top: 30px;
    }

    .shape-card {
        height: 200px;
        width: 200px;
    }

    .about-style-two-thumb .shape-card h4 {
        font-size: 20px;
    }

    .brand-style-one-items {
        margin-top: 30px;
    }

    .fun-fact-card-two {
        padding: 24px 24px;
        display: none;
    }

    .fun-fact-card-two .sub-title {
        margin-bottom: 0px;
    }

    .fun-fact-card-two .counter-title {
        text-align: center;
    }

    .process-style-one {
        grid-template-columns: 1fr;
        padding-left: 75px;
        position: relative;
    }

    .process-style-one-item {
        animation: none;
    }

    .process-style-one-item span {
        position: absolute;
        left: 0;
    }

    .process-style-one::after {
        height: 100%;
        width: 3px;
        border: none;
        border-left: 2px dashed #cccccc;
        left: 22px;
    }

    .quote-style-one .title {
        font-size: 26px;
    }

    .about-style-one-area {
        padding-top: 0;
    }

    .fixed-half-thumb {
        position: relative;
        width: 100%;
        margin-bottom: 50px;
    }

    .speciality-style-one-area::before {
        display: none;
    }

    footer .footer-item {
        margin-top: 50px;
    }

    .f-item.address {
        padding-right: 0;
    }

    .bg-gray .f-item.address::before {
        display: none;
    }

    .f-item.newsletter {
        display: none;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .text-end {
        text-align: center !important;
        margin-top: 10px;
    }

    .f-items.default-padding {
        padding-bottom: 0;
        padding-top: 0;
    }

    .contact-style-one-area {
        padding-top: 30px;
    }

    .contact-form-style-one {
        padding: 40px 30px;
    }

    .term-condition-bg {
        margin-top: 0;
        padding: 26px 0px 10px 0px;
    }

    .contact-form-style-one .heading,
    .contact-style-one-info h2 {
        font-size: 26px;
    }
    .des ul li{line-height: 26px;padding-left: 20px;}
    .des ul li::before{ width: 14px;
    height: 14px;       top: 7px;transform: translateY(-0%);}
}