iframe {
  margin-top: 4%;
}

.contact_info {
  margin-top: 50px;
  display: flex;
  width: 100%;
  margin-bottom: 20vh;
  justify-content: space-around;
}

.right_col {
  width: 70%;
  background-color: rgb(240, 240, 240);
  padding: 50px;
  border-radius: 5px;
}
.right_col input,
.right_col textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.1rem;
  outline: none;
  border: none;
  border-radius: 5px;
}
.submit_btn {
  background-color: rgb(118, 151, 190);
  padding: 15px;
  border: none;
  border-radius: 5px;
  margin-top: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  cursor: pointer;
  transition: transform 0.5s, opacity 0.5s, box-shadow 0.5s;
}

.submit_btn .fa {
  color: #fff;
}

.submit_btn:hover {
  transform: scale(1.1);
  opacity: 0.9;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

.input_text:focus {
  border: 2px solid rgb(118, 151, 190);
}

footer {
  display: flex;
  justify-content: center;
  justify-content: center;
  align-items: center;
  background-color: #f0efef;
  position: relative;
  height: 100%;
  box-shadow: 10px 0px 10px rgba(0, 0, 0, 0.3);
}

footer .leftcol {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer .leftcol img {
  width: 200px;
}

footer .midcol {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer .midcol img {
  width: 100px;
  display: none;
}

footer .midcol a {
  text-decoration: none;
  color: #333;
  padding: 5px;
}

footer .midcol a:hover {
  font-weight: 700;
}

footer .rightcol {
  line-height: 2em;
  width: 30%;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: rgb(198, 211, 18);
  color: white;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  rotate: 45deg;
  border: 2px solid black;
}

#myBtn:hover {
  background-color: rgb(118, 151, 190);
}

.inner {
  border: 2px solid black;
  border-radius: 4px;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner img {
  rotate: -45deg;
  width: 30px;
}

@media (max-width: 991px) {
  iframe {
    margin-top: 12vh;
  }
  .cover-pic .second-title {
    font-size: 2em;
  }
}

@media (max-width: 767px) {
  .right_col {
    width: 90%;
    padding: 10px;
  }
  footer .leftcol {
    display: none;
  }
  footer .midcol,
  footer .rightcol {
    width: 100%;
  }

  footer .midcol img {
    width: 100px;
    display: block;
  }
}
