:root {
    --orangeRed: #ff3531;
    --navyBlueBg: #062441;
    --navyBlueHeader: #0b3256;
    /**--headerFont: 'Yeseva One', cursive;
	--bodyFont: 'Quicksand', sans-serif;**/
    --headerFont: 'Ubuntu', sans-serif;
    --bodyFont: 'Ubuntu', sans-serif;
    --ubuntu-font: 'Ubuntu', sans-serif;
}

body,
b,
strong {
    font-family: var(--ubuntu-font);
}

b,
strong {
    font-family: var(--ubuntu-font) !important;
}

a {
    outline: none !important;
}

.redButtonClass {
    background-color: var(--orangeRed);
    color: white;
    font-size: 16px;
    font-family: var(--bodyFont);
    display: inline-block;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    outline: none !important;
    position: relative;
    overflow: hidden;
}

.redButtonClass:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.redButtonClass:hover,
.redButtonClass:focus,
.redButtonClass:active {
    color: white;
    background-color: #e32f2c;
    transition: .4s;
}

.redButtonClass:hover:after {
    width: 120%;
    background-color: rgba(255, 255, 255, 0);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.blueButtonClass {
    background-color: var(--navyBlueBg);
    color: white;
    font-size: 16px;
    font-family: var(--bodyFont);
    display: inline-block;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    outline: none !important;
    position: relative;
    overflow: hidden;
}

.blueButtonClass:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

.blueButtonClass:hover,
.blueButtonClass:focus,
.blueButtonClass:active {
    color: white;
    background-color: #1c4d7c;
    transition: .4s;
}

.blueButtonClass:hover:after {
    width: 120%;
    background-color: rgba(255, 255, 255, 0);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}


/*Header Style*/

.delsNav {
    position: sticky;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

ul#menu-dels-apparel-nav {
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

ul#menu-dels-apparel-nav li a {
    display: block;
    color: white;
    font-family: var(--ubuntu-font);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    outline: none !important;
    margin-right: 30px;
    position: relative;
}

ul#menu-dels-apparel-nav li a:before {
    position: absolute;
    bottom: 0;
    background-color: var(--orangeRed);
    height: 2px;
    width: 100%;
    transition: .4s;
    left: 0;
    width: 0%;
    content: '';
}

ul#menu-dels-apparel-nav li:hover a:before {
    width: 100%;
}

ul#menu-dels-apparel-nav li:last-child a {
    margin-right: 0;
}

a.navbarLogo {
    display: inline-block;
    width: 100%;
    max-width: 88px;
    margin-right: 25px;
}

a.navbarLogo img {
    width: 100%;
    border-radius: 5px;
}

.burgerNav {
    display: none;
}

.mobileNav {
    display: none;
}

@media only screen and (max-width: 1199px) {
    ul#menu-dels-apparel-nav li a {
        font-size: 14px;
        margin-right: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .burgerNav {
        display: inline-block;
        position: absolute;
        top: 40px;
        right: 40px;
        background-color: transparent;
        border: transparent;
        padding: 0;
    }
    .delsNav {
        background-image: url('assets/images/fading-blue-background.jpg');
        height: 100%;
        position: fixed;
        top: 0;
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        transition: .5s;
        right: -1000px;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        z-index: 3;
        margin-top: 0;
    }
    .delsNav.active {
        right: 0px;
        transition: .5s;
    }
    a.navbarLogo {
        margin-right: 0;
        margin-bottom: 45px;
    }
    .burgerNav i {
        color: white;
        font-size: 35px;
    }
    ul#menu-dels-apparel-nav li a {
        font-size: 20px;
        margin-right: 0;
        text-align: center;
        margin-bottom: 20px;
    }
    ul#menu-dels-apparel-nav {
        flex-direction: column;
    }
    .mobileNav {
        width: 100%;
        position: absolute;
        z-index: 2;
        background-color: transparent;
        left: 0;
        padding: 0px 35px;
        top: 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .mobileMenu span {
        background-color: white;
        height: 4px;
        width: 100%;
        max-width: 40px;
        display: block;
        margin-bottom: 6px;
    }
    .mobileMenu span:last-child {
        margin: 0;
    }
    .mobileMenu {
        width: 100%;
        max-width: 30px;
    }
    .delsNav.active {
        padding: 115px 20px 20px;
    }
}

@media only screen and (max-width: 767px) {
    ul#menu-dels-apparel-nav li a {
        font-size: 16px;
    }
}


/*Homepage */


/*Homepage Banner*/

.homepageBannerSection {
    background-image: url('assets/images/fading-blue-background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 220px 0px;
    position: relative;
    overflow: hidden;
}

.homeBannerContent h1 {
    font-size: 30px;
    font-family: var(--headerFont);
    color: white;
    font-weight: 500;
    line-height: 35px;
}

.homeBannerContent {
    width: 100%;
    max-width: 700px;
}

.hpRelative {
    position: relative;
}

section.homepageBannerSection img {
    position: absolute;
    top: 0;
    right: 10%;
    height: 100%;
}

@media only screen and (max-width: 1199px) {
    .homeBannerContent {
        width: 100%;
        max-width: 600px;
    }
}

@media only screen and (max-width: 991px) {
    .homepageBannerSection {
        box-shadow: inset 1000px 1000px #0000003d;
    }
    section.homepageBannerSection img {
        position: absolute;
        top: 0;
        right: -30px;
        height: 100%;
        object-fit: cover;
        object-position: left;
        opacity: 60%;
    }
}


/*Homepage Product Section*/

.productDiv {
    width: 100%;
}

.productDiv h3 {
    text-align: center;
    font-size: 30px;
    font-family: var(--ubuntu-font);
    color: var(--navyBlueHeader);
    padding: 50px 0px 30px;
    font-weight: 300;
    margin-bottom: 0;
    width: 100%;
    text-transform: uppercase;
    font-weight: 700;
}

.productParent {
    display: flex;
    flex-wrap: wrap;
}

.productCard {
    padding: 10px;
}

.productCard a {
    display: block;
    width: 100%;
    position: relative;
}

.productChild {
    width: 100%;
    max-width: 50%;
}

.productChild.product2rows {
    display: flex;
    flex-wrap: wrap;
}

.product2rows .productCard {
    width: 100%;
    max-width: 50%;
    display: flex;
}

.productChild.product3rows {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.product3rows .productCard {
    width: 100%;
    max-width: 33.33%;
}

.productChild.product1whole .productCard {
    height: 100%;
}

.productChild.product1whole a {
    height: 100%;
}

.productCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.productCard a span {
    position: absolute;
    font-family: var(--ubuntu-font);
    font-size: 19px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: transparent;
    width: 100%;
    height: 1%;
    transition: .4s;
    left: 0;
    top: 0;
    padding: 20px 25px;
    color: #062441;
}

.productCard a:hover span {
    background-color: #ffffff78;
    height: 100%;
    transition: .4s;
    color: black;
}

.deltaProductMobShow {
    display: none
}

@media only screen and (max-width: 1199px) {
    .productCard a span {
        font-size: 17px;
    }
}

@media only screen and (max-width: 991px) {
    .productCard a span {
        font-size: 13px;
        padding: 10px 15px;
    }
}

@media only screen and (max-width: 767px) {
    .productDiv h3 {
        padding: 35px 0px 20px;
        margin-bottom: 0;
    }
    .productCard a img {
        width: 100%;
        height: 130px;
        object-fit: cover;
    }
    .product2rows .productCard {
        max-width: 100%;
    }
    .product3rows .productCard {
        max-width: 50%;
    }
    .productChild.product3rows {
        justify-content: center;
    }
    .productCard a span {
        font-size: 13px;
        width: 100%;
        background-color: #ffffff78;
        left: 0;
        top: 0;
        padding: 10px;
        height: auto;
    }
    .deltaProduct {
        display: none;
    }
    .deltaProductMobShow {
        display: flex;
    }
}


/*Homepage Why us Section*/

.whyUsVideo {
    width: 100%;
    max-width: 50%;
    background-color: gainsboro;
}

.whyUsVideo .vp-title {
    display: none !important;
}

.whyUsVideoParent {
    height: 100%;
}

.whyUsVideoParent iframe {
    height: 100%;
}

section.whyUsSection {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.whyUsContent {
    width: 100%;
    max-width: 50%;
    display: flex;
    align-items: center;
    background-color: var(--navyBlueBg);
    padding: 50px 100px 50px 50px;
}

.whyUsContentParent h3 {
    color: white;
    font-family: var(--ubuntu-font);
    font-weight: 400;
    font-size: 30px;
    text-transform: uppercase;
}

.whyUsContentParent p {
    color: white;
    font-family: var(--ubuntu-font);
    font-size: 16px;
    font-weight: 400;
}

section.productSection {
    padding-bottom: 50px;
}

@media only screen and (max-width: 991px) {
    .whyUsContent {
        max-width: 100%;
    }
    .whyUsVideo {
        width: 100%;
        max-width: 100%;
    }
    .whyUsVideoParent {
        height: 400px;
    }
}

@media only screen and (max-width: 767px) {
    .whyUsContent {
        padding: 30px 40px;
    }
}


/*Homepage Clients Section*/

.clientParent h3 {
    text-align: center;
    text-align: center;
    font-size: 30px;
    font-family: var(--headerFont);
    color: var(--navyBlueHeader);
    padding: 50px 0px 30px;
    font-weight: 300;
    margin-bottom: 0;
    width: 100%;
}

.clientImgParent {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.clientImgChild {
    width: 100%;
    max-width: 18%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px 0px #0000000f;
    height: 195px;
    margin-bottom: 30px;
}

.clientImgChild img {
    width: 100%;
    max-width: 130px;
}

.clientSection a {
    display: block;
    max-width: 245px;
    margin: 10px auto 20px;
}

@media only screen and (max-width: 991px) {
    .clientImgChild {
        height: 130px;
    }
}

@media only screen and (max-width: 767px) {
    .clientImgChild {
        max-width: 46%;
    }
}


/*Homepage Recent Blogs Section*/

.hpBlogsParent h2 {
    text-align: center;
    font-size: 30px;
    font-family: var(--headerFont);
    color: var(--navyBlueHeader);
    padding: 70px 0px 30px;
    font-weight: 700;
    margin-bottom: 0;
    width: 100%;
    text-transform: uppercase;
}

.hpBlogsCards a {
    width: 100%;
    max-width: 100%;
    height: 350px;
    padding: 40px 30px;
    display: block;
}

.hpBlogsCards {
    width: 100%;
    max-width: 31.8%;
    margin: auto;
    position: relative;
    box-shadow: inset 1000px 1000px #031c32;
}

.hpBlogsCards img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    opacity: 35%;
    position: absolute;
    top: 0;
    left: 0;
}

.hpBlogsContent {
    z-index: 2;
    position: relative;
}

.hpBlogsContent h3 {
    color: white;
    font-family: var(--headerFont);
    font-weight: 200;
    font-size: 20px;
    margin-bottom: 15px;
}

.hpBlogsContent span {
    display: block;
    color: white;
    font-family: var(--bodyFont);
    font-size: 15px;
    margin-bottom: 15px;
}

.hpBlogsContent p {
    color: white;
    font-family: var(--bodyFont);
    font-size: 16px;
}

.hpBlogsCards label {
    padding: 13px 40px;
}

.hpBlogsContainer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.hpBlogsParent {
    margin-bottom: 100px;
    /*display: none;*/
}

@media only screen and (max-width: 1267px) {
    .hpBlogsCards a {
        height: auto;
    }
    .hpBlogsCards {
        max-width: 280px;
    }
}

@media only screen and (max-width: 991px) {
    .hpBlogsCards {
        max-width: 100%;
        margin: auto auto 30px;
    }
}


/*BLOGS MAIN */

section.blogMainRecentSection {
    padding: 70px 0px;
    background-color: #f8f8f8;
}

section.blogMainRecentSection h1 {
    font-family: var(--headerFont);
    text-align: center;
    font-weight: 300;
    color: var(--navyBlueHeader);
    font-size: 30px;
    margin-bottom: 50px;
}

.bmrCards {
    width: 100%;
    max-width: 32%;
}

.bmrCards img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.bmrCardDesc {
    background-color: white;
    padding: 20px 30px;
}

.bmrCardDesc h3 {
    font-size: 20px;
    color: var(--navyBlueBg);
    font-family: var(--headerFont);
    font-weight: normal;
    margin-bottom: 10px;
}

.bmrCards span {
    font-size: 14px;
    color: #666;
    font-family: var(--bodyFont);
    display: block;
    margin-bottom: 10px;
}

.bmrCardDesc p {
    color: #333;
    font-family: var(--bodyFont);
    font-size: 16px;
}

.bmrCardDesc p a {
    color: red;
    font-weight: bold;
    display: inline-block;
}

.bmrCardDesc p a:hover {
    border-bottom: 1px solid red;
    transition: .4s;
    line-height: 19px;
}

.bmrParent {
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 991px) {
    .bmrParent {
        flex-wrap: wrap;
    }
    .bmrCards {
        width: 100%;
        max-width: 48%;
    }
    .bmrParent .bmrCards:last-child {
        justify-self: center;
        margin: auto;
        width: 100%;
        margin-top: 40px;
        max-width: 100%;
    }
    .bmrParent .bmrCards:last-child img {
        height: 250px;
    }
}

@media only screen and (max-width: 767px) {
    .bmrCards {
        max-width: 100%;
        margin-bottom: 50px;
    }
    .bmrParent {
        flex-wrap: wrap;
    }
}


/*READ MORE BLOG MAIN SECTION*/

section.rmbSection {
    padding: 70px 0px;
}

section.rmbSection h2 {
    text-align: center;
    font-family: var(--headerFont);
    text-align: center;
    font-weight: 700;
    color: var(--navyBlueHeader);
    font-size: 30px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.rmbChild {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.rmbChild img {
    width: 100%;
    max-width: 50%;
    height: 280px !important;
    object-fit: cover;
    padding-right: 50px;
}

.rmbDescription {
    width: 100%;
    max-width: 50%;
}

.rmbDescription h3 {
    font-size: 20px;
    color: var(--navyBlueBg);
    font-family: var(--headerFont);
    font-weight: normal;
    margin-bottom: 10px;
}

.rmbDescription span {
    font-size: 14px;
    color: #666;
    font-family: var(--bodyFont);
    display: block;
    margin-bottom: 10px;
}

.rmbDescription p {
    color: #333;
    font-family: var(--bodyFont);
    font-size: 16px;
}

.rmbSection .pagination {
    justify-content: center;
}

.rmbSection span.page-numbers.current {
    background-color: var(--navyBlueBg);
    color: white;
    font-family: var(--bodyFont);
    display: inline-block;
    padding: 5px 15px;
    font-weight: bold;
    margin-right: 5px;
}

.rmbSection a.page-numbers {
    background-color: transparent;
    color: var(--navyBlueHeader);
    font-family: var( --bodyFont);
    display: inline-block;
    padding: 5px 15px;
    font-weight: bold;
    margin-right: 5px;
    transition: .4s;
}

.rmbSection a.page-numbers:hover {
    background-color: var(--navyBlueBg);
    color: white;
    transition: .4s;
    border: transparent;
}

@media only screen and (max-width: 767px) {
    .rmbChild img {
        max-width: 100%;
        height: 280px;
        padding-right: 0px;
        margin-bottom: 20px;
    }
    .rmbDescription {
        width: 100%;
        max-width: 100%;
    }
}


/*SINGULAR STYLE*/

section.blogInsideSection {
    padding: 100px 0px;
}

.blogInsideHeader h1 {
    text-align: center;
    font-size: 30px;
    font-family: var(--headerFont);
    color: var(--navyBlueHeader);
    font-weight: 300;
}

.blogInsideHeader span {
    text-align: center;
    display: block;
    font-size: 14px;
    font-family: var(--bodyFont);
    margin-bottom: 50px;
    color: #666;
}

.featureImage img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 30px;
}

.blogInsideContent p,
.blogInsideContent a,
.blogInsideContent li,
.blogInsideContent ul,
.blogInsideContent span {
    font-family: var(--bodyFont);
    font-size: 16px;
    color: #333;
}

.blogInsideSocmed {
    display: flex;
    align-items: center;
}

.blogInsideSocmed span {
    width: 90%;
    display: block;
    height: 1.6px;
    background-color: var(--navyBlueBg);
}

.blogInsideSocmedChild {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.blogInsideSocmedChild a {
    background-color: transparent;
    color: var(--navyBlueHeader);
    width: 100%;
    max-width: 30px;
    text-align: center;
    transition: .4s;
}

.blogInsideSocmedChild a:hover {
    background-color: var(--navyBlueHeader);
    color: white;
    width: 100%;
    max-width: 30px;
    text-align: center;
    transition: .4s;
}

section.readmoreSingleSection {
    background-color: #f8f8f8;
}

.blogInsideSocmed span:last-child {
    display: none;
}

@media only screen and (max-width: 767px) {
    .blogInsideSocmed span {
        width: 41%;
    }
    .blogInsideSocmedChild {
        width: 18%;
    }
    .blogInsideSocmed span:last-child {
        display: block;
    }
}


/*CONTACT US STYLE*/

section.contactSection {
    padding: 100px 0;
}

.contactHeader h1 {
    font-size: 30px;
    font-family: var(--headerFont);
    color: var(--navyBlueHeader);
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.contactHeader p {
    font-size: 16px;
    color: #333;
    font-family: var(--bodyFont);
}

.contactPageFormParent input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required,
.contactPageFormParent textarea.wpcf7-form-control.wpcf7-textarea {
    padding: 15px 20px;
    background-color: #f8f8f8;
    border: transparent;
    font-size: 14px;
    margin-bottom: 25px;
    font-family: var(--bodyFont);
    font-weight: 500;
}

.contactPageFormParent textarea.wpcf7-form-control.wpcf7-textarea {
    height: 80px;
    min-height: 93px;
}

.contactPageFormParent input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required::placeholder,
.contactPageFormParent textarea.wpcf7-form-control.wpcf7-textarea::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #333;
    opacity: 1;
    /* Firefox */
}

.contactPageFormParent input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required:-ms-input-placeholder,
.contactPageFormParent textarea.wpcf7-form-control.wpcf7-textarea::placeholder {
    /* Internet Explorer 10-11 */
    color: #333;
}

.contactPageFormParent input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required::-ms-input-placeholder,
.contactPageFormParent textarea.wpcf7-form-control.wpcf7-textarea::placeholder {
    /* Microsoft Edge */
    color: #333;
}

.contactPageFormParent input.wpcf7-form-control.wpcf7-submit {
    text-align: center;
    width: 100%;
    background-color: var(--orangeRed);
    font-size: 16px;
    color: white;
    font-family: var(--bodyFont);
    padding: 20px 10px;
}

.contactPageFormParent input.wpcf7-form-control.wpcf7-submit:hover {
    opacity: .8;
    transition: .4s;
}

.contactPageFormParentDesc p {
    font-size: 16px;
    font-family: var(--bodyFont);
    color: #333;
}

.contactApparentCorp h3 {
    font-family: var(--bodyFont);
    color: var(--navyBlueBg);
    font-size: 16px;
    font-weight: bold;
}

.contactApparentCorp ul {
    list-style: none;
}

.contactApparentCorp ul li,
.contactApparentCorp ul a {
    color: #333;
    font-size: 16px;
    font-family: var(--bodyFont);
    font-weight: 500;
    transition: .4s;
}

.contactApparentCorp ul li:last-child a {
    color: var(--navyBlueBg);
    font-weight: bold;
    text-decoration: underline;
}

.contactApparentCorp ul a:hover {
    color: var(--navyBlueBg);
    transition: .4s;
}

.contactApparentCorp ul li i {
    color: var(--navyBlueBg) !important;
    margin-right: 20px;
}

.contactApparentCorp ul li img {
    width: 100%;
    max-width: 12px;
    margin-right: 14px;
}

.contactApparentCorp ul li {
    margin-bottom: 10px;
}

.contactPageFormParent {
    padding: 0px 30px 0px 0px;
}

.contactPageFormParentDesc {
    padding: 0px 0px 0px 30px;
}

@media only screen and (max-width: 991px) {
    .contactPageFormParent {
        padding: 0px 0px 0px 0px;
    }
    .contactPageFormParentDesc {
        padding: 0px 0px 0px 0px;
    }
    .contactApparentCorp ul li {
        display: flex;
        align-items: flex-start;
    }
    .contactApparentCorp ul li img {
        margin-top: 9px;
    }
}


/*CONTACT US REACH US STYLE*/

.reachUsCard h3 {
    font-family: var(--bodyFont);
    color: var(--navyBlueBg);
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.reachUsCard ul {
    list-style: none;
}

.reachUsCard ul li,
.reachUsCard ul a {
    color: #333;
    font-size: 16px;
    font-family: var(--bodyFont);
    font-weight: 500;
    transition: .4s;
}

.reachUsCard ul li:last-child a {
    color: var(--navyBlueBg);
    font-weight: bold;
    text-decoration: underline;
}

.reachUsCard ul a:hover {
    color: var(--navyBlueBg);
    transition: .4s;
}

.reachUsCard ul li i {
    color: var(--navyBlueBg) !important;
    margin-right: 20px;
    font-size: 20px;
}

.reachUsCard ul li {
    margin-bottom: 10px;
}

section.reachUsSection {
    padding: 70px 0px;
    background: #f8f8f8;
}

.reachUsHeader h2 {
    color: var(--navyBlueHeader);
    font-family: var(--headerFont);
    font-size: 30px;
    margin-bottom: 35px;
    font-weight: 300;
}

.reachUsCard {
    margin-bottom: 50px;
    width: 100%;
    max-width: 300px;
}

.contactPageFormParent input::placeholder,
.contactPageFormParent textarea::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #333 !important;
    opacity: 1;
    /* Firefox */
}

.contactPageFormParent input:-ms-input-placeholder,
.contactPageFormParent textarea:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #333 !important;
}

.contactPageFormParent input::-ms-input-placeholder,
.contactPageFormParent textarea::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #333 !important;
}


/*CLIENT PAGE STYLE*/

section.clientSection {
    padding: 20px 0px;
    margin-bottom: 20px;
}

.clientHeader h1 {
    text-align: center;
    text-align: center;
    font-size: 30px;
    font-family: var(--headerFont);
    color: var(--navyBlueHeader);
    margin-bottom: 30px;
    font-weight: 300;
}

.clientHeader {
    width: 100%;
    max-width: 900px;
    margin: auto;
}

.clientHeader p {
    font-family: var(--bodyFont);
    color: #333;
    font-size: 16px;
}

.clientLogos ul {
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.clientLogos ul li {
    width: 100%;
    max-width: 209px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    height: 200px;
    padding: 10px;
    box-shadow: 0px 0px 9px 0px #00000029;
    position: relative;
    margin: 0px 10px 25px;
}

.clientLogos ul li img {
    width: 100%;
    max-width: 150px;
    height: 115px;
    object-fit: scale-down;
}

.clientLogos ul li:hover .logoDesc {
    opacity: 1;
    transition: .4s;
}

.logoDesc {
    position: absolute;
    background-color: #255480ed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .4s;
    padding: 5px;
}

.logoDesc p {
    margin-bottom: 0px;
    color: white;
    font-size: 16px;
    font-family: var(--bodyFont);
    font-weight: bold;
    text-align: center;
}

.logoDesc span {
    margin-bottom: 0px;
    color: white;
    font-size: 16px;
    font-family: var(--bodyFont);
    display: block;
    text-align: center;
}

@media only screen and (max-width: 991px) {
    .clientLogos ul li {
        max-width: 32%;
    }
    section.clientSection {
        padding: 100px 0px 0;
    }
}

@media only screen and (max-width: 767px) {
    .clientLogos ul li {
        max-width: 48%;
    }
}

.clientCtaParent {
    background-image: url("assets/images/gray-wall.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 100px 120px;
}

.clientCtaParent>img {
    position: absolute;
    left: 100px;
    width: 100%;
    max-width: 555px;
    bottom: 0;
}

.clientCtaParent a {
    display: flex;
    align-items: center;
}

.clientCtaParent a img {
    margin-left: 10px;
}

.clientLogos {
    margin-top: 70px;
}

@media only screen and (max-width: 1199px) {
    .clientCtaParent {
        padding: 90px 65px;
    }
    .clientCtaParent>img {
        max-width: 434px;
    }
}

@media only screen and (max-width: 991px) {
    .clientCtaParent {
        padding: 55px 25px;
    }
    .clientCtaParent>img {
        max-width: 295px;
        left: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .clientCtaParent>img {
        position: relative;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        margin: auto;
        left: unset;
    }
    .clientCtaParent {
        padding: 55px 25px 0;
        display: flex;
        flex-direction: column-reverse;
    }
}


/*PAGE DELTA PLUS STYLE*/

section.deltamainSection {
    padding: 40px 0px 70px;
}

.deltamainHeader h1 {
    font-family: var(--headerFont);
    text-align: center;
    font-weight: 700;
    color: var(--navyBlueHeader);
    font-size: 30px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.deltamainParent {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.deltamainCards {
    width: 100%;
    max-width: 24%;
    margin: 0px;
    margin-right: 10px;
    margin-bottom: 20px;
    height: 168px;
    background-color: white;
    overflow: hidden;
    position: relative;
}

.deltamainCards a {
    display: block;
}

.deltamainCards a img {
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
    top: 0;
}

.deltamainCards a span {
    position: absolute;
    top: 20px;
    left: 20px;
    text-transform: uppercase;
    color: #062441;
    font-size: 19px;
    font-family: var(--bodyFont);
    font-weight: 500;
    z-index: 3;
    line-height: 1;
}

span.overlay {
    position: absolute;
    background-color: #ffffff78;
    height: 0%;
    top: 0 !important;
    width: 100%;
    left: 0 !important;
    transition: .4s;
    z-index: 2;
}

.deltamainCards a:hover span.overlay {
    height: 100%;
    transition: .4s;
}

@media only screen and (max-width: 1199px) {
    .deltamainCards {
        max-width: 23%;
        margin-right: 17px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .deltamainCards {
        width: 100%;
        max-width: 30%;
        height: 145px;
    }
    .deltamainCards a span {
        font-size: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .deltamainCards {
        max-width: 100%;
        margin-right: 0;
    }
    .deltamainCards a img {
        width: 100%;
        object-position: top;
    }
}

.deltamainParent a {
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.deltamainCtaParent a img {
    margin-left: 16px;
}

.deltamainCTA {
    background-image: url("assets/images/deltamainctabg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 0px;
}

.deltamainCtaParent {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.deltamainCtaParent p {
    font-size: 16px;
    font-family: var(--bodyFont);
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
}


/*LANDING PAGE STYLE*/

section.lpSection {
    padding: 100px 0px;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: inset 1000px 1000px #33333396;
    margin-bottom: 50px;
}

.lpHeader h1 {
    color: white;
    font-size: 30px;
    font-family: var(--headerFont);
    font-weight: 400;
}

.lpBody {
    width: 100%;
    max-width: 870px;
    margin: auto;
}

.lpBody p,
.lpBody a,
.lpBody li {
    color: #333;
    font-family: var(--bodyFont);
    font-weight: 500;
}

.lpBody ul {
    list-style: none;
}

.lpBody h3 {
    font-size: 21px;
    font-family: var(--bodyFont);
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    margin-top: 40px;
}

.lpBody img {
    width: 100%;
    max-width: 300px;
    margin: 35px 0px;
}

.lpBody h4 {
    color: var(--navyBlueHeader);
    font-family: var(--bodyFont);
    font-size: 20px;
    font-weight: bold;
}

.landingPageCTA {
    margin-top: 215px;
}

.lpBody .row img {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 35px auto;
}

section.lpBodyParent {
    margin-bottom: 70px;
}


/*ABOUT US*/

.aboutBanner {
    background-image: url("assets/images/about-bannerbg.jpg");
    background-attachment: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px;
}

.aboutBannerParent h1 {
    font-size: 30px;
    color: var(--navyBlueHeader);
    font-family: var(--headerFont);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

.aboutBannerParent p {
    color: #333;
    font-size: 16px;
    font-family: var(--bodyFont);
    margin-bottom: 0;
    width: 100%;
    max-width: 900px;
    margin: auto;
}

@media only screen and (max-width: 991px) {
    .aboutBanner {
        background-position: right;
    }
}

.strengthHeader h1 {
    font-size: 30px;
    color: var(--navyBlueHeader);
    font-family: var(--headerFont);
    margin-bottom: 25px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    text-transform: uppercase;
}

section.ourStrenghtSection {
    padding: 70px 0px;
}

.strengthBody {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.strengthCard {
    width: 100%;
    max-width: 33.33%;
    padding-right: 100px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.strengthCard>img {
    width: 100%;
    max-width: 27px;
    display: block;
    margin-bottom: 20px;
    align-self: flex-start;
}

.strengthCard h3 {
    width: 100%;
    font-size: 16px;
    font-family: var(--bodyFont);
    font-weight: bold;
    color: #255480;
    margin-bottom: 10px;
}

.strengthCard p {
    color: #333;
    font-size: 16px;
    font-family: var(--bodyFont);
    font-weight: 500;
}

.ourStrenghtSection .redButtonClass img {
    margin-left: 15px;
}

.ourStrenghtSection .redButtonClass {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.strengthCard:last-child {
    padding-right: 0;
    justify-content: center;
    align-items: flex-start;
    align-self: center;
}

@media only screen and (max-width: 991px) {
    .strengthCard {
        max-width: 50%;
    }
    .awardChild {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .strengthCard {
        max-width: 100%;
        padding-right: 0;
    }
    .strengthCard>img {
        align-self: center;
    }
    .strengthCard h3 {
        text-align: center;
    }
    .strengthCard p {
        text-align: center;
    }

    .strengthCard:last-child {
        align-items: center;
        align-self: center;
    }
}

.awardParent {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.awardChild {
    width: 100%;
    max-width: 400px;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.awardChild img {
    width: 100%;
    max-width: 175px;
    margin-bottom: 20px;
}

.awardChild h3 {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--bodyFont);
    font-weight: bold;
    color: var(--navyBlueBg);
    margin-bottom: 5px;
}

section.awardSection {
    background-color: #f8f8f8;
    padding: 100px 0px;
}

.awardChild p {
    color: #333;
    font-family: var(--bodyFont);
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .awardChild p {
        text-align: center;
    }
}


/*Product Category, Product Category LP, Product Single Style*/


/*PLEASE BE AWARE THE THESE 3 products has only 1 template*/

section.productBannerSection {
    padding: 70px 0px;
}

.productBannerHeader h1 {
    font-size: 30px;
    font-family: var(--headerFont);
    color: var(--navyBlueHeader);
    font-weight: 300;
}

.productBannerHeader p {
    color: #333;
    font-family: var(--bodyFont);
    font-size: 16px;
}

.productBannerHeader p span {
    display: inline-block;
    color: var(--navyBlueHeader);
    margin-right: 5px;
}

.relatedProductParent {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.relatedProductCard {
    width: 100%;
    max-width: 265px;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 0px 10px 20px;
}

.relatedProductCardImage {
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
}

.relatedProductCard .relatedProductCardImage img {
    width: 100%;
    max-width: 100%;
    height: 300px !important;
    object-fit: scale-down;
}

.relatedProductTitle {
    width: 100%;
    background-color: var(--navyBlueBg);
    text-align: center;
}

.relatedProductTitle a {
    color: white;
    font-size: 19px;
    font-family: var(--bodyFont);
    padding: 12px 5px;
    display: block;
}


/*for single product category style*/

.singleProduct .relatedProductCard {
    width: 100%;
    max-width: 31%;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.singleProduct .relatedProductCardImage img {
    width: 100%;
    max-width: 250px;
}

section.lpBodyParent.singleProductBody .lpBody {
    width: 100%;
    max-width: 990px;
    display: block;
    margin: auto;
}

section.lpBodyParent.singleProductBody .lpBody p,
section.lpBodyParent.singleProductBody .lpBody a,
section.lpBodyParent.singleProductBody .lpBody li {
    color: #333;
    font-family: var(--bodyFont);
    font-weight: 500;
    font-size: 16px;
}

section.lpBodyParent.singleProductBody .lpBody h1 {
    color: #255480;
    font-size: 21px;
    font-family: var(--bodyFont);
    font-weight: bold;
    text-transform: uppercase;
}


/*end of single product category style*/

@media only screen and (max-width: 991px) {
    .relatedProductParent {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .relatedProductCard {
        max-width: 48%;
        margin-bottom: 25px;
        margin-right: 0;
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .relatedProductCard {
        max-width: 100%;
    }
    .singleProduct .relatedProductCard {
        max-width: 100%;
    }
    .singleProduct .relatedProductCardImage img {
        width: 100%;
        max-width: 144px;
    }
}


/*FOOTER DESIGN*/

.footerSection {
    background-color: var(--navyBlueBg);
    padding: 50px 0px;
}

.footerNav {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footerNavContainer ul {
    margin: 0;
    list-style: none;
    padding-left: 40px;
}

.footerNavContainer {
    width: 100%;
    max-width: 33.33%;
    padding-right: 20px;
}

.footerNavContainer ul li a {
    display: inline-block;
    color: white;
    font-size: 15px;
    font-family: var(--ubuntu-font);
    margin-bottom: 10px;
    position: relative;
}

.footerNavContainer ul li a:before {
    width: 100%;
    height: 2px;
    background-color: red;
    content: "";
    position: absolute;
    bottom: 0;
    max-width: 0px;
    transition: .4s;
}

.footerNavContainer ul li:hover a:before {
    max-width: 100%;
    transition: .4s;
    border: none !important;
}

.footerNavContainer h3 {
    font-size: 15px;
    font-family: var(--bodyFont);
    color: #9ecffd;
    margin-bottom: 10px;
}

.footerNav .footerNavContainer:nth-child(1) ul {
    padding-left: 0;
}

.footerContactDiv h3 {
    font-family: var(--headerFont);
    color: white;
    font-weight: 200;
    text-align: center;
    font-size: 20px;
}

.footerInputDiv input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required,
.footerInputDiv textarea.wpcf7-form-control.wpcf7-textarea {
    background-color: white;
    border: transparent;
    border-radius: 0;
    margin-bottom: 14px;
    font-family: var(--bodyFont);
    font-weight: 600;
    font-size: 13px;
}

.footerInputDiv textarea.wpcf7-form-control.wpcf7-textarea {
    height: 50px;
    min-height: 90px;
}

.footerInputDiv input.wpcf7-form-control.wpcf7-submit.redButtonClass {
    width: 100%;
    background-color: var(--navyBlueBg);
    font-family: var(--bodyFont);
    font-size: 13px;
    font-weight: 500;
}

.footerContactDiv {
    background: #E5434D;
    border: 1px solid white;
    padding: 30px;
}

.footerSocmed {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    margin-top: 50px;
}

.footerSocmedContainer ul {
    margin: 0;
    list-style: none;
}

.footerSocmedContainer ul li a {
    color: white;
    font-family: var(--bodyFont);
    font-size: 13px;
    display: flex;
    padding: 5px 0px;
    align-items: center;
    position: relative;
}

.footerSocmedContainer ul li a:before {
    height: 2px;
    width: 0%;
    background-color: var(--orangeRed);
    position: absolute;
    left: 0px;
    bottom: 0px;
    transition: .4s;
    content: "";
}

.footerSocmedContainer ul li:hover a:before {
    width: 100%;
    max-width: 100%;
    transition: .4s;
}

.footerSocmedContainer ul li a i {
    background-color: white;
    color: var(--navyBlueBg);
    padding: 10px;
    font-size: 13px;
    border-radius: 100%;
    width: 100%;
    max-width: 30px;
    height: 30px;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footerSocmedContainer {
    width: 100%;
    max-width: 28%;
    margin-right: 30px;
}

.footerSocmedContainer img {
    width: 100%;
    max-width: 200px;
    border-radius: 5px;
}

.sitemapFooter {
    border-top: 1px solid white;
    margin-top: 60px;
    padding-top: 35px;
}

.sitemapFooter p,
.sitemapFooter a {
    text-align: center;
    font-size: 15px;
    font-family: var(--bodyFont);
    color: white;
}

.sitemapFooter a {
    position: relative;
}

.sitemapFooter a:before {
    height: 2px;
    width: 0%;
    background-color: var(--orangeRed);
    position: absolute;
    bottom: 0px;
    transition: .4s;
    content: "";
}

.sitemapFooter a:hover:before {
    width: 100%;
}

.footerInputDiv input.wpcf7-form-control.wpcf7-submit.redButtonClass:hover {
    background-color: #ff615e;
}

.footerSocmedContainer li {
    display: flex;
    align-items: center;
}

.footerSocmedContainer li i {
    margin-right: 10px;
    color: white;
}

@media only screen and (max-width: 991px) {
    .footerNavContainer {
        max-width: 50%;
    }
    .footerNavContainer ul {
        padding-left: 0px
    }
    .footerSocmed {
        width: 200%;
    }
    .footerSocmedContainer:nth-child(1) {
        margin-top: 13px;
    }
    .footerSocmedContainer {
        width: 100%;
        max-width: 28.33%;
        margin-right: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .footerSocmed {
        width: 100%;
    }
    .footerSocmedContainer {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 25px;
    }
    .footerSocmedContainer img {
        width: 100%;
        max-width: 100px;
    }
}


/*404 and Thank you CSS*/

.thankyouSection {
    background-image: url(assets/images/thankyou-bg.jpg);
    padding: 150px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.thankyou__Parent h1 {
    font-size: 30px;
    font-weight: 400;
    font-family: var(--headerFont);
    text-align: center;
    color: var(--navyBlueHeader);
}

.thankyou__Parent p {
    font-size: 16px;
    color: #333;
    text-align: center;
    font-family: var(--bodyFont);
    font-weight: 500;
}

.thankyou__Parent a img {
    margin-left: 15px;
}

.thankyou__Parent a {
    display: block;
    width: 100%;
    margin: auto;
    max-width: 260px;
}

.delsNav ul.sub-menu {
    position: absolute;
    margin: 0;
    list-style: none;
    width: 100%;
    max-width: 440px;
    background-color: #255480;
    padding-top: 10px;
    display: none;
}

.delsNav ul.sub-menu li a {
    display: block;
    background-color: #255480;
    margin-right: 0;
    padding: 13px;
}

.delsNav .menu-item-has-children:hover ul.sub-menu {
    display: block;
}

@media only screen and (max-width: 991px) {
    .delsNav ul.sub-menu {
        display: block;
        position: relative;
    }
    .delsNav .menu-item-has-children:hover ul.sub-menu {
        display: block;
    }
    .menu-dels-apparel-nav-container {
        overflow: auto;
    }
    a.navbarLogo {
        display: none;
    }
    ul.delsNavSocMed {
        display: none !important;
    }
    .delsNav ul.sub-menu li a {
        background-color: transparent;
    }
    .delsNav ul.sub-menu {
        background-color: transparent;
    }
}

ul.sub-menu li a {
    margin-right: 0 !important;
}

.delsNav ul.sub-menu li a:hover {
    background-color: #18446d;
}

.productBannerHeader a:hover {
    text-decoration: underline;
    color: #e32f2c;
    line-height: 10px;
}

.delsNav.active .navbarLogo {
    display: block;
    position: absolute;
    top: 35px;
    left: 35px;
    width: 100%;
    max-width: 80px;
}

ul#menu-dels-apparel-nav li a>img {
    width: 100%;
    max-width: 95px;
    margin-top: -32px;
}

.deltaHeader {
    width: 100%;
    display: block;
    text-align: center;
    padding: 60px 0px 45px;
}

.deltaHeader img {
    width: 100%;
    max-width: 250px;
}

li#menu-item-13 {
    display: none;
    /*client in nav*/
}

.productDiv h3>img,
.deltamainHeader h1>img {
    width: 100%;
    max-width: 80px;
}


/*new revision march 3 2021*/

@media only screen and (max-width: 991px) {
    a.mobileNavbarLogo img {
        width: 100%;
        max-width: 85px;
    }
}

.forAdminOnly {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.categoryLoop {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
}

.categoryLoop a,
.categoryLoop span,
.parentSpan,
.parentLink {
    color: #333;
    font-family: var(--bodyFont);
    font-size: 16px;
}

.categoryLoop span,
.parentSpan {
    display: inline-block;
    margin: 0px 10px;
}

.deltaHeader {
    font-family: var(--bodyFont);
    font-size: 16px;
    text-align: left;
    color: #000;
}

.deltaHeader img {
    width: 100%;
    max-width: 250px;
    margin: 70px auto;
    display: block;
}

.deltaHeader a.learn-btn {
    background: #F8EF24;
    color: #000;
    text-transform: uppercase;
    padding: 10px 20px;
    margin-top: 20px;
    font-weight: 700;
    display: inline-block;
    font-family: var(--ubuntu-font);
}

section.catalogue-sec {
    padding: 50px;
    background: rgb(229, 67, 77);
    background: linear-gradient(90deg, rgba(229, 67, 77, 1) 0%, rgba(6, 36, 65, 1) 70%);
}

section.catalogue-sec .catalogue .d-flex {
    justify-content: center;
}

section.catalogue-sec .catalogue .d-flex h2 {
    margin-right: 50px;
    color: #fff;
    font-family: var(--ubuntu-font);
    font-size: 30px;
    font-weight: 400;
    margin-top: 10px;
}

section.catalogue-sec .catalogue .d-flex form {
    display: flex;
    flex-wrap: wrap;
}

section.catalogue-sec .catalogue .d-flex form input.wpcf7-email {
    background: #fff;
    height: 50px;
}

section.catalogue-sec .catalogue .d-flex form input.wpcf7-submit {
    background: #E5434D;
    color: #fff;
    height: 50px;
}

@media(max-width: 1024px) {
    section.catalogue-sec .catalogue .d-flex h2 {
        font-size: 20px;
    }
}

@media(max-width: 768px) {
    section.catalogue-sec .catalogue .d-flex h2 {
        width: 160px;
    }
    section.catalogue-sec .catalogue .d-flex form input.wpcf7-email {
        width: 230px;
    }
    section.catalogue-sec {
        padding: 50px 20px;
    }
}

@media(max-width: 767px) {
    section.catalogue-sec .catalogue .d-flex h2 {
        width: 100%;
        margin-right: 0;
        font-size: 18px;
    }
    section.catalogue-sec .catalogue .d-flex p {
        margin-bottom: 0;
    }
    section.catalogue-sec .catalogue .d-flex {
        flex-direction: column;
    }
}

.bialty-container {
    display: contents;
}

/*QA APPLICATION JUNE 3 2021*/

.footerContactDiv .wpcf7-not-valid-tip {
    color: white !important;
}