/* Reset some default styles */
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Electrolize&family=Nanum+Gothic&family=Tilt+Prism&display=swap');
@import url('https://fonts.googleapis.com/css2?family=ADLaM+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
    font-weight: 400;
}
body{
    background: radial-gradient(circle at center, #e7deff , #c27cff);
}
:root{
    --border: .1rem solid rgba(0,0,0,.1);
    --border-hover: .1rem solid rgba(0,0,0,.1);
 }
 .dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.dropdown .btn {
  background-color: #553399;
  color: #fff;
  border: none;
  padding: 1rem;
  font-size: 1.15rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #553399;
  min-width: 160px;
  z-index: 1;
}

.dropdown-content:hover{
  background-color: #553399;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #fff;
}


.dropdown-content a:hover {
  color: #fff;
}


.dropdown:hover .dropdown-content {
  display: block;
}
.header .header-1{
    background: #2A2F4F;
    padding: 0.67rem 2%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .header-1 .logo{
    font-size: 2rem;
    font-weight: bolder;
    color: #E5BEEC;
    text-decoration: none;
    font-family: 'Electrolize', sans-serif;
}
.header .header-1 .logo span{
    font-family:'ADLaM Display', cursive;
    font-size: 40px;
    color: #917FB3;
}
.header .header-1 .logo i{
    color: #7444d2;
    padding-right: 11px;
    font-size: 40px;
}

.header .header-1 .search-form{
    width: 45rem;
    height: 2.7rem;
    border: var(--border);
    overflow: hidden;
    background: #dec1f7;
    display: flex;
    align-items: center;
    border-radius: .5rem;
    border: none;

}

.header .header-1 .search-form input{
    font-size: 1.5rem;
    padding: 0 1.2rem;
    height: 100%;
    width: 100%;
    text-transform: none ;
    color: #454245;
}
.header .header-1 .search-form label{
    font-size: 1.3rem;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    color: #434143;
}
.header .header-1 .search-form label:hover{
    color: #553399;
}

.header .header-1 .icons div,
.header .header-1 .icons a{
    font-size: 1.3rem;
    margin-left: 1rem;
    color: #dec1f7;
    cursor: pointer;
    text-decoration: none;
}
.header .header-1 .icons div:hover,
.header .header-1 .icons a:hover{
    color: #976ee8;
    transform: scale(1.2);
}

.header .header-2{
    background: #553399;
    font-family: 'Jost', sans-serif;
}
.header .header-2 .navbar{
    text-align: center;
}
.header .header-2 .navbar a{
    color: #fff;
    display: inline-block;
    padding: 1rem;
    font-size: 1.15rem;
    text-decoration: none;
}
.header .header-2 .navbar :hover{
    background-color: #472e79;
}

/* Contact Page Heading */
.heading{
    text-align:center;
    display: block;
    padding: 3rem;
    font-size: 3rem;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    color: #685b80;
    margin: 0;
}
.heading span{
    color: #a789ac;
    font-size: 3rem;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
}


  * {
    box-sizing: border-box;
  }
  
  .row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    margin: 0 6px;
  }
  
  .section{
    margin: 0;
    padding: 20px;
  }
  .col-25 {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
  }
  
  .col-50 {
    -ms-flex: 50%; /* IE10 */
    flex: 50%;
  }
  
  .col-75 {
    -ms-flex: 75%; /* IE10 */
    flex: 75%;
  }
  
  .col-25,
  .col-50,
  .col-75 {
    padding: 0 16px;
  }
  
  .container {
    background: radial-gradient(circle at center, #e7deff , #c27cff);
    padding: 5px 20px 15px 20px;
    border: 1px solid rgb(10, 6, 65);
    border-radius: 3px;
  }
  
  input[type=text] {
    width: 100%;
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
  }
  
  label {
    margin-bottom: 10px;
    display: block;
  }
  
  .icon-container {
    margin-bottom: 20px;
    padding: 7px 0;
    font-size: 24px;
  }
  
  .btn {
    background-color: #976ee8;
    color: white;
    padding: 12px;
    margin: 10px 0;
    border: none;
    width: 100%;
    border-radius: 3px;
    cursor: pointer;
    font-size: 17px;
  }
  
  .btn:hover {
    background-color: #5b4091;
  }
  
  a {
    color: #2196F3;
  }
  
  hr {
    border: 1px solid lightgrey;
  }
  
  span.price {
    float: right;
    color: grey;
  }

/* footer */
/* Footer CSS */
.contact{
    background-color: #2A2F4F;
    padding: 4rem 9rem;
    margin-top: 10px;
}
.contact-info{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, auto));
    gap: 3rem;
}
.first-info img{
    width: 140px;
    height: auto;
}
.contact-info h4{
    color: #fff;
    font-size: 17px;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-family: 'Jost', sans-serif;
}
.contact-info p{
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all .42s;
    font-family: 'Jost', sans-serif;
}
.contact-info .second-info p:hover,
.contact-info .third-info p:hover,
.contact-info .fourth-info p:hover
{
    color: #EE1C47;
    transform: translate(8px,0px);
}
.social-icon i{
    color: #fff;
    margin-right: 10px;
    font-size: 20px;
    transition: all .42s;
}
.social-icon .yt i:hover{
    transform: scale(1.3);
    color: red;
}
.social-icon .twt i:hover{
    transform: scale(1.3);
    color: rgb(9, 169, 233);
}
.social-icon .lik i:hover{
    transform: scale(1.3);
    color: rgb(16, 85, 141);
}
.social-icon .fb i:hover{
    transform: scale(1.3);
    color: rgb(54, 54, 226);
}
.social-icon .inst i:hover{
    transform: scale(1.3);
    color: rgb(197, 18, 164);
}
.end-text{
    background-color: #edfff1;
    text-align: center;
    padding: 20px;
}
.end-text p{
    color: #111;
    text-transform: capitalize;
}