/*Heading*/
  @import url('https://fonts.googleapis.com/css2?family=Young+Serif&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Mulish&display=swap');
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

/*font-family: 'Young Serif', serif;*/
*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
  
  }

  .navbar-toggler{
    color: black;
    background-color: white;
  }
  
  
  .nav-item .nav-link{
      color:white;
      font-size: 20px;
      font-family: 'Mulish';
      font-weight:bolder;  
    }
    .nav-item a:hover{
      color:orange;
    }
  
    .container{
      font-family: 'Mulish', sans-serif;
    }
    .dropdown-item{
      color: rgb(0, 0, 0);
      font-size: 20px;
      }
      .navbar-light{
        background-color:#333333; 
       }
  /*Icon*/
  .top-social{
    padding: 15px 15px;
   
  }
  .top-social a{
    padding: 10px;
    font-size: 25px;
  }

/*contact*/
   .contactUs {
    position: relative;
    width: 100%;
    padding: 40px 100px;
  }
  .contactUs .title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
  }
  .contactUs .title h2 {
    color:black;
    font-weight: 500;
    font-family: 'donsis';
    font-size: 50px;
  }
  .contactUs .title h2 span{
    color: orangered;
    font-family: 'donsis';
  }
  .form {
    grid-area: form;
  }
  .info {
    grid-area: info;
  }
  .map {
    grid-area: map;
  }
  .contact {
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.747);
  }
  .box {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 5fr 4fr;
    grid-template-areas:
      "form info"
      "form map";
    grid-gap: 20px;
    margin-top: 20px;
  }
  .contact h3 {
    color: #0e3959;
  }
  /* form */
  .formBox {
    position: relative;
    width: 100%;
  }
  .formBox .row50 {
    display: flex;
    gap: 20px;
  }
  .inputBox {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 50%;
  }
  .formBox .row100 .inputBox {
    width: 100%;
  }
  .inputBox span {
    color: #18b7ff;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 500;
  }
  .inputBox input {
    padding: 10px;
    font-size: 1.1em;
    outline: none;
    border: 1px solid #333;
  }
  .inputBox textarea {
    padding: 10px;
    font-size: 1.1em;
    outline: none;
    border: 1px solid #333;
    resize: none;
    min-height: 220px;
    margin-bottom: 10px;
  }
  .inputBox input[type="submit"] {
    background-color: #ff578b;
    color: #fff;
    border: none;
    font-size: 1.1em;
    max-width: 120px;
    font-weight: 500;
    cursor: pointer;
    padding: 14px 15px;
  }
  .inputBox ::placeholder {
    color: #999;
  }
  /* info */
  .info {
    background-color: #0e3959;
  }
  .info h3 {
    color: #fff;
  }
  .info .infoBox div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .info .infoBox div span {
    min-width: 40px;
    height: 40px;
    color: #fff;
    background-color: #18b7ff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    border-radius: 50%;
    margin-right: 15px;
  }
  .info .infoBox div p {
    color: #fff;
    font-size: 1.1em;
  }
  .info .infoBox div a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
  }
  .sci {
    margin-top: 40px;
    display: flex;
  }
  .sci li {
    list-style: none;
    margin-right: 15px;
  }
  .sci li a {
    font-size: 2em;
    color: #ccc;
  }
  .sci li a:hover {
    color: #fff;
  }
  .map {
    padding: 0;
  }
  .map iframe {
    width: 100%;
    height: 100%;
  }
  /* Responsive */
  @media (max-width: 991px) {
    body {
      background-color:wheat;
    }
    .contactUs {
      padding: 20px;
    }
    .box {
      position: relative;
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      grid-template-areas:
        "form"
        "info" "map";
    }
    .formBox .row50 {
      display: flex;
      gap: 0;
      flex-direction: column;
    }
    .inputBox {
      width: 100%;
    }
    .contact {
      padding: 30px;
    }
     .map {
      min-height: 300px;
       padding: 0;
    }
  }
  /*Footer*/
  #foooter{
    max-width: 1170px;
    margin:auto;
  }
  .row{
    display: flex;
    flex-wrap: wrap;
  }
  ul{
    list-style: none;
  }
  .footer{
    background-color: #24262b;
      padding: 70px 0;
  }
  .footer-col{
     width: 25%;
     padding: 0 15px;
  }
  .footer-col h4{
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
  }
  .footer-col h4::before{
    content: '';
    position: absolute;
    left:0;
    bottom: -10px;
    background-color: #e91e63;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
  }
  .footer-col ul li:not(:last-child){
    margin-bottom: 10px;
  }
  .footer-col ul li a{
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
  }
  .footer-col ul li a:hover{
    color: #ffffff;
    padding-left: 8px;
  }
  .footer-col .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin:0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
  }
  .footer-col .social-links a:hover{
    color: #24262b;
    background-color: #ffffff;
  }
  
  /*responsive*/
  @media(max-width: 767px){
    .footer-col{
      width: 50%;
      margin-bottom: 30px;
  }
  }
  @media(max-width: 574px){
    .footer-col{
      width: 100%;
  }
  }
  /*cursor*/
.cursor{
  position: fixed;
  width: 50px;
  height: 50px;
  border: 1px solid #1d1c1c;
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: .1s;
  z-index: 10000;
}

.cursor2{
  position: fixed;
  width: 8px;
  height: 8px;
  background-color:  #c21616;
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: .15s;
  z-index: 10000;
}

#content:hover ~ .cursor{
  transform: translate(-50%, -50%) scale(1.5);
  background-color: #c21616;
  opacity: .5;
}

#content:hover ~ .cursor2{
  opacity: 0;
}






  
  
    
  