/*Setting the margain*/
html{
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 1%;
}
.ignoreMargin{
  margin-left: -6%;
  margin-right: -6%;
  margin-top: -1%;
}

body {
  margin: 0;
  font-family: 'PT Sans';
  background: #fff6ee;
}
footer{
  background-color: #FCE7CA;
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-top: 20px;
  margin-left: -6%;
  margin-right: -6%;
  padding: 10px 0;
}

/*TopNav*/
.topnav {
  overflow: hidden;
  padding-left: 10px;
}
.topnav a {
  color: #49459c;
  text-align: center;
  padding: 5px 10px;
  text-decoration: none;
  font-size: 22px;
  float: left;
}
.topnav a:hover {
  color: #635fb4;
  background-color: #d2d1f1;
  border-radius: 5px;
}
.topnav .left {
  float: left;
  margin: 30px;
}
.topnav .right {
  float: right;
  margin-top: 30px;
}


/*Breadcrumbs*/
ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
}
ul.breadcrumb li {
  display: inline;
  font-size: 16px;
}
ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}
ul.breadcrumb li a {
  color: #0275d8;
  text-decoration: none;
}
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
}


/*Index*/
  /*welcome stuff*/
  .homeWelcome{
    max-width:1200px;
    margin:auto;
    padding:70px 20px;
    display:flex;
    gap:80px;
    align-items:center;
  }
  .homeWelcome .images{
    position:relative;
    width:420px;
    height:320px;
  }
  .homeWelcome .images img{
    position:absolute;
    width:280px;
    height:200px;
    object-fit:cover;
    box-shadow:0 20px 40px rgba(0,0,0,0.25);
    border-radius:4px;
  }
  .homeWelcome .images .up{
    top:0;
    left:0;
  }
  .homeWelcome .images .down{
    bottom:0;
    left:140px;
  }


  .homeWelcome .text small{
  letter-spacing:3px;
  color:#c18b2a;
  }
  .homeWelcome .text h1{
  font-family:"Playfair Display", serif;
  font-size:40px;
  margin:10px 0 20px;
  }
  .homeWelcome .text p{
  line-height:1.7;
  color:#555;
  }

/*Contacts*/
  .contacts{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  /*Left*/
    .contactInfo{
      background: #f3f3f3;
      border-radius: 20px;
      padding: 40px;
    }
    .contactInfo h2{
      margin-bottom: 30px;
      color: #0a1b5b;
    }
    .infoGrid{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px;
      font-size: 14px;
    }
    .infoItem strong{
      display: block;
      margin-bottom: 5px;
    }
    /*Map*/
    .map{
      margin-top: 30px;
      border-radius: 20px;
      overflow: hidden;
    }
    .map iframe{
      width: 100%;
      height: 200px;
      border: 0;
    }
  /*right*/
    .messageMe{
      background:#06135a;
      color: white;
      border-radius: 20px;
      padding: 40px;
    }
    .messageMe h2{
      margin-bottom: 30px;
    }
    .formRows{
      display: flex;
      gap: 15px;
      margin-bottom: 15px;
    }
    .formRows input{
      flex: 1;
    }
  
    input, textarea{
      width:100%;
      padding:12px;
      border-radius:6px;
      border:none;
      margin-bottom:15px;
      font-size:14px;
    }
    textarea{
      height:120px;
      resize:none;
    }
  
    button{
      background:#ff5a2c;
      border:none;
      padding:14px;
      width:100%;
      border-radius:30px;
      color:white;
      font-weight:600;
      cursor:pointer;
    }
