@import url('../../../css2-3');
:root {
    --color-white-100: hsl(206, 5%, 98%);
    --color-white-200: hsl(206, 5%, 90%);
    --color-white-300: hsl(206, 5%, 80%);
    --color-white-400: hsl(206, 5%, 65%);
    --color-white-500: hsl(206, 5%, 50%);
    --color-black-100: hsl(213, 23%, 8%);
    --color-black-200: hsl(214, 21%, 6%);
    --color-black-300: hsl(210, 21%, 6%);
    --color-black-400: hsl(216, 22%, 4%);
    --color-black-500: hsl(220, 18%, 3%);
    --color-pink-100: hsl(326, 85%, 90%);
    --color-pink-200: hsl(327, 87%, 80%);
    --color-pink-300: hsl(329, 86%, 70%);
    --color-pink-400: hsl(330, 81%, 60%);
    --color-pink-500: hsl(333, 71%, 50%);
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
        0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}



/* .container {
    max-width: 75rem;
    height: auto;
    margin: 0 auto;
    padding: 0 1.25rem;
} */

.brand {
    font-size: 18px;
    color: black;
    padding: 0;
    margin: 0;
    margin: 5px 0 5px 0;
    font-weight: bold;
    width: 160px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    height: auto;
    z-index: 100;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
    background-color: var(--color-white-100);
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 2rem;
    width: 100%;
    height: 3.5rem;
    margin: 0 auto;
}

@media screen and (max-width: 992px) {
    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100%;
        z-index: 10;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        box-shadow: var(--shadow-medium);
        background-color: var(--color-white-100);
        transition: all 0.5s ease;
    }

    .navbar.active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
    }
}

.menu-item {
    position: relative;
    display: inline-block;
    margin-left: 38px;
}

.menu-link {

    /* font-weight: bold !important; */
    display: inline-block;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
    font-family: "Lora", serif;
    font-size: 19px;
    /* font-weight: 500; */
    /*font-family: monospace;*/
    /* text-transform: uppercase !important; */
    line-height: inherit;
    cursor: pointer;
    text-transform: capitalize;
    color: var(--color-black-500);
    transition: all 0.3s ease-in-out;

}

.menu-link>i.bx {
    font-size: 1.35rem;
    line-height: 1.5;
    color: inherit;
}

.menu-link :hover {
    color: black !important;
}

.menu-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    margin-top: 2px;
    background: #d5312c;
    transition: width .4s ease;
}

.menu-link:hover::after {
    /* outline: none;
    color: var(--color-pink-500); */
    width: 100%;
    color: black
}

@media only screen and (min-width: 993px) {
    .menu-dropdown:hover>.submenu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media only screen and (max-width: 992px) {
    .menu {
        width: 100%;
        height: auto;
        padding: 1rem 0;
    }

    .menu-item {
        display: block;
        margin: 0 auto;
    }

    .menu-link {
        justify-content: space-between;
        padding: 0.5rem 1.25rem;
    }
}

.submenu {
  position: absolute;
    top: 2.35rem;
    border-radius: 16px;
    left: -2rem;
    min-width: 13rem;
    height: auto;
    padding: 10px 0 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    /* border-radius: 0 0 0.25rem 0.25rem; */
    /* border-top: 2px solid var(--color-pink-400); */
    box-shadow: var(--shadow-medium);
    background-color: var(--color-white-100);
    transition: all 0.3s ease-in-out;
    
}

.submenu-item {
    display: block;
    /*margin-top: 0.75rem;*/
    border-bottom: 1px solid #9f5e2b;
    padding: 5px 0;
}
.submenu-item:nth-last-child(1) {
    border-bottom: none;
}

.submenu-link {
    /*font-family: inherit;*/
    font-size: 14px;
    font-weight: 700;
    line-height: inherit;
    cursor: pointer;
    color: var(--color-black-500);
    transition: all 0.35s ease;
    padding: 0px 3px 0 13px;
}

.submenu-link:hover {
    outline: none;
    color: #f07739;
}

@media only screen and (max-width: 992px) {
    .submenu {
        position: relative;
        top: -0.5rem;
        left: 2.5rem;
        width: 100%;
        max-height: 0;
        padding: 0px;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        transform: translateY(0px);
        box-shadow: none;
        background: transparent;
    }
}

.burger {
    position: relative;
    display: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 1.75rem;
    height: 1rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}

.burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 1;
    border: none;
    outline: none;
    background: var(--color-black-500);
}

.burger-line:nth-child(1) {
    top: 0px;
}

.burger-line:nth-child(2) {
    top: 0.5rem;
}

.burger-line:nth-child(3) {
    top: 1rem;
}

@media only screen and (max-width: 992px) {
    .burger {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
}

@media only screen and (max-width: 992px) {
    .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}
a{
    text-decoration: none;
}

.productshome .bor-img{
    /* border-radius: 50px 20px !important; */
    /*border-right: 2px solid #ea0049;*/
}
.productshome .products .crossed h4{
    text-decoration: line-through;
    color: #e4432d;
}
.productshome .products h3{
    font-size: 17px;
    /*margin: 4px 0 9px 0;*/
    color: #000;
     font-weight: bold; 
    /*font-family: system-ui;*/
    text-align: center;
}
.productshome .products .callbtn{
    font-size: 15px;
    padding: 5px 10px;
    background: #b70a0a;
    color: white;
    border-radius: 7px !important;
    /*font-family: system-ui;*/
    text-align: center;
    display: flow;
    margin-top: 15px;
    width: fit-content;
}
.productshome .card-data{
    /* border-radius: 0px 0px 35px 3px; */
    /*border-radius: 0px;*/
    /*border-bottom: 4px solid #ea0049 !important;*/
    /*border-right: 2px solid #ea0049 ;*/
    /*box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;*/
    /*height: 130px;*/
    border: none;
}
.productshome .card-data a{
    color: black;
}
.price-align
{
    align-items: center;
    display:grid;
    text-align: center;
}
.price-align h6
{
    color: #fff;
    margin-bottom: 0;
    font-size: 13px;
}
.productshome .geeks {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin: 0 auto;
    /* border-radius: 50px 20px !important; */
}

.productshome .geeks img {
    height: 100%;
    width: 100%;
    border-radius: 6%;
    object-fit: cover;
    /*border-radius: 23px 23px 0 0;*/
    /*transition: 0.5s all ease-in-out;*/
}

/*.productshome .geeks:hover img {*/
/*    transform: scale(1.5);*/
/*}*/
.singlehead{
    color: rgb(102, 51, 153);
    font-size: 2rem;
    /*font-family: system-ui;*/
    font-weight: 700;
    letter-spacing: -0.4px;
    margin-bottom: 0;
}

.separator_keep:after {
    position: absolute;
    content: '';
    right: 30px;
    top: 0px;
    width: 80px;
    height: 2px;
    background-color: #b68b3e;
}
.separator_keep span {
    position: absolute;
    left: 50%;
    top: -2px;
    width: 10px;
    height: 5px;
    margin-left: -5px;
    display: inline-block;
    background-color: #663399;
}
.separator_keep:before {
    position: absolute;
    content: '';
    left: 30px;
    top: 0px;
    width: 80px;
    height: 2px;
    background-color: #b68b3e;
}
.separator_keep {
    position: relative;
    width: 40px;
    margin-top: 0px !important;
}







@media only screen and (max-width: 767px)
{
    #toast-container
    {
        width:350px !important;
        margin-bottom:65px !important;
        z-index:99 !important;
    }
    .productshome .geeks
    {
        height: 150px !important;
    }
    .pb-50 {
    padding-bottom: 10px !important;
    }
    
    .pt-50 {
        padding-top: 30px !important;
    }
    .banner-desig img
    {
        height: 100% !important;
    }
    .banner-img
    {
        margin-top: 0 !important;
    }
    #toast-container .toast-info
    {
        padding: 15px 10px !important;
    }
    .toast-close-button
    {
        right:1% !important;
        top:1% !important;
    }
    /*.toast-message*/
    /*{*/
    /*    padding: 15px 10px !important;*/
    /*}*/
    .t-bq-wrapper.t-bq-wrapper-boxed {
        max-width: 100% !important;
        margin: 0 auto;
    }
    .sidebllon
    {
       position: absolute;
    /* top: -26%; */
    z-index: 0;
    left: 0%;
    top: -92px;
    hwight: 200px;
    height: 200px;
    display:none;
    }
    .geeks2{
    width: auto;
    height: 200px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    border-radius: 12px;
    }
    .abt-bannier{
        display:none;
    }
    .seprator{
        width:100%;
        padding:0;
        margin:0!important;
    }
    .seprator img{

    }
    .singlehead{
        font-size:25px;
        letter-spacing: 0;
    }
    .productshome .products h3
    {
        font-size: 14px !important;
        margin-bottom: 0;
    }
    .laptop
    {
        /*display:none;*/
    }
    .mobile
    {
        display:block !important;
    }

}



.mobile
{
    display:none;
}


.footer {
    background-color: #ffffff;
    /*background-color: #000000f0;*/
    /*background-image: url(../../../arc-renovation/wp-content/uploads/2022/03/footer-pattern.png);*/
    /*height: 350px;*/
    background-attachment: fixed;
    padding: 40px 0;
}

.footer h3 {
    color: #ba0c0b;
    font-size: 22px;
    font-weight: bold;
    /*font-family: system-ui;*/
}


.footer ul {
    color: white;
    margin: 14px 0 0 0;
    padding: 0;
    list-style: none;
}

.footer ul li {
    color: white;
    margin: 8px 0 0 0
}

.footer ul li a {
    font-size: 14px;
    color: #ba0c0b;


}
.menu-item a:hover{
    color: #e4432d;
}
.address a{

       color: #fff;

}
.footer .aboutbottom{
    color: #ba0c0b;
    font-size: 14px;
}
.footer .address {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}
.footer .address span{
   color: white;
   font-weight: bold;
}
.footer-bottom{
    background: #330f0a;
    padding: 17px;
    border-top: 0px solid white;
}
.footer-bottom p{
    font-size: 14px;
    margin: 0;
}
.banner-top h1{
    font-size: 84px;
    font-weight: bold;
    margin-left: 80px;
    color: white;
}
.footer .address i{
    font-size: 21px;
    background: #330f0a;
    padding: 10px;
}

.bottom-logo{
    max-width: 62% !important;
    height: auto;
    margin: 0;
}
.geeks2 {
        width: 300px;
        height: 300px;
        position: relative;
        overflow: hidden;
        filter: drop-shadow(2px 4px 6px purple);
        margin: 0 auto;
        border-radius:12px;
    }

    .geeks2 img {
        width: 100%;
        transition: 0.5s all ease-in-out;

    }

    .geeks2:hover img {
        transform: scale(1.5);
    }
    .flogo{
        width:300px;
    }


    @media only screen and (max-width: 767px)
{
.owl-nav .owl-next span
{
    right: 0px;
    font-size: 25px !important;
    line-height: 24px !important;
}
.owl-nav .owl-prev span
{
    left: 0px;
    font-size: 25px !important;
    line-height: 24px !important;
}
.prid_back
{
    margin: 0 !important;
}
.py-3
{
    padding-top: 2px !important;
    padding-bottom: 4px !important;
}
    .geeks2{
    width: auto;
    height: 200px;
    overflow: hidden;
    position:relative;
    margin: 0 auto;
    border-radius: 12px;
    }
    .footer-bottom{
        margin-bottom: 45px;
    }
    .listingDiv2
    {
        font-size: 14px !important;
        left: 20px !important;
    }
    .img-gradient::after
    {
        background-image: linear-gradient(to bottom, rgb(0 0 0 / 55%) 0, rgb(0 0 0 / 32%) 100%) !important;
        margin-top: -300px !important;
        height: 200px !important;
    }
}
.listingDiv2 {
    position: absolute;
    bottom: 18px;
    left: 23px;
    z-index: 1;
    color: white;
    font-size: 22px;
    /*font-family: system-ui;*/
}
.img-gradient::after {
    display: block;
    position: relative;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(12, 1, 1, 0.719) 100%);
    margin-top: -150px;
    height: 150px;
    width: 100%;
    content: '';
    border-radius: 6px;
    transition: 0.5s ease;
}
.seprator img{

    margin-top:-130px;
    z-index:-9;
     position: sticky;
     filter: drop-shadow(2px 4px 6px purple);
}
.socials-media-container {
    top: 50%;
    list-style-type: none;
    padding: 0;
    position: fixed;
    left: calc(100% - 48px);
    transform: translateY(-50%);
    min-width: 250px;
    z-index: 22;
    transition:0.4s ease;
}
.socials-media {
    border-radius: 4px;
    align-items: center;
    display: flex;
    transition: transform 0.3s ease-in-out;
}
.socials-media.facebook {
    background-color: #4267B2;
}
.socials-media i {
    color: #fff;
    font-size: 20px;
    padding: 12px;
    text-align: center;
    width: 50px;
}
.socials-media a {
    color: #fff;
    padding: 0 10px;
    text-align: center;
    text-decoration: none;
}
.socials-media.instagram {
    background: linear-gradient(45deg,#fcd533,#ec4b78,#6941cd,#c13584,#e1306c,#ed4a63);
}
.socials-media.youtube {
    background-color: red;
}
.socials-media.twetter {
    background: #00acee;
}
.socials-media.linkedin {
    background-color: #0077b5;
}
.socials-media.linkedin {
    background-color: #0077b5;
}
.socials-media.whatsapp {
    background: #25D366;
}
.socials-media:hover {
    transform: translateX(calc(-100% + 125px));
}
.banner-desig img
{
    border-radius: 10px;
    height: 450px;
}
.bannerdesign .owl-nav
{
    display: none;
}
.bannerdesign .owl-dots
{
    display: none;
}
.this-tab-back
{
    /*background: url('../images/feature-two-bg.jpg') center center no-repeat;*/
    /*background-size: cover;*/
    /*background-repeat: no-repeat;*/
    /*box-shadow: inset 0px 0px 2000px 3000px #0000006b;*/
    /*background-attachment: fixed;*/
}
.this-tab-backthree
{
    /*background: url('../images/back.jpeg') center center no-repeat;*/
    /*background-size: cover;*/
    /*background-repeat: no-repeat;*/
    /*box-shadow: inset 0px 0px 2000px 3000px #0000006b;*/
    /*background-attachment: fixed;*/
}
.back-this-deco
{
    /*background: url('../images/background.jpeg') center center no-repeat;*/
    /*background-size: cover;*/
    /*background-repeat: no-repeat;*/
    /*box-shadow: inset 0px 0px 2000px 3000px #0000006b;*/
    /*background-attachment: fixed;*/
}
.productshome .products .callbtn2 {
    font-size: 17px;
    padding: 10px 4px;
    background: #fb323c;
    border-radius: 73px 73px !important;
    /*font-family: system-ui;*/
    width: 100%;
    display: flow;
}

.cll_btn
{
    display: flex;
    justify-content: center;
}
.full-row {
    width: 100%;
    padding-top: 150px;
    padding-bottom: 80px;
}
.contact-info {
    background: #f5f5f5;
    padding: 20px;
    height: 100%;
}
.contact-info h5 {
    color: #663399;
}
.contact-info p {
    font-size: 25px;
    font-weight: 600;
    color: black;
}
.contact-info ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-info ul li {
    padding: 15px;
    list-style: none;
    font-size: 18px;
    background: #9f5e2b;
    color: white;
    margin-bottom: 12px;
}
.contact-info ul li span {
    color: white;
}
.contact-info li span {
    font-size: 15px;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 1px;
    width: 100%;
}
label {
    font-size: 14px;
    line-height: 24px;
}
.form-select, .form-control {
    border-radius: 2px;
    min-height: 45px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    argin-bottom: 0;
    color: var(--uc-default-color);
    line-height: 1;
}