

@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');
@import url('https://fonts.googleapis.com/css?family=Teko:700');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Kalam:wght@300;400;700&family=Pacifico&family=Press+Start+2P&display=swap');


*
{
    margin: 0;
    padding: 0;
}


/*============= loader =============*/

#pre-loader
{
  /* background-image: url("../Assets/loader.gif")  ; */
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  z-index: 9999;
  /* top: 40%; */
  /* left: 42%; */
  width: 100%;
  background-color: white;
  height: 100%;
}

.main-lod
{
  height: 100vh;
  text-align: center;
  align-items: center;
  justify-content: center;
}
/*============= loader =============*/




/*=============== nav button =====================*/

.wat
{
    height: 30px;
}

.wat:hover
{
    transform: scale(115%);
    transition: 0.5s;
}

.nav {
    width: 100%;
    height: 65px;
    position: fixed;
    line-height: 65px;
    text-align: center;
    z-index: 1000;
}

.logo {
    float: left;
    width: 140px;
    height: 80px;
    /* padding-left: 3rem; */
}

.nav div.logo a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
}


.nav div.main_list {
    height: 65px;
    float: right;
}

.nav div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav div.main_list ul li {
    width: auto;
    height: 65px;
    padding: 0;
    padding-right: 3rem;
}

.nav div.main_list ul li a {
    text-decoration: none;
    color:black;
    line-height: 65px;
    font-size: 20px;
}

/*============== nav button ======================*/
.menu__link1 {
    color: #000000;
    line-height: 2;
    position: relative;
  }
  
  .menu__link1::before {
    content: '';
    width: 0;
    height: 2px;
    border-radius: 2px;
    background-color: #000000;
    position: absolute;
    bottom: -.25rem;
    right: 0;
    transition: right .4s, width .4s, left .4s;
  }
  
  .menu__link1:hover::before {
    width: 100%;
    left: 0;
  }
/*=============== nav button =====================*/


/* Home section */

.home {
    width: 100%;
    height: 100vh;
    background-image: url();
    background-position: center top;
	background-size:cover;
    z-index: 1000;
}

.navTrigger {
    display: none;
}

.nav {
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        margin: 0;
    }
}

@media screen and (max-width:768px) {
    .navTrigger {
        display: block;
    }
    .nav div.logo {
        margin-left: 15px;
    }
    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .nav div.show_list {
        height: auto;
        display: none;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 50%;
        height: 80vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: #000102ac;
        /*same background color of navbar*/
        background-position: center right;
        border-radius: 20px;
    }
    .nav div.main_list ul li {
        width: 100%;
        text-align: center;
        align-items: center;

    }
    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 20px;
        /* padding: 20px; */
        color: white;
    }
    .nav div.media_button {
        display: block;
    }
}

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}

.navTrigger i {
    background-color: #000000;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.affix {
    padding: 0;
    background-color: #ffffff;
    /* background-image: url("https://img.freepik.com/free-vector/soft-bokeh-background_23-2147493955.jpg?t=st=1722239430~exp=1722243030~hmac=63d0c627b478bdf356d2cf2177c72cc7cad23b2751b9cf03479d870c2037a3c9&w=740"); */
    box-shadow: gray 2px 2px 5px;
    height: 100px;
}

.myH2 {
	text-align:center;
	font-size: 4rem;
}
.myP {
	text-align: justify;
	padding-left:15%;
	padding-right:15%;
	font-size: 20px;
}
@media all and (max-width:700px){
	.myP {
		padding:2%;
	}
}


/*================= contact bg ===================*/

.contact-bg
{
    background-image: url("https://i.pinimg.com/564x/2d/5e/6c/2d5e6c7832424cce4d033c5958ed064f.jpg");
    background-size: cover;
    height: 100vh;
    object-fit: cover;
}

.contact1-text
{
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 100vh;
    font-family: "pacifico";
    color: white;
    font-size: 65px;
}

/*================= contact bg ===================*/

/*================== contact form section ===============================*/


.contact-sec
{
  display: flex;
    justify-content: space-around;
    background-color: white;
    box-shadow: lightgray 2px 2px 20px;
    /* width: 90%; */
    border-radius: 20px;
}

.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    /* max-width: 400px; */
    width: 60%;
    margin: auto;
}
.form-container h2 {
    /* margin-bottom: 20px; */
    text-align: center;
}
.form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
.form-container input, .form-container textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.ll
{
    margin: auto;
    align-items: center;
    text-align: center;
    justify-content: center;
}

/*================== contact form section ===============================*/


/*================buttons=====================*/

/* .buttons {
    display: flex;
    justify-content: space-around;
    top: 20px;
    left: 20px;
  }
   */
  .buttons button {
    width: 150px;
    height: 50px;
  
    margin: 20px;
    color: rgb(89, 18, 171);
    position: relative;
    overflow: hidden;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: solid white 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
  }
  
  .buttons button:before,
  .buttons button:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #44d8a4;
    transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
  }
  
  .buttons button:before {
    right: 0;
    top: 0;
    transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
  }
  
  .buttons button:after {
    left: 0;
    bottom: 0;
  }
  
  .buttons button span {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    z-index: 1;
  }
  
  .buttons button span:before,
  .buttons button span:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 0;
    background-color: #44d8a4;
    transition: all 0.3s cubic-bezier(0.35, 0.1, 0.25, 1);
  }
  
  .buttons button span:before {
    right: 0;
    top: 0;
    transition: all 0.5s cubic-bezier(0.35, 0.1, 0.25, 1);
  }
  
  .buttons button span:after {
    left: 0;
    bottom: 0;
  }
  
  .buttons button p {
    padding: 0;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .buttons button p:before,
  .buttons button p:after {
    position: absolute;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.35, 0.1, 0.25, 1);
    z-index: 1;
    left: 0;
  }
  
  .buttons button p:before {
    content: attr(data-title);
    top: 50%;
    transform: translateY(-50%);
  }
  
  .buttons button p:after {
    content: attr(data-text);
    top: 150%;
    color: #44d8a4;
  }
  
  .buttons button:hover:before,
  .buttons button:hover:after {
    width: 100%;
  }
  
  .buttons button:hover span {
    z-index: 1;
  }
  
  .buttons button:hover span:before,
  .buttons button:hover span:after {
    height: 100%;
  }
  
  .buttons button:hover p:before {
    top: -50%;
    transform: rotate(5deg);
  }
  
  .buttons button:hover p:after {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .buttons button.start {
    background-color: #44d8a4;
    box-shadow: 0px 5px 10px -10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
  }
  
  .buttons button.start p:before {
    top: -50%;
    transform: rotate(5deg);
  }
  
  .buttons button.start p:after {
    color: white;
    transition: all 0s ease;
    content: attr(data-start);
    top: 50%;
    transform: translateY(-50%);
    animation: start 0.3s ease;
    animation-fill-mode: forwards;
  }
  
  @keyframes start {
    from {
      top: -50%;
    }
  }
  
  .buttons button.start:hover:before,
  .buttons button.start:hover:after {
    display: none;
  }
  
  .buttons button.start:hover span {
    display: none;
  }
  
  .buttons button:active {
    outline: none;
    border: none;
  }
  
  .buttons button:focus {
    outline: 0;
  }


  /*=================== heading bg =============================*/

.title-style h1 {
    padding: 40px 0;
  }
  
  
  .head-title
  {
    font-family: "pacifico";
  }
  
  
  .title-style {
    margin: 0 auto 80px;
    height: 120px;
    width: 80%;
    min-width: 700px;
    background: #fff;
    position: relative;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 50, 0.5);
  }
  
  .title-style::after {
    content: "";
    height: 100px;
    width: 200px;
    background-color: #f992a6;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: -1;
  }
  .title-style::before {
    content: "";
    height: 100px;
    width: 200px;
    background-color: #f992a6;
    position: absolute;
    bottom: -10px;
    right: -10px;
    z-index: -1;
  }
  
  .top
  {
    font-family: "pacifico";

  }

  .noo
  {
    width: 100px;
  }
  .no
  {
    margin-left: 10px;
  }
  /*=================== heading bg=============================*/


  /*====================== blogs ========================*/


 .card-img-top {
    width:100%;
   }
   .card:hover
   {
    transform: scale(105%);
    transition: 0.5s;
    box-shadow: gray 2px 2px 5px;
   }

    /* for small devices */
  
  @media only screen and (max-width: 900px) {
    .banner-img {
      margin: 40px auto;
      width: 80%;
    }
  
    .banner-title {
      top: 150px;
      left: 50%;
      transform: translateX(-50%);
    }
  
    .banner-title h1 {
      font-size: 16px;
      padding: 5px;
      line-height: 20px;
    }
  
    .title-style h1 {
      font-size: 25px;
    }
  
    .fashion-box {
      margin: -20px 0;
    }
  
    .title-style {
      margin: 0 auto 80px;
      height: 120px;
      width: 50%;
      min-width: 250px;
      background: #fff;
      position: relative;
      box-shadow: 0 4px 5px 0 rgba(0, 0, 50, 0.5);
    }
  
    .sm-bt {
      margin-bottom: 40px;
    }
  
    .offer img {
      margin-top: 40px !important;
      margin-bottom: 0 !important;
    }
  
    .fashion-blog {
      margin: 100px 0 150px 0;
    }
    .footer-icons {
      text-align: center;
    }
    .copyright {
      text-align: center;
    }
  }
  



  /*=============================*/
