*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    
}
html{
    scroll-behavior:smooth;
}
#preloader{
    text-align: center;
    padding-top:400px;
    background-color: #ffffff;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 1;
}
.loader {
    display: inline-block;
    font-size: 48px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #000000;
    position: relative;
  }
  .loader::before {
    content: '';  
    position: absolute;
    left: 34px;
    bottom: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 5px solid #000000;
    border-bottom-color: #FF3D00;
    box-sizing: border-box;
    animation: rotation 0.6s linear infinite;
  }
  
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } 
  
.whatsapp{
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 1;
    animation: round 2s infinite; 
}
.whatsapp:hover{
     animation: none; 
}
@keyframes round {
    0% {rotate: 20deg;}
    50% {rotate: -20deg;}
    100% {rotate: 20deg;}
}
.enquiry{
    background-color: rgb(255,215,73);
    border-radius: 50px;
    padding: 10px 20px;
    display: inline;
    position: fixed;
    bottom: 20px;
    right: 30px;
    animation: bounce 2s infinite;
}
.enquiry:hover{
    animation: none;
    transform: scale(1.2);
    transition: .3s;
}
@keyframes bounce {
    0%   {transform: scale(1.2);}
    50%{transform: scale(1);}
  100% {transform: scale(1.2);
    box-shadow: #01447e;
}  
}

.enquiry a{
    color: rgb(0, 0, 0);
    font-weight: 500;
    font-size: 17px;
    text-decoration: none;
}
.enquiry span{
    font-weight: 500;
}
.whatsapp img{
    height: 80px;
    width: 80px;
    margin-left: 17px;
    margin-bottom: 9px;
}
.first{
    background: rgb(255,215,73);
    background: linear-gradient(90deg, rgba(255,215,73,1) 0%, rgba(255,0,0,1) 50%, rgba(255,215,73,1) 100%);
    height: 40px;
    padding-top: 10px;
}
.first p{
    color: white; 
    display: inline;
    font-size: 1.2vw;
}
.first i{
    display: inline;
    font-size:1.2vw;
    color: white;
}
nav{
    display: flex;
    justify-content: space-between;
    background-color: white;
}
.logo{
    margin-top: 20px;
    margin-left: 2vw;
    font-family: cursive;
    font-size: 1.5vw;
}
.logo p{
    color: red;
    font-family: cursive;
    font-weight: 600;
}
nav ul{
    margin-top: 20px;
}
nav ul li{
    display: inline;
    font-size: 1.2vw;
    margin-right: 20px;
    padding: 1vw;
}
nav ul li a{
    text-decoration: none;
    color: black;
    padding: 10px;
}
nav ul li a:hover,#active{
    transition: ease;
    transition-duration:.4s ;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    color: white;
    background: rgb(255,215,73);
    background: linear-gradient(90deg, rgba(255,215,73,1) 0%, rgba(255,0,0,1) 0%, rgba(255,215,73,1) 100%);
}
nav .bar{
    position: relative;
    margin: auto;
    display: none;
    font-size: 35px;
}
nav .bar span{
    position: absolute;
    color: red;
    font-size: 25px;
    cursor: pointer;
}
input[type="checkbox"]{
    position: absolute;
    top: 35px;
    right: 39px;
    height: 20px;
    width: 20px;
    z-index: 1;
    background-color:transparent;
    -webkit-appearance: none;
}
/* Dropdown Button */
.dropbtn {
    background-color: transparent;
    padding: 10px;
    font-size: 1.2vw;
    border: none;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
    
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    background-color: red;
    position: absolute;
    width: 300px;
    z-index: 1;
    
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: rgb(255, 255, 255);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid white ;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {
    background: rgb(255,215,73);
    background: linear-gradient(90deg, rgba(255,215,73,1) 0%, rgba(255,0,0,1) 0%, rgba(255,215,73,1) 100%);
    color: white;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;

}

/* Style the list */
ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    margin-top: 20px;
  }
  
  /* Display list items side by side */
  ul.breadcrumb li {
    display: inline;
    font-size: 21px;
  }
  
  /* Add a slash symbol (/) before/behind each list item */
  ul.breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
  }
  
  /* Add a color to all links inside the list */
  ul.breadcrumb li a {
    color:red;
    text-decoration: none;
    font-weight: 500;
  }
  
  /* Add a color on mouse-over */
  ul.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
  }
.container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color:rgb(255,215,73);
    overflow: hidden;
}
.left h1{
    display: inline-block;
    margin-top: 30vh;
    margin-left:2.8vw;
    color:red;  
    border-radius: 5px;
    font-size: 2vw;
    
}
.left p{
    margin-top: 15px;
    margin-left:2.8vw;
    font-size: 1.5vw;
}
.left p span{
    font-weight: 900;
    color:red ;
}
.left button{
    border-radius: 30px;
    margin-left:10vw;
    margin-top: 40px;
    background-color: transparent;
    border: none;
}
.left #cnt{
    margin-left: 3vw;
}
.left button a{
    background-color: red;
    border: 4px solid red;
    padding: .6vw 2vw;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    text-decoration: none;
    color: white;
    font-size: 1.1vw;
    font-weight: 500;
}
.left #cnt a{
    background-color: transparent;
    border: 4px solid;
    border-color:red;
    color: red;
    font-weight: 500;
}
.left button a:hover{
    background-color: transparent;
    border: 4px solid red;
    color: red;
    transition: .5s;
}
.left #cnt a:hover{
    background-color: red;
    color: white;
    border: 4px solid red;
}
.right img{
    height: 50vw;
    width: 50vw;
}
.scnd h1{
    display: inline-block;
    padding: 10px 250px;
    font-family: cursive;
    font-weight: 500;
    color: rgb(255, 255, 255);
    margin-top: 80px;
    margin-left: 180px;
    border-radius: 50px;
    background: rgb(255,215,73);
    background: linear-gradient(90deg, rgba(255,215,73,1) 0%, rgba(255,0,0,1) 0%, rgba(255,215,73,1) 100%);
}
.scnd h3{
    margin-left: 150px;
    margin-top: 50px;
}
.wedding p{
    padding:0;
}
.list {
    margin-left: 170px;
    font-size: 18px;
}
.wedding video{
    margin-top: 40px;
    width: 100%;
    height: 820px;
}
.wedding button{
    margin-left: 50%;
    animation: bounce 2s infinite;
    border: none;
}
@keyframes bounce {
    0%   {transform: scale(1.3);}
    50%{transform: scale(1);}
  100% {transform: scale(1.3);
}  
}
.wedding button a{
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2vw;
    color: white;
    font-weight: 500;
    background-color: red;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border: 5px solid rgb(255, 228, 52);
}
.scnd img{
    margin-top: 80px;
    width: 100%;
    height:80vh;
    padding-left: 150px;
    padding-right: 150px;
}
.scnd p{
    font-size: 19px;
    font-weight: 400;
    padding-top: 40px;
    padding-bottom: 30px;
    padding-left: 150px;
    padding-right: 150px;
}
.aarti{
    padding-left: 150px;
    padding-right: 150px;
}
.ab img{
    width: 100%;
    height: 500px;
    margin-top: 40px;
}



footer{
    background: rgb(255,215,73);
    background: linear-gradient(90deg, rgba(255,215,73,1) 0%, rgba(255,0,0,1) 50%, rgba(255,215,73,1) 100%);
    padding: 40px;
    color: white;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    margin-top: 50px;
    display: flex;
}
footer a{
    color: white;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid white;
}
.aboutcompany{
   margin-left: 40px;
   width: 20%;
}
.aboutcompany h2{
    font-family: cursive;
    margin-bottom: 10px;
}
.aboutcompany p{
    text-align: center;
}
.quicklinks{
    width: 20%;
    margin-left: 240px;
    display: flex;
    flex-direction: column;
}
.quicklinks h2{
    margin-bottom: 10px;
}
.quicklinks a{
    text-decoration: none;
    border: none;
    text-align: left;
}
.quicklinks a:hover{
    transform: scale(1.1);
}
.contact{
    margin-left: 10%;
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 25%;
}
.contact h2{
    margin-bottom: 10px;
}
.copy{
    display: block;
    background: rgb(255,215,73);
    background: linear-gradient(90deg, rgba(255,215,73,1) 0%, rgba(255,0,0,1) 50%, rgba(255,215,73,1) 100%);
    text-align: center;
    color: white;
    font-size: 15px;
    font-weight: 500;
    padding-bottom: 50px;
}
.copy a{
    color: white;
    font-size: 15px;
    font-weight: 500;

}
.social{
    margin-top: 40px;
}
.social a{
    margin-left: 15px;
    padding: 7px;
    border: 2px solid white;
    border-radius: 10px;
}
.social a:hover{
    background-color: white;
    color: red;
    transform: scale(1.2);
    transition: .7s;
}