html {
  scroll-behavior: smooth;
}
* {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
  background-image: url(assets/light1.jpg);
  background-size: cover;
}
*::before,
*::after {
  box-sizing: border-box;
}
/* navbar */
.navbar {
  transition: all 400ms ease-in-out;
}

.navbar .nav-link {
  color: white !important;
}

.navbar-brand img {
  width: 160px;
  height: 40px;
}
.bg-dark {
  background: radial-gradient(
    circle at 4% 51.2%,
    rgb(255, 124, 0) 0%,
    rgb(255, 124, 0) 15.9%,
    rgb(255, 163, 77) 15.9%,
    rgb(255, 163, 77) 24.4%,
    rgb(11, 134, 210) 24.5%,
    rgb(12, 124, 194) 66%
  ) !important;
}
.form-check.form-switch {
  margin-top: 9px;
  margin-left: 10px;
}
.form-check.form-switch label {
  color: white !important;
  padding: 0 3px;
}
@media (max-width: 990px) {
  .navbar .nav-link {
    text-align: center;
  }
  .form-check.form-switch {
    justify-content: center;
    align-items: center;
    display: flex;
    margin-bottom: 30px;
  }
}
/* navbar end */
/* banner */
video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100vh;
  z-index: 0;
  object-fit: cover;
  transform: translateX(-50%) translateY(-50%);
}
.banner .carousel-item {
  height: 100vh;
  min-height: 300px;
}
.banner .carousel-caption {
  bottom: 300px;
  z-index: 2;
}
.banner .carousel-caption h5 {
  font-size: 45px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 25px;
  text-shadow: rgb(0, 0, 0) 1px 0px 0px, rgb(0, 0, 0) 0.540302px 0.841471px 0px,
    rgb(0, 0, 0) -0.416147px 0.909297px 0px,
    rgb(0, 0, 0) -0.989992px 0.14112px 0px,
    rgb(0, 0, 0) -0.653644px -0.756802px 0px,
    rgb(0, 0, 0) 0.283662px -0.958924px 0px,
    rgb(0, 0, 0) 0.96017px -0.279415px 0px;
}
.banner .carousel-caption p {
  width: 60%;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  text-shadow: rgb(0, 0, 0) 1px 0px 0px, rgb(0, 0, 0) 0.540302px 0.841471px 0px,
    rgb(0, 0, 0) -0.416147px 0.909297px 0px,
    rgb(0, 0, 0) -0.989992px 0.14112px 0px,
    rgb(0, 0, 0) -0.653644px -0.756802px 0px,
    rgb(0, 0, 0) 0.283662px -0.958924px 0px,
    rgb(0, 0, 0) 0.96017px -0.279415px 0px;
}
.carousel-caption a {
  text-transform: uppercase;
  text-decoration: none;
  background: #0066ff;
  padding: 5px 20px;
  display: inline-block;
  color: #fff;
  margin-top: 15px;
  border-radius: 5px;
  text-shadow: none;
}
.banner .carousel-caption a:hover {
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0) !important;
  letter-spacing: 0.4px;
  border: 2px solid #fff !important;
}
.banner .carousel-inner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .carousel-caption {
    bottom: 280px;
  }
  .banner .carousel-caption h5 {
    font-size: 2rem;
  }
  .carousel-caption a {
    padding: 0 15px;
    font-size: 0.9rem;
  }
}
/* banner end */
/* darkmode */
body.darkmode {
  background-image: none;
  background: #0f2027; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to left,
    #2c5364,
    #203a43,
    #0f2027
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to left,
    #2c5364,
    #203a43,
    #0f2027
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.darkmode .bg-dark {
  background: radial-gradient(
    circle at 4% 51.2%,
    rgb(255, 124, 0) 0%,
    rgb(255, 124, 0) 15.9%,
    rgb(255, 163, 77) 15.9%,
    rgb(255, 163, 77) 24.4%,
    rgb(19, 30, 37) 24.5%,
    rgb(19, 30, 37) 66%
  ) !important;
}
.darkmode .carousel-caption a{
  background-color: aqua!important;
}
.darkmode .about .content {
  color: white;
}
.darkmode .about .content h2 span {
  color: aqua;
}
.darkmode .about img {
  border: 15px double aqua!important;
}
.darkmode .about .btn:hover {
  color: aqua !important;
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0) !important;
  letter-spacing: 0.4px;
  border: 2px solid aqua !important;
}

.darkmode .about .btn {
  background-color: aqua !important;
  border: none !important;
  color: black;
}
.darkmode .button:hover a {
  color: aqua!important;
}
.darkmode .features .content-title h1 {
  color: aqua!important;
}
.darkmode .features .content-title p {
  color: whitesmoke!important;
}
.darkmode .features .col h1 {
  color: aqua!important;
}
.darkmode .features .col h3 {
  color: whitesmoke!important;
}
.darkmode .features .col .line {
  background-color: aqua!important;
}
.darkmode .features .col {
background: rgba(255, 255, 255, 0.2);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);
}
.darkmode .spots .content-spots h1,
.darkmode .spots2 .content-spots h1 {
  text-shadow: 2px 2px rgba(255, 255, 255, 0.5);
  color: white;
}
.darkmode .spots p,
.darkmode .spots h1 {
  color: #fff;
}
.darkmode .spots .content-spots p {
  color: whitesmoke;
}
.darkmode .spots .content-title h1 {
  color: aqua !important;
}
.darkmode .spots .col-6:nth-child(4) img {
  box-shadow: rgba(255, 222, 243, 0.4) 5px 5px,
    rgba(255, 222, 243, 0.3) 10px 10px, rgba(255, 222, 243, 0.2) 15px 15px,
    rgba(255, 222, 243, 0.1) 20px 20px, rgba(255, 222, 243, 0.05) 25px 25px;
}

.darkmode .spots .col-6:nth-child(1) img {
  box-shadow: rgba(255, 222, 243, 0.4) -5px 5px,
    rgba(255, 222, 243, 0.3) -10px 10px, rgba(255, 222, 243, 0.2) -15px 15px,
    rgba(255, 222, 243, 0.1) -20px 20px, rgba(255, 222, 243, 0.05) -25px 25px;
}

.darkmode .spots .col-6:nth-child(5) img {
  box-shadow: rgba(255, 222, 243, 0.4) -5px 5px,
    rgba(255, 222, 243, 0.3) -10px 10px, rgba(255, 222, 243, 0.2) -15px 15px,
    rgba(255, 222, 243, 0.1) -20px 20px, rgba(255, 222, 243, 0.05) -25px 25px;
}
.darkmode .spots2 .col-10:nth-child(odd) img {
  box-shadow: rgba(255, 222, 243, 0.4) 5px 5px,
    rgba(255, 222, 243, 0.3) 10px 10px, rgba(255, 222, 243, 0.2) 15px 15px,
    rgba(255, 222, 243, 0.1) 20px 20px, rgba(255, 222, 243, 0.05) 25px 25px;
}
.darkmode .spots2 .content-title p {
  color: #fff!important;
}
.darkmode .spots2 .content-title h1 {
  color: aqua!important;
}
.darkmode .spots2 .content-spots p {
  color: whitesmoke;
}
.darkmode .spots .btn {
  background-color: aqua;
  color: black;
}
.darkmode .spots .btn:hover {
  background-color: rgba(0, 0, 0, 0);
  color: aqua !important;
  border: 2px solid aqua !important;
}
.darkmode .spots2 .btn {
  background-color: aqua;
  color: black;
}
.darkmode .spots2 .btn:hover {
  background-color: rgba(0, 0, 0, 0);
  color: aqua !important;
  border: 2px solid aqua !important;
}
.darkmode .contact-text,
.darkmode .contact-text a {
  color: whitesmoke;
}
.darkmode .section-header h1 {
  color: aqua !important;
}
.darkmode .section-header p {
  color: white;
}
.darkmode #contact .text-desc {
  color: whitesmoke !important;
}
.darkmode hr {
  border-top: 2px solid rgb(255, 255, 255) !important;
  opacity: 1;
}
.darkmode .contact-wrapper {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.darkmode .list-item {
  color: aqua;
}
.darkmode .copyright {
  color: whitesmoke;
}
.darkmode .alt-send-button,
.darkmode .send-button {
  background-color: aqua !important;
}
.darkmode .send-text {
  color: whitesmoke !important;
}
.darkmode .fa-paper-plane {
  color: whitesmoke  !important;
}
.darkmode .form-control,
textarea {
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
}
.darkmode .need .content-title h1{
  color: aqua;
}
.darkmode .need .content-title p {
  color: white;
}
.darkmode .card {
  background: linear-gradient(to right,  rgb(64, 117, 148) ,
  rgb(74, 114, 138) 66%);
  border: 2px solid rgba(240, 46, 170, 0.9);
}
.darkmode .need .overlay {
  background: radial-gradient(
    circle at -5% 51.2%,
    rgb(255, 124, 0) 0%,
    rgb(255, 124, 0) 15.9%,
    rgb(255, 163, 77) 15.9%,
    rgb(255, 163, 77) 24.4%,
    rgb(51, 93, 117) 24.5%,
    rgb(60, 90, 109) 66%
  ) !important;
}
.darkmode .name {
  color: whitesmoke;
}
.darkmode .need .description {
  color: whitesmoke;
}
.darkmode .need button {
  background-color: aqua!important;
  color: #000;
}
.darkmode .need .card button:hover {
  color: aqua;
  border: 2px solid aqua;
  letter-spacing: 2px;
}
/* darkmode end */

/* About */
.about {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.about .content {
  margin: 20% 10% auto;
  text-align: center;
}
.about img {
  border: 15px double #0066ff;
}
.about .content h2 {
  padding-bottom: 5%;
}
.about .content h2 span {
  color: blue;
}
.about .btn {
  background: #0066ff!important;
  color: white;
 display: flex;
}
.tombol{
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
}
.about .btn:hover {
  color: #0066ff !important;
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0) !important;
  letter-spacing: 0.4px;
  border: 2px solid #0066ff !important;
}

@media (max-width: 1200px) {
  .about .content p {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .about .content p {
    font-size: 1em;
    text-align: center;
  }
  .about .content {
    margin: 0;
    padding-top: 20px;
  }
}
@media (max-width: 440px) {
  .about .content p {
    font-size: 14px;
    font-weight: 300;
  }
  .about .content h2 {
    font-size: 20px;
  }
  .content .w-100 {
    padding: 0;
    margin: 0;
  }
}
/* about end */

/* what u need */
.need {
  width: 100%;
  height: auto;
  padding: 10vh 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
}
.need .content-title {
  margin-left: 4vh;
}
.need .content-title h1 {
  color: #0066ff;
  font-weight: 800;
}
.need .content-title p{
  padding: 3vh 0;
  text-transform: capitalize;
}


.slide-content{
  transform: translateX(2vh);
  overflow: hidden;
  border-radius: 25px;
}
.card{
  border-radius: 25px;
  background-color: #FFF;
}
.image-content,
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.image-content{
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}
.overlay{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: radial-gradient(
    circle at -5% 51.2%,
    rgb(255, 124, 0) 0%,
    rgb(255, 124, 0) 15.9%,
    rgb(255, 163, 77) 15.9%,
    rgb(255, 163, 77) 24.4%,
    rgb(11, 134, 210) 24.5%,
    rgb(12, 124, 194) 66%
  ) !important;
  border-radius: 25px 25px 25px 25px;
}
.need .card button:hover {
  color: blue;
  background-color: unset!important;
  border: 2px solid blue;
  letter-spacing: 2px;
}
.overlay::after{
  border-radius: 0 25px 0 0;
}
.card-image{
  position: relative;
  height: 150px;
  width: 150px;

}
.card-image .card-img{
  height: 100%;
  width: 100%;
  position: absolute;
  object-fit: cover;
  border: 2px solid white;
}
.name{
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.description{
  font-size: 14px;
  color: #707070;
  text-align: center;
}
.button{
  border: none;
  font-size: 16px;
  padding: 8px 16px;
  background-color: #4070F4;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button a {
 color: #FFF;
 text-decoration: none;
}
.button:hover{
  background: unset;
  border: 2px solid #0066ff;
}
.button:hover a {
  color: #0066ff;
}
.swiper-navBtn{
  color: #6E93f7;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover{
  color: #4070F4;
}
.swiper-navBtn::before,
.swiper-navBtn::after{
  font-size: 35px;
}
.swiper-button-next{
  right: 0;
}
.swiper-button-prev{
  left: 0;
}
.swiper-pagination-bullet{
  background-color: #6E93f7;
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background-color: #4070F4;
}

@media screen and (max-width: 768px) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none;
  }
}
@media (max-width:578px) {
  .name{
    text-align: center;
  }
  .need .content-title{
    text-align: center;
  }
}

/* what u need end */
/* features */
.features {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.features .content-title {
  padding: 40px;
}

.features .content-title h1 {
  font-weight: bold;
  color: #0066ff !important;
}

.features .content-title p {
  text-transform: capitalize;
}
.features .col {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin: 2vh;
  height: 300px;
  width: 300px;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.features .col h1 {
  font-size: 4rem;
  color: #0066ff !important;
  padding-bottom: 20px;
}
.features .col h3 {
  font-size: 1rem;
  font-weight: 400;
  width: 80%;
  padding-bottom: 10px;
} 
.features .col .line {
  background-color: #0066ff;
  width: 40%;
  border-radius: 5px;
  height: 8px;
}
/* features end */
/* spots  */
.spots {
  width: 100%;
  padding: 10vh 0;
}
.spots .container {
  width: 80%;
}

.spots .content-title {
  padding: 40px;
}

.spots .content-title h1 {
  font-weight: bold;
  color: #0066ff !important;
}

.spots .content-title p {
  text-transform: capitalize;
}

.spots .col-6 {
  padding: 40px;
}

.spots .bdrra1 img,
.spots .bdrra3 img {
  border-radius: 0 30px 0 30px;
}

.spots .bdrra2 img {
  border-radius: 30px 0 30px 0;
}
.spots .content-spots p {
  color: gray;
}

.spots .btn {
  background-color: #0066ff;
  color: #fff;
}

.spots .btn:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #0066ff !important;
  font-weight: 600;
  letter-spacing: 0.4px;
  border: 2px solid #0066ff !important;
}
.spots .content-spots h1 {
  font-weight: 300;
  margin-bottom: 12px;
  font-size: 2.2rem !important;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.2);
}
.spots .spots__img img:hover {
  border-radius: 0 0 0 0;
  transform: scale(1.05);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.spots .spots__img img {
  height: auto;
  width: 100%;
  transition: 400ms;
}

.spots .spots__img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.spots .col-6:nth-child(3) .content-spots {
  text-align: right;
}

.spots .col-6:nth-child(4) img {
  box-shadow: rgba(240, 46, 170, 0.4) 5px 5px, rgba(240, 46, 170, 0.3) 10px 10px,
    rgba(240, 46, 170, 0.2) 15px 15px, rgba(240, 46, 170, 0.1) 20px 20px,
    rgba(240, 46, 170, 0.05) 25px 25px;
}

.spots .col-6:nth-child(1) img {
  box-shadow: rgba(240, 46, 170, 0.4) -5px 5px,
    rgba(240, 46, 170, 0.3) -10px 10px, rgba(240, 46, 170, 0.2) -15px 15px,
    rgba(240, 46, 170, 0.1) -20px 20px, rgba(240, 46, 170, 0.05) -25px 25px;
}

.spots .col-6:nth-child(5) img {
  box-shadow: rgba(240, 46, 170, 0.4) -5px 5px,
    rgba(240, 46, 170, 0.3) -10px 10px, rgba(240, 46, 170, 0.2) -15px 15px,
    rgba(240, 46, 170, 0.1) -20px 20px, rgba(240, 46, 170, 0.05) -25px 25px;
}

/* responsive spots */
.spots2 {
  height: auto;
  display: none;
  width: 100%;
  padding: 10vh 0;
}

.spots2 .container {
  width: 80%;
  height: auto;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.spots2 .content-title {
  padding: 40px;
}

.spots2 .content-title h1 {
  font-weight: bold;
  color: #0066ff !important;
}

.spots2 .content-title p {
  text-transform: capitalize;
  color: #000;
}
.spots2 .btn {
  background-color: #0066ff;
  color: #fff;
}

.spots2 .btn:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #0066ff !important;
  font-weight: 600;
  letter-spacing: 0.4px;
  border: 2px solid #0066ff !important;
}
.spots2 .content-title h1 {
  font-weight: bold;
}

.spots2 .content-title h1 span {
  border-top: 3.3px solid rgb(142, 201, 255);
  padding-top: 10px;
}

.spots2 .content-title p {
  text-transform: capitalize;
}

.spots2 .content-spots {
  text-align: center;
}

.spots .content-spots h1 {
  font-size: 3em;
}

.spots2 .content-spots p {
  font-size: 16px;
  font-weight: 400;
  color: gray;
}

.spots2 .content-spots h1 {
  font-weight: 500;
  margin-bottom: 12px;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.2);
}

.spots2 .col-10 {
  margin: 40px;
}

.spots2 .spots__img img {
  height: auto;
  width: 100%;
  border-radius: 0px 30px 0px 30px;
}

.spots2 .col-10:nth-child(odd) img {
  box-shadow: rgba(240, 46, 170, 0.4) 5px 5px, rgba(240, 46, 170, 0.3) 10px 10px,
    rgba(240, 46, 170, 0.2) 15px 15px, rgba(240, 46, 170, 0.1) 20px 20px,
    rgba(240, 46, 170, 0.05) 25px 25px;
}

.spots2 .spots__img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 888px) {
  .spots2 {
    display: inline-block;
  }

  .spots {
    display: none;
  }
}
@media (max-width: 440px) {
  .spots2 .content-spots p {
    font-size: .8rem;
    font-weight: 400;
  }
  .spots2 .btn {
    font-size: .9rem;
  }
}
/* spots end */
/* contact */
#contact {
  width: 100%;
  height: 100%;
  padding: 10vh 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  -webkit-box-shadow-: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-size: cover;
}
.section-header {
  text-align: center;
  margin: 0 auto;
  padding: 40px 0;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
}
.section-header h1 {
  font-weight: bold;
  color: #0066ff !important;
}

.contact-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  max-width: 840px;
  border-radius: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

/* Left contact page */
.form-horizontal {
  float: left;
  max-width: 300px;
  font-weight: 400;
}

.form-control,
textarea {
  max-width: 300px;
  background-color: white;
  color: black;
  letter-spacing: 1px;
}

.send-button {
  margin-top: 15px;
  height: 34px;
  width: 300px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}

.alt-send-button {
  width: 280px;
  height: 34px;
  transition: all 0.2s ease-in-out;
}

.send-text {
  display: block;
  margin-top: 10px;
  font: 700 12px "Lato", sans-serif;
  letter-spacing: 2px;
}

.alt-send-button:hover {
  transform: translate3d(0px, -29px, 0px);
}

/* Begin Right Contact Page */
.direct-contact-container {
  max-width: 300px;
}

/* Location, Phone, Email Section */
.contact-list {
  list-style-type: none;
  margin-left: -30px;
  padding-right: 20px;
}

.list-item {
  line-height: 4;
  color: #0066ff;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
}

.contact-text {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 1.9px;
  color: #000;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
}

.place {
  margin-left: 30px;
}

.phone {
  margin-left: 23px;
}

.gmail {
  margin-left: 20px;
}

.contact-text a {
  color: #000;
  text-decoration: none;
  transition-duration: 0.2s;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
}

.contact-text a:hover {
  color: rgba(0, 0, 0, 0.4);
  text-decoration: none;
}

/* Social Media Icons */

.copyright {
  font: 200 14px "Oswald", sans-serif;
  color: #555;
  letter-spacing: 1px;
  text-align: center;
}

hr {
  border-color: rgba(255, 255, 255, 0.6);
}

/* Begin Media Queries*/
@media screen and (max-width: 850px) {
  .contact-wrapper {
    display: flex;
    flex-direction: column;
  }
  .direct-contact-container,
  .form-horizontal {
    margin: 0 auto;
  }

  .direct-contact-container {
    margin-top: 60px;
    max-width: 300px;
  }
  .social-media-list li {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }
  .social-media-list li:after {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}

@media screen and (max-width: 569px) {
  .direct-contact-container,
  .form-wrapper {
    float: none;
    margin: 0 auto;
  }
  .form-control,
  textarea {
    margin: 0 auto;
  }

  .name,
  .email,
  textarea {
    width: 280px;
  }

  .direct-contact-container {
    margin-top: 60px;
    max-width: 280px;
  }
  .social-media-list {
    left: 0;
  }
  .social-media-list li {
    height: 55px;
    width: 55px;
    line-height: 55px;
    font-size: 2rem;
  }
  .social-media-list li:after {
    width: 55px;
    height: 55px;
    line-height: 55px;
  }
}

@media screen and (max-width: 410px) {
  .send-button {
    width: 99%;
  }
}
/* contact end */