/* scrollbar */
.my-scrollbar-holder{
    max-height: 741px;
    overflow-y: auto;
    background: #76a0b4;
    color: #fff;
    padding: 10px;
    box-sizing: border-box;
}
.my-scrollbar-holder .section{
  margin-top: 20px;
}
.my-content-in-snap::-webkit-scrollbar {
  width: 10px;
}
.my-content-in-snap::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
.my-content-in-snap::-webkit-scrollbar-thumb {
  background: #888; 
}
.my-content-in-snap::-webkit-scrollbar-thumb:hover {
  background: #555; 
}


/* testimonials */
.my-testimonials-holder{
  position: relative;
  overflow-y: auto;
  height: 100%;
}

.my-testimonials-holder .container {
  border: 2px solid #ccc;
  background-color: #719a96;
  border-radius: 5px;
  color: #eee;
  padding: 16px;
  margin: 16px 0;
  text-align: center;
}

.my-testimonials-holder .container::after {
  content: "";
  clear: both;
  display: table;
}

.my-testimonials-holder .container img {
  margin: auto;
  border-radius: 50%;
  display: block;
}

.my-testimonials-holder .container span {
  font-size: 20px;
  margin-right: 15px;
}


/* form */

.my-form-holder .bg-img {
  /* The image used */
  background-image: url("../media/html/img_nature.jpg");

  min-height: 741px;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Add styles to the form container */
.my-form-holder .container {
  position: absolute;
  right: 0;
  margin: 20px;
  max-width: 300px;
  padding: 16px;
  background-color: white;
}

/* Full-width input fields */
.my-form-holder input[type=text], .my-form-holder input[type=password] {
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
}

.my-form-holder input[type=text]:focus, .my-form-holder input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit button */
.my-form-holder .btn {
  background-color: #04AA6D;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}

.my-form-holder .btn:hover {
  opacity: 1;
}
