:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: "Open Sans", sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
    overflow: hidden;
}

body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #474747;
    text-align: left;
    background-color: #f6faff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important;
}

/* debashish */
.ml15 {
    font-weight: 800;
    font-size: 60px;
    text-transform: uppercase;
    letter-spacing: 10px;
}

.ml15 span {
    color: #fff;
}

.ml15 .word {
    display: inline-block;
    line-height: 1em;
}

/* debashish */

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}


.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {

    .container-sm,
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {

    .container-md,
    .container-sm,
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {

    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 960px;
        padding: 0;
    }
}

@media (min-width: 1200px) {

    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1440px;
        padding: 0 60px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.col-xl,
.col-xl-auto,
.col-xl-12,
.col-xl-11,
.col-xl-10,
.col-xl-9,
.col-xl-8,
.col-xl-7,
.col-xl-6,
.col-xl-5,
.col-xl-4,
.col-xl-3,
.col-xl-2,
.col-xl-1,
.col-lg,
.col-lg-auto,
.col-lg-12,
.col-lg-11,
.col-lg-10,
.col-lg-9,
.col-lg-8,
.col-lg-7,
.col-lg-6,
.col-lg-5,
.col-lg-4,
.col-lg-3,
.col-lg-2,
.col-lg-1,
.col-md,
.col-md-auto,
.col-md-12,
.col-md-11,
.col-md-10,
.col-md-9,
.col-md-8,
.col-md-7,
.col-md-6,
.col-md-5,
.col-md-4,
.col-md-3,
.col-md-2,
.col-md-1,
.col-sm,
.col-sm-auto,
.col-sm-12,
.col-sm-11,
.col-sm-10,
.col-sm-9,
.col-sm-8,
.col-sm-7,
.col-sm-6,
.col-sm-5,
.col-sm-4,
.col-sm-3,
.col-sm-2,
.col-sm-1,
.col,
.col-auto,
.col-12,
.col-11,
.col-10,
.col-9,
.col-8,
.col-7,
.col-6,
.col-5,
.col-4,
.col-3,
.col-2,
.col-1 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.row-cols-1>* {
    flex: 0 0 100%;
    max-width: 100%;
}

.row-cols-2>* {
    flex: 0 0 50%;
    max-width: 50%;
}

.row-cols-3>* {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
}

.row-cols-4>* {
    flex: 0 0 25%;
    max-width: 25%;
}

.row-cols-5>* {
    flex: 0 0 20%;
    max-width: 20%;
}

.row-cols-6>* {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.col-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
}

.col-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
}

.col-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
}

.col-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
}

.col-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

a:not([href]):not([class]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

pre,
code,
kbd,
samp {
    font-family: "Open Sans", sans-serif;
    "Courier New",
    monospace;
    font-size: 1em;
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar;
}

figure {
    margin: 0 0 1rem;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
}

caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

button {
    border-radius: 0;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[role="button"] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
    cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}

textarea {
    overflow: auto;
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

summary {
    display: list-item;
    cursor: pointer;
}

template {
    display: none;
}

[hidden] {
    display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1,
.h1 {
    font-size: 2.5rem;
}

h2,
.h2 {
    font-size: 2rem;
}

h3,
.h3 {
    font-size: 1.75rem;
}

h4,
.h4 {
    font-size: 1.5rem;
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 1rem;
}




/* navber */

.nav-section {
    box-shadow: 0 2px 4px rgba(37, 37, 37, 0.2509803922);
}

.nav-section .navbar-brand .nav-img {
    height: 50px;
    padding: 2px 70px;
}

.nav-section .navbar .navbar-nav .nav-link {
    color: #333333;
    font-weight: 500;
    padding: 0 20px;
}

.nav-section .navbar .navbar-nav .active .nav-link {
    color: #ff8903;
}





.nav-contact {
    border: #eb6e27 1px solid;
    padding: 5px 0;
    border-radius: 4px;

}

.navbar-nav {

    align-items: center;
    margin-left: auto;
}

/* banner-section */
.bannerArea {
    position: relative;
}

.bannerArea .bannerImage {
    position: relative;
}

.bannerArea img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    border-radius: 0 0 0 0 !important;
}

@media (max-width: 1199.98px) {
    .bannerArea img {
        height: 580px;
    }
}

@media (max-width: 991px) {
    .bannerArea img {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .bannerArea img {
        height: 400px;
    }

    .nav-section .navbar-brand .nav-img {
        height: 40px;
        padding: 2px 10px;
    }
}

.bannerArea .bannerImage::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(40deg, #002444 24%, transparent 80%);
    opacity: 0.7;
    z-index: 1;
}

@media (max-width: 767px) {
    .bannerArea .bannerImage::before {
        background: linear-gradient(40deg, #002444 24%, transparent 80%);
    }
}

.bannerArea .bannerImage .bannerCont {
    position: absolute;
    top: 100px;
    left: 100px;
    width: 40%;
    height: fit-content;
    color: #fff;
    z-index: 1;
}

.bannerArea .bannerImage .bannerCont .h4 {
    text-transform: capitalize;
    margin-bottom: 0;
}

.bannerArea .bannerImage .bannerCont .h1 {
    font-size: 44px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 114%;
    margin: 16px 0 20px 0;
}

.bannerArea .bannerImage .bannerCont p {
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 20px 0;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

@media (max-width: 1199.98px) {
    .bannerArea .bannerImage .bannerCont {
        top: 88px;
        left: 88px;
        width: 48%;
    }

    .bannerArea .bannerImage .bannerCont .h4 {
        font-size: 18px;
    }

    .bannerArea .bannerImage .bannerCont .h1 {
        font-size: 38px;
        margin: 14px 0 16px 0;
    }

    .bannerArea .bannerImage .bannerCont p {
        margin: 0 0 16px 0;
    }

    .carousel-control-prev {
        left: 24px;
    }

    .carousel-control-next {
        right: 24px;
    }
}

@media (max-width: 991px) {
    .bannerArea .bannerImage .bannerCont {
        top: 80px;
        left: 80px;
        width: 52%;
    }

    .bannerArea .bannerImage .bannerCont .h4 {
        font-size: 16.8px;
    }

    .bannerArea .bannerImage .bannerCont .h1 {
        font-size: 32px;
    }

    .bannerArea .bannerImage .bannerCont p {
        font-size: 14.8px;
    }

    .carousel-control-prev {
        left: 20px;
    }

    .carousel-control-next {
        right: 20px;
    }
}

@media (max-width: 767px) {
    .bannerArea .bannerImage .bannerCont {
        top: 0;
        left: 0;
        width: 100%;
        padding: 48px 40px;
    }

    .bannerArea .bannerImage .bannerCont .h4 {
        font-size: 14.8px;
    }

    .bannerArea .bannerImage .bannerCont .h1 {
        font-size: 20.8px;
        margin: 10px 0 14px 0;
    }

    .bannerArea .bannerImage .bannerCont p {
        font-size: 12.8px;
        margin: 0 0 14px 0;
    }

    .carousel-control-prev {
        left: 6.8px;
    }

    .carousel-control-next {
        right: 6.8px;
    }
}

/* card-section */
.aboutArea {
    margin-top: -140px;
    position: relative;
    z-index: 99;
}

.aboutArea .lowerContent .itemWrapper {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 30px;
    margin: 0;
    width: 100%;
    height: auto;
    min-height: 360px;
    background-color: #ffa303;
    transition: all 0.7s ease;
    z-index: 3;
}

.aboutArea .lowerContent .itemWrapper.clr1 {
    background-color: #ffc603 !important;
    border-radius: 12px 0 0 12px;
}

.aboutArea .lowerContent .itemWrapper.clr2 {
    background-color: #ff8903 !important;
    border-radius: 0 12px 12px 0;
}

.aboutArea .lowerContent .itemWrapper .h3 {
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
    color: #ffffff;
    margin-bottom: 16px;
}

.aboutArea .lowerContent .itemWrapper h4 {
    padding: 16px 0;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.aboutArea .lowerContent .itemWrapper p {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

.aboutArea .lowerContent .itemWrapper p:last-child {
    margin-bottom: 0 !important;
}

.aboutArea .lowerContent .headingWrap {
    position: relative;
    margin: 30px 0;
}

.aboutArea .lowerContent .headingWrap .h3 {
    color: #03396b;
}

.aboutArea .lowerContent .headingWrap .circle {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 80px;
    width: 80px;
    background-color: rgba(170, 170, 170, 0.3764705882);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    z-index: 1;
}

.aboutArea .itemWrapper .about-card-img img {
    height: 75px;
    width: auto;
}

.flipImage {
    width: 100px;
    height: 100px;
    transition: transform 1s;
    border: solid #727272 1px;
    background-color: aliceblue;
    border-radius: 50%;
    padding: 9px;
    transform-style: preserve-3d;
}

@media (max-width: 1199.98px) {}

@media (max-width: 991.98px) {}

@media (max-width: 767.98px) {
    .aboutArea .lowerContent .itemWrapper.clr1 {
        border-radius: 0;
    }

    .aboutArea .lowerContent .itemWrapper.clr2 {
        border-radius: 0;
    }

    .aboutArea .lowerContent .itemWrapper {
        min-height: 280px;
    }
}

/* section */
.about-us-section,
.manufacture-card-section,
.gallary-section {
    margin: 80px 0;

}

@media (max-width: 1199.98px) {}

@media (max-width: 991.98px) {}

@media (max-width: 767.98px) {

    .products-section,
    .manufacture-card-section,
    .gallary-section {
        margin: 60px 0;
    }
}

/* about-us-section */

.about-us-section {}

.about-us-section .my-heading h1 {}

.about-us-section .about-us-img img {
    height: 400px;
    width: -webkit-fill-available;
    border-radius: 12px;
    box-shadow: 2px 3px 12px 0px #7c7c7c;
}
.mine-details-section .about-us-img img {
    border-radius: 12px;
    box-shadow: 2px 3px 12px 0px #7c7c7c;
}

.about-us-section .about-us-img {
    padding: 15px;
}

.about-us-section .about-us-text h2 {
    padding: 10px 0;
}

.about-us-section .about-us-text p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #2d2d2d;
}

.about-us-section .about-us-text h5 {
    display: block;
    font-size: 22px;
    border-bottom: 2px dotted #1aa7ec;
    text-transform: capitalize;
    margin-bottom: 14px;
    padding: 12px 0;
}



.my-heading {
    text-align: center;
    margin: 18px 0;
}

.my-heading h1 {
    font-size: 45px;
    margin-bottom: 40px;
    font-family: system-ui;
    font-weight: 700;
    color: #2d2d2d;
}

.my-heading p {
    margin-bottom: 20px;
}

@media (max-width: 1199.98px) {
    .about-us-section .about-us-text h5 {
        display: block;
        font-size: 20px;
        border-bottom: 2px dotted #1aa7ec;
        text-transform: capitalize;
        margin-bottom: 10px;
        padding: 12px 0;
    }

    .about-us-section .about-us-text p {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 10px;
        color: #2d2d2d;
    }
}

@media (max-width: 991.98px) {
    .about-us-section .about-us-text h5 {
        display: block;
        font-size: 16px;
        border-bottom: 2px dotted #1aa7ec;
        text-transform: capitalize;
        margin-bottom: 8px;
        padding: 8px 0;
    }

    .about-us-section .about-us-text p {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 10px;
        color: #2d2d2d;
    }
}

@media (max-width: 767.98px) {
    .my-heading h1 {
        font-size: 33px;
    }
}

.manufacture-card-section .manufacture-card {
    transition: all 0.6s ease;

}

.manufacture-card-section .manufacture-card:hover {
    transform: translateY(-8px);
}



/* 
.manufacture-card-section p {
    padding:0 0 20px 0;
} */
.manufacture-card-section {
    padding: 40px 0;
    background-color: #eef6ff;
}

.manufacture-card-section .manufacture-card {
    text-align: center;
    border-radius: 8px;
    width: 100%;
    margin-top: 10px;
    height: auto;
    padding: 0 0 14px 0;
    background-color: #ffffff;
    box-shadow: 0px 4px 10px 0px #919191;
}

.manufacture-card-section .manufacture-card .manufacture-card-text .my-p {
    height: 112px;
    text-align: left;
    padding: 0 12px;
}

.manufacture-card-section .manufacture-card .manufacture-card-text h4 {
    padding: 10px 0;
}

.manufacture-card-section .manufacture-card .manufacture-card-img img {
    height: 250px;
    width: -webkit-fill-available;
    border-radius: 8px 8px 0 0;

}

/* .manufacture-card-section .manufacture-card:hover {
    transform: translateY(-8px);
} */

/* pertner-section */
.partner-section {}

.partner-section .partner-left {
    border: #818181 solid 1px;
    padding: 0;
    border-radius: 8px 0 0 8px;
}

.partner-section .partner-right {
    border: #818181 solid 1px;
    padding: 0;
    border-radius: 0 8px 8px 0;
}

.partner-section .partner-right .partner-text {
    background: #ff8903;
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

.partner-section .partner-right .partner-text h5 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.partner-section .partner-right .partner-text p {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

.partner-section .partner-right .partner-text .partner-btn {
    background-color: aliceblue;
    padding: 6px;
    box-shadow: 0px 2px 7px 0px #855400;
    border-radius: 5px;
    color: #2d2d2dfa;
    font-weight: 600;
    text-decoration: none;
}

.partner-section .partner-right .partner-text .partner-btn:hover {
    color: #ff8903;

}

.partner-section .partner-left .partner-img {
    padding: 20px;
}

.partner-section .partner-left .partner-img img {
    height: 120px;
}

@media (max-width: 1199.98px) {
    .partner-section .partner-left .partner-img img {
        width: 430px;
    }
}

@media (max-width: 991.98px) {
    .partner-section .partner-left .partner-img img {
        width: 315px;
        padding: 30px 0 0 0;
    }

    .partner-section .partner-left {
        border-radius: 8px 0 0 8px;
    }

    .partner-section .partner-right {
        border-radius: 0 8px 8px 0 !important;
    }

    .partner-section .partner-right .partner-text {

        border-radius: 0 8px 8px 0 !important;
    }

}

@media (max-width: 767.98px) {
    .partner-section .partner-left .partner-img img {
        width: 274px;
        border-radius: 8px 8px 0 0;
        padding: 7px 0;
    }

    .partner-section .partner-left {
        border-radius: 8px 8px 0 0;
    }

    .partner-section .partner-right {
        border-radius: 0 0 8px 8px !important;
    }

    .partner-section .partner-right .partner-text {

        border-radius: 0 0 8px 8px !important;
    }

}

/* gallary-section */
.gallary-section {
    margin: 80px 0;
}

.gly-img {
    width: 100%;
    border-radius: 12px;
}

.our-gallary {
    position: relative;
    border: #fff9f9 9px solid;
}

.gallary-hover {
    display: none;
    position: absolute;
    padding: 20px;
    top: 0;
    left: 0;
    color: #ffffff;
    width: 100%;
    z-index: 1;
    border-radius: 12px;
    height: 100%;
    background-color: #d94b0b9e;
    transition: all 0.7s;
}

.img-sec {
    padding: 0 !important;
}

.gallary-h3-hover {
    font-size: 24px;
    margin: 42px 24px;
    padding: 0px;
    height: 100px;
}

.gly-view {
    text-align: center;
}

.btn-primary {}

.our-gallary:hover .gallary-hover {
    display: block
}

.gallary-btn {
    padding: 8px;
    font-size: 14px;
}

.img-wrapper {
    overflow: hidden;
}

.inner-img {
    transition: 0.3s;
}

.inner-img:hover {
    transform: scale(1.1);
}

/* Other styling elements, that are not necessary for the example */

.img-wrapper {
    display: inline-block;
    box-sizing: border-box;

}

@media (max-width: 991.98px) {}

@media (max-width: 767.98px) {}


/* .service-section */
.service-details .service-left .h2 {
    display: block;
    border-bottom: 2px dotted #1aa7ec;
    padding-bottom: 28px;
    margin-bottom: 28px;
}

.service-details .service-left .s-left strong,
.service-right .h3 {
    display: block;
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.service-details .service-left .s-left-details2 ul li {
    display: flex;
    align-items: center;
    margin-top: 8.8px;
}

.service-details .service-left .s-left-details2 ul li i {
    color: #1aa7ec;
    margin-right: 12px;
}

.service-details .service-left .s-left-details2 ul li p {
    margin-bottom: 0;
}

.service-details .service-left .sd-img {
    width: -webkit-fill-available;
}

.service-right .h3 {
    font-weight: 700;
    color: #ffffff;
    border-bottom: 2px dotted #ffffff;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.service-right ul {
    width: 100%;
    padding: 28px;
    background: linear-gradient(160deg, #1aa7ec, #03396b);
    border-radius: 12px;
    margin: 0;
}

.service-right ul li a {
    display: flex;
    align-items: center;
    font-size: 14.8px;
    font-weight: 500;
    color: #ffffff;
    padding: 8px 0;
    transition: all 0.5s ease;
}

.service-right ul li a:hover,
.service-right ul li a.active {
    color: white;
    border-radius: 6px;
    padding-left: 12px;
    background: #03396b;
}

.service-right ul li a.active p {
    color: white;
}

.service-right ul li a:hover p,
.service-right ul li a:hover i {
    color: #fff;
    padding-right: 10px;
}

.service-right ul li a i {
    padding: 4px 12px 4px 0;
    color: #fff;
    transition: all 0.5s ease;
}

.service-right ul li a p {
    margin-bottom: 0;
}

.service-details .imgArea img {
    width: 100%;
    height: auto;
    min-height: 400px;
    position: relative;
    padding: 30px 0 30px 30px;
}

.service-details .imgArea::after {
    position: absolute;
    content: "";
    min-height: 400px;
    width: 50%;
    background: #1aa7ec;
    left: 0;
    top: 0;
    z-index: -1;
}

.service-details .service-left {
    padding-right: 60px;
}

.service-details .service-full .center-heading {
    padding-bottom: 30px;
}

.service-details .service-full ul {
    display: inline-flex;
}

.service-details .service-full ul li {
    margin: 2px 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
    width: 25%;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .service-details .service-full ul {
        display: block;
    }

    .service-details .service-full ul li {
        width: 100%;
        margin: 20px 0;
    }
}

/* contact page */
@media (max-width: 767.98px) {
    .contact-section {

        padding: 2px !important;

    }
}

.contact-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
    background-color: #fafafa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form {
    width: 100%;

    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-form {
    background-color: #ff8903;
    position: relative;
}

.circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, #934302);
    position: absolute;
}

.circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}

.circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
}

.contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #ff8903;
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
}

form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
}

.title {
    color: #fff;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.input-container {
    position: relative;
    margin: 1rem 0;
}

.input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: 0.3s;
}

textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 5px;
    resize: none;
    overflow-y: auto;
}

.input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: #fafafa;
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
}

.input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
}

.btn {
    padding: 0.6rem 1.3rem;
    background-color: #fff;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    color: #1abc9c;
    line-height: 1;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
    width: 100%;
}

.btn:hover {
    background-color: transparent;
    color: #fff;
}

.input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
}

.input-container span:before,
.input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: #1abc9c;
    top: 50%;
    transform: translateY(-50%);
}

.input-container span:before {
    left: 50%;
}

.input-container span:after {
    right: 50%;
}

.input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
    width: 50%;
    opacity: 1;
}

.contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
}

.contact-info .title {
    color: #ff8903;
}

.text {
    color: #333;
    margin: 1.5rem 0 2rem 0;
}

.information {
    display: flex;
    color: #555;
    margin: 0.7rem 0;
    align-items: center;
    font-size: 0.95rem;
}

.information i {
    color: #ff8903;
}

.icon {
    width: 28px;
    margin-right: 0.7rem;
}

.social-media {
    padding: 2rem 0 0 0;
}

.social-media p {
    color: #333;
}

.social-icons {
    display: flex;
    margin-top: 0.5rem;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: #ff8903;
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: scale(1.05);
    color: #2d2d2d;
}

.contact-info:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid #bc421ac7;
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.3;
}

.big-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #ffecdb, #dbdbdb);
    bottom: 50%;
    right: 50%;
    transform: translate(-40%, 38%);
}

.big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: #fafafa;
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
}

.square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
}

.contact-section .form .btn {

    font-weight: 500;
    color: #ffffff;
    background-color: #ffffff3d;
    border: 1px solid #b7b7b78f;


}

@media (max-width: 850px) {
    .form {
        grid-template-columns: 1fr;
    }

    .contact-info:before {
        bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(0.95);
    }

    .contact-form:before {
        top: -13px;
        left: initial;
        right: 70px;
    }

    .square {
        transform: translate(140%, 43%);
        height: 350px;
    }

    .big-circle {
        bottom: 75%;
        transform: scale(0.9) translate(-40%, 30%);
        right: 50%;
    }

    .text {
        margin: 1rem 0 1.5rem 0;
    }

    .social-media {
        padding: 1.5rem 0 0 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }

    .contact-info:before {
        display: none;
    }

    .square,
    .big-circle {
        display: none;
    }

    form,
    .contact-info {
        padding: 1.7rem 1.6rem;
    }

    .text,
    .information,
    .social-media p {
        font-size: 0.8rem;
    }

    .title {
        font-size: 1.15rem;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .icon {
        width: 23px;
    }

    .input {
        padding: 0.45rem 1.2rem;
    }

    .btn {
        padding: 0.45rem 1.2rem;
    }
}


/* footer section */
ul {
    margin: 0px;
    padding: 0px;
}

.footer-section {
    background: #151414;
    position: relative;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

.single-cta i {
    color: #ff5e14;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #757575;
    font-size: 15px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;

}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #7e7e7e;
    line-height: 28px;
}

.footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

.facebook-bg {
    background: #3B5998;
}

.twitter-bg {
    background: #55ACEE;
}

.google-bg {
    background: #DD4B39;
}

.footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 40px 0px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #ff5e14;
}

.footer-widget ul li {
    display: block;
    float: left;
    width: 100%;
    margin-bottom: 12px;
}

.footer-widget ul li a:hover {
    color: #ff5e14;
}

.footer-widget ul li a {
    color: #878787;
    text-transform: capitalize;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #2E2E2E;
    border: 1px solid #2E2E2E;
    color: #fff;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: #ff5e14;
    padding: 13px 20px;
    border: 1px solid #ff5e14;
    top: 0;
}

.subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
}

.copyright-area {
    background: #202020;
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}

.copyright-text p a {
    color: #ff5e14;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li:hover a {
    color: #ff5e14;
}

.footer-menu li a {
    font-size: 14px;
    color: #878787;
}