@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.fonts {
    font-family: "Roboto", sans-serif;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

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

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

a {
    text-decoration: none;
    color: #000;
    white-space: initial;
    font-family: "Montserrat", sans-serif;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

p {
    font-weight: 500;
    line-height: 27px;
    margin: 0;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
}

h1 {
    font-family: "Oswald", sans-serif;
    font-size: 72px;
    line-height: 1.1;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

h2 {
    font-family: "Oswald", sans-serif;
    font-size: 70px;
    line-height: 1.2;
    color: #030c21;
    font-weight: 600;
    margin: 0;
}

h3 {
    font-family: "Oswald", sans-serif;
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0;
}

h4 {
    font-family: "Oswald", sans-serif;
    font-size: 30px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0;
}

h5 {
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

h6 {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
    background-position: right 0.7rem top 50%;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}

/*---------------------------------------------------- Tabs Section Start ----------------------------------------------------------- */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

/*---------------------------------------------------- Tabs Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Carousel Section Start ----------------------------------------------------------- */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}

/*---------------------------------------------------- Carousel Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Button Section Start ----------------------------------------------------------- */

.theme1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    padding: 8px 75px 8px 19px;
    height: 50px;
    border-radius: 0;
    border: none;
    overflow: hidden;
    transition: ease-in;
    transition-duration: 0.5s;
    border: 1px solid #e1e1e1;
    background: #030c21;
}

.theme1:hover {
    transition: ease-out;
    transition-duration: 0.5s;
    border-color: #ff6500;
}

.theme1 span.theme1-txt {
    font-size: 13px;
    line-height: 20px;
    font-family: 'Montserrat';
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}

.theme1 span.theme1-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 52px;
    background: #fff;
    border-radius: 0px;
    position: absolute;
    top: 0;
    right: 0;
    transition: ease-in;
    transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon {
    width: 100% !important;
    transition: ease-out;
    transition-duration: 0.5s;
    background: #030c21;
}

.theme1 span.theme1-icon img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    object-fit: contain;
}


/*---------------------------------------------------- Button Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Header Section Start ----------------------------------------------------------- */

.menuSec {
    padding: 27px 0 0;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 42px;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 10px;
    font-size: 15px;
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.slick-slide {
    opacity: 1;
}

.main_slider {
    margin-bottom: 100px;
}

/*---------------------------------------------------- Header Section End ----------------------------------------------------------- */

/*---------------------------------------------------- Footer Section Start ------------------------------------------------------------- */

.footer-rights1 {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.quick_links ul li a {
    font-size: 14px;
    margin: 0 0 17px 0;
    text-transform: uppercase;
    display: block;
    font-family: roboto;
    color: #d2d2d2;
}

.quick_links ul li a:hover {
    transition: 0.3s ease-in-out;
    color: #ff6500;
}

.footer-links.footer-links-contact li:hover a {
    color: #e6b912;
    transition: 0.3s ease-in-out;
}

.quick_links ul {
    column-count: 2;
    margin: 0;
}

footer {
    background: #040e19;
    padding: 80px 0 30px 0;
}

.ftr_logo a {
    display: block;
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 600;
    color: white;
    font-family: 'BlenderMedium';
    font-family: "Rajdhani", sans-serif;
}

.footer-txt-heading h5 {
    text-transform: capitalize;
    font-size: 26px;
    letter-spacing: 1px;
    font-weight: 600;
}

.ftr_logo p {
    font-family: 'Roboto';
    font-size: 15px;
    width: 68%;
    opacity: 60%;
    line-height: 28px;
}


.footer-links.footer-links-contact li {
    margin: 20px 0;
    gap: 20px;
    display: flex;
    align-items: center;
}

.footer-links.footer-links-contact li a {
    color: #d2d2d2;
    font-family: 'Roboto';
    font-size: 13px;
}


.footer-links.footer-links-contact li i {
    color: white;
}

.footer-rights {
    padding: 20px 20px;
    background: #06121f;
    border: 1px solid #242e39;
}

.footer-rights1 p {
    font-size: 13px;
    font-family: 'Roboto';
    opacity: 60%;
}

.payement_image img {
    width: 100%;
    object-fit: scale-down;
    height: 50px;
}

.footer-quick {
    padding: 0px 70px 80px 105px;
    position: relative;
    z-index: 1;
}

.footer-quick::before {
    position: absolute;
    left: 0;
    top: -40px;
    width: 2px;
    height: 115%;
    content: '';
    z-index: -1;
    background: #242e39;
}

.footer-quick::after {
    position: absolute;
    right: 0;
    top: -40px;
    width: 2px;
    height: 115%;
    content: '';
    z-index: 1;
    background: #242e39;
}

.footer-txt-heading {
    margin-bottom: 32px;
}

.header-socials-links ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    margin-bottom: 0px;
}

.header-socials-links ul li a i {
    font-size: 16px;
}

.header-socials-links ul li a {
    color: #fff;
    width: 37px;
    height: 37px;
    background: transparent;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0;
    animation: tada 1.5s ease infinite;
}

.header-socials-links ul li a:hover {
    background: #ff6500;
    border: white;
}

.header-socials-links ul li a:hover i {
    color: #fff;
}

.footer-links.footer-links-contact ul li img {
    width: 20px;
}

.footer-txt.ft-contacts {
    padding-left: 40px;
}

footer * {
    color: #fff;
}

/*---------------------------------------------------- Footer Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Contact Section Start ------------------------------------------------------------- */

.heading-contactus h2 {
    margin-bottom: 16px;
    line-height: 1.1;
    font-style: italic;
}

.heading-contactus p {
    opacity: 80%;
    width: 51%;
    margin: 0 auto;
}

.heading-contactus {
    margin-bottom: 40px;
    text-align: center;
}

.contact-field input {
    width: 100%;
    border: 1px solid #d8d8d8;
    padding: 10px 20px;
}

.contact-field textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    padding: 10px 20px;
    height: 180px;
    resize: none;
}

.contact-field {
    margin-bottom: 30px;
}

.contact-field textarea::placeholder, .contact-field input::placeholder {
    font-family: 'Roboto';
    font-size: 14px;
}

.contact-main-sec .main-for-back {
    padding: 50px 60px 0;
    background: #fff;
}

.contact-main-sec::before {
    position: absolute;
    content: '';
    background: #030c21;
    width: 100%;
    height: 52%;
    top: 0;
    z-index: -1;
}

.contact-main-sec {
    position: relative;
    padding: 50px 0px 100px;
}

.heading-contactus * {
    color: #fff;
}

.contact-btn {
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*---------------------------------------------------- Contact Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Services Section Start ------------------------------------------------------------- */

.container-fluid {
    padding: 0 6%;
}

.service-sec {
    margin-bottom: 100px;
}

.service-text ul {
    column-count: 2;
    margin: 27px 0 40px;
}

.service-text ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.service-text p {
    margin-top: 13px;
    font-size: 14px;
    color: #030c21;
    width: 94%;
}

.serv-check {
    width: 40px;
    height: 25px;
    background: #ffefe5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.serv-pointtxt p {
    margin-top: 10px;
    font-family: 'Roboto';
    font-size: 15px;
    font-weight: 400;
    color: #000;
    opacity: 80%;
}

.service-image img {
    clip-path: polygon(24% 0%, 100% 0%, 77% 100%, 0% 100%);
    width: 500px;
    height: 570px;
    object-fit: cover;
}

.service-image {
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.service-image:before {
    content: '';
    position: absolute;
    top: 30%;
    right: -15%;
    background: #ff6500;
    width: 108%;
    height: 218px;
    clip-path: polygon(9% 0, 100% 0, 100% 100%, 0% 100%);
}

.serv-check i {
    color: #ff6500;
}

.serv-pointtxt span {
    font-family: 'Montserrat';
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

/*---------------------------------------------------- Services Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Why Choose Us Section Start ----------------------------------------------------------- */

.whychose-main h3 {
    font-size: 52px;
    color: #ff6500;
}

.whychose-main span {
    font-family: 'Montserrat';
    font-size: 30px;
    font-weight: 600;
    color: #030c21;
    display: block;
    margin: 20px 0;
}

.whychose-main p {
    font-family: 'Roboto';
    color: #000;
    opacity: 80%;
    font-weight: 400;
}

.whylast-p {
    color: #030c21;
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: 600;
    margin: 7px 0 5px;
}

.whychose-text h2 {
    margin-bottom: 12px;
}

.whychose-text p {
    color: #030c21;
    font-size: 15px;
    width: 94%;
}

.whychoose-img img {
    width: 100%;
    height: 530px;
    object-fit: cover;
}

.whychoose-img {
    position: relative;
    right: -10px;
}

.whychoosesec {
    margin-bottom: 100px;
}

.whychose-main {
    text-align: center;
    background-color: rgb(241, 241, 241);
    padding: 40px 45px;
    height: 100%;
    align-content: center;
    cursor: pointer;
    transition: 0.5s all;
    width: 430px;
    margin: 0 auto;
}

.col-lg-4:Last-child .whychose-main {
    margin: 0 0 0 auto;
}

.col-lg-4:First-Child .whychose-main {
    margin: unset;
}

.whychose-main:hover {
    transform: scale(1.05);
}

.whychoosesec .row.align-items-center {
    margin-bottom: 40px;
}

/*---------------------------------------------------- Why Choose Us Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Processes Section Start ------------------------------------------------------------- */

.prosub-sec {
    padding: 100px 0;
    margin-bottom: 100px;
    background-color: #030c21;
}

.prosubhead {
    padding: 20px 20px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/proces-head.png);
    background-color: #160b05;
    text-align: center;
    position: relative;
    border: 1px solid #273d5b;
    margin-bottom: 80px;
    height: 380px;
    align-content: center;
    overflow: hidden;
}

.prosubhead h2 {
    color: #fff;
}

.prosub-text p {
    color: #fff;
    opacity: 50%;
    font-size: 20px;
    line-height: 37px;
    width: 94%;
    margin: 0 auto 20px;
}

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

.prosub-text a span.theme1-txt {
    color: #ed5300;
}

.prodsub-img.rigt {
    text-align: end;
}

img.prosubL {
    position: absolute;
    top: 0;
    left: 0;
}

img.prosubR {
    position: absolute;
    bottom: 0;
    right: 0;
}

/*---------------------------------------------------- Processes Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Custom Section Start ------------------------------------------------------------- */


.customgraph-img img {
    width: 100%;
    height: 370px;
    object-fit: cover;
}

.customgraph-head {
    text-align: center;
    position: relative;
    background: #f6f0f0;
    padding: 30px 0;
    margin-bottom: 70px;
    z-index: 0;
}

.customgraph-text {
    background: #f6f0f0;
    padding: 17% 35px 40px;
    height: 320px;
    width: 93%;
    margin: -100px auto 0 auto;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    align-content: center;
}

.custom-graph-sec {
    margin-bottom: 100px;
}

.customgraph-text h4 {
    margin-bottom: 25px;
}

.customgraph-text p {
    margin-bottom: 13px;
    font-size: 13px;
    color: #000;
    line-height: 24px;
    width: 90%;
}

.customgraph-text a {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #ff6500;
}

.customgraph-text:before, .customgraph-text:after {
    content: '';
    position: absolute;
    top: 40%;
    right: 0;
    background: #ff6500;
    width: 40%;
    height: 1px;
    opacity: 40%;
}

.container-fluid.tp-cstm {
    padding: 0;
}

.customgraph-head:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ff6500;
    width: 73%;
    height: 100%;
    z-index: -1;
    margin: 0 auto;
    border-top: 9px solid #fff;
    border-bottom: 9px solid #fff;
    clip-path: polygon(7% 0%, 100% 0%, 94% 100%, 0% 100%);
}

.customgraph-head h2 {
    color: #fff;
    font-size: 60px;
}

.customgraph-text:after {
    opacity: 1;
    right: revert-layer;
    left: 0;
    bottom: 15%;
    top: unset;
    width: 7%;
}

.customgraph-text.cntr {
    padding: 25% 35px 35px;
}

/*---------------------------------------------------- Custom Section End ------------------------------------------------------------- */

/*---------------------------------------------------- About Section Start ------------------------------------------------------------- */

.about-sec {
    margin-bottom: 100px;
}

.about-image-container {
    position: relative;
}

.about-image-container:before {
    content: '';
    position: absolute;
    top: 31%;
    left: -20%;
    background: #ff6500;
    width: 106%;
    z-index: -1;
    height: 218px;
    clip-path: polygon(0% 0, 92% 0, 100% 100%, 0% 100%);
}

.about-imagebox {
    position: relative;
}

.about-imagebox:before {
    position: absolute;
    content: '';
    background-image: -webkit-linear-gradient(-92deg, rgb(255, 101, 0) 0%, rgba(255, 101, 0, 0) 100%);
    width: 190px;
    height: 170px;
    left: -20px;
    clip-path: polygon(0 0, 7% 0, 27% 100%, 20% 100%);
    transform: rotate(-3deg);
}

.about-imagebox:after {
    position: absolute;
    content: '';
    background-image: -webkit-linear-gradient(92deg, rgb(255, 101, 0) 0%, rgba(255, 101, 0, 0) 100%);
    width: 200px;
    height: 140px;
    right: -60px;
    clip-path: polygon(0 0, 7% 0, 27% 100%, 20% 100%);
    bottom: 0;
    transform: rotate(0deg);
}

.about-imagebox img {
    clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%);
    width: 574px;
    height: 558px;
    object-fit: cover;
}

.about-text p {
    margin-bottom: 20px;
    color: #030c21;
    width: 96%;
    font-weight: 600;
}

.about-text h2 {
    margin-bottom: 15px;
}

/*---------------------------------------------------- About Section End ------------------------------------------------------------- */

/*---------------------------------------------------- Banner Section Start ------------------------------------------------------------- */

.banner-sec {
    position: relative;
    height: 120vh;
    z-index: 0;
    overflow: hidden;
    margin-bottom: 100px;
    align-content: center;
    background-color: #fff;
}

.menuSec:before {
    content: '';
    position: absolute;
    top: 20px;
    right: 0;
    background: #ff6500;
    width: 76%;
    z-index: -1;
    height: 65px;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
}

img.banr-mainimg {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    width: 68%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 45% 0);
}

img.ban-backimg {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #030c21;
    z-index: -1;
    width: 60.5%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0%, 54% 100%, 0% 100%);
}

.site-logo {
    margin-bottom: -125px;
}

.banner-sec:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #ff6500;
    width: 90px;
    height: 170px;
    z-index: 0;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.site-logo img {
    width: 170px;
}

.banr-text p {
    color: #fff;
    margin-bottom: 27px;
    opacity: 50%;
    width: 80%;
}

.banr-text h1 {
    width: 95%;
    margin-bottom: 18px;
    font-style: italic;
}

.banner-sec .row {
    padding-top: 3%;
}

.socialmdiabanr {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    top: 120px;
}

.socialmdiabanr ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.socialmdiabanr ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    transition: 0.5s all;
}

.socialmdiabanr h6 {
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
}

.banner-sec:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: #ff6500;
    width: 60%;
    height: 130px;
    z-index: -1;
}

.socialmdiabanr ul li a:hover {
    background: #fff;
    color: #ff6500;
}

.dsign-end {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #030c21;
    width: 100%;
    height: 60px;
    clip-path: polygon(3% 0, 100% 0%, 100% 100%, 0% 100%);
}

/*---------------------------------------------------- Banner Section End ------------------------------------------------------------- */


.serv-inr-img-dsgn {
    position: relative;
}

.serv-inr-img-dsgn:before {
    position: absolute;
    content: '';
    background-image: -webkit-linear-gradient(-92deg, rgb(255, 101, 0) 0%, rgba(255, 101, 0, 0) 100%);
    width: 190px;
    height: 170px;
    left: 21%;
    top: 30px;
    clip-path: polygon(0 0, 7% 0, 27% 100%, 20% 100%);
    transform: rotate(25deg);
}

.serv-inr-img-dsgn:after {
    position: absolute;
    content: '';
    background-image: -webkit-linear-gradient(92deg, rgb(255, 101, 0) 0%, rgba(255, 101, 0, 0) 100%);
    width: 200px;
    height: 180px;
    right: 5px;
    clip-path: polygon(0 0, 7% 0, 27% 100%, 20% 100%);
    bottom: -30px;
    transform: rotate(24deg);
}