/* explicit classes */
.ts-light        { font-family: "ts", sans-serif; font-weight: 300; font-style: normal; }
.ts-light-italic { font-family: "ts", sans-serif; font-weight: 300; font-style: italic; }
.ts-regular      { font-family: "ts", sans-serif; font-weight: 400; font-style: normal; }
.ts-italic       { font-family: "ts", sans-serif; font-weight: 400; font-style: italic; }
.ts-bold         { font-family: "ts", sans-serif; font-weight: 700; font-style: normal; }
.ts-bold-italic  { font-family: "ts", sans-serif; font-weight: 700; font-style: italic; }

:root {
    --title-font:'ts';
    --sub-title-font:'Cormorant Garamond';
    --paragraph-font:'DM Sans';
    --h1:62px;
    --h2:52px;
    --h3:32px;
    --h4:22px;
    --h5:18px;
    --p:18px;

    --main_midnight:#0a0f2c;
    --main_linen:#faf9f6;
    --main_clay:#a89e91;
    --main_charcoal:#1c1a19;
    --main_habor:#2c3e50;
}
.h1, 
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 400;
    font-family: var(--title-font);
    color:var(--main_midnight);
    text-transform: capitalize;

}
h1,
h1 * {
    font-size: var(--h1);
}
h2,
h2 * {
    font-size: var(--h2);
}
h3,
h3 * {
    font-size: var(--h3);
}
h4,
h4 * {
    font-size: var(--h4);
}
h5,
h5 * {
    font-size: var(--h5);
}

body,
p {
    font-size: var(--p);
    color:var(--main_charcoal);
    font-family: var(--paragraph-font);
    line-height: 1.4;
    font-weight: 300 !important;
}
p {
    margin-bottom: 1rem;
}
.btn-secondary,
.btn-primary, 
ul.footer-menu-one li a,
header ul>li>a,
span.sub-title,
.btn-theme,
.btn {
    font-family: var(--sub-title-font); 
}
.btn-secondary > span,
.btn-primary > span,
.btn-theme > span,
.btn {
    letter-spacing: 1px;
    font-size: 14px;
}



a,
a:hover,
input,
input:hover,
button,
button:hover,
img,
header,
.inner_header,
svg,
.scroll-width {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
img {
    max-width: 100%;
    height: auto;
}
.margin-bottom-15 {
    margin-bottom: 15px;
}
.margin-bottom-30 {
    margin-bottom: 30px;
}
.margin-bottom-60 {
    margin-bottom: 60px;
}
.margin-bottom-90 {
    margin-bottom: 90px;
}
.margin-bottom-120 {
    margin-bottom: 120px;
}
.margin-bottom-180 {
    margin-bottom: 180px;
}

.margin-top-15 {
    margin-top: 15px;
}
.margin-top-30 {
    margin-top: 30px;
}
.margin-top-60 {
    margin-top: 60px;
}
.margin-top-90 {
    margin-top: 90px;
}
.margin-top-120 {
    margin-top: 120px;
}
.margin-top-180 {
    margin-top: 180px;
}

.padding-bottom-15 {
    padding-bottom: 15px;
}
.padding-bottom-30 {
    padding-bottom: 30px;
}
.padding-bottom-60 {
    padding-bottom: 60px;
}
.padding-bottom-90 {
    padding-bottom: 90px;
}
.padding-bottom-120 {
    padding-bottom: 120px;
}
.padding-bottom-240 {
    padding-bottom: 240px;
}

.padding-top-15 {
    padding-top: 15px;
}
.padding-top-30 {
    padding-top: 30px;
}
.padding-top-60 {
    padding-top: 60px;
}
.padding-top-90 {
    padding-top: 90px;
}
.padding-top-120 {
    padding-top: 120px;
}
.padding-top-180 {
    padding-top: 180px;
}
.padding-top-240 {
    padding-top: 240px;
}
.left_text {
    text-align: left;
}
.centered_text {
    text-align: center;
}
.right_text {
    text-align: right;
}

/* End Default Styling */

/* Modular Styling */
header {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background:rgba(35, 35, 35, 0.86);
    padding:20px 0;
}
header ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    text-align: right;
}
header ul>li {
    display: inline-block;
}
header ul>:not(.btn_over)>a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin: 1px;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-transition: all .4s;
    transition: all .4s;
    padding-bottom: 2px;
    margin-right: 15px;
    margin-left: 15px;
    position: relative;
}
header ul>:not(.btn_over)>a:hover {
    color:#fff;
}
header ul>li>ul {
    display: none;
}
.main-menu-logo a {
    display: inline-flex;
    width: 100%;
}

header .header_1 {
    
}
header .header_1 svg {
    fill:#fff;
    height: auto;
    max-width: 350px;
}
header .header_1 a {
    display: flex;
    width: 100%;
}
.wpcf7-form .form-control {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--main_midnight);
    padding: 15px 15px;
    margin-bottom: 15px;  
}

.heading-section {
    h2 {
        margin-bottom: 30px;
        span {
            color: var(--main_clay);
            font-size: var(--h2);
        }
    }
    span.sub-title {
        text-transform: uppercase;
        letter-spacing: 0.62em;
        margin-bottom: 12px;
        display: inline-block;
        font-size: 14px;
        font-weight: 600;   
        font-family: var(--sub-title-font);
        letter-spacing: 0.25em;
        margin-bottom: 15px;
    }
    p {
        margin-bottom: 1rem;
    }
    p:nth-last-child(1) {
        margin-bottom:0
    }
}

img.radius_item {
    border-radius: 0.5rem;
    /*clip-path: polygon(0 0, 100% 0, 100% 0, 100% 79%, 86% 100%, 0 100%, 0 100%, 0 0);*/
}
.bg_color_1 {
    background:var(--main_midnight)
}
.bg_color_1 * {
    color:#fff;
}
.work_section {
    h3 {
        margin-bottom: 1rem;
    }
    p {
        margin-bottom: 0;
    }

}
.about-section p {
    margin-bottom: 30px;
}

.faqs_row h3 {
    line-height: normal;
    text-align: left;
    color: var(--main_midnight);
    font-size: var(--h4);
	margin-bottom: 0;
	border-bottom: none;
	cursor: pointer;

}
.ui-accordion-content {
	border-top: none;
	padding:15px 0;
}	
.ui-accordion-content p {
	margin-bottom: 0;
}
.work_section .ui-accordion-content p {
    color: var(--main_midnight);
	margin-bottom: 1rem;
}
.ui-accordion-content a {
    margin-bottom: 0.5rem;
    display: inline-block;
    width: 100%;
    color: var(--main_midnight);
}
.ui-accordion-content a:hover {
    color: var(--main_midnight);
}
.faqs_row h3:before {
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    color: #000;
    font-family: "Font Awesome 5 Pro";
    content: "\f067";
    float: right;
    font-weight: 300;
    margin-top: 10px;
}
.faqs_row h3.ui-state-active:before {
	content: '\f068';
}

.faqs_row {
    background: var(--main_linen);
    padding: 30px;
    border-radius: 7.5px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    margin-bottom: 15px;
    padding: 15px 30px;
}
sm {
    font-size: 14px;
}
.tool-section {

}
.tool-section ul {
    list-style:none;
    padding-left: 0;
    column-count: 2;
}
.tool-section ul>li {
    margin-bottom: 15px;
}

.tool-section ul>li>a {
    color: var(--main_midnight);
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: var(--main_linen);
    padding: 15px;
    border-radius: 7.5px;
}
.tool-section ul>li>a svg {
    width: 16px;
}
.tool-section ul>li:hover a {
    color: var(--main_linen);
    background:var(--main_midnight);
}
.tool-section ul>li:hover a svg {
    fill: var(--main_linen);
}
.singlular_blog-section {
    text-align: center;
}






















.bg_color_1 { 
    a.btn_1 {
        font-weight: 400;
        text-transform: uppercase;
        background: transparent;
        color: var(--main_midnight);
        padding: 15px 30px;
        margin: 0;
        position: relative;
        font-size: 12px;
        letter-spacing: 3px;
        border-radius: 0;
        border: 1px solid var(--main_midnight);
    }
    a.btn_1 span {
        color:var(--main_midnight);
        position: relative;
        z-index: 1;
    }
    a.btn_1:after {
        content: '';
        width: 0;
        height: 100%;
        position: absolute;
        bottom: 0;
        left: 100%;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        background: var(--main_midnight);
    }
    a.btn_1:hover span {
        color:var(--main_linen);
    }
    a.btn_1:hover:after {
        width: 100%;
        left: 0;
        -webkit-transition: width 0.3s ease;
        transition: width 0.3s ease;
    }
}
.bg_color_1 {
    background:var(--main_charcoal)
}
.bg_color_1 * {
    color:#fff;
}
.banner-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height:calc(100vh - 60px);
    h1 {
        color: var(--main_linen);
        line-height: 1.1;
        margin-bottom: 34px;
        animation: fade-left 1s ease;
        span {
            color: rgba(255, 255, 255, 0.46);
        }
    }
    p {
        margin-bottom: 30px;
        color: var(--main_linen);
    }
}
.banner-section_default {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    h1 {
        color: var(--main_linen);
        line-height: 1.1;
        margin-bottom: 34px;
        animation: fade-left 1s ease;
        span {
            color: rgba(255, 255, 255, 0.46);
        }
    }
    p {
        margin-bottom: 30px;
        color: var(--main_linen);
    }
}
.blog-section {
    text-align: center;
    .heading-section {
        span.sub-title {
            color: var(--main_linen);
        }
        h2 {
            color: var(--main_linen);
        }
    }
    .blog-box {
        cursor: pointer;
        img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
        .blog-image {
            padding:30px;
            border: 1px solid #FFFFFF4D;
            margin-bottom: 30px;
            position: relative;
            a {
                height: 50px;
                width: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 100%;
                backdrop-filter: blur(8px);
                background: var(--main_midnight);
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                z-index: 0;
                opacity: 0;
                transition: all 0.5s;   
                opacity: 1;
                img {
                    max-width: 12px;
                    height: 12px;
                }
            }
            
        }
        p {
            a {
                font-family: var(--title-font);
                color:#fff;
            }
        }
    }
}
.blog-box p a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: all 0.5s;
}
.blog-box p a:hover {
    color:#fff;
}
.blog-box:hover {
    .blog-image {
        border: 1px solid #FFF;
        a {
            background: #fff !important;
            img {
                filter: brightness(0) !important;
            }
        }
    }
}
.contact-details {
    list-style: none;
    margin-top: 30px;
    padding-left: 0;
    li {
        margin-bottom: 30px;
        display: inline-flex;
        width: 100%;
        align-items: center;
        a {
            margin-left: 15px;
            color: var(--main_charcoal);
        }
    }
}
.contact-form {
    padding: 60px 60px;
    background-color: var(--main_linen);
    border-radius: 0.5rem;
    .form-group {
        .form-control {
            border: none;
            border-radius: 0;
            border-bottom: 1px solid var(--main_midnight);
            padding: 15px 15px;
            margin-bottom: 15px;
        }
    }

}

.border-top {
     border-top: 1px solid #00000033;
}
footer {
    h4 {
        margin-bottom: 30px;
        font-size: 20px;
    }
    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    ul li{
        display: flex;
        align-items: center;
        column-gap: 15px;
        margin-bottom: 30px;
    }
    ul li img{
        max-width: 22px;
        height: 22px;
    }
    ul li a{
        font-size: 18px;
        color: var(--main_charcoal);
        position: relative;
    }
    ul li a::after{
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background-color: var(--main_charcoal);
        transition: all 0.5s;
    }
    ul li a:hover::after{
        width: 100%;
    }
    .newslatter-form-group {
        position: relative;
    }
    .footer_3 h4 {
        margin-bottom: 15px;
        font-size: 20px;
    }
    .footer_1 {
        .footer-logo-one {
            margin-bottom: 30px;
        }
        p {
            font-size: 16px;
            strong {
                font-weight: 500 !important;
            }
            a {
                color: var(--main_charcoal);
            }
            a:hover {
                color: var(--main_charcoal);
            }
        }
    }
    .footer_3 .form-control{
        padding: 15px 30px 15px 0;
        border: none;
        border-bottom: 1px solid #00000033;
        background-color: transparent;
        border-radius: 0;
        margin-bottom: 28px;
    }
    .newslatter-form-group .btn-link{
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        border: none;
        background: transparent;
        filter: brightness(0.5);
    }
    ul.footer-social-media-one {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        align-items: center;
        column-gap: 15px;
    }
    ul.footer-social-media-one li a{
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100%;
        border: 1px solid #CCCCCC;
        position: relative;
        color: #000;
    }
    ul.footer-social-media-one li a:hover{
        color: var(--main_linen);
    }
    ul.footer-social-media-one li a::after{
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        height: 0;
        width: 0;
        transform: translate(-50%,-50%);
        border-radius: 100%;
        background-color: var(--main_charcoal);
        transition: all 0.5s ;
    }
    ul.footer-social-media-one li a:hover::after{
        height: 100%;
        width: 100%;
    }
    ul.footer-social-media-one li a i{
        position: relative;
        z-index: 1;
    }
    ul.footer-social-media-one li a img{
        filter: brightness(0);
        position: relative;
        z-index: 1;
        transition: all 0.5s ;
    }
    ul.footer-social-media-one li a:hover img{
        filter: brightness(10);
    }
    .footer-lower-one{
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: 15px;
        padding: 25px 0;
        border-top: 1px solid #00000033;
        margin-top: 60px;
    }
    .footer-lower-one p{
        margin-bottom: 0;
        color: var(--uniqo-dark-text);
        font-size: 14px;
    }
    .footer-lower-one p a {
        color: var(--uniqo-dark-text);
    }
    .footer-lower-one p a:hover {
        color: var(--uniqo-dark-text);
    }
    .footer-lower-one ul{
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        align-items: center;
        column-gap: 15px;
    }
    .footer-lower-one ul li {
        margin-bottom: 0;
        text-transform: capitalize;
    }
    .footer-lower-one ul li a{
        font-size: 14px;
        color: var(--main_charcoal););
        position: relative;
    }
    .footer-lower-one ul li a::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background-color: var(--main_charcoal);
        transition: all 0.5s;
    }
    .footer-lower-one ul li a:hover::after {
        width: 100%;
    }


}
ul.footer-menu-one li a:hover {
    color:var(--main_charcoal);
}





.responsive_iframe {
    position: relative;
    height: 0;
    padding-bottom: 56.6%;
    overflow: hidden;
}
.responsive_iframe iframe {
    width:100%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
}
.work-btn {
    text-align: start;
}
.footer-menu-one {
    column-count: 2;
}
.btn-secondary {
    background-color: var(--main_midnight);
    color: var(--main_linen);
}

.btn-primary {
    background-color: var(--main_habor);
    color: var(--main_linen);
}
.heading-title>span {
   color: var(--main_clay);
}
.main-footer {
    background: -webkit-linear-gradient(90deg, var(--main_linen) -1.6%, #FFFFFF 100%);
}
.patner-section-one {
    background-color: var(--main_linen);
}

footer .footer-logo-one {
    display: inline-flex;
    align-items: center;
    width: 100%;
}
footer .footer-logo-one svg {
    max-width: 300px;
    margin-left: 30px;
    height: auto;
}
footer .footer-logo-one img {
    max-width: 175px;
    height: auto;
}
.footer-lower-one p,
.footer-lower-one ul li a {
    color: var(--main_charcoal);
    font-size: 14px;
}
footer 
header ul>:not(.btn_over)>a:hover {
    color:#fff;
}
header ul>:not(.btn_over)>a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color:#fff;
    transition: all 0.5s;
}
header ul>:not(.btn_over)>a:hover:after {
    width: 100%;
}

header {
    background: var(--main_midnight);
}
.btn {
    padding:15px 30px;
    text-transform: uppercase;
    border:solid thin transparent;
}
.btn_0 {
    background: var(--main_midnight);
    color:var(--main_linen);
    border-color: var(--main_midnight);
}
.btn_1 {
    background: var(--main_midnight);
    color:var(--main_linen);
    border-color: var(--main_midnight);
}
.btn_2 {
    background:var(--main_linen);
    color:var(--main_midnight);
    border-color: var(--main_linen);
}
.btn_1:hover {
    color:var(--main_midnight);
    background:var(--main_linen);
    border-color:var(--main_midnight);
}
.btn_2:hover {
    background: var(--main_midnight);
    color:var(--main_linen);
    border-color: var(--main_midnight);
}
.btn_0:hover {
    border-color: var(--main_linen);
    background:var(--main_linen);
    color:var(--main_midnight);
}
.btn_2over a {
    display: inline-block;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.25;
    border-radius: 0.25rem;
    transition: all 0.15s ease-in-out;
    text-transform: uppercase;
    background:var(--main_linen);
    color:var(--main_midnight);
    border-color: var(--main_linen); 
    letter-spacing: 1px;
    font-size: 14px;
}
.btn_2over a:hover {
    background: var(--main_midnight);
    color:var(--main_linen);
}




.team-box {
    background-color: var(--main_linen);
    position: relative;
}
.team-details {
    text-align: center;
    margin: 30px;
}
.team-details h2 {
    font-size: var(--h3);
    margin-bottom: 7.5px;
}
.team-details h2 a{
    color: var(--main_charcoal);
    font-size: var(--h3);
}
.team-social-media {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
}
.team-social-media li a {
    height: 40px;
    width: 40px;
    background-color: var(--main_clay);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    position: relative;
}
.team-social-media li a svg {
    max-width: 16px;
    max-height: 16px;
    fill:var(--main_linen);
}
.team-social-media li a::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 0%;
    width: 0%;
    background-color: var(--main_midnight);
    transition: all 0.5s;
    border-radius: 100%;
}
.team-social-media li a:hover::before{
    height: 100%;
    width: 100%;
}
.team-social-media li a:hover svg {
    fill:#fff;
}
.team-social-media li a svg {
    position: relative;
}
.team-image {
    text-align: right;
}
.team-box:hover .team-social-media {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1) translateZ(0px);
}
.team-i-section .team-image {
    margin-bottom: 30px;
}
.singlular_blog-section {
    .blog-box {
        cursor: pointer;
        img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
        .blog-image {
            padding:30px;
            border: 1px solid var(--main_midnight);
            margin-bottom: 30px;
            position: relative;
            a {
                height: 50px;
                width: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 100%;
                backdrop-filter: blur(8px);
                background: var(--main_midnight);
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                z-index: 0;
                opacity: 0;
                transition: all 0.5s;   
                opacity: 1;
                img {
                    max-width: 12px;
                    height: 12px;
                }
            }
            
        }
        p {
            a {
                font-family: var(--title-font);
                color:var(--main_midnight);
            }
        }
    }
}
.tool-section {
    .heading-section {
        text-align: center;
        span.sub-title {
            color: var(--main_linen);
        }
        h2 {
            color: var(--main_linen);
        }
        p {
            color: var(--main_linen);
        }
    }
}
/* Responsive Styling */
 /* Header Mobile */
#mobile_toggle {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999
}

#mobile_toggle nav {
    background-color: var(--main_midnight);
    height: 50px;
    position: relative;
    box-shadow: 0 4px 4px rgba(0,0,0,.4)
}

#mobile_toggle #menuToggle input {
    display: flex;
    width: 40px;
    height: 40px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    left: 0;
    top: 0
}

#mobile_toggle #menuToggle span {
    display: flex;
    width: 30px;
    height: 1px;
    margin-bottom: 7px;
    position: relative;
    background: #fff;
    z-index: 1;
    transform-origin: 5px 0px;
    transition: transform .5s cubic-bezier(.77,.2,.05,1),background .5s cubic-bezier(.77,.2,.05,1),opacity .55s ease
}

#menuToggle span:first-child {
    transform-origin: 0% 0%
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%
}

#menuToggle span {
    display: block;
    background-color: #fff;
    height: 2px;
    width: 25px;
    margin-bottom: 5px;
    transition: transform .3s,opacity .3s
}

#menuToggle input:checked~label span:first-child {
    transform: rotate(45deg) translate(1px,1px)
}

#menuToggle input:checked~label span:nth-child(2) {
    opacity: 0
}

#menuToggle input:checked~label span:nth-child(3) {
    transform: rotate(-45deg) translate(0,-1px)
}

#mobile_toggle .menu-main-container_outer {
    box-shadow: 4px 0 4px rgba(0,0,0,.4);
    left: 0;
    position: absolute;
    width: 100%;
    height: calc(100vh + 50px);
    padding: 30px;
    background-color: var(--main_midnight);
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%,0);
    transition: transform .5s cubic-bezier(.77,.2,.05,1);
    top: 50px
}

#mobile_toggle .menu-main-container_outer strong {
    margin-bottom: 15px;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
    font-size: 32px;
    font-family: var(--title-font);
    color: #fff;
}

#mobile_toggle ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0
}

#mobile_toggle ul li ul {
    display: none
}

#mobile_toggle ul li {
    text-align: left;
    padding: 7.5px 0;
    transition-delay: 2s;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    width: 100%
}

#mobile_toggle ul li a {
    color: #fff;
    padding: 0 0;
    line-height: 1.5;
    font-family: var(--title-font);
}

#mobile_toggle ul li a:hover {
    background: 0 0!important
}
#mobile_toggle ul li.btn_2over a {
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.25;
    color: var(--main_midnight);
}
#mobile_toggle #menuToggle input:checked~div {
    transform: none
}
#mobile_toggle a.mobile-toggle-img svg {
    max-height: 35px;
    width: 100%;
    fill:#fff;
}
#mobile_toggle a.mobile-toggle-img {
    position: absolute;
    top: calc(50%);
    left: calc(50%);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 1;
    display: inline-flex;
}
.ham {
    position: absolute;
    top: 35px;
    transform: translate(-50%, -50%);
    left: 30px;
    z-index: 9999;
    height: 41px;
}

@media (max-width: 1199.98px) {
    header {
        position: static;
        padding: 15px 0;
    }
    header.scroll-nav .header_1 svg,
    header .header_1 svg {
        max-width: 300px;
    }
    header .header_1 a {
        justify-content: center;
    }
    header ul {
        margin-top: 15px;
        text-align: center;
    }
    .about-section {
        margin-bottom: 30px;
    }
    .tool-section ul {
        column-count: 1;
    }
}

@media (max-width: 991.98px) {

:root {
    --h1:42px;
    --h2:38px;
    --h3:32px;
    --h4:22px;
    --h5:18px;
    --p:18px;
}


    .margin-bottom-15 {
        margin-bottom: 15px;
    }
    .margin-bottom-30 {
        margin-bottom: 30px;
    }
    .margin-bottom-60 {
        margin-bottom: 30px;
    }
    .margin-bottom-90 {
        margin-bottom: 60px;
    }
    .margin-bottom-120 {
        margin-bottom: 60px;
    }
    .margin-bottom-180 {
        margin-bottom: 60px;
    }

    .margin-top-15 {
        margin-top: 15px;
    }
    .margin-top-30 {
        margin-top: 30px;
    }
    .margin-top-60 {
        margin-top: 30px;
    }
    .margin-top-90 {
        margin-top: 60px;
    }
    .margin-top-120 {
        margin-top: 60px;
    }
    .margin-top-180 {
        margin-top: 60px;
    }

    .padding-bottom-15 {
        padding-bottom: 15px;
    }
    .padding-bottom-30 {
        padding-bottom: 30px;
    }
    .padding-bottom-60 {
        padding-bottom: 30px;
    }
    .padding-bottom-90 {
        padding-bottom: 60px;
    }
    .padding-bottom-120 {
        padding-bottom: 60px;
    }
    .padding-bottom-240 {
        padding-bottom: 60px;
    }

    .padding-top-15 {
        padding-top: 15px;
    }
    .padding-top-30 {
        padding-top: 30px;
    }
    .padding-top-60 {
        padding-top: 30px;
    }
    .padding-top-90 {
        padding-top: 60px;
    }
    .padding-top-120 {
        padding-top: 60px;
    }
    .padding-top-180 {
        padding-top: 60px;
    }
    .padding-top-240 {
        padding-top: 60px;
    }
    .banner-section_default {
        min-height: 350px;
    }
    .contact-form {
        padding:30px 30px;
    }

}

@media (max-width: 767.98px) {
    .d-m-30 {
        margin-bottom: 30px;
    }
    .d-mt-60 {
        margin-top: 30px;
    }
}

/* End Responsive Styling */