@import url('https://fonts.googleapis.com/css2?family=Forum&family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900');

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

*:focus,
*:focus-visible {
    outline: none;
}

input:hover, select:hover, .btn:hover, button:hover, .form-control:hover, textarea:hover, .navbar-toggler:hover, input:focus, select:focus, .btn:focus, button:focus, .form-control:focus, textarea:focus, .navbar-toggler:focus, .btn:first-child:active, .btn-close:focus, button.btn:focus:not(:focus-visible), .form-select:hover, .form-select:focus {
	box-shadow: none;
	outline: 0px;
	border-color: inherit;
}

:root { 

    --forum-font: 'Forum', sans-serif;

    --transition-03s: all ease-in-out 0.3s;
    --transition-05s: all ease-in-out 0.5s;

    --main-color: 157, 184, 66;   /* rgb(157, 184, 66) */ 
    --footer-bg-color: 0, 16, 36;  /* rgb(0, 16, 36) */
    --small-text-color: 6, 46, 101; /* rgb(6, 46, 101) */
    --section-bg-color: 246, 245, 237; /* rgb(246, 245, 237)*/
    --black-color: 0, 0, 0;
    --white-color: 255, 255, 255;

}

.section-bg {
    background: rgba(var(--section-bg-color),1);
}
 
body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

ul,
ol {
    margin: 0%;
    padding: 0%;
}

a {
    text-decoration: none;
    color: #000;
}

li {
    list-style: none;
}

.row {
    gap: 24px 0px;
}

.common-section {
    padding: 40px 0px;
    overflow-x: hidden;
    overflow-y: auto;
}

.common-btn {
    font-family: 'Montserrat', sans-serif;
    background-color: rgba(var(--main-color), 1);
    border: 1px solid transparent;
    border-radius: 0px;
    padding: 10px 25px;
    transition: var(--transition-05s);
    color: rgba(var(--white-color), 1);
    font-size: 16px;
    text-transform: capitalize;
}

.common-btn:hover {
    background: transparent;
    border: 1px solid rgba(var(--main-color), 1);
    color: rgba(var(--main-color), 1);
}

.common-tittle {
    text-align: center;
    padding: 20px 0px;
}
.common-tittle h3 {
    font-family: var(--forum-font);
    font-size: 48px;
    font-weight: 400;
}
.common-tittle h5 {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(var(--small-text-color), 1);
}
.common-sub-tittle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(var(--tittle-color), 1);
}


/********************************* Buttons *******************/
.hbtn {
    position: relative;
    box-sizing: border-box;
    display: inline-block;
    overflow: hidden;
    padding: 15px 25px;
    margin: 0px 3px 6px;
    text-align: center;
    /* border: 2px solid rgba(var(--main-color), 1); */
    text-decoration: none;
    color: rgba(var(--white-color), 1);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 0;
} 

.hbtn i {
    padding-right: 8px;
} 

.hb-fill-right-rev::before {
    position: absolute;
    content: "";
    background: rgba(var(--main-color), 1);
    transition-duration: 0.3s;
    z-index: -1;
    inset: 0px auto auto 0px;
    width: 100%;
    height: 100%;
    opacity: 1;
} 

.hb-fill-right-rev:hover::before {
    width: 0px;
    height: 100%;
    opacity: 1;
} 

.hb-fill-right-rev:hover {
    background: rgba(var(--white-color), 1);
    color: rgba(var(--main-color), 1);
    transition: color 0.5s ease 0s, background 0s ease 0s;
} 

.hb-fill-right-rev-two {
    background: rgba(var(--white-color), 1);
    color: rgba(var(--main-color), 1);
    border: none;
}

.hb-fill-right-rev-two::before {
    position: absolute;
    content: "";
    background: rgba(var(--main-color), 1);
    transition-duration: 0.5s;
    z-index: -1;
    inset: 0px auto auto 0px;
    width: 0%;
    height: 100%;
    opacity: 1;
}

.hb-fill-right-rev-two:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
} 

.hb-fill-right-rev-two:hover {
    color: rgba(var(--white-color), 1);
    /* border: 1px solid rgba(var(--main-color), 1); */
}


/************************************ Header Section **************************************/
header {
    width: 100%;
    height: max-content;
    z-index: 10;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    z-index: 9;
    width: 100%;
}

.navbar.header-fixed {
    position: fixed;
    background: rgba(255, 255, 255, 1);
    transition: all ease-in-out 0.2s;
    backdrop-filter: blur(5px);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


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

.navbar-nav {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}
/* .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0px;
    padding-left: 0px;
} */
.navbar-nav .nav-item a {
    font-weight: 500;
    font-size: 18px;
    color: rgba(var(--black-color), 1);
    text-transform: capitalize;
    position: relative;
}
.navbar-nav .nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 0%;
    height: 2px;
    background-color: rgba(var(--main-color), 1);
    transition: var(--transition-05s);
    margin: 0 0.5rem;
}
.navbar-nav .nav-item a:hover::after {
    width: 50%;
}
.navbar-nav .nav-item a.active::after {
    width: 50%;
}
.navbar-nav .nav-item a:hover, .navbar-nav .nav-item .active {
    color: rgba(var(--main-color), 1);
}

.head-brand-menu .common-btn {
    font-size: 16px;
    padding: 10px 20px;
}

.navbar-toggler-icon {
    filter: invert(0);
    border-color: #fff;
}


/******************************************* Banner Section ***********************************/
.banner-section {
    min-height: 80vh;
    height: 100%;
    position: relative;
    background: no-repeat center center / cover;
}
.banner-section::after {
    content: '';
    position: absolute;
    inset: 0%;
    background: linear-gradient(260deg, rgba(246,245,237,0) 0%, rgba(246,245,237,0.9) 95%, rgba(246,245,237,1) 100%);
    display: block; 
}
.inner-banner-section::after {
    content: '';
    position: absolute;
    inset: 0%;
    background: rgba(255,255,255,0.5);
    display: block; 
}
.inner-banner-section {
    min-height: 40vh;
    height: 100%;
    position: relative;
    background: no-repeat center center / cover;
}
.banner-side-img {
    position: absolute;
    left: -5%;
    bottom: 0%;
    height: 650px;
}

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

.banner-content {
    display: flex;
    width: 100%;
    min-height: 80vh;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.inner-banner-content {
    display: flex;
    width: 100%;
    min-height: 40vh;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.banner-content h1,.inner-banner-content h1 {
    font-family: var(--forum-font);
    font-weight: 400;
    font-size: 72px;
    color: rgba(var(--black-color),1);
    line-height: 1;
}

.banner-content p {
    font-weight: 400;
    font-size: 18px;
    color: rgba(var(--black-color),1);
}


/******************************* What We Offer Section *******************************/
.wwo-section {
    position: relative;
}
.wwo-side-img {
    position: absolute;
    right: 1%;
    top: -12%;
    width: 300px;
    height: 310px;
}
.wwo-side-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.wwo-card {
    position: relative;
    transition: var(--transition-05s);
    transform: translateY(0px);
}
.wwo-card:hover {
    transform: translateY(-15px);
}
.wwo-card::after {
    content: '';
    position: absolute;
    inset: 0%;
    width: 100%;
    height: 100%;
    background: linear-gradient(-180deg, rgba(0,14,33,0) 0%, rgba(6,46,101,0.8) 100%);
    transition: var(--transition-05s);
}
.wwo-card::before {
    content: '';
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 100%;
    height: 50%;
    background: linear-gradient(-180deg, rgba(0,14,33,0.4) 0%, rgba(6,46,101,1) 100%);
    background: linear-gradient(180deg, rgba(6,46,101,0.8) 50%, rgba(0,14,33,0) 100%);
    transition: var(--transition-05s);
    opacity: 0;
}
.wwo-card:hover::before  {
    height: 100%;
    opacity: 1;
}
.wwo-card-img {
    width: 100%;
}
.wwo-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wwo-text {
    position: absolute;
    bottom: 0%;
    left: 0%;
    width: 100%;
    text-align: center;
    padding: 15px;
}
.wwo-text > * {
    position: relative;
    z-index: 1;
}
.wwo-text h5 {
    font-size: 24px;
    font-weight: 500;
    color: rgba(var(--white-color), 1);
    text-transform: uppercase;
}
.view-btn {
    color: rgba(var(--white-color), 1);
    border: 1px solid rgba(var(--white-color), 1);
    border-radius: 0px;
    padding: 5px 25px;
    font-size: 16px;
    font-weight: 400;
    transform: rotate(0deg);
    transition: all ease-in-out 0.5s;
}
.view-btn:hover {
    transform: rotate(10deg);
    color: rgba(var(--white-color), 1);
    border: 1px solid rgba(var(--white-color), 1);
    font-weight: 600;
}

/*************************** Adding Values Section ****************************/
.home .av-section {
    background: url(../images/av-bg1.jpg) no-repeat center center / cover !important;
    transition: var(--transition-05s);
}
.av-content {
    padding: 80px 0px 40px;
}
/* .av-content .row > *{
    border-right: 1px solid #fff;
    height: 100%;
} */
.av-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 30px;
    transition: var(--transition-05s);
    overflow: hidden;
    height: 320px;
}
.av-logo {
    height: 100px;
}
.av-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.av-upr h3 {
    color: #062E65;
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 0px;
}
.av-upr p {
    color: rgba(var(--black-color), 1);
    font-weight: 500;
    font-size: 18px;
}
.av-lwr p {
    color: #ECEAE0;
    font-size: 15px;
}
.av-lwr {
    margin-bottom: -160px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    /* display: none; */
    transition: var(--transition-05s);
}
.av-card:hover {
    background: #062E65;
    
}
.av-card:hover .av-upr h3 {
    color: rgba(var(--white-color), 1);
}
.av-card:hover .av-upr p {
    color: rgba(var(--white-color), 1);
}
.av-card:hover .av-lwr {
    margin-bottom: 0px;
    visibility: visible;
    opacity: 1;
}
.av-card:hover .av-logo {
    display: none;
}
.av-btn {
    background: transparent;
    color: rgba(var(--white-color), 1);
    border: 1px solid rgba(var(--main-color), 1);
    border-radius: 0px;
    font-weight: 400;
    text-transform: capitalize;
    transition: var(--transition-05s);
}
.av-btn:hover {
    background: rgba(var(--main-color), 1);
    color: rgba(var(--white-color), 1);
    font-weight: 600;
}
/********************************** What we provide Section ************************/
.wp-section {
    position: relative;
    padding: 60px 0px;
}
.wp-side-img {
    position: absolute;
    right: 0%;
    bottom: 0%;
    /* width: 100%; */
    height: 200px;
}
.wp-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wp-img-one {
    width: 100%;
    height: 250px;
}
.wp-img-one img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wp-img-two {
    width: 100%;
    height: 400px;
}
.wp-img-two img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.wp-img-three {
    width: 100%;
    height: 630px;
}
.wp-img-three img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wp-content h3 {
    font-family: var(--forum-font);
    font-size: 54px;
    font-weight: 400;
}
.wp-feature-list {
    margin: 10px 0px;
}
.wp-feature-list li {
    font-family: var(--forum-font);
    margin-bottom: 10px;
    font-size: 24px;
    color: rgba(var(--black-color), 1);
}
.wp-feature-list li i {
    font-size: 20px;
    color: rgba(var(--main-color), 1);
}
.video-content {
    width: 100%;
    height: 500px;
}
.video-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/********************************************* Clients Section *************************/
.client-logo {
    width: 180px;
    height: 180px;
}
.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(0.9);
    transition: var(--transition-05s);
}
.client-logo:hover img {
    transform: scale(1);
} 
.client-slider {
    padding: 0px 0px 40px;
}
/********************** Keep Update & Discount Section ************************************/
.kuad-head {
    text-align: center;
    padding: 20px 0px;
}
.kuad-head h3 {
    font-size: 38px;
    font-weight: 500;
    color: rgba(var(--black-color), 1);
}
.kuad-head p {
    font-size: 18px;
    font-weight: 400;
    color: #FF9CAE;
}
.kuad-insta-content {
    padding: 0px 0px 20px;
}
.kuad-content form {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border: 1px solid #CBCBCB;
    padding: 3px;
    border-radius: 30px;
}
.kuad-content form input {
    border-radius: 0px;
    padding: 10px 0px;
    border: none;
    padding-left: 10px;
    border-radius: 30px;
}
.kuad-content form button {
    border-radius: 30px;
}
.insta-card {
    display: flex;
    justify-content: center;    
    align-items: center;
    padding: 40px 0px;
    flex-wrap: wrap;
}   
.insta-img {
    position: relative;
    z-index: 1;
    transition: var(--transition-05s);
}
.insta-img::after {
    content: '';
    width: 100%;
    height: 0%;
    position: absolute;
    bottom: 0%;
    left: 0%;
    background: rgba(var(--small-text-color), 0.6);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-05s);
    border-radius: 15px;
}
.insta-img a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-05s);
    z-index: 1;
}
.insta-img a i {
    position: relative;
    z-index: 1;
    color: rgba(var(--white-color), 1);
    font-size: 30px;
}
.insta-img {
    width: 130px;
    height: 130px;
}
.insta-img img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.insta-img:hover a {
    opacity: 1;
    visibility: visible;
}
.insta-img:hover::after {
    opacity: 1;
    visibility: visible;
    height: 100%;
}


/********************************** Home Textiles Page *************************/
.ht-head {
    text-align: center;
}
.ht-img {
    width: 100%;
    height: 500px;
}
.ht-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ht-head p {
    font-size: 18px;
    padding: 20px 0px;
}
.ht-recod-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.ht-record-text h5 {
    font-size: 42px;
    font-weight: 700;
    color: #062E65;
}
.ht-record-text p {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}
.ht-prod-img {
    width: 100%;
    height: 400px;
}
.ht-prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(0.9);
    transition: var(--transition-05s);
}
.single-products .ht-prod-img img {
    object-fit: contain;
}
.ht-content h4 {
    font-family: var(--forum-font);
    font-size: 48px;
    font-weight: 700;
    color: rgba(var(--black-color), 1);
}
.ht-content p {
    font-size: 16px;
    font-weight: 400;
}
.ht-list li {
    font-family: var(--forum-font);
    font-size: 24px;
    color: rgba(var(--black-color),1);
}
.ht-list li i {
    font-size: 20px;
    color: rgba(var(--main-color), 1);
}
.ht-prod-img:hover img {
    transform: scale(1);
}

/********************************** About Us Section **************************/
.pf-img {
    height: 400px;
}
.pf-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.team-card {
    text-align: center;
    box-shadow: 2px 3px 16px -4px rgba(0,0,0,0.75);
    border-radius: 15px;
}
.pf-name {
    padding: 15px 0px;
}
.pf-name h5 {
    font-family: var(--forum-font);
    font-size: 38px;
    font-weight: 700;
    color: #062E65;
}
/***************************************** Contact Us Page *******************************/

.iframe-box {
    width: 100%;
    height: 500px;
    border: 1px solid rgba(var(--main-color), 1);
    padding: 5px;
}
.iframe-box iframe {
    width: 100%;
    height: 100%;
}
.contact-head h2 {
    font-family: var(--forum-font);
    font-weight: 700;
    font-size: 42px;
    color: rgba(var(--black-color),1);
    margin-bottom: 0px;
}
.contact-head p {
    font-weight: 400;
    font-size: 15px;
    color: rgba(var(--black-color),1);
}
.form-contact-box input, .form-contact-box textarea  {
    border-radius: 0px;
    border: none;
}
.form-contact-box input::placeholder,.form-contact-box textarea::placeholder{
    font-family: 'Cormorant',sans-serif;
    font-weight: 400;
}

/******************************** Footer Section *********************************************/
footer {
    background: no-repeat center center / cover;
    position: relative;
    padding: 60px 0px 30px;
}
footer::after {
    content: '';
    position: absolute;
    inset: 0%;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(var(--footer-bg-color), 0.8);
}
footer > * {
    position: relative;
    z-index: 1;
}

.footer-logo {
    width: 250px;
    display: inline-block;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inner-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-box {
    height: 100%;
    border-right: 1px solid #B2B2B2;
}

.footer-social {
    padding: 20px 0px;
}

.social-list {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.social-list li a {
    --ehw-social: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(var(--ehw-social));
    height: calc(var(--ehw-social));
    border-radius: 50%;
    margin: 0 auto;
    transition: all ease-in-out 0.5s;
    background: #F2F2F2;
    color: #7E7871;
    padding: 20px;
    transform: rotate(0deg);
}
.social-list li a i {
    font-size: 24px;
}

.social-list li a:hover,
.social-list li a:focus,
.social-list li a:active {
    background: rgba(var(--main-color), 1);
    color: rgba(var(--white-color), 1);
    transform: rotate(-360deg);
}

.contact-list {
    display: flex;
    gap: 30px;
}

.contact-list li a {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #5A5A5A;
    transition: all ease-in-out 0.5s;
    font-size: 16px;
}

.contact-list li a i {
    color: #0F58D8;
}

.footer-links {
    padding: 20px 0px;
}

.footer-links .footer-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 40px;
}

.footer-links .footer-nav-links li a {
    font-size: 15px;
    font-weight: 400;
    color: rgba(var(--white-color), 1);
    text-transform: uppercase;
}

.contact-list li a {
    color: rgba(var(--white-color), 1);
    font-size: 16px;
}

.contact-list li a i {
    color: rgba(var(--main-color), 1);
    margin-right: 4px;
    
}
.contact-list li a span {
    margin-top: 5px;
}


.copy-box {
    margin-top: 15px;
    padding: 15px 0px 0px;
    color: #B2B2B2;
    text-align: center;
    font-size: 13px;
    width: 100%;
}


.footer-copyright {
    padding: 20px 0px;
    border-top: 1px solid #C2C2C2;
    text-align: center;
}

.footer-copyright p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: var(--footer-link-color);
}

.common-section.htp-section .row .row:nth-child(odd) > *:last-child {
    order: -1;
}


/********************************************** Media query ***********************************/
@media (max-width: 1400px) {
    .wwo-side-img {
        width: 250px;
        height: 290px;
    }
    .common-tittle h3 {
        font-size: 38px;
    }
    .av-upr p {
        font-size: 15px;
    }
    .av-upr h3 {
        font-size: 38px;
    }
    .av-logo {
        height: 85px;
    }
    .wp-content h3 {
        font-size: 38px;
    }
    .wp-feature-list li {
        font-size: 20px;
    }
    .ht-head p {
        font-size: 15px;
    }
    .ht-record-text h5 {
        font-size: 28px;
    }
    .ht-record-text p {
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .navbar-collapse {
        position: absolute;
        background: rgba(255, 255, 255, 0.95);
        width: 100%;
        left: 0;
        top: 90%;
        padding: 25px;
    }
    .wwo-side-img {
        width: 210px;
        height: 260px;
    }
    .wwo-text h5 {
        font-size: 20px;
    }
    .av-content {
        padding: 80px 0px 0px;
    }
    .av-upr h3 {
        font-size: 32px;
    }
    .av-lwr p {
        font-size: 13px;
    }
    .av-btn {
        font-size: 14px;
    }
    .client-logo {
        width: 140px;
        height: 140px;
    }
    .kuad-head h3 {
        font-size: 32px;
    }
    .kuad-head p {
        font-size: 15px;
    }
    .video-content {
        height: 350px;
    }
    .ht-content p {
        font-size: 15px;
    }
    .ht-list li {
        font-size: 18px;
        margin-bottom: 6px;
    }
    .ht-content h4 {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .banner-content h1, .inner-banner-content h1 {
        font-size: 56px;
    }
    .banner-content p {
        font-size: 15px;
    }
    .wwo-side-img {
        top: -8%;
    }
    .kuad-head h3 {
        font-size: 30px;
    }
    .kuad-head p {
        font-size: 15px;
    }
    .footer-logo {
        width: 200px;
    }
    .ht-prod-img img {
        transform: scale(1);
    }
    .common-section.htp-section .row .row:nth-child(odd) > *:last-child {
        order: 0;
    }
    .common-section.htp-section .row .row {
        margin: 0;
    }
    .common-section.htp-section .row .row > *:first-child {
        padding: 0;
    }
    .common-section.htp-section .row .row {
        margin-bottom: 40px;
        box-shadow: 0px 0px 10px 0px rgba(var(--black-color), 0.2);
    }
    .insta-img {
        width: 90px;
        height: 90px;
    }
}
@media (max-width: 767px) {
    .headerTop .innerTop .adresSec{
    display: none !important;
}
}
@media (max-width: 768px) {
    .wwo-side-img {
        width: 150px;
        height: 250px;
        top: -4%;
    }
    .common-tittle h3 {
        font-size: 32px;
    }
    .wwo-text h5 {
        font-size: 32px;
    }
    .client-logo {
        width: 140px;
        height: 140px;
        margin: auto;
    }
}

@media (max-width: 580px) {
    .banner-content h1, .inner-banner-content h1 {
        font-size: 38px;
    }
    .banner-content h1, .inner-banner-content h1 {
        font-size: 38px;
    }
    .kuad-head p {
        font-size: 14px;
    }
    .kuad-head h3 {
        font-size: 24px;
    }
    .footer-links .footer-nav-links {
        flex-direction: column;
    }
    .av-card {
        align-items: center;
    }
    .av-upr,.av-lwr {
        text-align: center;
    }
    .av-content {
        padding: 0px 0px 0px;
    }
    .wp-content h3 {
        font-size: 28px;
    }
    .wp-content p {
        font-size: 14px;
    }
    .wp-side-img {
        height: 120px;
    }
    .hbtn {
        padding: 10px 20px;
        margin: 0px 0px 0px;
        letter-spacing: 1px;
        font-weight: 400;
    }
    .contact-list {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .navbar-nav .nav-item a.active::after {
        width: 100%;
    }
    .banner-section,.banner-content {
        min-height: 50vh;
    }
    .head-brand-menu .common-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

}

@media (max-width: 350px) {
    .navbar-brand {
        width: 75px;
    }
    .common-tittle h3 {
        font-size: 24px;
    }
    .wwo-side-img {
        width: 110px;
        height: 240px;
        top: -6%;
    }
    .banner-content h1, .inner-banner-content h1 {
        font-size: 24px;
    }
    .banner-content {
        gap: 0px;
    }
}

/* Service Style 4 Css */
.style-4 .single-service {
    border: 1px solid #ddd;
    padding: 25px 40px;
    margin-bottom: 70px;
    box-shadow: 0 5px 30px -5px #ccc;
    position: relative;
    -webkit-transition: .3s;
    transition: .3s;
    text-align: center;
    min-height: 360px;
height: 100%; }
  
  .style-4 .single-service i.fa {
    color: #c5001c;
    font-size: 30px;
    margin: 25px 0px;
    border: 1px solid #c5001c;
    text-align: center;
    border-radius: 50%;
    position: relative;
    width: 60px;
    height: 60px;
    line-height: 60px;
    -webkit-transition: .5s;
    transition: 0.5s; }
  
  .style-4 .single-service:after, .single-team:after {
    position: absolute;
    content: "";
    width: 0%;
    border-top: 3px solid #c5001c;
    left: 0;
    top: 0;
    border-left: 3px solid #c5001c;
    height: 0%;
    z-index: 2;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transition: .5s;
    transition: 0.5s; }
  
  .style-4 .single-service:before, .single-team:before {
    position: absolute;
    content: "";
    width: 0%;
    border-bottom: 3px solid #c5001c;
    right: 0;
    bottom: 0;
    border-right: 3px solid #c5001c;
    height: 0%;
    z-index: 2;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    -webkit-transition: .5s;
    transition: 0.5s; }
  
  .style-4 .single-service:hover:before, .single-service:hover:after {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    height: 50%;
    width: 50%; }
  
  .style-4 .single-service:hover i.fa {
    background-color: #c5001c;
    border-color: #c5001c;
    color: #fff; }
  
  .style-4 .single-service h3 {
    position: relative;
    font-weight: 400;
    margin-top: 0px;
    padding-top: 20px;
    font-size: 22px; }
  
  .style-4 .single-service p {
    font-weight: 300; }
  
  /* .style-4 .single-service h3:before {
    position: absolute;
    content: "";
    width: 3px;
    height: 12px;
    background-color: #c5001c;
    top: -25px;
    left: 50%;
    margin-left: -1.5px; }
  
  .style-4 .single-service h3:after {
    position: absolute;
    content: "";
    width: 30px;
    height: 3px;
    background-color: #c5001c;
    left: 50%;
    margin-left: -15px;
    top: -13px; }
   */
  a.border-btn {
    color: #fff;
    background-color: #c5001c;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 3px;
    margin-top: 20px;
    font-weight: 500;
    -webkit-transition: .4s;
    transition: .4s;
    position: relative;
    overflow: hidden;
    z-index: 10; }
  
  .serviceSec a.border-btn:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #333;
    left: 0;
    top: -100%;
    border-radius: 3px;
    -webkit-transition: .4s;
    transition: .4s;
    visibility: hidden;
    z-index: -1; }
  
  .serviceSec a.border-btn:hover:before {
    visibility: visible;
    top: 0; }
  
.profilePage{
    padding: 50px 0;
}

.form-contact-box p{
    margin-bottom: 0;
}
.form-control {
	padding: .375rem .75rem !important;
}
.ht-content {
	padding-bottom: 15px;
}
.postid-194 .youtubeSec{
    display: none;    
}
.postid-273 .youtubeSec{
    display: none;
}
@media (min-width: 1024px) and (max-width: 2000px) {
    .wwo-card-img img {
        height: 415px;
    }  
}
.headerTop {
	background: #0d2963;
	color: #fff;
}

.headerTop .innerTop{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headerTop .innerTop .adresSec{
    display: flex;
    gap: 25px;
    font-size: 14px;
}
.headerTop .innerTop .adresSec i{
    color:#9db842;
    margin-right: 2px;
    font-size: 17px;
}
.headerTop .innerTop .adresSec a{
    color:#fff;
}
.custom-logo {
	max-width: 200px;
	max-height: 200px;
}
.header-fixed .custom-logo {
	max-width:100px;
	max-height: 100px;
}

 .contact-item {
    text-align: left;
    display: inline-block;
    width: 100%;
    margin-top: 20px; }
 .contact-item .icon-box {
    background: #9db842 none repeat scroll 0 0;
    color: #fff;
    /* display: inline-block; */
    float: left;
    height: 50px;
    min-height: 50px;
    min-width: 50px;
    text-align: center;
    vertical-align: middle;
    width: 50px;
    margin-right: 20px; }
.contact-item .icon-box i {
        /* transform: rotate(
    -45deg
    ); */
    line-height: 50px;
    font-size: 18px; }
.contact-item .text-box {
    overflow: hidden; }
.contact-item h3 {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    /* margin: 20px 0 0; */
    line-height: 1.5;
    padding: 0;
    text-transform: uppercase; }
.contact-item p {
    color: #969393;
    font-size: 16px;
    font-weight: 300;
    /* margin: 10px 0 0; */
    line-height: 1.5;
    padding: 0; }

    .btnOne{
        background-color: #c92129 !important;
        border-color:#fff !important ;
    }
  
    .btnTwo{
        background-color: #d7d9d4 !important;
        border-color:#fff !important ;
    }

    .btnThree{
        background-color: #9db842 !important;
        border-color:#fff !important ;
    }
    .btnFour{
        background-color:#182b5c !important;
        color:#fff !important;
        border-color:#fff !important ;
    }
    .listScrol{
        text-align: center;
    }
    .listScrol.stykybtn {
        position: fixed;
        top: 129px;
        z-index: 99;
        left: 50%;
        transform: translateX(-50%);
    }
    