/* fonts */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* fonts */

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a,
button,
span,
input,
label,
select,
option,
.btn-custom,
div {
    font-family: "Montserrat", sans-serif;
}

:root {
    --primary-darkblue: linear-gradient(-225deg, rgb(42 111 139) 0%, #27374a 50%, #1b2a38 100%);
    --dark-bg: #2c2c2c;
    --light-gray: #f8f9fa;
    --white: white;
    --grey: #f2efea;
}

.default-btn {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    color: #fff;
    text-transform: uppercase;
    background-color: var(--primary-darkblue);
    transition: .5s;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 30px;
    letter-spacing: 2px;
}

.default-btn {
    margin-left: 10px;
    margin-right: 10px;
}

.optional-btn {
    border: 1px solid var(--white);
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    color: var(--white) !important;
    text-transform: uppercase;
    background-color: transparent;
    cursor: pointer;
    transition: .5s;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    padding: 11px 27px;
    letter-spacing: 2px;
}

/* heading */
.site-heading {
    text-align: center;
    margin-bottom: 35px;
}

.section-title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 40px;
}

section .sub-title {
    color: var(--primary-darkblue);
    font-size: 18px;
    display: block;
    margin-bottom: 8px !important;
}

.sub-title-line {
    width: 8%;
    background: var(--primary-darkblue);
    height: 1px;
}

.site-heading h2 {
    margin-bottom: 0;
    font-size: 52px;
    font-weight: 700;
    line-height: 65px;
}

/* heading */

.theme-content p {
    line-height: 29px;
    color: grey;
}

.video-section {
    background-color: var(--grey);
}

/* animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.common-section-wraper {
    padding: 80px 0px;
}

/* hero section bg */
.hero-section {
    background-color: #00000094;
    color: var(--white);
    padding: 230px 0 80px;
    position: relative;
    overflow: hidden;
    /* background-image: url(../imgs/inner-section-bg.webp); */
    background-image: url(../imgs/home/index-banner-4.webp);
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23ff6b35" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
}

/* hero section bg */