:root {
    --theme-color: #ff8921;
    --theme-font: 'Montserrat';
    --sub-font: 'Roboto';
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--sub-font);
}

a {
    text-decoration: none;
}

.font-montserrat {
    font-family: var(--theme-font);
}


/* TOPBAR-START */

.topbar {
    background-color: #dde9fa !important;
}

.topbar .topbar-left a i {
    color: var(--theme-color);
}

.topbar .topbar-right button {
    background-color: var(--theme-color);
}

.topbar .topbar-right button:hover {
    background-color: transparent !important;
    border-color: var(--theme-color);
    color: var(--theme-color) !important;
    transition: all 0.4s;
}

/* TOPBAR-END */

/* HEADER-START */

.menu {
    width: 450px;
    background-color: #dde9fa;
    /* border: 1px solid var(--theme-color); */
}

.menu ul li a {
    color: black;
}

.menu ul li {
    padding: 15px 12px;
    transition: all 0.4s !important;
}

.menu ul li .accordian-content {
    top: 100%;
    display: none;
    width: 100px;
    border-radius: 4px !important;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.4s all;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menu ul li .accordian-content::after {
    position: absolute;
    content: '';
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #fff;
    top: -20px;
    left: 26px;
}

.menu ul li .accordian-content ul li a i {
    padding-right: 5px;
}

.menu ul li .accordian-content ul li a:hover {
    transform: translateX(8px);
    transition: all 0.4s;
}

.menu ul li .accordian-content ul li {
    padding: 4px 8px;
}

header .social-media ul li a {
    color: #ff8921c6 !important;
    transition: all 0.4s !important;
}

header .social-media ul li a:hover {
    color: var(--theme-color) !important;
    transition: 0.4s linear all !important;
}

header .menu ul li .accordian-content ul {
    background-color: var(--theme-color);
    border-radius: 4px;
}

header .menu ul li:nth-child(1):hover .accordian-content {
    display: block;
    transition: 0.4s all;
}

@media(max-width:992px) {

    header .menu-1 {
        overflow-y: scroll;
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100vh;
        background-color: white;
        transform: translateX(-100%);
        transition: all 0.4s;
        z-index: 99;
        border-radius: 0 !important;
        box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
    }

    header .menu-1 ul li a {
        color: black;
    }

    header .menu-1 ul li {
        border-bottom: 1px dashed var(--theme-color);
        width: 100%;
        text-align: center;
        padding: 5px 0;
    }

    header .menu-1 ul:last-child li {
        border: none;
    }

    header .menu-1 ul li .accordian-content {
        display: none;
    }

    header .menu-1 ul .dd-1 .d-dropdown,
    header .menu-1 ul .dd-2 .d-dropdown,
    header .menu-1 ul .dd-3 .d-dropdown,
    header .menu-1 ul .dd-4 .d-dropdown {
        display: none;
    }

    header .menu-1 ul .d-dropdown li {
        font-size: 14px;
        border: none;
        text-align: left;
    }

    .active {
        transform: translateX(0) !important;
        transition: all 0.4s ease;
    }

    header .toggle {
        border: 2px solid var(--theme-color);
        border-width: 3px;
        border-style: solid;
        border-image-slice: 1;
        padding: 10px 15px;
        color: black;
        font-weight: 600;
        font-size: 20px;
        display: block;
        border-radius: 10px;
        cursor: pointer;
    }


}


/* SERVICE-DROPDOWN-START */

header .menu .service-dropdown {
    border-radius: 10px;
    transition: all 0.4s;
    width: 600px;
    background-color: var(--theme-color);
    padding: 25px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

header .menu .service-dropdown ul {
    border-right: 1px solid white;
}

header .menu .service-dropdown::after {
    position: absolute;
    content: '';
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #fff;
    top: -20px;
    left: 188px;
}

header .menu .service-dropdown ul li a i {
    padding-right: 5px;
}

header .menu .service-dropdown ul:last-child {
    border: none;
}

header .menu .service-dropdown ul li a {
    transition: all 0.4s;
}

header .menu .service-dropdown ul li a:hover {
    transform: translateX(8px);
    transition: all 0.4s;
}

header .menu ul li:nth-child(2) {
    transition: all 0.4s;
}

header .menu ul li:nth-child(2):hover .service-dropdown {
    display: block !important;
    transition: all 0.4s;
}

/* SERVICE-DROPDOWN-END */

/* TECHNOLOGY-DROPDOWN-START */

header .menu .technology-dropdown {
    width: 600px;
    background-color: var(--theme-color);
    border-radius: 5px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

header .menu .technology-dropdown::after {
    position: absolute;
    content: '';
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #fff;
    top: -20px;
    left: 282px;
}

header .menu .technology-dropdown ul li {
    padding: 5px 8px;
}

header .menu .technology-dropdown ul li a i {
    padding-right: 5px;
    transition: all 0.4s;
}

header .menu .technology-dropdown ul li a {
    transition: all 0.4s;
}

header .menu .technology-dropdown ul li a:hover {
    transform: translateX(8px);
    transition: all 0.4s;
}

header .menu ul li:nth-child(3) {
    transition: all 0.4s;
}

header .menu ul li:nth-child(3):hover .technology-dropdown {
    display: block !important;
    transition: all 0.4s;
}

/* PRODUCT-DROPDOWN */

header .menu ul .product-dropdown {
    width: 150px;
    border-radius: 5px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

header .menu .product-dropdown::after {
    position: absolute;
    content: '';
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #fff;
    top: -20px;
    left: 50px;
}

header .menu .product-dropdown ul li {
    padding: 5px 8px;
}

header .menu .product-dropdown ul li a i {
    padding-right: 5px;
    transition: all 0.4s;
}

header .menu .product-dropdown ul li a {
    transition: all 0.4s;
}

header .menu .product-dropdown ul li a:hover {
    transform: translateX(8px);
    transition: all 0.4s;
}

header .menu ul li:nth-child(4) {
    transition: all 0.4s;
}

header .menu ul li:nth-child(4):hover .product-dropdown {
    display: block !important;
    transition: all 0.4s;
}




/* HEADER-END */

/* BANNER-START */

.banner .banner-content .owl-carousel .item h1 {
    font-family: var(--theme-font);
    font-size: 50px;
}

.banner .banner-content .owl-carousel .item h1 span {
    color: var(--theme-color);
}

.banner .banner-content .owl-carousel .item button {
    background-color: var(--theme-color);
}

.banner .banner-content .owl-carousel .item p {
    text-align: justify;
    font-family: var(--sub-font);
    line-height: 30px;
    color: #6f6f6f !important;
    font-size: 16px;
}

.banner .banner-content .owl-carousel .owl-item.active h1 {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.banner .banner-content .owl-carousel .owl-item.active p {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeInRight;
    animation-delay: 1s;
}

.banner .banner-content .owl-carousel .owl-item.active button {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 1s;
}

/* BANNER-END */

/* HELP-START */

.help {
    padding: 50px 0 50px 0;
    background: url(../images/bg-01.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.help .help-content h6 {
    color: #ff8921c6;
}

.help .help-content h2 {
    font-family: var(--theme-font);
    font-size: 40px;
}

.help .help-content h2 span {
    color: var(--theme-color);
    font-family: var(--theme-font);
}

.help .help-content .divider {
    width: 50px;
    height: 3px;
    background-color: #ff8921c6 !important;
    margin-top: 20px;
    display: flex;
}

.help .help-content p {
    font-size: 16px;
    color: #6f6f6f;
    margin-top: 20px;
    width: 50%;
}

.help .help-items p {
    color: #6f6f6f;
    font-size: 16px;
}

.help-items .item {
    padding: 10px;
}

.help-items .item .item-content {
    padding: 30px 30px 0 30px;
}

.help-items .item .item-content p {
    line-height: 30px;
}

.help .help-items .item-content i {
    background-color: #E9F1FD;
    color: #3270FC;
    height: 1em;
    width: 1em;
    font-size: 40px;
    padding: 44px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.help .help-items .item:nth-child(2) .item-content i {
    background-color: #FBEEED !important;
    color: #F44336 !important;
}

.help .help-items .item:last-child .item-content i {
    background-color: #F5EDFF !important;
    color: #9C6EDE !important;
}

/* HELP-END */

/* ABOUT-US-START */
.about-us {
    padding: 50px 0 50px 0;
    /* background-color: #f5f5f5; */
}

.about-us .about-us-content h2 {
    font-family: var(--theme-font);
}

.about-us .about-us-content .divider {
    width: 50px;
    height: 3px;
    background-color: var(--theme-color);
    margin-bottom: 20px;
}

.about-us .about-us-content p {
    color: #6f6f6f;
    line-height: 32px;
    text-align: justify;
}

.about-us .about-us-content .btn {
    background-color: var(--theme-color);
    transition: all 0.4s;
}

.about-us .about-us-content .btn:hover {
    color: var(--theme-color) !important;
    background-color: transparent;
    transition: all 0.4s;
    border: 1px solid var(--theme-color) !important;
}

/* ABOUT-US-END */

/* OUR-SERVICES-START */

.our-services {
    padding: 50px 0 50px 0;
}

.our-services-title {
    margin-bottom: 50px;
}

.our-services .our-services-title .divider {
    width: 60px;
    height: 3px;
    background-color: var(--theme-color);
    margin: 15px auto 0 auto;
}

.our-services .our-services-item {
    box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px, rgb(60 64 67 / 15%) 0px 2px 6px 2px;
    background-color: white;
    width: 100%;
    height: 100%;
    padding: 40px;
    border-radius: 10px;
    /* border: 1px solid var(--theme-color); */
    transform-style: preserve-3d;
}

.our-services .our-services-item i {
    color: #6f6f6f;
    font-size: 50px;
    line-height: 80px;
    transition: 0.4s all;
}

.our-services .our-services-item i,
h5 {
    transform: translateZ(50px);
}

.our-service {
    /* transform-origin: center; */
    width: 100%;
    height: 200px;
    transform-style: preserve-3d;
    transition: 1s all;
}

.our-service:hover .our-services-item i {
    color: var(--theme-color) !important;
}

.our-service:hover {
    transform: perspective(1000px);
}

/* OUR-SERVICES-END */

/* COUNTER-START */

.counter {
    padding: 50px 0 50px 0;
}

.counter .counter-title {
    margin-bottom: 50px;
}

.counter .counter-title .divider {
    width: 60px;
    height: 3px;
    background-color: var(--theme-color);
    margin-top: 20px;
}

.counter .counter-content {
    background-color: var(--theme-color);
    background-attachment: fixed;
    border-radius: 10px;
    box-shadow: inset 0 0 12px 0 rgb(0 0 0 / 30%);
}

.counter .counter-content i {
    font-size: 50px;
}

/* COUNTER-END */


/* INDUSTRIES-START */
.industries {
    padding: 50px 0 50px 0;
}

.industries .industries-title h2 span {
    color: var(--theme-color);
}

.industries .industries-title {
    margin-bottom: 30px;
}

.industries .industries-title .divider {
    width: 60px;
    height: 3px;
    background-color: var(--theme-color);
    margin-top: 20px;
}

.industries .industries-content .industries-item {
    width: 70px;
    height: 70px;
    transition: all 0.4s;
    transform-style: preserve-3d;
}

.industries .industries-content .industries-inner-content {
    transform-style: preserve-3d;
}

.industries .industries-content .industries-inner {
    padding: 20px;
    border-radius: 20px;
    margin: 10px 0 10px 0;
    transition: 0.4s all;
    transform-style: preserve-3d;
}

.industries .industries-content .industries-inner .industries-item img,
.industries-inner-content p {
    transform: translateZ(50px);
}

.industries .industries-content .industries-inner:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
    transform: perspective(1000px);
    transition: 0.4s all;
}

.industries .industries-content .industries-inner:hover .industries-item img:last-of-type {
    display: block !important;
    transition: all 0.4s;
    transform: translateZ(50px);
}

/* INDUSTRIES-END */


/* REVIEWS-START */
.reviews {
    padding: 50px 0 50px 0;
}

.reviews .reviews-title {
    margin-bottom: 50px;
}

.reviews .reviews-title .divider {
    background-color: var(--theme-color);
    width: 60px;
    height: 3px;
    margin-top: 20px;
}

.reviews .reviews-content .review-card {
    width: 500px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    margin: 5px 0 20px 0;
    border-radius: 20px;
}

.reviews .reviews-content .review-inner img {
    border-radius: 50%;
    width: 120px;
}

.reviews .reviews-content .review-inner h4 {
    color: var(--theme-color);
    margin-bottom: 0;
}

.reviews .reviews-content .review-inner span {
    color: #6f6f6f;
    font-size: 13px;
}

.reviews .reviews-content .review-inner p {
    color: #6f6f6f;
    line-height: 30px;
}

/* REVIEWS-END */

/* CONTACT-US-START */
.contact-us {
    padding: 20px 0 50px 0;
}

.contact-us .contact-us-title .divider {
    background-color: var(--theme-color);
    height: 3px;
    width: 60px;
    margin-top: 20px;
}

.contact-us .contact-us-title {
    margin-bottom: 30px;
}

.contact-us .contact-us-content .contact-us-inner h2 {
    color: var(--theme-color);
}

.contact-us .contact-us-content .contact-us-inner button {
    background-color: var(--theme-color);
}

.contact-us .contact-us-content .contact-us-inner ul li i {
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    margin: 5px;
}

.contact-us .contact-us-content .contact-us-inner ul li span {
    color: #6f6f6f;
}

/* CONTACT-US-END */

/* FOOTER-START */
.footer {
    background-color: #dde9fa;
}

.footer-data {
    padding: 60px 0 20px 0;
}

.copyright {
    margin: 20px 0;
}

.footer-data {
    padding-top: 40px 0 20px 0;
}

.footer .footer-data .links {
    list-style-type: none;
    padding-left: 0px !important;
}

.footer .footer-data .links li a {
    color: black;
    padding: 4px 0;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.footer .footer-data .links li a::before {
    content: '';
    position: absolute;
    top: 0;
    right: 10px;
    width: 1px;
    height: 100%;
    z-index: 1;
    transition: all 0.5s;
    background-color: black;
}


.footer .footer-data .links li a:hover {
    color: #ff8921;
}

.footer .footer-data .links li a:hover::before {
    transform: translate(-60.9845px, 0) rotate(270deg);
    background-color: #ff8921;
    color: #ff8921;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    top: 10px;
}


.footer .footer-data a p,
.footer .footer-data .links li p,
.footer .footer-data p {
    color: #6f6f6f;
}

/* FOOTER-END */