/* Importing Custom Fonts */

@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
    font-family: "Helvetica Neue";
    src: url(../fonts/helveticaneue.ttf);
    font-weight: 400;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url(../fonts/helvetica-neue-medium.otf);
    font-weight: 500;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url(../fonts/helvetica-neu-bold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: "light";
    src: url(../fonts/helvetica-light-regular.otf);
    font-weight: 400;
}

@font-face {
    font-family: "Helvetica Neue Condensed";
    src: url(../fonts/helvetica-neue-condensed-bold.ttf);
    font-weight: 700;
}

 :root {
    --color-pink: #E4025B;
    --dark: #1A1818;
    --black: #000;
    --gray: #EAEBED;
    --white: #fff;
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Helvetica Neue";
    color: var(--dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Helvetica Neue";
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    color: var(--dark);
}

ul,
li {
    list-style: none;
    margin: 0;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    height: auto;
}

.bg-black {
    background-color: #000000;
}

.bg-gray {
    background-color: #D9D7D8;
}

.bg-dark-gray {
    background-color: #C1C4C9;
}

.py-24 {
    padding: 24px 0;
}

.font-lato {
    font-family: 'Lato', sans-serif;
}

.subtitle {
    display: inline-block;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--color-pink);
    font-size: 43px;
    letter-spacing: 1px;
    line-height: 1.2;
}

h1,
h2 {
    font-size: 46px;
    color: var(--dark);
    font-family: "Helvetica Neue";
    font-weight: 300;
    line-height: 1.1;
    text-transform: uppercase;
}

h2 {
    margin-bottom: 24px;
}

p,
li {
    color: var(--dark);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 10px;
}

ul {
    padding-left: 0;
}

.text ul li::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='12' viewBox='0 0 7.275 11.807'%3E%3Cpath d='M-14389.387,756.354l-6.184,5.276,6.184,5.786' transform='translate(14396.32 -755.974)' fill='none' stroke='%23e10177' stroke-width='1'/%3E%3C/svg%3E");
    margin-right: 15px;
}

.text ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.text ul li {
    width: 45%;
}

b,
strong {
    font-weight: 700;
}

.site-btn,
.contact-nav a {
    font-family: "Helvetica Neue";
    font-weight: 700;
    background-color: var(--color-pink);
    border: 2px solid var(--color-pink);
    color: #fff;
    padding: 13px 25px !important;
    border-radius: 0;
    position: relative;
    transition: .4s all ease-in-out;
    text-transform: uppercase;
    border-radius: 35px;
}

.site-btn {
    display: inline-block;
}

.site-btn svg {
    margin: -4px 0 0 15px;
    width: 10px;
    height: auto;
}

.site-btn:hover,
.contact-nav:hover a {
    background-color: transparent !important;
    color: var(--color-pink) !important;
}

.contact-nav a {
    font-size: 16px;
}

.two-col-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.title-wrap,
.desc-wrap {
    width: 50%;
}

.desc-wrap {
    padding-left: 50px;
    border-left: 1px solid #E4025B;
}

.title-wrap {
    padding-right: 50px;
}

.desc-wrap .site-btn {
    margin-top: 20px;
}

.sec-gray {
    background: var(--gray);
}

.owl-theme .owl-nav {
    position: absolute;
    left: -60px;
    width: calc(100% + 120px);
    height: max-content;
    top: -28%;
    bottom: 0;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.owl-theme .owl-nav [class*=owl-] {
    color: var(--color-pink) !important;
    background: transparent !important;
    transition: .4s all ease;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    color: var(--dark) !important;
}

.owl-dots .owl-dot span {
    background: #EAEBED;
}


/* header */

.nav-menu {
    z-index: 1090;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--dark) !important;
    border-bottom: 4px solid #E4025B;
}

header.sticky .nav-menu {
    position: fixed !important;
    padding-top: 24px;
}

header.sticky .nav-logo img {
    max-width: 180px;
}

.nav-logo img {
    max-width: 260px;
}

.nav-list a {
    color: #fff;
    font-size: 18px;
    font-family: "Helvetica Neue Condensed";
    text-transform: uppercase;
    font-weight: 700;
}

.nav-list a:focus {
    color: #fff !important;
}

.nav-list {
    gap: 37px;
}

.navbar .nav-item:hover>a {
    color: var(--color-pink) !important;
    transition: .4s all ease-in-out;
}

li.current-menu-item {
    position: relative;
}

li.current-menu-item>a {
    color: var(--color-pink);
}

header .nav-item.menu-item-has-children {
    position: relative;
}

header .nav-item.menu-item-has-children::after {
    content: "" !important;
    position: absolute !important;
    z-index: -1 !important;
    width: 11px !important;
    height: 11px !important;
    border-bottom: 2px solid var(--color-pink) !important;
    border-right: 2px solid var(--color-pink) !important;
    transform: rotate(-135deg) !important;
    right: -15px !important;
    top: 12px !important;
    display: flex !important;
    transition: 0.3s all ease !important;
    transform: rotate(45deg) !important;
}

header .sub-menu {
    position: absolute;
    z-index: 10;
    transition: 0.5s all ease;
    opacity: 0;
    background-color: var(--black);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    width: auto;
    top: 16px;
    transform: translate(-9px, 10px);
    background-color: var(--black);
    border-radius: 10px;
    font-size: 16px;
    padding: 15px 15px;
    min-width: 180px;
    display: none;
    left: -30px;
}

header .large-menu .sub-menu {
    min-width: 315px;
    left: -75px;
}

header .medium-menu .sub-menu {
    min-width: 260px;
    left: -55px;
}

header .double-menu .sub-menu {
    min-width: 340px;
    flex-wrap: wrap;
    left: -80px;
}

header .double-menu .sub-menu li {
    width: 50%;
}

header .sub-menu li {
    margin-right: 0;
}

header .nav-item:hover>.sub-menu {
    opacity: 1;
    display: block;
}

header .double-menu:hover>.sub-menu {
    opacity: 1;
    display: flex;
}


/* Default Page */

.default-page h1,
.default-page h2,
.default-page h3,
.default-page h4,
.default-page h5 {
    margin-bottom: 20px;
}

.default-page p {
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 1.6;
}


/* banner */

.banner-sec {
    position: relative;
    z-index: 1;
    min-height: 800px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 65px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner-sec .text {
    text-align: center;
    color: var(--white);
}

.banner-sec h1,
.banner-sec p {
    color: var(--white);
}

.banner-sec p {
    color: #fff;
    font-size: 25px;
    margin: 8px 0 30px;
}

.banner-sec::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    bottom: 0;
    background: linear-gradient(to top, #000, transparent);
    z-index: -1;
}

.banner-sec video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


/* portfolio-featured */

.portfolio-featured {
    background: rgba(228, 228, 228, 0.3);
    padding: 90px 0 60px;
}

.portfolio-featured .section-title p {
    max-width: 633px;
    margin: auto;
}

.portfolio-featured .serv-btn {
    margin-top: 60px;
}

.prop-text h6 {
    font-size: 17px;
    color: var(--color-pink);
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.revolution_row {
    --bs-gutter-x: 50px;
    --bs-gutter-y: 50px;
}

.two-column {
    padding: 100px 0;
}

.two-column .site-btn {
    margin-top: 45px;
}

.two-column .row {
    align-items: center;
}

.two-column .text h2 {
    font-weight: 700;
}

.two-column .text p {
    max-width: 560px;
}


/* Portfolio section */

.portfolio-sec {
    padding-top: 60px;
}

.portfolio-sec .port-mas img {
    object-fit: cover;
}

.portfolio-sec .port-mas .col-lg-4:nth-child(5) img {
    max-height: 783px;
}

.portfolio-sec .port-mas .col-lg-4:nth-child(6) img {
    max-height: 461px;
}

@media (max-width: 1930px) {
    .portfolio-sec .port-mas .col-lg-4:nth-child(5) img {
        max-height: 746px;
    }
    .portfolio-sec .port-mas .col-lg-4:nth-child(6) img {
        max-height: 439px;
    }
}

@media (max-width: 1700px) {
    .portfolio-sec .port-mas .col-lg-4:nth-child(5) img {
        max-height: 659px;
    }
    .portfolio-sec .port-mas .col-lg-4:nth-child(6) img {
        max-height: 388px;
    }
}

@media (max-width: 1550px) {
    .portfolio-sec .port-mas .col-lg-4:nth-child(5) img {
        max-height: 600px;
    }
    .portfolio-sec .port-mas .col-lg-4:nth-child(6) img {
        max-height: 354px;
    }
}

@media (max-width: 1480px) {
    .portfolio-sec .port-mas .col-lg-4:nth-child(5) img {
        max-height: 564px;
    }
    .portfolio-sec .port-mas .col-lg-4:nth-child(6) img {
        max-height: 332px;
    }
}

@media (max-width: 1399px) {
    .portfolio-sec .port-mas .col-lg-4:nth-child(5) img {
        max-height: 517px;
    }
    .portfolio-sec .port-mas .col-lg-4:nth-child(6) img {
        max-height: 305px;
    }
}

@media (max-width: 1300px) {
    .portfolio-sec .port-mas .col-lg-4:nth-child(5) img {
        max-height: 502px;
    }
    .portfolio-sec .port-mas .col-lg-4:nth-child(6) img {
        max-height: 296px;
    }
}

@media (max-width: 1199px) {
    .portfolio-sec .port-mas .col-lg-4:nth-child(5) img {
        max-height: 401px;
    }
    .portfolio-sec .port-mas .col-lg-4:nth-child(6) img {
        max-height: 236px;
    }
}

@media (max-width: 767px) {
    .portfolio-sec .port-mas .col-lg-4:nth-child(6) img,
    .portfolio-sec .port-mas .col-lg-4:nth-child(5) img {
        max-height: unset;
    }
}


/* Testimonials Sec */

.testimonial-sec {
    padding: 100px 0;
}

@media (min-width: 1600px) {
    .testimonial-sec h2 {
        font-size: 52px;
    }
}

.testimonial-sec .section-cards {
    background: #fff;
    border: 1px solid #E466A6;
    border-radius: 7px;
    padding: 55px 40px 30px;
    position: relative;
    z-index: 1;
}

.testimonial-sec .stars i {
    color: #E466A6;
    font-size: 14px;
}

.testimonial-sec .commas {
    position: absolute;
    width: 30%;
    top: 13%;
    right: 75px;
    z-index: -1;
}

.testimonial-sec .qoute-text {
    margin-top: 20px;
    min-height: 180px;
}

.testimonial-sec .qoute-text p {
    font-size: 15px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.7;
}

.testimonial-sec .section-cards hr {
    color: #E466A6;
    opacity: 1;
}

.testimonial-sec .team {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-sec .team h4 {
    font-size: 16px;
}

.testimonial-sec .team h5 {
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
}

.testimonial-sec .team img {
    max-width: 65px;
}

.testimonial-sec .owl-dots {
    text-align: center;
}

.owl-dots .owl-dot.active span {
    background: var(--color-pink) !important;
}

.testimonial-sec .owl-item .item {
    padding-bottom: 2px;
}

.accordion .accordion-item {
    margin-bottom: 15px;
    border-radius: 0 !important;
    border: 1px solid #707070;
}

.accordion .accordion-header {
    border-bottom: none !important;
    margin: 0;
}

.accordion button.accordion-button {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    color: var(--color-pink) !important;
    font-size: 34px;
}

.accordion button.accordion-button:not(.collapsed)::after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MiIgaGVpZ2h0PSI1OCIgdmlld0JveD0iMCAwIDUyIDU4Ij48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtOTc2Ljk5MSAtNjAwMCkiPjx0ZXh0IHRyYW5zZm9ybT0idHJhbnNsYXRlKDk5My45OTEgNjA0OCkiIGZvbnQtc2l6ZT0iNDkiIGZvbnQtZmFtaWx5PSJMYXRvLUxpZ2h0LCBMYXRvIiBmb250LXdlaWdodD0iMzAwIj48dHNwYW4geD0iMCIgeT0iMCI+LTwvdHNwYW4+PC90ZXh0PjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDk3Ni45OTEgNjAwNikiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2UxMDE3NyIgc3Ryb2tlLXdpZHRoPSIxIj48Y2lyY2xlIGN4PSIyNiIgY3k9IjI2IiByPSIyNiIgc3Ryb2tlPSJub25lIi8+PGNpcmNsZSBjeD0iMjYiIGN5PSIyNiIgcj0iMjUuNSIgZmlsbD0ibm9uZSIvPjwvZz48L2c+PC9zdmc+);
}

.accordion button.accordion-button::after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MiIgaGVpZ2h0PSI1OCIgdmlld0JveD0iMCAwIDUyIDU4Ij48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTY5NCAtNjIzNCkiPjx0ZXh0IHRyYW5zZm9ybT0idHJhbnNsYXRlKDE3MDUgNjI4MikiIGZvbnQtc2l6ZT0iNDkiIGZvbnQtZmFtaWx5PSJMYXRvLUxpZ2h0LCBMYXRvIiBmb250LXdlaWdodD0iMzAwIj48dHNwYW4geD0iMCIgeT0iMCI+KzwvdHNwYW4+PC90ZXh0PjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE2OTQgNjI0MCkiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2UxMDE3NyIgc3Ryb2tlLXdpZHRoPSIxIj48Y2lyY2xlIGN4PSIyNiIgY3k9IjI2IiByPSIyNiIgc3Ryb2tlPSJub25lIi8+PGNpcmNsZSBjeD0iMjYiIGN5PSIyNiIgcj0iMjUuNSIgZmlsbD0ibm9uZSIvPjwvZz48L2c+PC9zdmc+);
    background-size: 100% 100%;
    width: 40px;
    height: 40px;
}

.accordion .accordion-body p {
    font-weight: 400;
    font-size: 18px;
}


/* footer */

.footer {
    background: #0F0000;
    padding: 60px 0;
}

.footer .logo {
    text-align: center;
}

.footer .header-logo {
    max-width: 225px;
    margin-bottom: 50px;
}

.footer_list {
    display: flex;
    justify-content: center;
    gap: 15px 50px;
}

.footer_list.links {
    margin: 15px 0 30px;
}

.footer_list a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.footer_list.links a {
    text-transform: uppercase;
}

.footer_list a img {
    width: 18px;
}

.social_icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social_icons a img {
    width: 33px;
}

.copyright {
    margin-top: 50px;
}

.copyright p {
    font-family: "Helvetica Neue";
    color: #FFFFFF;
    font-size: 14px;
}

.copyright a {
    color: inherit;
    text-decoration: none;
}


/* contact page */

.contact-form_sec {
    background: #373A3C;
    padding: 60px 0 70px;
}

.contact-form_sec .section-title h2,
.contact-form_sec .section-title p {
    color: var(--white);
}

.contact_form {
    max-width: 1340px;
    margin: auto;
}

.contact_form h5,
.gfield--type-section h3,
.contact_form .gfield--type-textarea label {
    font-size: 24px;
    font-weight: 700;
}

.contact_form h5 {
    font-weight: 300;
    font-size: 36px;
    color: #0B0101;
}

.gfield--type-section {
    border-bottom: none !important;
}

.contact_form input:not([type="submit"],
[type="checkbox"]) {
    width: 100% !important;
    border: 1px solid #707070 !important;
    outline: none !important;
    color: #0B0101 !important;
    font-weight: 300 !important;
    font-size: 22px !important;
    padding: 26px 30px !important;
    height: auto !important;
    margin-bottom: 30px;
}

.contact_form input::placeholder,
.contact_form textarea::placeholder {
    color: #0B0101 !important;
    font-weight: 300 !important;
}

.contact_form textarea {
    width: 100%;
    display: block;
    padding: 15px 30px !important;
    border: 1px solid #737373 !important;
    outline: none !important;
    font-size: 22px !important;
    color: #000000 !important;
    font-weight: 300 !important;
}

.contact_form select {
    padding: 26px 30px !important;
    height: auto !important;
    font-size: 22px !important;
    color: #0B0101 !important;
    font-weight: 300 !important;
    background: url(../images/down-arrow.svg) no-repeat right 40px center #fff !important;
    background-size: 24px !important;
}

.contact_row {
    margin: 0 auto;
    max-width: 1359px;
}

.contact_boxes label {
    font-size: 34px;
}

.contact_form .gfield_checkbox {
    max-width: 660px !important;
    margin: auto !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
}

.contact_form .gfield_checkbox .gchoice {
    width: 49%;
}

.contact_form .gfield_checkbox .gchoice label {
    color: #000000 !important;
    font-weight: 300 !important;
    font-size: 22px !important;
    margin-top: -5px;
}

.contact_form .gfield--type-textarea label {
    justify-content: center !important;
    margin-bottom: 35px !important;
}

.contact_form .gfield--type-textarea span {
    display: none !important;
}

.contact_form input[type="submit"] {
    background-color: var(--color-pink)!important;
    border: 2px solid var(--color-pink) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 26px !important;
    padding: 22px 84px !important;
    border-radius: 55px !important;
    margin: 54px auto 0 !important;
    text-transform: uppercase !important;
    transition: .4s all ease;
}

.contact_form input[type="submit"]:hover {
    background-color: #fff!important;
    color: var(--color-pink)!important;
    transition: .4s all ease;
}

.contact_form .gform_fields {
    --gf-form-gap-y: 20px !important;
}

.scroll-top-btn svg {
    height: 20px;
    width: auto;
}

.scroll-top-btn {
    font-size: 24px;
    border-radius: 50%;
    width: 45px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--color-pink);
    transition: all 0.4s;
    position: fixed;
    z-index: 1060;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover,
.scroll-top-btn:focus {
    background: #000 !important;
}

@media screen and (max-width:1399px) {
    .nav-list {
        gap: 25px;
    }
    h1,
    h2 {
        font-size: 42px;
    }
    .portfolio-featured .desc-wrap p {
        font-size: 17px;
    }
    .desc-wrap p br,
    .testimonial-sec .qoute-text p br {
        display: none;
    }
    .testimonial-sec .desc-wrap p br {
        display: block;
    }
    .two-column .site-btn {
        margin-top: 25px;
    }
    .accordion button.accordion-button {
        font-size: 28px;
    }
    .testimonial-sec .qoute-text {
        min-height: 204px;
    }
}

@media screen and (max-width:1200px) {
    h1,
    h2 {
        font-size: 36px;
    }
    .site-btn {
        font-size: 14px;
    }
    .portfolio-featured .subtitle {
        font-size: 16px;
        letter-spacing: 2px;
    }
    .portfolio-featured .desc-wrap p {
        font-size: 15px;
    }
    .revolution_row::before {
        left: -20px;
        top: -20px;
        width: calc(100% + 40px);
        height: calc(100% + 40px);
    }
    .prop-text p {
        font-size: 12px;
    }
    .accordion .accordion-body p {
        font-size: 16px;
    }
    .testimonial-sec .qoute-text p {
        font-size: 14px;
    }
    .testimonial-sec .qoute-text {
        min-height: 238px;
    }
    .accordion button.accordion-button {
        font-size: 20px;
    }
    .nav-list {
        gap: 16px;
    }
    .footer_list a {
        font-size: 15px;
    }
    .grid_text.grid_text2 h5 {
        font-size: 26px;
    }
    .grid_text h6,
    .work-grid .excerpt p {
        font-size: 18px;
    }
    .grid_text p {
        font-size: 17px;
    }
    .grid_text a {
        font-size: 16px;
    }
    .grid_Row {
        margin: 0px auto 26px;
    }
    .stationery-text {
        max-width: 473px;
    }
}

@media (min-width: 992px) {
    header .drop-toggler {
        display: none;
    }
}

@media screen and (max-width:991px) {
    .contact-nav a {
        font-size: 14px;
    }
    header .drop-toggler {
        position: absolute;
        right: 0;
        color: #fff !important;
        box-shadow: none;
        border: none;
        transition: .4s all ease;
    }
    header .drop-toggler.active {
        transform: rotate(180deg);
        transition: .4s all ease;
    }
    header .sub-menu {
        padding: 0;
        position: unset;
        transform: none;
        min-width: unset !important;
        left: 0 !important;
        top: 0 !important;
    }
    header .nav-item:hover>.sub-menu {
        display: flex;
        flex-wrap: wrap;
        opacity: 1;
    }
    header .sub-menu li {
        width: 50%;
    }
    .nav-logo img {
        width: 100%;
        max-width: 200px;
    }
    header .navbar {
        padding: 15px 0;
    }
    h1,
    h2 {
        font-size: 38px;
    }
    .banner-sec p {
        font-size: 21px;
    }
    .two-column .text p {
        max-width: 100%;
    }
    .two-col-title {
        margin-bottom: 50px;
    }
    .title-wrap,
    .desc-wrap {
        width: 100%;
    }
    .desc-wrap {
        padding: 20px 0 0;
        border-left: none;
    }
    .portfolio-featured .desc-wrap p {
        font-size: 14px;
    }
    .revolution_row::before {
        left: -12px;
        top: -12px;
        width: calc(100% + 25px);
        height: calc(100% + 25px);
    }
    .accordion button.accordion-button {
        font-size: 16px;
    }
    .grid_text {
        padding: 0 10px;
        margin: 40px auto 20px;
    }
    .grid_text h6,
    .work-grid .excerpt p {
        font-size: 16px;
    }
    .advanced-head_text h2 {
        font-size: 44px;
    }
    .advanced_text {
        margin: 35px auto 0;
    }
    .global-services_text h6 {
        margin-top: 32px;
    }
    .grid_text h5 {
        font-size: 35px;
        margin-bottom: 0px;
    }
    .feature_col h6 {
        font-size: 22px;
    }
    .feature_col p {
        font-size: 16px;
    }
    .feature-sec {
        padding: 207px 0 65px;
    }
    .owl-theme .owl-nav {
        left: -30px;
        width: calc(100% + 60px);
    }
}

@media screen and (max-width:767px) {
    .owl-theme .owl-nav {
        left: -15px;
        width: calc(100% + 30px);
    }
    .owl-theme .owl-nav [class*=owl-] svg {
        width: 18px;
        height: auto;
    }
    .nav-logo img,
    header.sticky .nav-logo img {
        width: 100%;
        max-width: 150px;
    }
    header .sub-menu li {
        width: 100%;
    }
    h1,
    h2 {
        font-size: 26px;
    }
    h2 {
        margin-bottom: 15px;
    }
    p {
        font-size: 14px;
    }
    p br {
        display: none;
    }
    .banner-sec {
        min-height: 600px;
        padding-bottom: 45px;
    }
    .banner-sec::before {
        height: 65%;
    }
    .banner-sec p {
        font-size: 16px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .subtitle,
    .portfolio-featured .subtitle {
        font-size: 14px;
        letter-spacing: 1px;
    }
    .revolution_row::before {
        content: none;
    }
    section.overlap.two-column {
        margin-top: 0;
        padding: 60px 0;
    }
    .two-column {
        padding: 60px 0;
    }
    .portfolio-featured {
        padding: 50px 0;
    }
    .testimonial-sec {
        padding: 50px 0;
    }
    .accordion .accordion-body p {
        font-size: 14px;
    }
    .accordion button.accordion-button::after {
        width: 25px;
        height: 25px;
    }
    .contact_btn img {
        width: 24px;
    }
    .nav-menu {
        position: unset;
        background-color: #000000;
    }
    .nav-list {
        gap: 5px;
    }
    .nav-list .contact-nav {
        margin-top: 14px;
    }
    .nav-list a {
        width: fit-content;
    }
    .footer {
        padding: 50px 0;
    }
    .footer .header-logo {
        max-width: 170px;
        margin-bottom: 10px;
    }
    .grid_text {
        padding: 0px 1px;
        text-align: center;
    }
    .grid_text p {
        font-size: 15px;
    }
    .grid_text a {
        font-size: 13px;
        padding: 8px 22px
    }
    .feature-sec {
        padding-bottom: 25px;
    }
    .feature_col p {
        padding-bottom: 15px;
    }
    .feature_col {
        margin-bottom: 20px;
    }
    .contact_form h5,
    .gfield--type-section h3 {
        font-size: 20px;
    }
    .contact_form input:not([type="submit"],
    [type="checkbox"]),
    .contact_form select,
    .contact_form textarea {
        font-size: 18px !important;
        padding: 10px 20px !important;
    }
    .contact_boxes label {
        font-size: 20px;
    }
    .contact_boxes input {
        width: 41px;
        height: 19px;
    }
    .contact_boxes button {
        font-size: 20px;
    }
    .custom-select {
        font-size: 20px;
        padding: 10px 20px;
        margin-bottom: 15px;
    }
    /* About section */
    .two-column.about .subtitle {
        margin-bottom: 20px;
    }
    .contact_form input[type="submit"] {
        margin: 25px auto 0 !important;
    }
    .contact_form .gfield_checkbox .gchoice {
        width: 100% !important;
    }
    header.sticky .navbar-collapse,
    .navbar-collapse {
        top: 86px !important;
    }
    header.sticky .nav-menu {
        padding-top: 15px;
    }
    .contact_form input[type="submit"] {
        font-size: 16px !important;
        padding: 15px 45px !important;
    }
    .footer .logo {
        margin-bottom: 20px;
    }
    .footer_list {
        gap: 11px;
        flex-wrap: wrap;
    }
    .footer_list a {
        font-size: 14px;
    }
    .copyright {
        margin-top: 30px;
    }
    .copyright p {
        font-size: 12px;
        line-height: 1.6;
    }
}

@media (max-width:991px) {
    .navbar-toggler {
        box-shadow: none !important;
    }
    .navbar-toggler span {
        width: 30px;
        height: 3px;
        background: #fff;
        border-radius: 5px;
        display: inline-block;
        position: relative;
        transition: .4s all ease;
    }
    .navbar>.container {
        align-items: center !important;
    }
    .navbar-toggle {
        height: 38px;
    }
    .navbar-toggler span::before,
    .navbar-toggler span::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 3px;
        left: 0;
        background: #fff;
        border-radius: 5px;
        bottom: -10px;
        transition: .4s all ease;
    }
    .navbar-toggler span::before {
        top: -10px;
        bottom: unset;
        transition: .4s all ease;
    }
    .navbar-toggler[aria-expanded="true"] span::before {
        opacity: 0;
    }
    .navbar-toggler[aria-expanded="true"] span {
        transform: rotate(45deg);
        transition: .4s all ease;
    }
    .navbar-toggler[aria-expanded="true"] span::after {
        transform: rotate(-94deg) translate(10px, 1px);
        transition: .4s all ease;
    }
    .navbar-collapse {
        position: absolute;
        top: 104px;
        background: var(--dark);
        left: 0;
        width: 100%;
        z-index: 1060;
        padding: 20px 20px;
    }
    .nav-list {
        gap: 0px;
    }
    .navbar-collapse ul {
        align-items: flex-start !important;
    }
    header.sticky .navbar-collapse {
        overflow-y: scroll;
        max-height: calc(100vh - 90px);
    }
    header .nav-item.menu-item-has-children {
        width: 100%;
    }
    header .nav-item.menu-item-has-children::after {
        content: none !important;
    }
    .nav-list a {
        display: inline-block;
    }
}