* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}




/* nav1 */
.nav1 {
    background: #0d485d;
    /* font-size: 16px; */
    text-align: center;
    color: white;
    text-decoration: none;
    height: 35px;
    padding-top: 8px;
}

.nav1 h4{
    font-size: 18px;
}




.navbar {
    position: relative;
    display: flex;
    padding: 10px;
    background-color: white;
    justify-content: space-around;
    align-items: center;
    box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75);
    /* -webkit-box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75); */
    /* -moz-box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75); */
}

.nav-items > ul > li {
    position: relative;
    display: inline;
    list-style: none;
    margin: 10px;
    padding: 10px 20px;
    cursor: pointer;
}

.nav-items > ul > li > a {
    color: black;
    text-decoration: none;
}

.nav-items > ul > li::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.17rem;
    background-color: #0d485d;
    left: 0;
    bottom: 0;
    transform-origin: 0% 100%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-items > ul > li:hover::after {
    transform: scaleX(1);
}

.nav-logo a,
.nav-button a {
    color: white;
    list-style: none;
    text-decoration: none;
    display: flex;
}

.nav-logo {
    font-size: 32px;
}

.nav-button {
    background-color: #0d485d;
    border-radius: 50px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
}

.anim-layer {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: white;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-button:hover .anim-layer {
    width: 100%;
    left: 0;
}

.nav-button:hover a {
    color: #141214;
}

.nav-button a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

#hamburger-menu,
#mobile-menu {
    display: none;
    color: #0d485d;
}

@media only screen and (max-width: 770px) {
    #mobile-menu {
        background-color: #0d485d;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        display: none;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        transition: transform 0.3s ease;
        transform: translateX(-100%);
        z-index: 1000;
    }

    .mobile-nav-items > ul {
        padding: 0px;
    }

    .mobile-nav-items > ul > li {
        text-align: center;
        position: relative;
        list-style: none;
        margin: 10px;
        padding: 10px 20px;
        cursor: pointer;
    }

    .mobile-nav-items > ul > li > a {
        color: white;
        text-decoration: none;
    }

    .mobile-nav-items > ul > li::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 0.17rem;
        background-color: white;
        left: 0;
        bottom: 0;
        transform-origin: 0% 100%;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .mobile-nav-items > ul > li:hover::after {
        transform: scaleX(1);
    }

    .mobile-nav-button {
        background-color: #141214;
        border-radius: 50px;
        position: relative;
        display: inline-block;
        overflow: hidden;
        cursor: pointer;
    }

    .mobile-nav-button .anim-layer {
        position: absolute;
        top: 0;
        left: 50%;
        width: 0;
        height: 100%;
        background-color: white;
        transition: width 0.3s ease, left 0.3s ease;
    }

    .mobile-nav-button:hover .anim-layer {
        width: 100%;
        left: 0;
    }

    .mobile-nav-button:hover a {
        color: #141214;
    }

    .mobile-nav-button a {
        display: block;
        padding: 10px 20px;
        color: white;
        text-decoration: none;
        position: relative;
        z-index: 1;
    }

    .nav-items > ul,
    .nav-button {
        display: none;
    }

    #hamburger-cross {
        display: block;
        color: white;
        cursor: pointer;
        font-size: 40px;
        position: absolute;
        top: 20px;
        right: 26px;
    }

    #hamburger-menu {
        display: block;
        color: #0d485d;
        cursor: pointer;
        font-size: 24px;
    }
}


/* new arrivals head */

.col7 {
    margin-left: auto;
    margin-right: auto;
    padding-top: 3%;
    width: 50%;
    color: #0d485d;
}

.col7 h3 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-align: center;
    margin-right: auto;
    margin-right: 2%;
    font-size: 35px;
}

.col7 h5 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-right: auto;
    margin-left: -3%;
    /* border: 2px solid black; */
    text-align: center;
  }

/* Media query for screens 768px and below (tablet and mobile devices) */
@media (max-width: 768px) {
    .col7 {
        width: 80%;
        padding-top: 5%;
    }
    
    .col7 h3 {
        margin-right: 0;
    }
    
    .col7 h5 {
        margin-right: 0;
    }
}

/* Media query for screens 480px and below (mobile devices) */
@media (max-width: 480px) {
    .col7 {
        width: 95%;
        padding-top: 10%;
    }
    
    .col7 h3 {
        font-size: 1.2em;
    }
    
    .col7 h5 {
        font-size: 1em;
    }
}



/* new arrivals */
.card .card-image{
    overflow: hidden;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
}



.card .card-image img{
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.card .card-image:hover img{
    -webkit-transform: scale(1.2) rotate(-7deg);
    -moz-transform: scale(1.2) rotate(-7deg);
    -ms-transform: scale(1.2) rotate(-7deg);
    -o-transform: scale(1.2) rotate(-7deg);
    transform: scale(1.2) rotate(-7deg);
}

.card{
    font-family: 'Roboto', sans-serif; 
    border:none;
    margin-top: 10px;
    position: relative;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 4 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.card .card-content {
  padding: 10px;   
  background:#1A9AE1;
  color:white;
}

.card .card-content .card-title, .card-reveal .card-title{
    font-size: 24px;
    font-weight: 200;    
}

.card .card-reveal{    
    padding: 20px;
    position: absolute;
    background-color: #FFF;
    width: 100%;
    overflow-y: auto;
    left:0;
    bottom:0;
    height: 100%;
    z-index: 1;
    display: none;    
}

.card .card-reveal .card-title{
    color: rgba(0, 0, 0, 0.71);
    margin:10px; 
    font-size:2.2rem;
}

.card .card-reveal p{
    color: rgba(0, 0, 0, 0.71);
    margin:10px; 
    font-size:1.2rem;
}

.btn-custom{
    background-color: transparent;
    font-size:18px;
 
}





















/* best */
/* Container styles */
.discount-container {
    text-align: center;
    max-width: 100%;
    margin: 20px;
    margin-top: 5%;
    color: #0d485d;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* Heading styles */
h1 {
    margin: 20px 0 10px;
    font-size: 24px;
}

h4 {
    margin: 0 0 20px;
    font-size: 18px;
    color: #555;
}

/* Discount card container styles */
.discount-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Discount card styles */
.discount-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 200px;
    transition: transform 0.3s;
    height: 45vh;
}

.discount-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.discount-card h2 {
    font-size: 16px;
    margin: 10px 0;
    padding: 0 10px;
}

.discount-card .discount-price {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
}

.discount-card button  {
    background-color: white;
    border: 1px solid #333;
    color: #333;
    padding: 10px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.discount-card button:hover  {
    background-color: #0d485d;
    color: #fff;
}





/* Responsive styles */
@media (min-width: 600px) {
    .discount-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (min-width: 900px) {
    .discount-card {
        flex: 1 1 calc(33.33% - 20px);
    }
}

@media (min-width: 1200px) {
    .discount-card {
        flex: 1 1 calc(25% - 20px);
    }
}


/* Gift heading styles */
.gift h3 {
    margin: 3% auto;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 35px;
    color: #0d485d;
    text-align: center;
}

.gift h5 {
    margin: 2% auto;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #0d485d;
    text-align: center;
    margin-top: -2%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .gift h3 {
        font-size: 28px;
        margin-top: 5%;
    }

    .gift h5 {
        font-size: 16px;
           }
}

@media (max-width: 480px) {
    .gift h3 {
        font-size: 24px;
        margin-top: 8%;
    }

    .gift h5 {
        font-size: 14px;
    }
}




/* gift card */
.menu {
    width: 100%;
    padding: 0 10%; /* Padding for better control over spacing */
    box-sizing: border-box; /* Ensures padding is included in the width */
    display: flex;
    justify-content: center; /* Centers the .menurap container */
    /* margin-left: 10%; */
    margin-top: -2%;
}

.menurap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Responsive grid layout */
    grid-gap: 20px;
    margin-top: 2%;
    width: 100%;
    max-width: 1000px; /* Limit the max width for better centering */
    margin-left: 20%;
}

.menuimg img {
    width: 100%; /* Ensures image takes full width of the grid cell */
    height: 40vh; /* Maintains aspect ratio */
    max-height: 45vh; /* Limits the height to 45% of the viewport height */
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .menurap {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Adjust columns for tablets */
        grid-gap: 15px;
    }
    
    .menuimg img {
        max-height: 35vh; /* Reduce height for smaller screens */
    }
}

@media (max-width: 480px) {
    .menurap {
        grid-template-columns: 1fr; /* Single column layout for mobile */
        grid-gap: 10px;
    }
    
    .menuimg img {
        max-height: 30vh; /* Further reduce height for mobile screens */
    }
}







/* occasion */
.occ h3 {
    margin: 3% auto;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 35px;
    color: #0d485d;
    text-align: center;
}

.occ h5 {
    margin: 2% auto;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #0d485d;
    text-align: center;
    margin-top: -2%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .occ h3 {
        font-size: 28px;
        margin-top: 5%;
    }

    .occ h5 {
        font-size: 16px;
           }
}

@media (max-width: 480px) {
    .occ h3 {
        font-size: 24px;
        margin-top: 8%;
    }

    .occ h5 {
        font-size: 14px;
    }
}

/* occ pic */
.oc1 img, .oc2 img {
    width: 70%; /* Ensure images take the full width of their container */
    height: auto; /* Maintain aspect ratio */
    max-height: 50vh; /* Limit the height to 50% of the viewport height */
    margin: 0 auto; /* Center the image horizontally */
    display: block; /* Ensures margin auto works */
}

.oc2 img {
    margin-top: 2%; /* Add top margin to the second image */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .oc1 img, .oc2 img {
        max-height: 40vh; /* Reduce height for tablets */
    }
}

@media (max-width: 480px) {
    .oc1 img, .oc2 img {
        max-height: 30vh; /* Further reduce height for mobile screens */
    }
}



.oc3 img, .oc4 img {
    width: 70%; /* Ensure images take the full width of their container */
    height: auto; /* Maintain aspect ratio */
    max-height: 50vh; /* Limit the height to 50% of the viewport height */
    margin: 0 auto; /* Center the image horizontally */
    display: block; /* Ensures margin auto works */
}

.oc3 img {
    margin-top: 2%; /* Add top margin to the second image */
}


.oc4 img {
    margin-top: 2%; /* Add top margin to the second image */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .oc3 img, .oc4 img {
        max-height: 40vh; /* Reduce height for tablets */
    }
}

@media (max-width: 480px) {
    .oc3 img, .oc4 img {
        max-height: 30vh; /* Further reduce height for mobile screens */
    }
}










/* social app*/
.social {
    width: 100%;
    height: 6vh;
    margin-top: 3%;
}

.socialrap {
    width: 100%;
    margin: auto;
}


.name h1{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #0d485d;
}






/* lookshop */



.dp-wrap {
    margin: 120px auto;
    position: relative;
    perspective: 1000px;
    height: 100%;
    margin-left: 10%;
    margin-top: -1%;
  }
  
  .dp-slider {
    height: 100%;
    width: 100%;
    position: absolute;
    transform-style: preserve-3d;
  }
  
  .dp-slider div {
    transform-style: preserve-3d;
  }
  
  .dp_item {
    display: block;
    position: absolute;
    text-align: center;
    /* color: #fff; */
    border-radius: 10px;
    transition: transform 1.2s;
  }
  
  .dp-img img {
    border-left: 1px solid #fff;
  }
  
  #dp-slider .dp_item:first-child {
    z-index: 10 !important;
    transform: rotateY(0deg) translateX(0px) !important;
  }
  
  .dp_item[data-position="2"] {
    z-index: 9;
    transform: rotateY(0deg) translateX(10%) scale(0.9);
  }
  
  .dp_item[data-position="3"] {
    z-index: 8;
    transform: rotateY(0deg) translateX(20%) scale(0.8);
  }
  
  .dp_item[data-position="4"] {
    z-index: 7;
    transform: rotateY(0deg) translateX(30%) scale(0.7);
  }
  
  #dp-next,
  #dp-prev {
    position: absolute;
    top: 50%;
    right: 16%;
    height: 33px;
    width: 33px;
    z-index: 10;
    cursor: pointer;
  }
  
  #dp-prev {
    left: 15px;
    transform: rotate(180deg);
  }
  
  #dp-dots {
    position: absolute;
    bottom: 25px;
    z-index: 12;
    left: 38%;
    cursor: default;
  }
  
  #dp-dots li {
    display: inline-block;
    width: 13px;
    height: 13px;
    background: #fff;
    border-radius: 50%;
  }
  
  #dp-dots li:hover {
    cursor: pointer;
    background: #013a4d;
    transition: background 0.3s;
  }
  
  #dp-dots li.active {
    background: #013a4d;
  }
  
  .dp_item {
    width: 85%;
  }
  
  .dp-content,
  .dp-img {
    text-align: left;
  }
  
  .dp_item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border-top: none;
  }
  
  .dp-content {
    padding-left: 100px;
    padding-right: 0;
    display: inline-block;
    width: 100%;
  }
  
  .dp-content h2 {
    color: #41414b;
    font-family: Circular Std Bold;
    font-size: 48px;
    max-width: 460px;
    margin-top: 8px;
    margin-bottom: 0px;
  }
  
  .dp-content h5 {
    color: #74747f;
    max-width: 490px;
    margin-top: 15px;
    font-size: 24px;
  }
  
  .dp-content .site-btn {
    margin-top: 15px;
    font-size: 18px;
    padding: 19px 40px;
  }
  
  .dp-img:before {
    background: -webkit-linear-gradient(
      -90deg,
      rgba(255, 255, 255, 0.25),
      rgba(255, 255, 255, 0)
    );
    background: -o-linear-gradient(
      -90deg,
      rgba(255, 255, 255, 0.25),
      rgba(255, 255, 255, 0)
    );
    background: -moz-linear-gradient(
      -90deg,
      rgba(255, 255, 255, 0.25),
      rgba(255, 255, 255, 0)
    );
    background: linear-gradient(
      -90deg,
      rgba(255, 255, 255, 0.75),
      rgba(255, 255, 255, 0)
    );
    content: "";
    position: absolute;
    height: 100%;
    width: 25%;
    z-index: 1;
    top: 0;
    pointer-events: none;
    background: -webkit-linear-gradient(
      -90deg,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.75)
    );
    background: -o-linear-gradient(
      -90deg,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.75)
    );
    background: -moz-linear-gradient(
      -90deg,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.75)
    );
    background: linear-gradient(
      -90deg,
      rgba(255, 255, 255, 0),
      rgb(255, 255, 255)
    );
  }
  
  .dp-img img {
    object-fit: cover;
    object-position: right;
  }
  
  #dp-slider,
  .dp-img img {
    height: 738px;
  }
  
  #dp-slider .dp_item:hover:not(:first-child) {
    cursor: pointer;
  }
  
  .site-btn {
    color: #fff;
    font-size: 18px;
    font-family: "Circular Std Medium";
    background: #013a4d;
    padding: 14px 33px;
    display: inline-block;
    border-radius: 50px;
    position: relative;
    top: -10px;
    text-decoration: none;
  }
  
  .site-btn:hover {
    text-decoration: none;
    color: #fff;
  }
  










  
/* lookshop head */
.look h3 {
    margin: 4% auto;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 40px;
    color: #0d485d;
    text-align: center;
}

.look h5 {
    margin: 2% auto;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #0d485d;
    text-align: center;
    margin-top: -3%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .look h3 {
        font-size: 28px;
        margin-top: 5%;
    }

    .look h5 {
        font-size: 16px;
           }
}

@media (max-width: 480px) {
    .look h3 {
        font-size: 24px;
        margin-top: 8%;
    }

    .look h5 {
        font-size: 14px;
    }
}








  
/* feature head */
.fea h3 {
    margin: 4% auto;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 40px;
    color: #0d485d;
    text-align: center;
    margin-top: -2%;
}

.fea h5 {
    margin: 2% auto;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #0d485d;
    text-align: center;
    margin-top: -3%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .fea h3 {
        font-size: 28px;
        margin-top: 5%;
    }

    .fea h5 {
        font-size: 16px;
           }
}

@media (max-width: 480px) {
    .fea h3 {
        font-size: 24px;
        margin-top: 8%;
    }

    .fea h5 {
        font-size: 14px;
    }
}















/* card */


.card-carousel {
    position: relative;
  }
  
  .card-carousel-inner {
    scroll-padding: 0 1rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    display: flex;
    padding: 1rem 0;
    width: 100%;
  }
  
  .card-carousel-item {
    scroll-snap-align: start;
    margin: 0 0.5rem !important;
  
    flex: 0 0 160px;
    height: 220px;
    font-size: 60px;
  }
  
  .card-carousel-item img {
    border-radius: 10%;
    margin-left: 30%;
  }
  
  .card-carousel-item:first-child {
    margin-left: 1rem !important;
  }
  
  .card-carousel-item:last-child {
    margin-right: 1rem !important;
  }
  
  .card-carousel-inner,
  .card-carousel-item {
    margin: 0 auto;
  }
  
  .card-carousel-control {
    position: absolute;
    top: calc(50% - 24px);
    border-radius: 50%;
    background: gray;
    /* color: gray; */
    width: 45px;
    height: 48px;
  }
  
  .card-carousel-control-prev {
    left: -1rem;
    font-size: 5%;
    /* color: gray; */
  }
  
  .card-carousel-control-next {
    right: -2.8rem;
    font-size: 5%;
  }
  
  
  
  
  /* Temp Data Styles */
  .card-carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
  }
  
  
  
  .card-carousel-control i {
    color: white;
    margin-top: 15%;
    margin-left: 19%;
    font-size: 30px;
  }











  /* bigimg */

  .big img{
    width: 100%;
  }





























  ul {
    margin: 0px;
    padding: 0px;
}
.footer-section {
  /* background: #151414; */
  position: relative;
  margin-top: 6%;
}
.footer-cta {
  border-bottom: 1px solid #373636;
  margin-right: 6%;
  /* width: 80%; */
}
.single-cta i {
  color: orange;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
      color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg{
  background: #3B5998;
}
.twitter-bg{
  background: #55ACEE;
}
.google-bg{
  background: #DD4B39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: orange;
}
.footer-widget ul li {
  display: inline-block;
  /* float: left; */
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover{
  color: orange;
}
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: orange;
    padding: 13px 20px;
    border: 1px solid orange;
    top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area{
  background: #2f2d2d;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a{
  color: orange;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: orange;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}