* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: auto;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: linear-gradient(180deg, rgba(44, 22, 8, 1) 0%, rgba(255, 215, 0, 1) 80%);
  margin: 4px;
  height: auto;
}

.holder {
  background: #ffffff;
  width: 100%;
  height: 99%;
  border-radius: 10px;
}

.content {
  background: #ffffff;
  width: 60%;
  margin: auto;
  padding: 10px;
  font-size: 1.6rem;
  color: #2c1608;
}

.iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}
.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.imglogo {
  border-radius: 50%;
  background: #2c1608;
  width: 5%;
  height: 5%;
}

li.nav-item {
  list-style: none;
}

.uldot1 {
  line-height: 1.6;
  margin-left: 20px;
}

li.lidot1:nth-child(odd) {
  background-color: #ffd90027;
}

a {
  text-decoration: none;
}

.header {
  border-bottom: 1px solid #2c1608;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #2c1608;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-item {
  margin-left: 5rem;
}

.nav-link {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2c1608;
  padding: 10px;
}

.nav-link:hover {
  color: #2c1608;
  background: linear-gradient(to right, #ffd700 0%, #ffd700 5px, transparent);
  padding: 10px;
}

.nav-link:active {
  color: #2c1608;
  background: linear-gradient(to right, #ffd700 0%, #ffd700 5px, transparent);
  padding: 10px;
}

.nav-logo {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2c1608;
  align-items: left;
}

.GridMain2by1 {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(2, 60% 40%);
}

.GridMain2by1logo {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(2, 30% 70%);
}

.imgalliston {
  max-width: 100%;
  height: auto;
}

.imglogowithbck {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
}

.ContactUsForm {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  width: 80%;
}
.pSucMSG {
  color: green;
  font-weight: 700;
  font-size: 1.7rem;
}
.pErr2 {
  color: red;
  font-weight: 700;
  font-size: 1.7rem;
}

textarea,
input[type="text"],
[type="email"],
[type="tel"],
select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1.7rem;
  font-family: Arial, Helvetica, sans-serif;
}
textarea {
  resize: none;
}
input[type="button"] {
  width: 100%;
  background-color: #4caf50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.7rem;
  font-family: Arial, Helvetica, sans-serif;
}
input[type="button"]:hover {
  background-color: #45a049;
}

.pagefooter {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 5.5rem;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .content {
    width: 100%;
  }

  .imglogo {
    width: 10%;
    height: 10%;
  }

  .nav-logo {
    font-size: 1.7rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 2.5rem 0;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }
  .GridMain2by1 {
    grid-template-columns: none;
  }
  .GridMain2by1logo {
    grid-template-columns: none;
  }
  .ContactUsForm {
    width: 100%;
  }
}

@media only screen and (max-width: 1208px) and (min-width: 769px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 8rem;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .content {
    width: 100%;
  }

  .nav-logo {
    font-size: 3rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 2.5rem 0;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }
  .GridMain2by1 {
    grid-template-columns: none;
  }
  .GridMain2by1logo {
    grid-template-columns: none;
  }
  .ContactUsForm {
    width: 100%;
  }
}
