* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'American Captain';
  src: url("../../fonts/American Captain.ttf");
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

button, button:hover,
input, input:hover {
  border: none;
  outline: none;
}

h1 {
  font-family: "American Captain", sans-serif;
  letter-spacing: 3px;
  word-spacing: 12px;
  font-style: italic;
}

::-moz-selection {
  background: #fdc76c;
  color: #fff;
}

::selection {
  background: #fdc76c;
  color: #fff;
}

::-webkit-scrollbar {
  width: 20px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px #d8d8d8;
          box-shadow: inset 0 0 5px #d8d8d8;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #fdc76c;
  border-radius: 10px;
}

body {
  color: #222;
  font-family: "Poppins", sans-serif;
}

header {
  width: 100%;
  background: #111;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

header nav {
  width: 80%;
  height: 90px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav .left-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav .left-contents .brand-logo {
  width: 30px;
}

header nav .left-contents .brand-logo img {
  width: 100%;
}

header nav .left-contents .brand-name {
  margin-left: 10px;
}

header nav .left-contents .brand-name h1 {
  font-size: 22px;
  color: #fff;
  word-spacing: 0px;
}

header nav .left-contents .brand-name p {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}

header nav .right-contents {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav .right-contents .nav-items {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 30px;
}

header nav .right-contents .nav-items li {
  height: 100%;
  margin-left: 25px;
  font-family: American Captain;
  font-style: italic;
  letter-spacing: 1px;
  font-size: 20px;
}

header nav .right-contents .nav-items li a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
}

header nav .right-contents .nav-items li a:hover {
  color: #fdc76c;
}

header nav .right-contents .dropdown-parent {
  position: relative;
}

header nav .right-contents .dropdown-parent:hover .dropdown-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header nav .right-contents .dropdown-parent .dropdown-menu {
  position: absolute;
  top: 90px;
  left: 0;
  width: 300px;
  background: #111;
  border-top: 1px solid #fdc76c;
  z-index: 1000;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

header nav .right-contents .dropdown-parent .dropdown-menu a {
  width: 100%;
  display: block;
  padding: 10px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  letter-spacing: 0px;
  word-spacing: 0px;
}

header nav .right-contents .dropdown-parent .dropdown-menu a:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

header nav .right-contents .dropdown-parent .dropdown-menu a:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

header nav .right-contents .dropdown-parent .dropdown-menu a:hover {
  background: #454545;
  color: #fff;
}

header nav .right-contents .get-a-quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav .right-contents .get-a-quote button {
  width: 150px;
  height: 40px;
  background: #fdc76c;
  color: #000;
  font-family: 'American Captain', sans-serif;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 2px;
  font-size: 30px;
  font-size: 17px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
}

header nav .right-contents .get-a-quote button:hover {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
}

header nav .right-contents .get-a-quote a {
  width: 150px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fdc76c;
  color: #000;
  font-family: 'American Captain', sans-serif;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 2px;
  font-size: 30px;
  font-size: 17px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
}

header nav .right-contents .get-a-quote a:hover {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
}

header nav .right-contents .hamburger-menu {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 30px;
}

header nav .right-contents .hamburger-menu .hamburger-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}

header nav .right-contents .hamburger-menu .line {
  fill: none;
  stroke: #fff;
  stroke-width: 6;
  -webkit-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

header nav .right-contents .hamburger-menu .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

header nav .right-contents .hamburger-menu .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

header nav .right-contents .hamburger-menu .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

header nav .right-contents .hamburger-menu .opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

header nav .right-contents .hamburger-menu .opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

header nav .right-contents .hamburger-menu .opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

header nav .right-contents .nav-menu {
  width: 100%;
  position: absolute;
  top: 100%;
  height: 91.8vh;
  right: -100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  overflow: hidden;
}

header nav .right-contents .nav-menu::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.9;
  z-index: -1;
}

header nav .right-contents .nav-menu li {
  margin-bottom: 40px;
  font-style: italic;
}

header nav .right-contents .nav-menu .nav-menu-first {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

header nav .right-contents .nav-menu .nav-menu-first li a {
  font-size: 80px;
}

@media (max-width: 700px) {
  header nav .right-contents .nav-menu .nav-menu-first li a {
    font-size: 70px;
  }
}

@media (max-width: 450px) {
  header nav .right-contents .nav-menu .nav-menu-first li a {
    font-size: 50px;
  }
}

header nav .right-contents .nav-menu .nav-menu-first-hide {
  transform: translate(-100%);
  -webkit-transform: translate(-100%);
  -moz-transform: translate(-100%);
  -ms-transform: translate(-100%);
  -o-transform: translate(-100%);
}

header nav .right-contents .nav-menu .nav-menu-second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  transform: translateX(500%);
  -webkit-transform: translateX(500%);
  -moz-transform: translateX(500%);
  -ms-transform: translateX(500%);
  -o-transform: translateX(500%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

header nav .right-contents .nav-menu .nav-menu-second li a {
  font-size: 30px;
}

@media (max-width: 780px) {
  header nav .right-contents .nav-menu .nav-menu-second li a {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

@media (max-width: 550px) {
  header nav .right-contents .nav-menu .nav-menu-second li a {
    font-size: 25px;
    margin-bottom: 20px;
  }
}

@media (max-width: 420px) {
  header nav .right-contents .nav-menu .nav-menu-second li a {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 340px) {
  header nav .right-contents .nav-menu .nav-menu-second li a {
    font-size: 17px;
    margin-bottom: 0px;
  }
}

header nav .right-contents .nav-menu .nav-menu-second-show {
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
}

header nav .right-contents .nav-menu li a {
  color: #fff;
  font-size: 65px;
  font-family: "American Captain", sans-serif;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
}

header nav .right-contents .nav-menu li a:hover {
  color: #fdc76c;
}

header nav .right-contents .nav-menu.open {
  right: 0;
}

@media only screen and (max-width: 1120px) {
  header {
    width: 100%;
    background: #111;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  header nav {
    width: 80%;
    height: 90px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .left-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .left-contents .brand-logo {
    width: 30px;
  }
  header nav .left-contents .brand-logo img {
    width: 100%;
  }
  header nav .left-contents .brand-name {
    margin-left: 10px;
  }
  header nav .left-contents .brand-name h1 {
    font-size: 22px;
    color: #fff;
    word-spacing: 0px;
  }
  header nav .left-contents .brand-name p {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
  }
  header nav .right-contents {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .right-contents .nav-items {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 30px;
    display: none;
  }
  header nav .right-contents .nav-items li {
    margin-left: 25px;
    font-family: American Captain;
    font-style: italic;
    letter-spacing: 1px;
    font-size: 20px;
  }
  header nav .right-contents .nav-items li a {
    color: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  header nav .right-contents .nav-items li a:hover {
    color: #fdc76c;
  }
  header nav .right-contents .get-a-quote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .right-contents .get-a-quote button {
    width: 150px;
    height: 40px;
    background: #fdc76c;
    color: #000;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    font-size: 17px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  header nav .right-contents .get-a-quote button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  header nav .right-contents .hamburger-menu {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 30px;
  }
  header nav .right-contents .hamburger-menu .hamburger-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
  header nav .right-contents .hamburger-menu .line {
    fill: none;
    stroke: #fff;
    stroke-width: 6;
    -webkit-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  header nav .right-contents .hamburger-menu .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  header nav .right-contents .nav-menu {
    width: 100%;
    position: absolute;
    top: 100%;
    height: 91.8vh;
    right: -100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
  }
  header nav .right-contents .nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.9;
    z-index: -1;
  }
  header nav .right-contents .nav-menu li {
    margin-bottom: 40px;
    font-style: italic;
  }
  header nav .right-contents .nav-menu li a {
    color: #fff;
    font-size: 65px;
    font-family: "American Captain", sans-serif;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  header nav .right-contents .nav-menu li a:hover {
    color: #fdc76c;
  }
  header nav .right-contents .nav-menu.open {
    right: 0;
  }
}

@media only screen and (max-width: 768px) {
  header {
    width: 100%;
    background: #111;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  header nav {
    width: 80%;
    height: 90px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .left-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .left-contents .brand-logo {
    width: 30px;
  }
  header nav .left-contents .brand-logo img {
    width: 100%;
  }
  header nav .left-contents .brand-name {
    margin-left: 10px;
  }
  header nav .left-contents .brand-name h1 {
    font-size: 22px;
    color: #fff;
    word-spacing: 0px;
  }
  header nav .left-contents .brand-name p {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
  }
  header nav .right-contents {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .right-contents .nav-items {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 30px;
    display: none;
  }
  header nav .right-contents .nav-items li {
    margin-left: 25px;
    font-family: American Captain;
    font-style: italic;
    letter-spacing: 1px;
    font-size: 20px;
  }
  header nav .right-contents .nav-items li a {
    color: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  header nav .right-contents .nav-items li a:hover {
    color: #fdc76c;
  }
  header nav .right-contents .get-a-quote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: none;
  }
  header nav .right-contents .get-a-quote button {
    width: 150px;
    height: 40px;
    background: #fdc76c;
    color: #000;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    font-size: 17px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  header nav .right-contents .get-a-quote button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  header nav .right-contents .hamburger-menu {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 30px;
  }
  header nav .right-contents .hamburger-menu .hamburger-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
  header nav .right-contents .hamburger-menu .line {
    fill: none;
    stroke: #fff;
    stroke-width: 6;
    -webkit-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  header nav .right-contents .hamburger-menu .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  header nav .right-contents .nav-menu {
    width: 100%;
    position: absolute;
    top: 100%;
    height: 91.8vh;
    right: -100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
  }
  header nav .right-contents .nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.9;
    z-index: -1;
  }
  header nav .right-contents .nav-menu li {
    margin-bottom: 40px;
    font-style: italic;
  }
  header nav .right-contents .nav-menu li a {
    color: #fff;
    font-size: 45px;
    font-family: "American Captain", sans-serif;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  header nav .right-contents .nav-menu li a:hover {
    color: #fdc76c;
  }
  header nav .right-contents .nav-menu.open {
    right: 0;
  }
}

@media only screen and (max-width: 700px) {
  header {
    width: 100%;
    background: #111;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  header nav {
    width: 80%;
    height: 90px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .left-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .left-contents .brand-logo {
    width: 30px;
  }
  header nav .left-contents .brand-logo img {
    width: 100%;
  }
  header nav .left-contents .brand-name {
    margin-left: 10px;
  }
  header nav .left-contents .brand-name h1 {
    font-size: 22px;
    color: #fff;
    word-spacing: 0px;
  }
  header nav .left-contents .brand-name p {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
  }
  header nav .right-contents {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .right-contents .nav-items {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 30px;
    display: none;
  }
  header nav .right-contents .nav-items li {
    margin-left: 25px;
    font-family: American Captain;
    font-style: italic;
    letter-spacing: 1px;
    font-size: 20px;
  }
  header nav .right-contents .nav-items li a {
    color: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  header nav .right-contents .nav-items li a:hover {
    color: #fdc76c;
  }
  header nav .right-contents .get-a-quote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: none;
  }
  header nav .right-contents .get-a-quote button {
    width: 150px;
    height: 40px;
    background: #fdc76c;
    color: #000;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    font-size: 17px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  header nav .right-contents .get-a-quote button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  header nav .right-contents .hamburger-menu {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 30px;
  }
  header nav .right-contents .hamburger-menu .hamburger-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
  header nav .right-contents .hamburger-menu .line {
    fill: none;
    stroke: #fff;
    stroke-width: 6;
    -webkit-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  header nav .right-contents .hamburger-menu .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  header nav .right-contents .nav-menu {
    width: 100%;
    position: absolute;
    top: 100%;
    height: 91.8vh;
    right: -100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
  }
  header nav .right-contents .nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.9;
    z-index: -1;
  }
  header nav .right-contents .nav-menu li {
    margin-bottom: 40px;
    font-style: italic;
  }
  header nav .right-contents .nav-menu li a {
    color: #fff;
    font-size: 40px;
    font-family: "American Captain", sans-serif;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  header nav .right-contents .nav-menu li a:hover {
    color: #fdc76c;
  }
  header nav .right-contents .nav-menu.open {
    right: 0;
  }
}

@media only screen and (max-width: 520px) {
  header {
    width: 100%;
    background: #111;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  header nav {
    width: 80%;
    height: 90px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .left-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .left-contents .brand-logo {
    width: 30px;
  }
  header nav .left-contents .brand-logo img {
    width: 100%;
  }
  header nav .left-contents .brand-name {
    margin-left: 10px;
  }
  header nav .left-contents .brand-name h1 {
    font-size: 18px;
    color: #fff;
    word-spacing: 0px;
  }
  header nav .left-contents .brand-name p {
    font-size: 10px;
    font-weight: bold;
    color: #fff;
  }
  header nav .right-contents {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .right-contents .nav-items {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 30px;
    display: none;
  }
  header nav .right-contents .nav-items li {
    margin-left: 25px;
    font-family: American Captain;
    font-style: italic;
    letter-spacing: 1px;
    font-size: 20px;
  }
  header nav .right-contents .nav-items li a {
    color: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  header nav .right-contents .nav-items li a:hover {
    color: #fdc76c;
  }
  header nav .right-contents .get-a-quote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: none;
  }
  header nav .right-contents .get-a-quote button {
    width: 150px;
    height: 40px;
    background: #fdc76c;
    color: #000;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    font-size: 17px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  header nav .right-contents .get-a-quote button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  header nav .right-contents .hamburger-menu {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 30px;
  }
  header nav .right-contents .hamburger-menu .hamburger-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
  header nav .right-contents .hamburger-menu .line {
    fill: none;
    stroke: #fff;
    stroke-width: 6;
    -webkit-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  header nav .right-contents .hamburger-menu .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  header nav .right-contents .nav-menu {
    width: 100%;
    position: absolute;
    top: 100%;
    height: 91.8vh;
    right: -100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
  }
  header nav .right-contents .nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.9;
    z-index: -1;
  }
  header nav .right-contents .nav-menu li {
    margin-bottom: 40px;
    font-style: italic;
  }
  header nav .right-contents .nav-menu li a {
    color: #fff;
    font-size: 30px;
    font-family: "American Captain", sans-serif;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  header nav .right-contents .nav-menu li a:hover {
    color: #fdc76c;
  }
  header nav .right-contents .nav-menu.open {
    right: 0;
  }
}

@media only screen and (max-width: 450px) {
  header {
    width: 100%;
    background: #111;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  header nav {
    width: 80%;
    height: 90px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .left-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .left-contents .brand-logo {
    width: 30px;
  }
  header nav .left-contents .brand-logo img {
    width: 100%;
  }
  header nav .left-contents .brand-name {
    margin-left: 10px;
  }
  header nav .left-contents .brand-name h1 {
    font-size: 12px;
    color: #fff;
    word-spacing: 0px;
  }
  header nav .left-contents .brand-name p {
    font-size: 10px;
    font-weight: bold;
    color: #fff;
  }
  header nav .right-contents {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .right-contents .nav-items {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 30px;
    display: none;
  }
  header nav .right-contents .nav-items li {
    margin-left: 25px;
    font-family: American Captain;
    font-style: italic;
    letter-spacing: 1px;
    font-size: 20px;
  }
  header nav .right-contents .nav-items li a {
    color: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  header nav .right-contents .nav-items li a:hover {
    color: #fdc76c;
  }
  header nav .right-contents .get-a-quote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: none;
  }
  header nav .right-contents .get-a-quote button {
    width: 150px;
    height: 40px;
    background: #fdc76c;
    color: #000;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    font-size: 17px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  header nav .right-contents .get-a-quote button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  header nav .right-contents .hamburger-menu {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 30px;
  }
  header nav .right-contents .hamburger-menu .hamburger-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
  header nav .right-contents .hamburger-menu .line {
    fill: none;
    stroke: #fff;
    stroke-width: 6;
    -webkit-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  header nav .right-contents .hamburger-menu .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  header nav .right-contents .nav-menu {
    width: 100%;
    position: absolute;
    top: 100%;
    height: 91.8vh;
    right: -100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
  }
  header nav .right-contents .nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.9;
    z-index: -1;
  }
  header nav .right-contents .nav-menu li {
    margin-bottom: 40px;
    font-style: italic;
  }
  header nav .right-contents .nav-menu li a {
    color: #fff;
    font-size: 30px;
    font-family: "American Captain", sans-serif;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  header nav .right-contents .nav-menu li a:hover {
    color: #fdc76c;
  }
  header nav .right-contents .nav-menu.open {
    right: 0;
  }
}

@media only screen and (max-width: 380px) {
  header {
    width: 100%;
    background: #111;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  header nav {
    width: 80%;
    height: 90px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .left-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .left-contents .brand-logo {
    width: 30px;
  }
  header nav .left-contents .brand-logo img {
    width: 100%;
  }
  header nav .left-contents .brand-name {
    margin-left: 10px;
  }
  header nav .left-contents .brand-name h1 {
    font-size: 12px;
    color: #fff;
    word-spacing: 0px;
    letter-spacing: 2px;
  }
  header nav .left-contents .brand-name p {
    font-size: 6px;
    font-weight: bold;
    color: #fff;
  }
  header nav .right-contents {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header nav .right-contents .nav-items {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 30px;
    display: none;
  }
  header nav .right-contents .nav-items li {
    margin-left: 25px;
    font-family: American Captain;
    font-style: italic;
    letter-spacing: 1px;
    font-size: 20px;
  }
  header nav .right-contents .nav-items li a {
    color: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  header nav .right-contents .nav-items li a:hover {
    color: #fdc76c;
  }
  header nav .right-contents .get-a-quote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: none;
  }
  header nav .right-contents .get-a-quote button {
    width: 150px;
    height: 40px;
    background: #fdc76c;
    color: #000;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    font-size: 17px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  header nav .right-contents .get-a-quote button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  header nav .right-contents .hamburger-menu {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 30px;
  }
  header nav .right-contents .hamburger-menu .hamburger-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
  header nav .right-contents .hamburger-menu .line {
    fill: none;
    stroke: #fff;
    stroke-width: 6;
    -webkit-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  header nav .right-contents .hamburger-menu .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
  }
  header nav .right-contents .hamburger-menu .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  header nav .right-contents .nav-menu {
    width: 100%;
    position: absolute;
    top: 100%;
    height: 91.8vh;
    right: -100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
  }
  header nav .right-contents .nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.9;
    z-index: -1;
  }
  header nav .right-contents .nav-menu li {
    margin-bottom: 40px;
    font-style: italic;
  }
  header nav .right-contents .nav-menu li a {
    color: #fff;
    font-size: 25px;
    font-family: "American Captain", sans-serif;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  header nav .right-contents .nav-menu li a:hover {
    color: #fdc76c;
  }
  header nav .right-contents .nav-menu.open {
    right: 0;
  }
}

.hero {
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg.jpg");
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg.jpg");
  background-size: cover;
  padding: 220px 0px;
  opacity: 0;
  animation: fadingBackground 60s linear infinite;
  -webkit-animation: fadingBackground 60s linear infinite;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #fdc76c;
  animation: fadingBackground 25s linear infinite;
  -webkit-animation: fadingBackground 25s linear infinite;
}

.hero .social-media-floating-icon {
  position: absolute;
  top: 15%;
  right: -10%;
  width: 80px;
  animation: socialMediaIconFloating 10s ease infinite;
  -webkit-animation: socialMediaIconFloating 10s ease infinite;
  z-index: 1000;
}

.hero .social-media-floating-icon:nth-child(2) {
  top: 20%;
  -webkit-animation-delay: 0.20s;
          animation-delay: 0.20s;
}

.hero .social-media-floating-icon:nth-child(3) {
  top: 25%;
  -webkit-animation-delay: 40s;
          animation-delay: 40s;
}

.hero .social-media-floating-icon:nth-child(4) {
  top: 22%;
  -webkit-animation-delay: 0.60s;
          animation-delay: 0.60s;
}

.hero .social-media-floating-icon:nth-child(5) {
  top: 30%;
  -webkit-animation-delay: 0.80s;
          animation-delay: 0.80s;
}

.hero .social-media-floating-icon:nth-child(6) {
  top: 35%;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.hero .social-media-floating-icon:nth-child(7) {
  top: 45%;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.hero .social-media-floating-icon:nth-child(8) {
  top: 50%;
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.hero .social-media-floating-icon:nth-child(9) {
  top: 49%;
  -webkit-animation-delay: 0.60s;
          animation-delay: 0.60s;
}

.hero .social-media-floating-icon:nth-child(10) {
  top: 65%;
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.hero .social-media-floating-icon:nth-child(11) {
  top: 57%;
  -webkit-animation-delay: 0.70s;
          animation-delay: 0.70s;
}

.hero .social-media-floating-icon:nth-child(12) {
  top: 62%;
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.hero .social-media-floating-icon:nth-child(13) {
  top: 69%;
  -webkit-animation-delay: 0.24s;
          animation-delay: 0.24s;
}

.hero .social-media-floating-icon:nth-child(14) {
  top: 65%;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.hero .social-media-floating-icon:nth-child(14) {
  top: 50%;
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}

.hero .social-media-floating-icon:nth-child(15) {
  top: 65%;
  -webkit-animation-delay: 0.47s;
          animation-delay: 0.47s;
}

.hero .social-media-floating-icon:nth-child(16) {
  top: 95%;
  -webkit-animation-delay: 0.320s;
          animation-delay: 0.320s;
}

.hero .social-media-floating-icon:nth-child(17) {
  top: 7%;
  -webkit-animation-delay: 0.340s;
          animation-delay: 0.340s;
}

.hero .social-media-floating-icon:nth-child(17) {
  top: 12%;
  -webkit-animation-delay: 0.360s;
          animation-delay: 0.360s;
}

.hero .social-media-floating-icon:nth-child(18) {
  top: 76%;
  -webkit-animation-delay: 0.380s;
          animation-delay: 0.380s;
}

.hero .social-media-floating-icon:nth-child(19) {
  top: 23%;
  -webkit-animation-delay: 0.400s;
          animation-delay: 0.400s;
}

.hero .social-media-floating-icon:nth-child(19) {
  top: 23%;
  -webkit-animation-delay: 0.78s;
          animation-delay: 0.78s;
}

.hero .social-media-floating-icon:nth-child(20) {
  top: 47%;
  -webkit-animation-delay: 0.43s;
          animation-delay: 0.43s;
}

.hero .social-media-floating-icon:nth-child(21) {
  top: 54%;
  -webkit-animation-delay: 0.56s;
          animation-delay: 0.56s;
}

.hero .social-media-floating-icon:nth-child(22) {
  top: 20%;
  -webkit-animation-delay: 0.36s;
          animation-delay: 0.36s;
}

.hero .social-media-floating-icon:nth-child(23) {
  top: 78%;
  -webkit-animation-delay: 0.66s;
          animation-delay: 0.66s;
}

.hero .social-media-floating-icon:nth-child(24) {
  top: 60%;
  -webkit-animation-delay: 0.39s;
          animation-delay: 0.39s;
}

.hero .social-media-floating-icon:nth-child(25) {
  top: 33%;
  -webkit-animation-delay: 0.76s;
          animation-delay: 0.76s;
}

.hero .social-media-floating-icon:nth-child(26) {
  top: 42%;
  -webkit-animation-delay: 0.560s;
          animation-delay: 0.560s;
}

.hero .social-media-floating-icon:nth-child(27) {
  top: 12%;
  -webkit-animation-delay: 0.580s;
          animation-delay: 0.580s;
}

.hero .social-media-floating-icon:nth-child(28) {
  top: 64%;
  -webkit-animation-delay: 0.600s;
          animation-delay: 0.600s;
}

@-webkit-keyframes socialMediaIconFloating {
  0% {
    right: -10%;
  }
  100% {
    right: 150%;
  }
}

@keyframes socialMediaIconFloating {
  0% {
    right: -10%;
  }
  100% {
    right: 150%;
  }
}

@-webkit-keyframes fadingBackground {
  0% {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg.jpg");
    background-size: cover;
    opacity: 1;
  }
  20% {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg2.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg2.jpg");
    background-size: cover;
    opacity: 1;
  }
  40% {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg3.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg3.jpg");
    background-size: cover;
    opacity: 1;
  }
  60% {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg4.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg4.jpg");
    background-size: cover;
    opacity: 1;
  }
  80% {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg5.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg5.jpg");
    background-size: cover;
    opacity: 1;
  }
  100% {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg6.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg6.jpg");
    background-size: cover;
    opacity: 1;
  }
}

@keyframes fadingBackground {
  0% {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg.jpg");
    background-size: cover;
    opacity: 1;
  }
  20% {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg2.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg2.jpg");
    background-size: cover;
    opacity: 1;
  }
  40% {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg3.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg3.jpg");
    background-size: cover;
    opacity: 1;
  }
  60% {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg4.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg4.jpg");
    background-size: cover;
    opacity: 1;
  }
  80% {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg5.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg5.jpg");
    background-size: cover;
    opacity: 1;
  }
  100% {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg6.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg6.jpg");
    background-size: cover;
    opacity: 1;
  }
}

.hero .drone {
  position: absolute;
  top: 20%;
  left: 0%;
  width: 300px;
  animation: drone 60s linear infinite;
  -webkit-animation: drone 60s linear infinite;
  z-index: 100;
  opacity: 0.8;
}

@-webkit-keyframes drone {
  0% {
    top: 20%;
    left: 0%;
  }
  50% {
    top: 20%;
    left: 50%;
  }
  65% {
    top: 40%;
    left: 30%;
  }
  75% {
    top: 30%;
    left: 10%;
  }
  100% {
    top: 20%;
    left: 0%;
  }
}

@keyframes drone {
  0% {
    top: 20%;
    left: 0%;
  }
  50% {
    top: 20%;
    left: 50%;
  }
  65% {
    top: 40%;
    left: 30%;
  }
  75% {
    top: 30%;
    left: 10%;
  }
  100% {
    top: 20%;
    left: 0%;
  }
}

.hero .hero-contents {
  width: 80%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  color: #222;
}

.hero .hero-contents .top-title {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #222;
  letter-spacing: 0px;
  word-spacing: 0px;
  font-style: normal;
}

.hero .hero-contents .top-title span {
  font-weight: bold;
  font-style: italic;
}

.hero .hero-contents .top-title i {
  margin-left: 10px;
}

.hero .hero-contents .main-title-container {
  position: relative;
}

.hero .hero-contents .main-title-container .main-title {
  font-size: 70px;
  margin-bottom: 20px;
}

.hero .hero-contents .main-title-container .main-title .first-span {
  word-spacing: 50px;
}

.hero .hero-contents .main-title-container .main-title .second-span {
  font-size: 100px;
}

.hero .hero-contents .main-title-container .main-title .third-span {
  font-size: 115px;
}

.hero .hero-contents .main-title-container .main-title .fourth-span {
  font-size: 75px;
}

.hero .hero-contents .main-title-container .main-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 200px;
  height: 2px;
  background: #fdc76c;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.hero .hero-contents h3 {
  margin-top: 50px;
  color: #222;
  font-weight: 300;
}

.hero .hero-contents .hero-form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 100px;
}

.hero .hero-contents .hero-form .input-group {
  width: 400px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
  border: 2px solid #222;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.hero .hero-contents .hero-form .input-group input {
  width: 80%;
  background: none;
  color: #222;
  font-size: 25px;
  padding-left: 20px;
}

.hero .hero-contents .hero-form button {
  width: 250px;
  height: 100px;
  background: #fdc76c;
  color: #000;
  font-family: 'American Captain', sans-serif;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 5px;
  font-size: 30px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
}

.hero .hero-contents .hero-form button:hover {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
}

.get-a-quote-info-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  overflow: hidden;
}

.get-a-quote-info-overlay .close-get-a-quote-info-overlay-button {
  position: absolute;
  top: 10%;
  left: 85%;
  font-size: 35px;
  background: none;
  color: #fdc76c;
  cursor: pointer;
}

.get-a-quote-info-overlay .get-a-quote-info-overlay-container {
  width: 100%;
  height: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form {
  width: 100%;
}

.get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container {
  width: 80%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
}

.get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container .form-container-right {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container .form-container-right .form-container-right-items {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container input[type="text"], .get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container input[type="email"], .get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container input[type="number"] {
  width: 100%;
  height: 50px;
  margin-bottom: 40px;
  background: none;
  color: #fff;
  font-size: 20px;
  border-bottom: 1px solid #fff;
}

.get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container input[type="text"]::-webkit-input-placeholder, .get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container input[type="email"]::-webkit-input-placeholder, .get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container input[type="number"]::-webkit-input-placeholder {
  color: #fff;
}

.get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container input[type="text"]:-ms-input-placeholder, .get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container input[type="email"]:-ms-input-placeholder, .get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container input[type="number"]:-ms-input-placeholder {
  color: #fff;
}

.get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container input[type="text"]::-ms-input-placeholder, .get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container input[type="email"]::-ms-input-placeholder, .get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container input[type="number"]::-ms-input-placeholder {
  color: #fff;
}

.get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container input[type="text"]::placeholder, .get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container input[type="email"]::placeholder, .get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container input[type="number"]::placeholder {
  color: #fff;
}

.get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container input[type="text"]:focus, .get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container input[type="email"]:focus, .get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container input[type="number"]:focus {
  border-bottom-color: #fdc76c;
}

.get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container h2 {
  color: #fdc76c;
  margin-bottom: 20px;
}

.get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container .services-input-groups {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container .services-input-groups .services-input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form .form-container .services-input-groups .services-input-group p {
  color: #fff;
  margin-left: 20px;
  font-size: 20px;
}

.get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form button {
  width: 170px;
  height: 70px;
  background: #fdc76c;
  font-family: 'American Captain', sans-serif;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 2px;
  font-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
  margin: auto;
  margin-top: 50px;
}

.get-a-quote-info-overlay .get-a-quote-info-overlay-container .info-overlay-form button:hover {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
}

.get-a-quote-info-overlay-active {
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
}

.lets-grow-info-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  overflow: hidden;
}

.lets-grow-info-overlay .close-lets-grow-info-overlay-button {
  position: absolute;
  top: 10%;
  left: 85%;
  font-size: 35px;
  background: none;
  color: #fdc76c;
  cursor: pointer;
}

.lets-grow-info-overlay .lets-grow-info-overlay-container {
  width: 80%;
  height: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form {
  width: 100%;
}

.lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
}

.lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container input[type="text"], .lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container input[type="email"], .lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container input[type="number"] {
  width: 100%;
  height: 50px;
  margin-bottom: 40px;
  background: none;
  color: #fff;
  font-size: 20px;
  border-bottom: 1px solid #fff;
}

.lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container input[type="text"]::-webkit-input-placeholder, .lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container input[type="email"]::-webkit-input-placeholder, .lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container input[type="number"]::-webkit-input-placeholder {
  color: #fff;
}

.lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container input[type="text"]:-ms-input-placeholder, .lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container input[type="email"]:-ms-input-placeholder, .lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container input[type="number"]:-ms-input-placeholder {
  color: #fff;
}

.lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container input[type="text"]::-ms-input-placeholder, .lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container input[type="email"]::-ms-input-placeholder, .lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container input[type="number"]::-ms-input-placeholder {
  color: #fff;
}

.lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container input[type="text"]::placeholder, .lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container input[type="email"]::placeholder, .lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container input[type="number"]::placeholder {
  color: #fff;
}

.lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container input[type="text"]:focus, .lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container input[type="email"]:focus, .lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container input[type="number"]:focus {
  border-bottom-color: #fdc76c;
}

.lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container h2 {
  color: #fdc76c;
  margin-top: 30px;
}

.lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container .services-input-groups {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

.lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container .services-input-groups .services-input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container .services-input-groups .services-input-group p {
  color: #fff;
  margin-left: 20px;
  font-size: 20px;
}

.lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container button {
  width: 170px;
  height: 70px;
  background: #fdc76c;
  font-family: 'American Captain', sans-serif;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 2px;
  font-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
}

.lets-grow-info-overlay .lets-grow-info-overlay-container .info-overlay-form .form-container button:hover {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
}

.lets-grow-info-overlay-active {
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
}

.about {
  width: 100%;
  padding: 150px 0px;
}

.about .about-container {
  width: 80%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about .about-container .about-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about .about-container .about-left .section-title {
  width: 50%;
  position: relative;
  margin-bottom: 50px;
}

.about .about-container .about-left .section-title .section-title-text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 45%;
  z-index: 20;
  transform: translateY(-70%);
  -webkit-transform: translateY(-70%);
  -moz-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  -o-transform: translateY(-70%);
}

.about .about-container .about-left .section-title .section-title-text h1 {
  font-size: 60px;
  text-align: center;
}

.about .about-container .about-left .section-title .section-title-text h1 span {
  font-size: 60px;
  letter-spacing: 5px;
  word-spacing: 10px;
}

.about .about-container .about-left .section-title .section-title-background {
  width: 100%;
  position: relative;
  top: 0;
  left: 50%;
}

.about .about-container .about-left .section-title .section-title-background img {
  width: 100%;
}

.about .about-container .about-left p {
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 300;
}

.about .about-container .about-left p.p-points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about .about-container .about-left p.p-points span {
  margin-left: 50px;
  margin-top: 20px;
}

.about .about-container .about-left button {
  width: 250px;
  height: 70px;
  background: #fdc76c;
  font-family: 'American Captain', sans-serif;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 2px;
  font-size: 30px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
}

.about .about-container .about-left button a {
  text-decoration: none;
  color: #000;
}

.about .about-container .about-left button:hover {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
}

.about .about-container .about-right {
  width: 100%;
}

.about .about-container .about-right img {
  width: 100%;
  float: right;
  padding-left: 100px;
}

.trending-packages {
  width: 100%;
  padding: 150px 0px;
  position: relative;
  overflow: hidden;
}

.trending-packages .spot-light {
  position: absolute;
  top: 10%;
  left: 85%;
  width: 300px;
  transform: rotate(5deg);
  -webkit-transform: rotate(5deg);
  -moz-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  -o-transform: rotate(5deg);
  animation: spotLight 5s linear infinite;
  -webkit-animation: spotLight 5s linear infinite;
}

@-webkit-keyframes spotLight {
  0% {
    top: 10%;
    left: 85%;
  }
  50% {
    top: 15%;
    left: 87%;
  }
  100% {
    top: 10%;
    left: 85%;
  }
}

@keyframes spotLight {
  0% {
    top: 10%;
    left: 85%;
  }
  50% {
    top: 15%;
    left: 87%;
  }
  100% {
    top: 10%;
    left: 85%;
  }
}

.trending-packages .trending-packages-container {
  width: 80%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.trending-packages .trending-packages-container .section-title {
  width: 50%;
  position: relative;
  margin-bottom: 50px;
}

.trending-packages .trending-packages-container .section-title .section-title-text {
  position: absolute;
  top: 50%;
  left: 15%;
  z-index: 20;
  transform: translateY(-70%);
  -webkit-transform: translateY(-70%);
  -moz-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  -o-transform: translateY(-70%);
}

.trending-packages .trending-packages-container .section-title .section-title-text h1 {
  font-size: 60px;
}

.trending-packages .trending-packages-container .section-title .section-title-background {
  width: 100%;
  position: relative;
  top: 0;
  left: 0%;
}

.trending-packages .trending-packages-container .section-title .section-title-background img {
  width: 100%;
}

.trending-packages .trending-packages-container .trending-packages-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.trending-packages .trending-packages-container .trending-packages-wrapper .package {
  width: 400px;
  height: 700px;
  border: 1px solid #d8d8d8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.trending-packages .trending-packages-container .trending-packages-wrapper .package:nth-child(2) {
  margin: 0 50px;
}

.trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top {
  height: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top h2 {
  font-size: 35px;
  letter-spacing: 2px;
  font-family: "American Captain", sans-serif;
  font-style: italic;
  margin-bottom: 10px;
}

.trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top p {
  text-align: center;
  color: #555;
}

.trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 0px 60px 0px;
}

.trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price h1 {
  font-size: 60px;
}

.trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price p {
  font-size: 30px;
  font-weight: bold;
  color: #fdc76c;
}

.trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details p {
  text-align: left;
}

.trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details p span {
  color: #2fc393;
  margin-right: 5px;
}

.trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom {
  height: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button {
  width: 220px;
  height: 70px;
  background: #fdc76c;
  font-family: 'American Captain', sans-serif;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 2px;
  font-size: 30px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
}

.trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button a {
  text-decoration: none;
  color: #000;
}

.trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button:hover {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
}

.trending-packages .trending-packages-container .trending-packages-wrapper .package:hover {
  -webkit-box-shadow: 0 14px 28px #d8d8d8;
          box-shadow: 0 14px 28px #d8d8d8;
  transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
}

.services {
  width: 100%;
  padding: 150px 0px;
  background: #f5f5f5;
}

.services .services-container {
  width: 80%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services .services-container .section-title {
  width: 50%;
  position: relative;
  margin-bottom: 50px;
}

.services .services-container .section-title .section-title-text {
  position: absolute;
  top: 50%;
  left: 25%;
  z-index: 20;
  transform: translateY(-70%);
  -webkit-transform: translateY(-70%);
  -moz-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  -o-transform: translateY(-70%);
}

.services .services-container .section-title .section-title-text h1 {
  font-size: 60px;
}

.services .services-container .section-title .section-title-background {
  width: 100%;
  position: relative;
  top: 0;
  left: 0%;
}

.services .services-container .section-title .section-title-background img {
  width: 100%;
}

.services .services-container .services-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-row-gap: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.services .services-container .services-wrapper .service {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.services .services-container .services-wrapper .service .service-container {
  width: 80%;
  height: 280px;
  background: #fff;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  padding: 30px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  position: relative;
}

.services .services-container .services-wrapper .service .service-container:hover {
  -webkit-box-shadow: 0 14px 28px #d8d8d8;
          box-shadow: 0 14px 28px #d8d8d8;
  transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
}

.services .services-container .services-wrapper .service .service-container .service-top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.services .services-container .services-wrapper .service .service-container .service-top i {
  font-size: 40px;
  color: #fdc76c;
}

.services .services-container .services-wrapper .service .service-container .service-bottom {
  width: 100%;
}

.services .services-container .services-wrapper .service .service-container .service-bottom h1 {
  font-size: 25px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-style: normal;
}

.services .services-container .services-wrapper .service .service-container .service-read-more {
  height: 100%;
  position: absolute;
  bottom: -92.5%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.services .services-container .services-wrapper .service .service-container .service-read-more a {
  width: 170px;
  font-size: 13px;
  background: #fdc76c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
  color: #fff;
}

.services .services-container .services-wrapper .service .service-container .service-read-more a span {
  margin-left: 5px;
}

.services .services-container .services-wrapper .service .service-container .service-read-more a:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.services .services-container .services-wrapper .service:nth-child(6) {
  position: relative;
}

.services .services-container .services-wrapper .service:nth-child(6) .camera {
  position: absolute;
  top: 90%;
  left: -10px;
  width: 60px;
  transform: rotateX(-5deg);
  -webkit-transform: rotateX(-5deg);
  -moz-transform: rotateX(-5deg);
  -ms-transform: rotateX(-5deg);
  -o-transform: rotateX(-5deg);
}

.our-process {
  width: 100%;
  padding: 150px 0px;
}

.our-process .our-process-container {
  width: 80%;
  height: 100%;
  margin: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.our-process .our-process-container .process-section-informations .section-title {
  width: 80%;
  position: relative;
  margin-bottom: 50px;
}

.our-process .our-process-container .process-section-informations .section-title .section-title-text {
  position: absolute;
  top: 50%;
  left: 20%;
  z-index: 20;
  transform: translateY(-70%);
  -webkit-transform: translateY(-70%);
  -moz-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  -o-transform: translateY(-70%);
}

.our-process .our-process-container .process-section-informations .section-title .section-title-text h1 {
  font-size: 60px;
}

.our-process .our-process-container .process-section-informations .section-title .section-title-background {
  width: 100%;
  position: relative;
  top: 0;
  left: 0%;
}

.our-process .our-process-container .process-section-informations .section-title .section-title-background img {
  width: 100%;
}

.our-process .our-process-container .four-processes {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 2px solid #fdc76c;
  padding-left: 40px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  position: relative;
}

.our-process .our-process-container .four-processes .process {
  margin-bottom: 60px;
}

.our-process .our-process-container .four-processes .process .process-number {
  position: absolute;
  left: -6%;
}

.our-process .our-process-container .four-processes .process .process-ball {
  width: 15px;
  height: 15px;
  background: #fdc76c;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  left: -1%;
  margin-top: 8px;
}

.our-process .our-process-container .four-processes .process h1 {
  font-style: italic;
}

.our-process .our-process-container .four-processes .process p {
  margin-top: 10px;
}

.our-process .our-process-container .four-processes .process:last-child {
  margin-bottom: 0px;
}

.skills {
  width: 100%;
  padding: 150px 0px;
  background: #f5f5f5;
}

.skills .skills-container {
  width: 80%;
  height: 100%;
  margin: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.skills .skills-container .skills-left {
  width: 100%;
  height: 650px;
  background: url("../images/Skills Section Image.jpg");
  background-size: cover;
}

.skills .skills-container .skills-right {
  width: 100%;
}

.skills .skills-container .skills-right .section-title {
  width: 80%;
  position: relative;
  margin-bottom: 50px;
}

.skills .skills-container .skills-right .section-title .section-title-text {
  position: absolute;
  top: 50%;
  left: 20%;
  z-index: 20;
  transform: translateY(-70%);
  -webkit-transform: translateY(-70%);
  -moz-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  -o-transform: translateY(-70%);
}

.skills .skills-container .skills-right .section-title .section-title-text h1 {
  font-size: 60px;
}

.skills .skills-container .skills-right .section-title .section-title-background {
  width: 100%;
  position: relative;
  top: 0;
  left: 0%;
}

.skills .skills-container .skills-right .section-title .section-title-background img {
  width: 100%;
}

.skills .skills-container .skills-right .skills-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.skills .skills-container .skills-right .skills-wrapper .skill {
  width: 100%;
  margin-bottom: 30px;
}

.skills .skills-container .skills-right .skills-wrapper .skill .skill-top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.skills .skills-container .skills-right .skills-wrapper .skill .skill-top p {
  font-family: "American Captain", sans-serif;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom {
  width: 100%;
  height: 5px;
  background: #222;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}

.skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale1 {
  margin-left: -1px;
  width: 90%;
  height: 100%;
  background: #fdc76c;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  animation: skillScale1 3s linear;
  -webkit-animation: skillScale1 3s linear;
}

@-webkit-keyframes skillScale1 {
  from {
    width: 0px;
  }
  to {
    width: 90%;
  }
}

@keyframes skillScale1 {
  from {
    width: 0px;
  }
  to {
    width: 90%;
  }
}

.skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale2 {
  margin-left: -1px;
  width: 79%;
  height: 100%;
  background: #fdc76c;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  animation: skillScale2 3s linear;
  -webkit-animation: skillScale2 3s linear;
}

@-webkit-keyframes skillScale2 {
  from {
    width: 0px;
  }
  to {
    width: 79%;
  }
}

@keyframes skillScale2 {
  from {
    width: 0px;
  }
  to {
    width: 79%;
  }
}

.skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale3 {
  margin-left: -1px;
  width: 93%;
  height: 100%;
  background: #fdc76c;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  animation: skillScale3 3s linear;
  -webkit-animation: skillScale3 3s linear;
}

@-webkit-keyframes skillScale3 {
  from {
    width: 0px;
  }
  to {
    width: 93%;
  }
}

@keyframes skillScale3 {
  from {
    width: 0px;
  }
  to {
    width: 93%;
  }
}

.skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale4 {
  margin-left: -1px;
  width: 84%;
  height: 100%;
  background: #fdc76c;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  animation: skillScale3 4s linear;
  -webkit-animation: skillScale3 4s linear;
}

@-webkit-keyframes skillScale4 {
  from {
    width: 0px;
  }
  to {
    width: 84%;
  }
}

@keyframes skillScale4 {
  from {
    width: 0px;
  }
  to {
    width: 84%;
  }
}

.skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale5 {
  margin-left: -1px;
  width: 98%;
  height: 100%;
  background: #fdc76c;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  animation: skillScale3 5s linear;
  -webkit-animation: skillScale3 5s linear;
}

@keyframes skillScale4 {
  from {
    width: 0px;
  }
  to {
    width: 98%;
  }
}

.skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale6 {
  margin-left: -1px;
  width: 73%;
  height: 100%;
  background: #fdc76c;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  animation: skillScale6 4s linear;
  -webkit-animation: skillScale6 4s linear;
}

@-webkit-keyframes skillScale6 {
  from {
    width: 0px;
  }
  to {
    width: 73%;
  }
}

@keyframes skillScale6 {
  from {
    width: 0px;
  }
  to {
    width: 73%;
  }
}

.skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale7 {
  margin-left: -1px;
  width: 94%;
  height: 100%;
  background: #fdc76c;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  animation: skillScale6 4s linear;
  -webkit-animation: skillScale6 4s linear;
}

@-webkit-keyframes skillScale7 {
  from {
    width: 0px;
  }
  to {
    width: 94%;
  }
}

@keyframes skillScale7 {
  from {
    width: 0px;
  }
  to {
    width: 94%;
  }
}

.skills .skills-container .skills-right .skills-wrapper .skill:last-child {
  margin-bottom: 0px;
}

.ceo {
  width: 100%;
  padding: 150px 0px;
}

.ceo .ceo-container {
  width: 80%;
  height: 100%;
  margin: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ceo .ceo-container .ceo-left {
  width: 100%;
}

.ceo .ceo-container .ceo-left img {
  width: 65%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.ceo .ceo-container .ceo-left .ceo-infos {
  width: 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

.ceo .ceo-container .ceo-left .ceo-infos .section-title {
  width: 100%;
  position: relative;
}

.ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text {
  position: absolute;
  top: 50%;
  left: 20%;
  z-index: 20;
  transform: translateY(-70%);
  -webkit-transform: translateY(-70%);
  -moz-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  -o-transform: translateY(-70%);
}

.ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text h1 {
  font-size: 60px;
}

.ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background {
  width: 100%;
  position: relative;
  top: 0;
  left: 0%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background img {
  width: 95%;
}

.ceo .ceo-container .ceo-left .ceo-infos h3 {
  color: #222;
  font-weight: 400;
  font-family: 'American Captain';
}

.ceo .ceo-container .ceo-left .ceo-infos h3 span {
  color: #fdc76c;
  letter-spacing: 1px;
}

.ceo .ceo-container .ceo-right {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ceo .ceo-container .ceo-right p {
  font-size: 18px;
  color: #555;
}

.ceo .ceo-container .ceo-right p span {
  font-size: 30px;
  color: #fdc76c;
}

.clients {
  width: 100%;
  padding: 150px 0px;
  background: #f5f5f5;
}

.clients .clients-container {
  width: 80%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.clients .clients-container .section-title {
  width: 30%;
  position: relative;
  margin-bottom: 50px;
}

.clients .clients-container .section-title .section-title-text {
  position: absolute;
  top: 50%;
  left: 25%;
  z-index: 20;
  transform: translateY(-70%);
  -webkit-transform: translateY(-70%);
  -moz-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  -o-transform: translateY(-70%);
}

.clients .clients-container .section-title .section-title-text h1 {
  font-size: 60px;
}

.clients .clients-container .section-title .section-title-background {
  width: 100%;
  position: relative;
  top: 0;
  left: 0%;
}

.clients .clients-container .section-title .section-title-background img {
  width: 100%;
}

.clients .clients-container .clients-image {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.clients .clients-container .clients-image img {
  width: 50%;
}

.contact {
  width: 100%;
  padding: 150px 0px;
}

.contact .contact-container {
  width: 80%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact .contact-container .section-title {
  width: 30%;
  position: relative;
  margin-bottom: 100px;
}

.contact .contact-container .section-title .section-title-text {
  position: absolute;
  top: 50%;
  left: 25%;
  z-index: 20;
  transform: translateY(-70%);
  -webkit-transform: translateY(-70%);
  -moz-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  -o-transform: translateY(-70%);
}

.contact .contact-container .section-title .section-title-text h1 {
  font-size: 60px;
}

.contact .contact-container .section-title .section-title-background {
  width: 100%;
  position: relative;
  top: 0;
  left: 0%;
}

.contact .contact-container .section-title .section-title-background img {
  width: 100%;
}

.contact .contact-container .contact-form {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact .contact-container .contact-form .top-input-groups {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-bottom: 50px;
}

.contact .contact-container .contact-form .top-input-groups .input-group {
  width: 100%;
}

.contact .contact-container .contact-form .top-input-groups .input-group input {
  width: 100%;
  height: 60px;
  font-size: 18px;
  background: none;
  color: #555;
  border-bottom: 1px solid #d1d1d1;
}

.contact .contact-container .contact-form .top-input-groups .input-group input:focus {
  border-bottom-color: #fdc76c;
}

.contact .contact-container .contact-form .input-group {
  width: 100%;
}

.contact .contact-container .contact-form .input-group textarea {
  width: 100%;
  height: 60px;
  font-size: 18px;
  background: none;
  color: #555;
  border: none;
  border-bottom: 1px solid #d1d1d1;
  outline: none;
  resize: none;
  font-family: "Poppins", sans-serif;
}

.contact .contact-container .contact-form .input-group textarea:focus {
  border-bottom-color: #fdc76c;
}

.contact .contact-container .contact-form button {
  width: 150px;
  height: 50px;
  margin-top: 30px;
  background: #fdc76c;
  font-family: 'American Captain', sans-serif;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 2px;
  font-size: 30px;
  color: #000;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  cursor: pointer;
}

.contact .contact-container .contact-form button:hover {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
}

footer {
  width: 100%;
  padding: 50px 0px 20px 0px;
  background: #252525;
}

footer .footer-top {
  width: 100%;
  padding-bottom: 50px;
  border-bottom: 1px solid #4f4f4f;
}

footer .footer-top img {
  width: 100px;
}

footer .footer-top .footer-top-container {
  width: 80%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer-top .footer-top-container .footer-items {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
}

footer .footer-top .footer-top-container .footer-items .footer-item {
  width: 100%;
}

footer .footer-top .footer-top-container .footer-items .footer-item h3 {
  color: #c1c1c1;
  font-size: 22px;
  margin-bottom: 20px;
}

footer .footer-top .footer-top-container .footer-items .footer-item .footer-item-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .footer-top .footer-top-container .footer-items .footer-item .footer-item-links a {
  color: #6f6f6f;
  font-size: 17px;
  font-weight: 300;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

footer .footer-top .footer-top-container .footer-items .footer-item .footer-item-links a:hover {
  color: #fdc76c;
}

footer .footer-top .footer-top-container .footer-items .footer-item:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .footer-top .footer-top-container .footer-items .footer-item:nth-child(2) .footer-item-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: auto;
}

footer .footer-top .footer-top-container .footer-items .footer-item:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

footer .footer-top .footer-top-container .footer-items .footer-item:last-child .footer-social-media-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .footer-top .footer-top-container .footer-items .footer-item:last-child .footer-social-media-icons h3 {
  text-align: center;
}

footer .footer-top .footer-top-container .footer-items .footer-item:last-child .footer-social-media-icons .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .footer-top .footer-top-container .footer-items .footer-item:last-child .footer-social-media-icons .icons .icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fdc76c;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-left: 20px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

footer .footer-top .footer-top-container .footer-items .footer-item:last-child .footer-social-media-icons .icons .icon a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 20px;
}

footer .footer-top .footer-top-container .footer-items .footer-item:last-child .footer-social-media-icons .icons .icon:hover {
  opacity: 0.9;
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
}

footer .footer-bottom {
  width: 100%;
  margin-top: 20px;
}

footer .footer-bottom .footer-bottom-container {
  width: 80%;
  margin: auto;
  color: #6f6f6f;
}

@media only screen and (max-width: 1250px) {
  .hero {
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg.jpg");
    background-size: cover;
    padding: 220px 0px;
    opacity: 0;
    animation: fadingBackground 60s linear infinite;
    -webkit-animation: fadingBackground 60s linear infinite;
    position: relative;
    overflow: hidden;
    animation: fadingBackground 25s linear infinite;
    -webkit-animation: fadingBackground 25s linear infinite;
  }
  .hero .social-media-floating-icon {
    position: absolute;
    top: 15%;
    right: -10%;
    width: 60px;
    animation: socialMediaIconFloating 10s ease infinite;
    -webkit-animation: socialMediaIconFloating 10s ease infinite;
    z-index: 1000;
  }
  .hero .social-media-floating-icon:nth-child(2) {
    top: 20%;
    -webkit-animation-delay: 0.205s;
            animation-delay: 0.205s;
  }
  .hero .social-media-floating-icon:nth-child(3) {
    top: 25%;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .hero .social-media-floating-icon:nth-child(4) {
    top: 22%;
    -webkit-animation-delay: 0.20s;
            animation-delay: 0.20s;
  }
  .hero .social-media-floating-icon:nth-child(5) {
    top: 30%;
    -webkit-animation-delay: 0.195s;
            animation-delay: 0.195s;
  }
  .hero .social-media-floating-icon:nth-child(6) {
    top: 35%;
    -webkit-animation-delay: 0.30s;
            animation-delay: 0.30s;
  }
  .hero .social-media-floating-icon:nth-child(7) {
    top: 45%;
    -webkit-animation-delay: 0.50s;
            animation-delay: 0.50s;
  }
  .hero .social-media-floating-icon:nth-child(8) {
    top: 50%;
    -webkit-animation-delay: 0.35s;
            animation-delay: 0.35s;
  }
  .hero .social-media-floating-icon:nth-child(9) {
    top: 49%;
    -webkit-animation-delay: 0.62s;
            animation-delay: 0.62s;
  }
  .hero .social-media-floating-icon:nth-child(10) {
    top: 65%;
    -webkit-animation-delay: 0.40s;
            animation-delay: 0.40s;
  }
  .hero .social-media-floating-icon:nth-child(11) {
    top: 57%;
    -webkit-animation-delay: 0.75s;
            animation-delay: 0.75s;
  }
  .hero .social-media-floating-icon:nth-child(12) {
    top: 62%;
    -webkit-animation-delay: 0.65s;
            animation-delay: 0.65s;
  }
  .hero .social-media-floating-icon:nth-child(13) {
    top: 69%;
    -webkit-animation-delay: 0.120s;
            animation-delay: 0.120s;
  }
  .hero .social-media-floating-icon:nth-child(14) {
    top: 65%;
    -webkit-animation-delay: 0.80s;
            animation-delay: 0.80s;
  }
  .hero .social-media-floating-icon:nth-child(14) {
    top: 50%;
    -webkit-animation-delay: 0.80s;
            animation-delay: 0.80s;
  }
  .hero .social-media-floating-icon:nth-child(15) {
    top: 65%;
    -webkit-animation-delay: 0.60s;
            animation-delay: 0.60s;
  }
  .hero .social-media-floating-icon:nth-child(16) {
    top: 95%;
    -webkit-animation-delay: 0.174s;
            animation-delay: 0.174s;
  }
  .hero .social-media-floating-icon:nth-child(17) {
    top: 7%;
    -webkit-animation-delay: 0.32s;
            animation-delay: 0.32s;
  }
  .hero .social-media-floating-icon:nth-child(17) {
    top: 12%;
    -webkit-animation-delay: 0.132s;
            animation-delay: 0.132s;
  }
  .hero .social-media-floating-icon:nth-child(18) {
    top: 76%;
    -webkit-animation-delay: 0.90s;
            animation-delay: 0.90s;
  }
  .hero .social-media-floating-icon:nth-child(19) {
    top: 23%;
    -webkit-animation-delay: 0.105s;
            animation-delay: 0.105s;
  }
  .hero .social-media-floating-icon:nth-child(19) {
    top: 23%;
    -webkit-animation-delay: 0.63s;
            animation-delay: 0.63s;
  }
  .hero .social-media-floating-icon:nth-child(20) {
    top: 47%;
    -webkit-animation-delay: 0.150s;
            animation-delay: 0.150s;
  }
  .hero .social-media-floating-icon:nth-child(21) {
    top: 54%;
    -webkit-animation-delay: 0.72s;
            animation-delay: 0.72s;
  }
  .hero .social-media-floating-icon:nth-child(22) {
    top: 20%;
    -webkit-animation-delay: 0.230s;
            animation-delay: 0.230s;
  }
  .hero .social-media-floating-icon:nth-child(23) {
    top: 78%;
    -webkit-animation-delay: 0.90s;
            animation-delay: 0.90s;
  }
  .hero .social-media-floating-icon:nth-child(24) {
    top: 60%;
    -webkit-animation-delay: 0.110s;
            animation-delay: 0.110s;
  }
  .hero .social-media-floating-icon:nth-child(25) {
    top: 33%;
    -webkit-animation-delay: 0.260s;
            animation-delay: 0.260s;
  }
  .hero .social-media-floating-icon:nth-child(26) {
    top: 42%;
    -webkit-animation-delay: 0.125s;
            animation-delay: 0.125s;
  }
  .hero .social-media-floating-icon:nth-child(27) {
    top: 12%;
    -webkit-animation-delay: 0.32s;
            animation-delay: 0.32s;
  }
  .hero .social-media-floating-icon:nth-child(28) {
    top: 64%;
    -webkit-animation-delay: 0.85s;
            animation-delay: 0.85s;
  }
  @-webkit-keyframes fadingBackground {
    0% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg.jpg");
      background-size: cover;
      opacity: 1;
    }
    20% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg2.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg2.jpg");
      background-size: cover;
      opacity: 1;
    }
    40% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg3.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg3.jpg");
      background-size: cover;
      opacity: 1;
    }
    60% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg4.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg4.jpg");
      background-size: cover;
      opacity: 1;
    }
    80% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg5.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg5.jpg");
      background-size: cover;
      opacity: 1;
    }
    100% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg6.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg6.jpg");
      background-size: cover;
      opacity: 1;
    }
  }
  @keyframes fadingBackground {
    0% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg.jpg");
      background-size: cover;
      opacity: 1;
    }
    20% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg2.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg2.jpg");
      background-size: cover;
      opacity: 1;
    }
    40% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg3.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg3.jpg");
      background-size: cover;
      opacity: 1;
    }
    60% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg4.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg4.jpg");
      background-size: cover;
      opacity: 1;
    }
    80% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg5.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg5.jpg");
      background-size: cover;
      opacity: 1;
    }
    100% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg6.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg6.jpg");
      background-size: cover;
      opacity: 1;
    }
  }
  .hero .hero-contents {
    width: 80%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
    color: #222;
  }
  .hero .hero-contents .top-title {
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #222;
    letter-spacing: 0px;
    word-spacing: 0px;
    font-style: normal;
  }
  .hero .hero-contents .top-title span {
    font-weight: bold;
    font-style: italic;
  }
  .hero .hero-contents .top-title i {
    margin-left: 10px;
  }
  .hero .hero-contents .main-title-container {
    position: relative;
  }
  .hero .hero-contents .main-title-container .main-title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  .hero .hero-contents .main-title-container .main-title .first-span {
    word-spacing: 50px;
  }
  .hero .hero-contents .main-title-container .main-title .second-span {
    font-size: 80px;
  }
  .hero .hero-contents .main-title-container .main-title .third-span {
    font-size: 95px;
  }
  .hero .hero-contents .main-title-container .main-title .fourth-span {
    font-size: 55px;
  }
  .hero .hero-contents .main-title-container .main-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 200px;
    height: 2px;
    background: #fdc76c;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
  }
  .hero .hero-contents h3 {
    margin-top: 50px;
    color: #222;
    font-weight: 300;
  }
  .hero .hero-contents .hero-form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 100px;
  }
  .hero .hero-contents .hero-form .input-group {
    width: 400px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 20px;
    border: 2px solid #222;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .hero .hero-contents .hero-form .input-group input {
    width: 80%;
    background: none;
    color: #222;
    font-size: 25px;
    padding-left: 20px;
  }
  .hero .hero-contents .hero-form button {
    width: 250px;
    height: 100px;
    background: #fdc76c;
    color: #000;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 5px;
    font-size: 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .hero .hero-contents .hero-form button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
}

@media only screen and (max-width: 1050px) {
  .hero {
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg.jpg");
    background-size: cover;
    padding: 220px 0px;
    opacity: 0;
    animation: fadingBackground 60s linear infinite;
    -webkit-animation: fadingBackground 60s linear infinite;
    position: relative;
    overflow: hidden;
    animation: fadingBackground 25s linear infinite;
    -webkit-animation: fadingBackground 25s linear infinite;
  }
  @-webkit-keyframes fadingBackground {
    0% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg.jpg");
      background-size: cover;
      opacity: 1;
    }
    20% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg2.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg2.jpg");
      background-size: cover;
      opacity: 1;
    }
    40% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg3.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg3.jpg");
      background-size: cover;
      opacity: 1;
    }
    60% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg4.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg4.jpg");
      background-size: cover;
      opacity: 1;
    }
    80% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg5.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg5.jpg");
      background-size: cover;
      opacity: 1;
    }
    100% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg6.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg6.jpg");
      background-size: cover;
      opacity: 1;
    }
  }
  @keyframes fadingBackground {
    0% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg.jpg");
      background-size: cover;
      opacity: 1;
    }
    20% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg2.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg2.jpg");
      background-size: cover;
      opacity: 1;
    }
    40% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg3.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg3.jpg");
      background-size: cover;
      opacity: 1;
    }
    60% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg4.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg4.jpg");
      background-size: cover;
      opacity: 1;
    }
    80% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg5.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg5.jpg");
      background-size: cover;
      opacity: 1;
    }
    100% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg6.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg6.jpg");
      background-size: cover;
      opacity: 1;
    }
  }
  .hero .drone {
    position: absolute;
    top: 20%;
    left: 0%;
    width: 150px;
    animation: drone 60s linear infinite;
    -webkit-animation: drone 60s linear infinite;
    z-index: 100;
    opacity: 0.8;
  }
  .hero .hero-contents {
    width: 80%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
    color: #222;
  }
  .hero .hero-contents .top-title {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #222;
    letter-spacing: 0px;
    word-spacing: 0px;
    font-style: normal;
  }
  .hero .hero-contents .top-title span {
    font-weight: bold;
    font-style: italic;
  }
  .hero .hero-contents .top-title i {
    margin-left: 10px;
  }
  .hero .hero-contents .main-title-container {
    position: relative;
  }
  .hero .hero-contents .main-title-container .main-title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  .hero .hero-contents .main-title-container .main-title .first-span {
    word-spacing: 50px;
  }
  .hero .hero-contents .main-title-container .main-title .second-span {
    font-size: 80px;
  }
  .hero .hero-contents .main-title-container .main-title .third-span {
    font-size: 95px;
  }
  .hero .hero-contents .main-title-container .main-title .fourth-span {
    font-size: 55px;
  }
  .hero .hero-contents .main-title-container .main-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 200px;
    height: 2px;
    background: #fdc76c;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
  }
  .hero .hero-contents h3 {
    margin-top: 50px;
    color: #222;
    font-weight: 300;
  }
  .hero .hero-contents .hero-form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 100px;
  }
  .hero .hero-contents .hero-form .input-group {
    width: 400px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 20px;
    border: 2px solid #222;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .hero .hero-contents .hero-form .input-group input {
    width: 80%;
    background: none;
    color: #222;
    font-size: 25px;
    padding-left: 20px;
  }
  .hero .hero-contents .hero-form button {
    width: 250px;
    height: 100px;
    background: #fdc76c;
    color: #000;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 5px;
    font-size: 25px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .hero .hero-contents .hero-form button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
}

@media only screen and (max-width: 1000px) {
  .hero {
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg.jpg");
    background-size: cover;
    padding: 220px 0px;
    opacity: 0;
    animation: fadingBackground 60s linear infinite;
    -webkit-animation: fadingBackground 60s linear infinite;
    position: relative;
    overflow: hidden;
    animation: fadingBackground 25s linear infinite;
    -webkit-animation: fadingBackground 25s linear infinite;
  }
  @-webkit-keyframes fadingBackground {
    0% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg.jpg");
      background-size: cover;
      opacity: 1;
    }
    20% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg2.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg2.jpg");
      background-size: cover;
      opacity: 1;
    }
    40% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg3.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg3.jpg");
      background-size: cover;
      opacity: 1;
    }
    60% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg4.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg4.jpg");
      background-size: cover;
      opacity: 1;
    }
    80% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg5.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg5.jpg");
      background-size: cover;
      opacity: 1;
    }
    100% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg6.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg6.jpg");
      background-size: cover;
      opacity: 1;
    }
  }
  @keyframes fadingBackground {
    0% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg.jpg");
      background-size: cover;
      opacity: 1;
    }
    20% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg2.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg2.jpg");
      background-size: cover;
      opacity: 1;
    }
    40% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg3.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg3.jpg");
      background-size: cover;
      opacity: 1;
    }
    60% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg4.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg4.jpg");
      background-size: cover;
      opacity: 1;
    }
    80% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg5.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg5.jpg");
      background-size: cover;
      opacity: 1;
    }
    100% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg6.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg6.jpg");
      background-size: cover;
      opacity: 1;
    }
  }
  .hero .hero-contents {
    width: 80%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
    color: #222;
  }
  .hero .hero-contents .top-title {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #222;
    letter-spacing: 0px;
    word-spacing: 0px;
    font-style: normal;
  }
  .hero .hero-contents .top-title span {
    font-weight: bold;
    font-style: italic;
  }
  .hero .hero-contents .top-title i {
    margin-left: 10px;
  }
  .hero .hero-contents .main-title-container {
    position: relative;
  }
  .hero .hero-contents .main-title-container .main-title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  .hero .hero-contents .main-title-container .main-title .first-span {
    word-spacing: 50px;
  }
  .hero .hero-contents .main-title-container .main-title .second-span {
    font-size: 80px;
  }
  .hero .hero-contents .main-title-container .main-title .third-span {
    font-size: 95px;
  }
  .hero .hero-contents .main-title-container .main-title .fourth-span {
    font-size: 55px;
  }
  .hero .hero-contents .main-title-container .main-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 200px;
    height: 2px;
    background: #fdc76c;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
  }
  .hero .hero-contents h3 {
    margin-top: 50px;
    color: #222;
    font-weight: 300;
  }
  .hero .hero-contents .hero-form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 100px;
  }
  .hero .hero-contents .hero-form .input-group {
    width: 400px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 20px;
    border: 2px solid #222;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .hero .hero-contents .hero-form .input-group input {
    width: 80%;
    background: none;
    color: #222;
    font-size: 25px;
    padding-left: 20px;
  }
  .hero .hero-contents .hero-form button {
    width: 250px;
    height: 100px;
    background: #fdc76c;
    color: #000;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 5px;
    font-size: 20px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .hero .hero-contents .hero-form button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
}

@media only screen and (max-width: 800px) {
  .hero {
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg.jpg");
    background-size: cover;
    background-position: right;
    padding: 220px 0px;
    opacity: 0;
    animation: fadingBackground 60s linear infinite;
    -webkit-animation: fadingBackground 60s linear infinite;
    position: relative;
    overflow: hidden;
    animation: fadingBackground 25s linear infinite;
    -webkit-animation: fadingBackground 25s linear infinite;
  }
  .hero .social-media-floating-icon {
    position: absolute;
    top: 15%;
    right: -10%;
    width: 50px;
    animation: socialMediaIconFloating 10s ease infinite;
    -webkit-animation: socialMediaIconFloating 10s ease infinite;
    z-index: 1000;
  }
  .hero .social-media-floating-icon:nth-child(2) {
    top: 20%;
    -webkit-animation-delay: 0.205s;
            animation-delay: 0.205s;
  }
  .hero .social-media-floating-icon:nth-child(3) {
    top: 25%;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .hero .social-media-floating-icon:nth-child(4) {
    top: 22%;
    -webkit-animation-delay: 0.20s;
            animation-delay: 0.20s;
  }
  .hero .social-media-floating-icon:nth-child(5) {
    top: 30%;
    -webkit-animation-delay: 0.195s;
            animation-delay: 0.195s;
  }
  .hero .social-media-floating-icon:nth-child(6) {
    top: 35%;
    -webkit-animation-delay: 0.30s;
            animation-delay: 0.30s;
  }
  .hero .social-media-floating-icon:nth-child(7) {
    top: 45%;
    -webkit-animation-delay: 0.50s;
            animation-delay: 0.50s;
  }
  .hero .social-media-floating-icon:nth-child(8) {
    top: 50%;
    -webkit-animation-delay: 0.35s;
            animation-delay: 0.35s;
  }
  .hero .social-media-floating-icon:nth-child(9) {
    top: 49%;
    -webkit-animation-delay: 0.62s;
            animation-delay: 0.62s;
  }
  .hero .social-media-floating-icon:nth-child(10) {
    top: 65%;
    -webkit-animation-delay: 0.40s;
            animation-delay: 0.40s;
  }
  .hero .social-media-floating-icon:nth-child(11) {
    top: 57%;
    -webkit-animation-delay: 0.75s;
            animation-delay: 0.75s;
  }
  .hero .social-media-floating-icon:nth-child(12) {
    top: 62%;
    -webkit-animation-delay: 0.65s;
            animation-delay: 0.65s;
  }
  .hero .social-media-floating-icon:nth-child(13) {
    top: 69%;
    -webkit-animation-delay: 0.120s;
            animation-delay: 0.120s;
  }
  .hero .social-media-floating-icon:nth-child(14) {
    top: 65%;
    -webkit-animation-delay: 0.80s;
            animation-delay: 0.80s;
  }
  .hero .social-media-floating-icon:nth-child(14) {
    top: 50%;
    -webkit-animation-delay: 0.80s;
            animation-delay: 0.80s;
  }
  .hero .social-media-floating-icon:nth-child(15) {
    top: 65%;
    -webkit-animation-delay: 0.60s;
            animation-delay: 0.60s;
  }
  .hero .social-media-floating-icon:nth-child(16) {
    top: 95%;
    -webkit-animation-delay: 0.174s;
            animation-delay: 0.174s;
  }
  .hero .social-media-floating-icon:nth-child(17) {
    top: 7%;
    -webkit-animation-delay: 0.32s;
            animation-delay: 0.32s;
  }
  .hero .social-media-floating-icon:nth-child(17) {
    top: 12%;
    -webkit-animation-delay: 0.132s;
            animation-delay: 0.132s;
  }
  .hero .social-media-floating-icon:nth-child(18) {
    top: 76%;
    -webkit-animation-delay: 0.90s;
            animation-delay: 0.90s;
  }
  .hero .social-media-floating-icon:nth-child(19) {
    top: 23%;
    -webkit-animation-delay: 0.105s;
            animation-delay: 0.105s;
  }
  .hero .social-media-floating-icon:nth-child(19) {
    top: 23%;
    -webkit-animation-delay: 0.63s;
            animation-delay: 0.63s;
  }
  .hero .social-media-floating-icon:nth-child(20) {
    top: 47%;
    -webkit-animation-delay: 0.150s;
            animation-delay: 0.150s;
  }
  .hero .social-media-floating-icon:nth-child(21) {
    top: 54%;
    -webkit-animation-delay: 0.72s;
            animation-delay: 0.72s;
  }
  .hero .social-media-floating-icon:nth-child(22) {
    top: 20%;
    -webkit-animation-delay: 0.230s;
            animation-delay: 0.230s;
  }
  .hero .social-media-floating-icon:nth-child(23) {
    top: 78%;
    -webkit-animation-delay: 0.90s;
            animation-delay: 0.90s;
  }
  .hero .social-media-floating-icon:nth-child(24) {
    top: 60%;
    -webkit-animation-delay: 0.110s;
            animation-delay: 0.110s;
  }
  .hero .social-media-floating-icon:nth-child(25) {
    top: 33%;
    -webkit-animation-delay: 0.260s;
            animation-delay: 0.260s;
  }
  .hero .social-media-floating-icon:nth-child(26) {
    top: 42%;
    -webkit-animation-delay: 0.125s;
            animation-delay: 0.125s;
  }
  .hero .social-media-floating-icon:nth-child(27) {
    top: 12%;
    -webkit-animation-delay: 0.32s;
            animation-delay: 0.32s;
  }
  .hero .social-media-floating-icon:nth-child(28) {
    top: 64%;
    -webkit-animation-delay: 0.85s;
            animation-delay: 0.85s;
  }
  @-webkit-keyframes fadingBackground {
    0% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    20% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg2.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg2.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    40% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg3.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg3.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    60% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg4.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg4.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    80% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg5.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg5.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    100% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg6.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg6.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
  }
  @keyframes fadingBackground {
    0% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    20% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg2.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg2.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    40% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg3.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg3.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    60% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg4.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg4.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    80% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg5.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg5.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    100% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg6.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg6.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
  }
  .hero .drone {
    position: absolute;
    top: 20%;
    left: 0%;
    width: 120px;
    animation: drone 60s linear infinite;
    -webkit-animation: drone 60s linear infinite;
    z-index: 100;
    opacity: 0.8;
  }
  @-webkit-keyframes drone {
    0% {
      top: 15%;
      left: 0%;
    }
    50% {
      top: 20%;
      left: 50%;
    }
    65% {
      top: 40%;
      left: 30%;
    }
    75% {
      top: 30%;
      left: 10%;
    }
    100% {
      top: 15%;
      left: 0%;
    }
  }
  @keyframes drone {
    0% {
      top: 15%;
      left: 0%;
    }
    50% {
      top: 20%;
      left: 50%;
    }
    65% {
      top: 40%;
      left: 30%;
    }
    75% {
      top: 30%;
      left: 10%;
    }
    100% {
      top: 15%;
      left: 0%;
    }
  }
  .hero .hero-contents {
    width: 80%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
    color: #222;
  }
  .hero .hero-contents .top-title {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #222;
    letter-spacing: 0px;
    word-spacing: 0px;
    font-style: normal;
  }
  .hero .hero-contents .top-title span {
    font-weight: bold;
    font-style: italic;
  }
  .hero .hero-contents .top-title i {
    margin-left: 10px;
  }
  .hero .hero-contents .main-title-container {
    position: relative;
  }
  .hero .hero-contents .main-title-container .main-title {
    font-size: 50px;
    margin-bottom: 20px;
  }
  .hero .hero-contents .main-title-container .main-title .first-span {
    word-spacing: 50px;
  }
  .hero .hero-contents .main-title-container .main-title .second-span {
    font-size: 80px;
  }
  .hero .hero-contents .main-title-container .main-title .third-span {
    font-size: 95px;
  }
  .hero .hero-contents .main-title-container .main-title .fourth-span {
    font-size: 55px;
  }
  .hero .hero-contents .main-title-container .main-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 200px;
    height: 2px;
    background: #fdc76c;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
  }
  .hero .hero-contents h3 {
    margin-top: 50px;
    color: #222;
    font-weight: 300;
  }
  .hero .hero-contents .hero-form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 100px;
  }
  .hero .hero-contents .hero-form .input-group {
    width: 400px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 0px;
    margin-bottom: 20px;
    border: 2px solid #222;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .hero .hero-contents .hero-form .input-group input {
    width: 80%;
    background: none;
    color: #222;
    font-size: 25px;
    padding-left: 20px;
  }
  .hero .hero-contents .hero-form button {
    width: 250px;
    height: 100px;
    background: #fdc76c;
    color: #000;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 5px;
    margin-top: 10px;
    font-size: 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .hero .hero-contents .hero-form button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
}

@media only screen and (max-width: 678px) {
  .hero {
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg.jpg");
    background-size: cover;
    background-position: right;
    padding: 170px 0px 100px 0px;
    opacity: 0;
    animation: fadingBackground 60s linear infinite;
    -webkit-animation: fadingBackground 60s linear infinite;
    position: relative;
    overflow: hidden;
    animation: fadingBackground 25s linear infinite;
    -webkit-animation: fadingBackground 25s linear infinite;
  }
  @-webkit-keyframes fadingBackground {
    0% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    20% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg2.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg2.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    40% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg3.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg3.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    60% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg4.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg4.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    80% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg5.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg5.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    100% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg6.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg6.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
  }
  @keyframes fadingBackground {
    0% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    20% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg2.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg2.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    40% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg3.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg3.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    60% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg4.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg4.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    80% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg5.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg5.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    100% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg6.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg6.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
  }
  .hero .hero-contents {
    width: 80%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
    color: #222;
  }
  .hero .hero-contents .top-title {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #222;
    letter-spacing: 0px;
    word-spacing: 0px;
    font-style: normal;
  }
  .hero .hero-contents .top-title span {
    font-weight: bold;
    font-style: italic;
  }
  .hero .hero-contents .top-title i {
    margin-left: 10px;
  }
  .hero .hero-contents .main-title-container {
    position: relative;
  }
  .hero .hero-contents .main-title-container .main-title {
    font-size: 50px;
    margin-bottom: 20px;
    text-align: center;
  }
  .hero .hero-contents .main-title-container .main-title .first-span {
    word-spacing: 50px;
  }
  .hero .hero-contents .main-title-container .main-title .second-span {
    font-size: 80px;
  }
  .hero .hero-contents .main-title-container .main-title .third-span {
    font-size: 95px;
  }
  .hero .hero-contents .main-title-container .main-title .fourth-span {
    font-size: 55px;
  }
  .hero .hero-contents .main-title-container .main-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 200px;
    height: 2px;
    background: #fdc76c;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .hero .hero-contents h3 {
    margin-top: 50px;
    color: #222;
    font-weight: 300;
    text-align: center;
  }
  .hero .hero-contents .hero-form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 100px;
  }
  .hero .hero-contents .hero-form .input-group {
    width: 400px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 0px;
    margin-bottom: 20px;
    border: 2px solid #222;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .hero .hero-contents .hero-form .input-group input {
    width: 80%;
    background: none;
    color: #222;
    font-size: 25px;
    padding-left: 20px;
  }
  .hero .hero-contents .hero-form button {
    width: 250px;
    height: 100px;
    background: #fdc76c;
    color: #000;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 5px;
    margin-top: 10px;
    font-size: 25px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .hero .hero-contents .hero-form button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
}

@media only screen and (max-width: 620px) {
  .hero {
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg.jpg");
    background-size: cover;
    background-position: right;
    padding: 170px 0px 100px 0px;
    opacity: 0;
    animation: fadingBackground 60s linear infinite;
    -webkit-animation: fadingBackground 60s linear infinite;
    position: relative;
    overflow: hidden;
    animation: fadingBackground 25s linear infinite;
    -webkit-animation: fadingBackground 25s linear infinite;
  }
  @-webkit-keyframes fadingBackground {
    0% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    20% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg2.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg2.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    40% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg3.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg3.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    60% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg4.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg4.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    80% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg5.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg5.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    100% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg6.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg6.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
  }
  @keyframes fadingBackground {
    0% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    20% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg2.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg2.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    40% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg3.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg3.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    60% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg4.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg4.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    80% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg5.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg5.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    100% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg6.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg6.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
  }
  .hero .hero-contents {
    width: 80%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
    color: #222;
  }
  .hero .hero-contents .top-title {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #222;
    letter-spacing: 0px;
    word-spacing: 0px;
    font-style: normal;
  }
  .hero .hero-contents .top-title span {
    font-weight: bold;
    font-style: italic;
  }
  .hero .hero-contents .top-title i {
    margin-left: 10px;
  }
  .hero .hero-contents .main-title-container {
    position: relative;
  }
  .hero .hero-contents .main-title-container .main-title {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
  }
  .hero .hero-contents .main-title-container .main-title .first-span {
    word-spacing: 10px;
  }
  .hero .hero-contents .main-title-container .main-title .second-span {
    font-size: 70px;
  }
  .hero .hero-contents .main-title-container .main-title .third-span {
    font-size: 85px;
  }
  .hero .hero-contents .main-title-container .main-title .fourth-span {
    font-size: 55px;
  }
  .hero .hero-contents .main-title-container .main-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 200px;
    height: 2px;
    background: #fdc76c;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .hero .hero-contents h3 {
    margin-top: 50px;
    color: #222;
    font-weight: 300;
    text-align: center;
  }
  .hero .hero-contents .hero-form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 100px;
  }
  .hero .hero-contents .hero-form .input-group {
    width: 400px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 0px;
    margin-bottom: 20px;
    border: 2px solid #222;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .hero .hero-contents .hero-form .input-group input {
    width: 80%;
    background: none;
    color: #222;
    font-size: 25px;
    padding-left: 20px;
  }
  .hero .hero-contents .hero-form button {
    width: 250px;
    height: 100px;
    background: #fdc76c;
    color: #000;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 5px;
    margin-top: 10px;
    font-size: 25px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .hero .hero-contents .hero-form button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
}

@media only screen and (max-width: 500px) {
  .hero {
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg.jpg");
    background-size: cover;
    background-position: right;
    padding: 170px 0px 100px 0px;
    opacity: 0;
    animation: fadingBackground 60s linear infinite;
    -webkit-animation: fadingBackground 60s linear infinite;
    position: relative;
    overflow: hidden;
    animation: fadingBackground 25s linear infinite;
    -webkit-animation: fadingBackground 25s linear infinite;
  }
  @-webkit-keyframes fadingBackground {
    0% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    20% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg2.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg2.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    40% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg3.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg3.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    60% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg4.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg4.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    80% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg5.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg5.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    100% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg6.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg6.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
  }
  @keyframes fadingBackground {
    0% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    20% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg2.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg2.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    40% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg3.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg3.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    60% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg4.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg4.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    80% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg5.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg5.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    100% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg6.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg6.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
  }
  .hero .hero-contents {
    width: 80%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
    color: #222;
  }
  .hero .hero-contents .top-title {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #222;
    letter-spacing: 0px;
    word-spacing: 0px;
    font-style: normal;
  }
  .hero .hero-contents .top-title span {
    font-weight: bold;
    font-style: italic;
  }
  .hero .hero-contents .top-title i {
    margin-left: 10px;
  }
  .hero .hero-contents .main-title-container {
    position: relative;
  }
  .hero .hero-contents .main-title-container .main-title {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
  }
  .hero .hero-contents .main-title-container .main-title .first-span {
    word-spacing: 10px;
  }
  .hero .hero-contents .main-title-container .main-title .second-span {
    font-size: 50px;
  }
  .hero .hero-contents .main-title-container .main-title .third-span {
    font-size: 65px;
  }
  .hero .hero-contents .main-title-container .main-title .fourth-span {
    font-size: 40px;
  }
  .hero .hero-contents .main-title-container .main-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 200px;
    height: 2px;
    background: #fdc76c;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .hero .hero-contents h3 {
    margin-top: 50px;
    color: #222;
    font-weight: 300;
    text-align: center;
  }
  .hero .hero-contents .hero-form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 100px;
  }
  .hero .hero-contents .hero-form .input-group {
    width: 350px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 0px;
    margin-bottom: 20px;
    border: 2px solid #222;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .hero .hero-contents .hero-form .input-group input {
    width: 80%;
    background: none;
    color: #222;
    font-size: 25px;
    padding-left: 20px;
  }
  .hero .hero-contents .hero-form button {
    width: 250px;
    height: 80px;
    background: #fdc76c;
    color: #000;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 5px;
    margin-top: 10px;
    font-size: 25px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .hero .hero-contents .hero-form button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
}

@media only screen and (max-width: 450px) {
  .hero {
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg.jpg");
    background-size: cover;
    background-position: right;
    padding: 170px 0px 100px 0px;
    opacity: 0;
    animation: fadingBackground 60s linear infinite;
    -webkit-animation: fadingBackground 60s linear infinite;
    position: relative;
    overflow: hidden;
    animation: fadingBackground 25s linear infinite;
    -webkit-animation: fadingBackground 25s linear infinite;
  }
  .hero .social-media-floating-icon {
    position: absolute;
    top: 15%;
    right: -10%;
    width: 35px;
    animation: socialMediaIconFloating 10s ease infinite;
    -webkit-animation: socialMediaIconFloating 10s ease infinite;
    z-index: 1000;
  }
  .hero .social-media-floating-icon:nth-child(2) {
    top: 20%;
    -webkit-animation-delay: 0.205s;
            animation-delay: 0.205s;
  }
  .hero .social-media-floating-icon:nth-child(3) {
    top: 25%;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  .hero .social-media-floating-icon:nth-child(4) {
    top: 22%;
    -webkit-animation-delay: 0.20s;
            animation-delay: 0.20s;
  }
  .hero .social-media-floating-icon:nth-child(5) {
    top: 30%;
    -webkit-animation-delay: 0.195s;
            animation-delay: 0.195s;
  }
  .hero .social-media-floating-icon:nth-child(6) {
    top: 35%;
    -webkit-animation-delay: 0.30s;
            animation-delay: 0.30s;
  }
  .hero .social-media-floating-icon:nth-child(7) {
    top: 45%;
    -webkit-animation-delay: 0.50s;
            animation-delay: 0.50s;
  }
  .hero .social-media-floating-icon:nth-child(8) {
    top: 50%;
    -webkit-animation-delay: 0.35s;
            animation-delay: 0.35s;
  }
  .hero .social-media-floating-icon:nth-child(9) {
    top: 49%;
    -webkit-animation-delay: 0.62s;
            animation-delay: 0.62s;
  }
  .hero .social-media-floating-icon:nth-child(10) {
    top: 65%;
    -webkit-animation-delay: 0.40s;
            animation-delay: 0.40s;
  }
  .hero .social-media-floating-icon:nth-child(11) {
    top: 57%;
    -webkit-animation-delay: 0.75s;
            animation-delay: 0.75s;
  }
  .hero .social-media-floating-icon:nth-child(12) {
    top: 62%;
    -webkit-animation-delay: 0.65s;
            animation-delay: 0.65s;
  }
  .hero .social-media-floating-icon:nth-child(13) {
    top: 69%;
    -webkit-animation-delay: 0.120s;
            animation-delay: 0.120s;
  }
  .hero .social-media-floating-icon:nth-child(14) {
    top: 65%;
    -webkit-animation-delay: 0.80s;
            animation-delay: 0.80s;
  }
  .hero .social-media-floating-icon:nth-child(14) {
    top: 50%;
    -webkit-animation-delay: 0.80s;
            animation-delay: 0.80s;
  }
  .hero .social-media-floating-icon:nth-child(15) {
    top: 65%;
    -webkit-animation-delay: 0.60s;
            animation-delay: 0.60s;
  }
  .hero .social-media-floating-icon:nth-child(16) {
    top: 95%;
    -webkit-animation-delay: 0.174s;
            animation-delay: 0.174s;
  }
  .hero .social-media-floating-icon:nth-child(17) {
    top: 7%;
    -webkit-animation-delay: 0.32s;
            animation-delay: 0.32s;
  }
  .hero .social-media-floating-icon:nth-child(17) {
    top: 12%;
    -webkit-animation-delay: 0.132s;
            animation-delay: 0.132s;
  }
  .hero .social-media-floating-icon:nth-child(18) {
    top: 76%;
    -webkit-animation-delay: 0.90s;
            animation-delay: 0.90s;
  }
  .hero .social-media-floating-icon:nth-child(19) {
    top: 23%;
    -webkit-animation-delay: 0.105s;
            animation-delay: 0.105s;
  }
  .hero .social-media-floating-icon:nth-child(19) {
    top: 23%;
    -webkit-animation-delay: 0.63s;
            animation-delay: 0.63s;
  }
  .hero .social-media-floating-icon:nth-child(20) {
    top: 47%;
    -webkit-animation-delay: 0.150s;
            animation-delay: 0.150s;
  }
  .hero .social-media-floating-icon:nth-child(21) {
    top: 54%;
    -webkit-animation-delay: 0.72s;
            animation-delay: 0.72s;
  }
  .hero .social-media-floating-icon:nth-child(22) {
    top: 20%;
    -webkit-animation-delay: 0.230s;
            animation-delay: 0.230s;
  }
  .hero .social-media-floating-icon:nth-child(23) {
    top: 78%;
    -webkit-animation-delay: 0.90s;
            animation-delay: 0.90s;
  }
  .hero .social-media-floating-icon:nth-child(24) {
    top: 60%;
    -webkit-animation-delay: 0.110s;
            animation-delay: 0.110s;
  }
  .hero .social-media-floating-icon:nth-child(25) {
    top: 33%;
    -webkit-animation-delay: 0.260s;
            animation-delay: 0.260s;
  }
  .hero .social-media-floating-icon:nth-child(26) {
    top: 42%;
    -webkit-animation-delay: 0.125s;
            animation-delay: 0.125s;
  }
  .hero .social-media-floating-icon:nth-child(27) {
    top: 12%;
    -webkit-animation-delay: 0.32s;
            animation-delay: 0.32s;
  }
  .hero .social-media-floating-icon:nth-child(28) {
    top: 64%;
    -webkit-animation-delay: 0.85s;
            animation-delay: 0.85s;
  }
  @-webkit-keyframes fadingBackground {
    0% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    20% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg2.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg2.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    40% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg3.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg3.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    60% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg4.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg4.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    80% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg5.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg5.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    100% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg6.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg6.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
  }
  @keyframes fadingBackground {
    0% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    20% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg2.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg2.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    40% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg3.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg3.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    60% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg4.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg4.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    80% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg5.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg5.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    100% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg6.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg6.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
  }
  .hero .hero-contents {
    width: 80%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
    color: #222;
  }
  .hero .hero-contents .top-title {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #222;
    letter-spacing: 0px;
    word-spacing: 0px;
    font-style: normal;
  }
  .hero .hero-contents .top-title span {
    font-weight: bold;
    font-style: italic;
  }
  .hero .hero-contents .top-title i {
    margin-left: 10px;
  }
  .hero .hero-contents .main-title-container {
    position: relative;
  }
  .hero .hero-contents .main-title-container .main-title {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
  }
  .hero .hero-contents .main-title-container .main-title .first-span {
    word-spacing: 10px;
  }
  .hero .hero-contents .main-title-container .main-title .second-span {
    font-size: 50px;
  }
  .hero .hero-contents .main-title-container .main-title .third-span {
    font-size: 65px;
  }
  .hero .hero-contents .main-title-container .main-title .fourth-span {
    font-size: 40px;
  }
  .hero .hero-contents .main-title-container .main-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 200px;
    height: 2px;
    background: #fdc76c;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .hero .hero-contents h3 {
    margin-top: 50px;
    color: #222;
    font-weight: 300;
    text-align: center;
  }
  .hero .hero-contents .hero-form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 100px;
  }
  .hero .hero-contents .hero-form .input-group {
    width: 350px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 0px;
    margin-bottom: 20px;
    border: 2px solid #222;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .hero .hero-contents .hero-form .input-group input {
    width: 80%;
    background: none;
    color: #222;
    font-size: 25px;
    padding-left: 20px;
  }
  .hero .hero-contents .hero-form button {
    width: 250px;
    height: 80px;
    background: #fdc76c;
    color: #000;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 5px;
    margin-top: 10px;
    font-size: 25px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .hero .hero-contents .hero-form button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
}

@media only screen and (max-width: 420px) {
  .hero {
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg.jpg");
    background-size: cover;
    background-position: right;
    padding: 170px 0px 100px 0px;
    opacity: 0;
    animation: fadingBackground 60s linear infinite;
    -webkit-animation: fadingBackground 60s linear infinite;
    position: relative;
    overflow: hidden;
    animation: fadingBackground 25s linear infinite;
    -webkit-animation: fadingBackground 25s linear infinite;
  }
  @-webkit-keyframes fadingBackground {
    0% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    20% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg2.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg2.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    40% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg3.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg3.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    60% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg4.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg4.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    80% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg5.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg5.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    100% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg6.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg6.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
  }
  @keyframes fadingBackground {
    0% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    20% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg2.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg2.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    40% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg3.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg3.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    60% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg4.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg4.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    80% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg5.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg5.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    100% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg6.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg6.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
  }
  .hero .hero-contents {
    width: 80%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
    color: #222;
  }
  .hero .hero-contents .top-title {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #222;
    letter-spacing: 0px;
    word-spacing: 0px;
    font-style: normal;
  }
  .hero .hero-contents .top-title span {
    font-weight: bold;
    font-style: italic;
  }
  .hero .hero-contents .top-title i {
    margin-left: 10px;
  }
  .hero .hero-contents .main-title-container {
    position: relative;
  }
  .hero .hero-contents .main-title-container .main-title {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
  }
  .hero .hero-contents .main-title-container .main-title .first-span {
    word-spacing: 10px;
  }
  .hero .hero-contents .main-title-container .main-title .second-span {
    font-size: 45px;
  }
  .hero .hero-contents .main-title-container .main-title .third-span {
    font-size: 55px;
  }
  .hero .hero-contents .main-title-container .main-title .fourth-span {
    font-size: 35px;
  }
  .hero .hero-contents .main-title-container .main-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 200px;
    height: 2px;
    background: #fdc76c;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .hero .hero-contents h3 {
    margin-top: 50px;
    color: #222;
    font-weight: 300;
    text-align: center;
  }
  .hero .hero-contents .hero-form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 100px;
  }
  .hero .hero-contents .hero-form .input-group {
    width: 300px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 0px;
    margin-bottom: 20px;
    border: 2px solid #222;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .hero .hero-contents .hero-form .input-group input {
    width: 80%;
    background: none;
    color: #222;
    font-size: 25px;
    padding-left: 20px;
  }
  .hero .hero-contents .hero-form button {
    width: 220px;
    height: 80px;
    background: #fdc76c;
    color: #000;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 5px;
    margin-top: 10px;
    font-size: 25px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .hero .hero-contents .hero-form button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
}

@media only screen and (max-width: 350px) {
  .hero {
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.4))), url("../images/Hero Bg.jpg");
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/Hero Bg.jpg");
    background-size: cover;
    background-position: right;
    padding: 170px 0px 100px 0px;
    opacity: 0;
    animation: fadingBackground 60s linear infinite;
    -webkit-animation: fadingBackground 60s linear infinite;
    position: relative;
    overflow: hidden;
    animation: fadingBackground 25s linear infinite;
    -webkit-animation: fadingBackground 25s linear infinite;
  }
  @-webkit-keyframes fadingBackground {
    0% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    20% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg2.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg2.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    40% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg3.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg3.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    60% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg4.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg4.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    80% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg5.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg5.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    100% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg6.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg6.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
  }
  @keyframes fadingBackground {
    0% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    20% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg2.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg2.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    40% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg3.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg3.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    60% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg4.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg4.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    80% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg5.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg5.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
    100% {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.8))), url("../images/Hero Bg6.jpg");
      background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url("../images/Hero Bg6.jpg");
      background-size: cover;
      background-position: center;
      opacity: 1;
    }
  }
  .hero .hero-contents {
    width: 80%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
    color: #222;
  }
  .hero .hero-contents .top-title {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #222;
    letter-spacing: 0px;
    word-spacing: 0px;
    font-style: normal;
  }
  .hero .hero-contents .top-title span {
    font-weight: bold;
    font-style: italic;
  }
  .hero .hero-contents .top-title i {
    margin-left: 10px;
  }
  .hero .hero-contents .main-title-container {
    position: relative;
  }
  .hero .hero-contents .main-title-container .main-title {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
  }
  .hero .hero-contents .main-title-container .main-title .first-span {
    word-spacing: 10px;
  }
  .hero .hero-contents .main-title-container .main-title .second-span {
    font-size: 40px;
  }
  .hero .hero-contents .main-title-container .main-title .third-span {
    font-size: 45px;
  }
  .hero .hero-contents .main-title-container .main-title .fourth-span {
    font-size: 30px;
  }
  .hero .hero-contents .main-title-container .main-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 200px;
    height: 2px;
    background: #fdc76c;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .hero .hero-contents h3 {
    margin-top: 50px;
    color: #222;
    font-weight: 300;
    text-align: center;
  }
  .hero .hero-contents .hero-form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 100px;
  }
  .hero .hero-contents .hero-form .input-group {
    width: 250px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 0px;
    margin-bottom: 20px;
    border: 2px solid #222;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
  .hero .hero-contents .hero-form .input-group input {
    width: 80%;
    background: none;
    color: #222;
    font-size: 25px;
    padding-left: 20px;
  }
  .hero .hero-contents .hero-form button {
    width: 200px;
    height: 60px;
    background: #fdc76c;
    color: #000;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 5px;
    margin-top: 10px;
    font-size: 25px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .hero .hero-contents .hero-form button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
}

@media only screen and (max-width: 1100px) {
  .lets-grow-info-overlay h2 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 900px) {
  .lets-grow-info-overlay-container {
    width: 100% !important;
  }
}

@media only screen and (max-width: 600px) {
  .close-lets-grow-info-overlay-button {
    top: 5% !important;
  }
  .form-container {
    width: 70% !important;
  }
}

@media only screen and (max-width: 500px) {
  .form-container {
    width: 80% !important;
  }
}

@media only screen and (max-width: 480px) {
  .close-lets-grow-info-overlay-button {
    left: 80% !important;
  }
  .lets-grow-info-overlay input[type="text"], .lets-grow-info-overlay input[type="email"], .lets-grow-info-overlay input[type="number"] {
    width: 100%;
    height: 50px;
    margin-bottom: 20px !important;
    background: none;
    color: #fff;
    font-size: 17px !important;
    border-bottom: 1px solid #fff;
  }
  .lets-grow-info-overlay input[type="text"]::-webkit-input-placeholder, .lets-grow-info-overlay input[type="email"]::-webkit-input-placeholder, .lets-grow-info-overlay input[type="number"]::-webkit-input-placeholder {
    color: #fff;
  }
  .lets-grow-info-overlay input[type="text"]:-ms-input-placeholder, .lets-grow-info-overlay input[type="email"]:-ms-input-placeholder, .lets-grow-info-overlay input[type="number"]:-ms-input-placeholder {
    color: #fff;
  }
  .lets-grow-info-overlay input[type="text"]::-ms-input-placeholder, .lets-grow-info-overlay input[type="email"]::-ms-input-placeholder, .lets-grow-info-overlay input[type="number"]::-ms-input-placeholder {
    color: #fff;
  }
  .lets-grow-info-overlay input[type="text"]::placeholder, .lets-grow-info-overlay input[type="email"]::placeholder, .lets-grow-info-overlay input[type="number"]::placeholder {
    color: #fff;
  }
  .lets-grow-info-overlay input[type="text"]:focus, .lets-grow-info-overlay input[type="email"]:focus, .lets-grow-info-overlay input[type="number"]:focus {
    border-bottom-color: #fdc76c;
  }
  h2 {
    margin-top: 20px !important;
    font-size: 17px !important;
  }
  .lets-grow-info-overlay p {
    font-size: 14px !important;
  }
  .lets-grow-info-overlay .info-overlay-submit-button {
    width: 120px !important;
    height: 30px !important;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 18px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .lets-grow-info-overlay .info-overlay-submit-button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
}

@media only screen and (max-width: 400px) {
  .close-lets-grow-info-overlay-button {
    left: 80% !important;
  }
  .lets-grow-info-overlay h2 {
    font-size: 16px !important;
  }
}

@media only screen and (max-width: 350px) {
  .close-lets-grow-info-overlay-button {
    left: 80% !important;
    font-size: 20px !important;
  }
  .lets-grow-info-overlay input[type="text"], .lets-grow-info-overlay input[type="email"], .lets-grow-info-overlay input[type="number"] {
    width: 100%;
    height: 50px;
    margin-bottom: 10px !important;
    background: none;
    color: #fff;
    font-size: 15px !important;
    border-bottom: 1px solid #fff;
  }
  .lets-grow-info-overlay input[type="text"]::-webkit-input-placeholder, .lets-grow-info-overlay input[type="email"]::-webkit-input-placeholder, .lets-grow-info-overlay input[type="number"]::-webkit-input-placeholder {
    color: #fff;
  }
  .lets-grow-info-overlay input[type="text"]:-ms-input-placeholder, .lets-grow-info-overlay input[type="email"]:-ms-input-placeholder, .lets-grow-info-overlay input[type="number"]:-ms-input-placeholder {
    color: #fff;
  }
  .lets-grow-info-overlay input[type="text"]::-ms-input-placeholder, .lets-grow-info-overlay input[type="email"]::-ms-input-placeholder, .lets-grow-info-overlay input[type="number"]::-ms-input-placeholder {
    color: #fff;
  }
  .lets-grow-info-overlay input[type="text"]::placeholder, .lets-grow-info-overlay input[type="email"]::placeholder, .lets-grow-info-overlay input[type="number"]::placeholder {
    color: #fff;
  }
  .lets-grow-info-overlay input[type="text"]:focus, .lets-grow-info-overlay input[type="email"]:focus, .lets-grow-info-overlay input[type="number"]:focus {
    border-bottom-color: #fdc76c;
  }
  .lets-grow-info-overlay h2 {
    margin-top: 10px !important;
    font-size: 13px !important;
  }
  .lets-grow-info-overlay p {
    font-size: 12px !important;
  }
  .services-input-groups {
    margin-bottom: 20px !important;
  }
  .lets-grow-info-overlay .info-overlay-submit-button {
    width: 120px !important;
    height: 30px !important;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 18px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .lets-grow-info-overlay .info-overlay-submit-button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
}

@media only screen and (max-width: 1700px) {
  .about {
    width: 100%;
    padding: 150px 0px;
    position: relative;
    overflow: hidden;
  }
  .about .about-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about .about-container .about-left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-container .about-left .section-title {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }
  .about .about-container .about-left .section-title .section-title-text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 45%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .about .about-container .about-left .section-title .section-title-text h1 {
    font-size: 45px;
    text-align: center;
  }
  .about .about-container .about-left .section-title .section-title-text h1 span {
    font-size: 45px;
    letter-spacing: 5px;
    word-spacing: 10px;
  }
  .about .about-container .about-left .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 50%;
  }
  .about .about-container .about-left .section-title .section-title-background img {
    width: 100%;
  }
  .about .about-container .about-left p {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 300;
  }
  .about .about-container .about-left p.p-points {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-container .about-left p.p-points span {
    margin-left: 50px;
    margin-top: 20px;
  }
  .about .about-container .about-left button {
    width: 250px;
    height: 70px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .about .about-container .about-left button a {
    text-decoration: none;
    color: #000;
  }
  .about .about-container .about-left button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  .about .about-container .about-right {
    width: 100%;
  }
  .about .about-container .about-right img {
    width: 100%;
    float: right;
    padding-left: 100px;
  }
}

@media only screen and (max-width: 1300px) {
  .about {
    width: 100%;
    padding: 150px 0px;
    position: relative;
    overflow: hidden;
  }
  .about .about-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about .about-container .about-left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-container .about-left .section-title {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }
  .about .about-container .about-left .section-title .section-title-text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 45%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .about .about-container .about-left .section-title .section-title-text h1 {
    font-size: 35px;
    text-align: center;
  }
  .about .about-container .about-left .section-title .section-title-text h1 span {
    font-size: 35px;
    letter-spacing: 5px;
    word-spacing: 10px;
  }
  .about .about-container .about-left .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 50%;
  }
  .about .about-container .about-left .section-title .section-title-background img {
    width: 100%;
  }
  .about .about-container .about-left p {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 300;
  }
  .about .about-container .about-left p.p-points {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-container .about-left p.p-points span {
    margin-left: 50px;
    margin-top: 20px;
  }
  .about .about-container .about-left button {
    width: 250px;
    height: 70px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .about .about-container .about-left button a {
    text-decoration: none;
    color: #000;
  }
  .about .about-container .about-left button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  .about .about-container .about-right {
    width: 100%;
  }
  .about .about-container .about-right img {
    width: 100%;
    float: right;
    padding-left: 100px;
  }
}

@media only screen and (max-width: 1050px) {
  .about {
    width: 100%;
    padding: 150px 0px;
    position: relative;
    overflow: hidden;
  }
  .about .about-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about .about-container .about-left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-container .about-left .section-title {
    width: 70%;
    position: relative;
    margin-bottom: 50px;
  }
  .about .about-container .about-left .section-title .section-title-text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 20%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .about .about-container .about-left .section-title .section-title-text h1 {
    font-size: 35px;
    text-align: center;
  }
  .about .about-container .about-left .section-title .section-title-text h1 span {
    font-size: 35px;
    letter-spacing: 5px;
    word-spacing: 10px;
  }
  .about .about-container .about-left .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 25%;
  }
  .about .about-container .about-left .section-title .section-title-background img {
    width: 100%;
  }
  .about .about-container .about-left p {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 300;
  }
  .about .about-container .about-left p.p-points {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-container .about-left p.p-points span {
    margin-left: 50px;
    margin-top: 20px;
  }
  .about .about-container .about-left button {
    width: 250px;
    height: 70px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .about .about-container .about-left button a {
    text-decoration: none;
    color: #000;
  }
  .about .about-container .about-left button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  .about .about-container .about-right {
    width: 100%;
  }
  .about .about-container .about-right img {
    width: 100%;
    float: right;
    padding-left: 100px;
  }
}

@media only screen and (max-width: 768px) {
  .about {
    width: 100%;
    padding: 150px 0px;
    position: relative;
    overflow: hidden;
  }
  .about .about-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about .about-container .about-left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-container .about-left .section-title {
    width: 80%;
    position: relative;
    margin-bottom: 50px;
  }
  .about .about-container .about-left .section-title .section-title-text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 5%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .about .about-container .about-left .section-title .section-title-text h1 {
    font-size: 30px;
    text-align: center;
  }
  .about .about-container .about-left .section-title .section-title-text h1 span {
    font-size: 30px;
    letter-spacing: 5px;
    word-spacing: 10px;
  }
  .about .about-container .about-left .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 10%;
  }
  .about .about-container .about-left .section-title .section-title-background img {
    width: 100%;
  }
  .about .about-container .about-left p {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 300;
  }
  .about .about-container .about-left p.p-points {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-container .about-left p.p-points span {
    margin-left: 50px;
    margin-top: 20px;
  }
  .about .about-container .about-left button {
    width: 250px;
    height: 70px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .about .about-container .about-left button a {
    text-decoration: none;
    color: #000;
  }
  .about .about-container .about-left button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  .about .about-container .about-right {
    width: 100%;
  }
  .about .about-container .about-right img {
    width: 100%;
    float: right;
    padding-left: 100px;
  }
}

@media only screen and (max-width: 620px) {
  .about {
    width: 100%;
    padding: 150px 0px;
    position: relative;
    overflow: hidden;
  }
  .about .about-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about .about-container .about-left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-container .about-left .section-title {
    width: 80%;
    position: relative;
    margin-bottom: 50px;
  }
  .about .about-container .about-left .section-title .section-title-text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 5%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .about .about-container .about-left .section-title .section-title-text h1 {
    font-size: 25px;
    text-align: center;
  }
  .about .about-container .about-left .section-title .section-title-text h1 span {
    font-size: 25px;
    letter-spacing: 5px;
    word-spacing: 10px;
  }
  .about .about-container .about-left .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 10%;
  }
  .about .about-container .about-left .section-title .section-title-background img {
    width: 100%;
  }
  .about .about-container .about-left p {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 300;
  }
  .about .about-container .about-left p.p-points {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-container .about-left p.p-points span {
    margin-left: 50px;
    margin-top: 20px;
  }
  .about .about-container .about-left button {
    width: 250px;
    height: 70px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .about .about-container .about-left button a {
    text-decoration: none;
    color: #000;
  }
  .about .about-container .about-left button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  .about .about-container .about-right {
    width: 100%;
  }
  .about .about-container .about-right img {
    width: 100%;
    float: right;
    padding-left: 100px;
  }
}

@media only screen and (max-width: 500px) {
  .about {
    width: 100%;
    padding: 150px 0px;
    position: relative;
    overflow: hidden;
  }
  .about .about-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about .about-container .about-left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-container .about-left .section-title {
    width: 90%;
    position: relative;
    margin-bottom: 50px;
  }
  .about .about-container .about-left .section-title .section-title-text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 2%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .about .about-container .about-left .section-title .section-title-text h1 {
    font-size: 25px;
    text-align: center;
  }
  .about .about-container .about-left .section-title .section-title-text h1 span {
    font-size: 25px;
    letter-spacing: 5px;
    word-spacing: 10px;
  }
  .about .about-container .about-left .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 5%;
  }
  .about .about-container .about-left .section-title .section-title-background img {
    width: 100%;
  }
  .about .about-container .about-left p {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 300;
  }
  .about .about-container .about-left p.p-points {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-container .about-left p.p-points span {
    margin-left: 50px;
    margin-top: 20px;
  }
  .about .about-container .about-left button {
    width: 250px;
    height: 70px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .about .about-container .about-left button a {
    text-decoration: none;
    color: #000;
  }
  .about .about-container .about-left button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  .about .about-container .about-right {
    width: 100%;
  }
  .about .about-container .about-right img {
    width: 100%;
    float: right;
    padding-left: 100px;
  }
}

@media only screen and (max-width: 450px) {
  .about {
    width: 100%;
    padding: 150px 0px;
    position: relative;
    overflow: hidden;
  }
  .about .about-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about .about-container .about-left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-container .about-left .section-title {
    width: 90%;
    position: relative;
    margin-bottom: 50px;
  }
  .about .about-container .about-left .section-title .section-title-text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 2%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .about .about-container .about-left .section-title .section-title-text h1 {
    font-size: 20px;
    text-align: center;
  }
  .about .about-container .about-left .section-title .section-title-text h1 span {
    font-size: 20px;
    letter-spacing: 5px;
    word-spacing: 10px;
  }
  .about .about-container .about-left .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 5%;
  }
  .about .about-container .about-left .section-title .section-title-background img {
    width: 100%;
  }
  .about .about-container .about-left p {
    margin-bottom: 30px;
    font-size: 17px;
    font-weight: 300;
  }
  .about .about-container .about-left p.p-points {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-container .about-left p.p-points span {
    margin-left: 50px;
    margin-top: 20px;
  }
  .about .about-container .about-left button {
    width: 250px;
    height: 70px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .about .about-container .about-left button a {
    text-decoration: none;
    color: #000;
  }
  .about .about-container .about-left button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  .about .about-container .about-right {
    width: 100%;
  }
  .about .about-container .about-right img {
    width: 100%;
    float: right;
    padding-left: 100px;
  }
}

@media only screen and (max-width: 380px) {
  .about {
    width: 100%;
    padding: 150px 0px;
    position: relative;
    overflow: hidden;
  }
  .about .about-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about .about-container .about-left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-container .about-left .section-title {
    width: 90%;
    position: relative;
    margin-bottom: 50px;
  }
  .about .about-container .about-left .section-title .section-title-text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 2%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .about .about-container .about-left .section-title .section-title-text h1 {
    font-size: 18px;
    text-align: center;
  }
  .about .about-container .about-left .section-title .section-title-text h1 span {
    font-size: 18px;
    letter-spacing: 5px;
    word-spacing: 10px;
  }
  .about .about-container .about-left .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 5%;
  }
  .about .about-container .about-left .section-title .section-title-background img {
    width: 100%;
  }
  .about .about-container .about-left p {
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 300;
  }
  .about .about-container .about-left p.p-points {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about-container .about-left p.p-points span {
    margin-left: 50px;
    margin-top: 20px;
  }
  .about .about-container .about-left button {
    width: 250px;
    height: 70px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .about .about-container .about-left button a {
    text-decoration: none;
    color: #000;
  }
  .about .about-container .about-left button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  .about .about-container .about-right {
    width: 100%;
  }
  .about .about-container .about-right img {
    width: 100%;
    float: right;
    padding-left: 100px;
  }
}

@media only screen and (max-width: 1600px) {
  .trending-packages {
    width: 100%;
    padding: 150px 0px;
    position: relative;
    overflow: hidden;
  }
  .trending-packages .spot-light {
    position: absolute;
    top: 10%;
    left: 85%;
    width: 300px;
    transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    animation: spotLight 5s linear infinite;
    -webkit-animation: spotLight 5s linear infinite;
  }
  @-webkit-keyframes spotLight {
    0% {
      top: 10%;
      left: 85%;
    }
    50% {
      top: 15%;
      left: 87%;
    }
    100% {
      top: 10%;
      left: 85%;
    }
  }
  @keyframes spotLight {
    0% {
      top: 10%;
      left: 85%;
    }
    50% {
      top: 15%;
      left: 87%;
    }
    100% {
      top: 10%;
      left: 85%;
    }
  }
  .trending-packages .trending-packages-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .trending-packages .trending-packages-container .section-title {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }
  .trending-packages .trending-packages-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .trending-packages .trending-packages-container .section-title .section-title-text h1 {
    font-size: 50px;
  }
  .trending-packages .trending-packages-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .trending-packages .trending-packages-container .section-title .section-title-background img {
    width: 100%;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package {
    width: 400px;
    height: 700px;
    border: 1px solid #d8d8d8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package:nth-child(2) {
    margin: 0 50px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top {
    height: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top h2 {
    font-size: 35px;
    letter-spacing: 2px;
    font-family: "American Captain", sans-serif;
    font-style: italic;
    margin-bottom: 10px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top p {
    text-align: center;
    color: #555;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 40px 0px 60px 0px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price h1 {
    font-size: 60px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price p {
    font-size: 30px;
    font-weight: bold;
    color: #fdc76c;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details p {
    text-align: left;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details p span {
    color: #2fc393;
    margin-right: 5px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom {
    height: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button {
    width: 220px;
    height: 70px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button a {
    text-decoration: none;
    color: #000;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
}

@media only screen and (max-width: 1350px) {
  .trending-packages {
    width: 100%;
    padding: 150px 0px;
    position: relative;
    overflow: hidden;
  }
  .trending-packages .spot-light {
    position: absolute;
    top: 10%;
    left: 85%;
    width: 250px;
    transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    animation: spotLight 5s linear infinite;
    -webkit-animation: spotLight 5s linear infinite;
  }
  @-webkit-keyframes spotLight {
    0% {
      top: 10%;
      left: 85%;
    }
    50% {
      top: 15%;
      left: 87%;
    }
    100% {
      top: 10%;
      left: 85%;
    }
  }
  @keyframes spotLight {
    0% {
      top: 10%;
      left: 85%;
    }
    50% {
      top: 15%;
      left: 87%;
    }
    100% {
      top: 10%;
      left: 85%;
    }
  }
  .trending-packages .trending-packages-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .trending-packages .trending-packages-container .section-title {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }
  .trending-packages .trending-packages-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .trending-packages .trending-packages-container .section-title .section-title-text h1 {
    font-size: 45px;
  }
  .trending-packages .trending-packages-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .trending-packages .trending-packages-container .section-title .section-title-background img {
    width: 100%;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package {
    width: 400px;
    height: 700px;
    border: 1px solid #d8d8d8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package:nth-child(2) {
    margin: 0 50px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top {
    height: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top h2 {
    font-size: 28px;
    letter-spacing: 2px;
    font-family: "American Captain", sans-serif;
    font-style: italic;
    margin-bottom: 10px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top p {
    text-align: center;
    color: #555;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 40px 0px 60px 0px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price h1 {
    font-size: 60px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price p {
    font-size: 30px;
    font-weight: bold;
    color: #fdc76c;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details p {
    text-align: left;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details p span {
    color: #2fc393;
    margin-right: 5px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom {
    height: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button {
    width: 220px;
    height: 70px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button a {
    text-decoration: none;
    color: #000;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
}

@media only screen and (max-width: 1150px) {
  .trending-packages {
    width: 100%;
    padding: 150px 0px;
    position: relative;
    overflow: hidden;
  }
  .trending-packages .spot-light {
    position: absolute;
    top: 10%;
    left: 85%;
    width: 250px;
    transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    animation: spotLight 5s linear infinite;
    -webkit-animation: spotLight 5s linear infinite;
  }
  @-webkit-keyframes spotLight {
    0% {
      top: 10%;
      left: 85%;
    }
    50% {
      top: 15%;
      left: 87%;
    }
    100% {
      top: 10%;
      left: 85%;
    }
  }
  @keyframes spotLight {
    0% {
      top: 10%;
      left: 85%;
    }
    50% {
      top: 15%;
      left: 87%;
    }
    100% {
      top: 10%;
      left: 85%;
    }
  }
  .trending-packages .trending-packages-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .trending-packages .trending-packages-container .section-title {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }
  .trending-packages .trending-packages-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .trending-packages .trending-packages-container .section-title .section-title-text h1 {
    font-size: 35px;
  }
  .trending-packages .trending-packages-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .trending-packages .trending-packages-container .section-title .section-title-background img {
    width: 100%;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package {
    width: 400px;
    height: 600px;
    border: 1px solid #d8d8d8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package:nth-child(2) {
    margin: 0 50px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top {
    height: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top h2 {
    font-size: 20px;
    letter-spacing: 2px;
    font-family: "American Captain", sans-serif;
    font-style: italic;
    margin-bottom: 10px;
    text-align: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top p {
    text-align: center;
    color: #555;
    font-size: 15px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 40px 0px 60px 0px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price h1 {
    font-size: 60px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price p {
    font-size: 30px;
    font-weight: bold;
    color: #fdc76c;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details p {
    text-align: left;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details p span {
    color: #2fc393;
    margin-right: 5px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom {
    height: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button {
    width: 220px;
    height: 70px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button a {
    text-decoration: none;
    color: #000;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
}

@media only screen and (max-width: 1050px) {
  .trending-packages {
    width: 100%;
    padding: 150px 0px;
    position: relative;
    overflow: hidden;
  }
  .trending-packages .spot-light {
    position: absolute;
    top: 10%;
    left: 85%;
    width: 150px;
    transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    animation: spotLight 5s linear infinite;
    -webkit-animation: spotLight 5s linear infinite;
  }
  @-webkit-keyframes spotLight {
    0% {
      top: 10%;
      left: 85%;
    }
    50% {
      top: 15%;
      left: 87%;
    }
    100% {
      top: 10%;
      left: 85%;
    }
  }
  @keyframes spotLight {
    0% {
      top: 10%;
      left: 85%;
    }
    50% {
      top: 15%;
      left: 87%;
    }
    100% {
      top: 10%;
      left: 85%;
    }
  }
  .trending-packages .trending-packages-container {
    width: 90%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .trending-packages .trending-packages-container .section-title {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }
  .trending-packages .trending-packages-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .trending-packages .trending-packages-container .section-title .section-title-text h1 {
    font-size: 35px;
  }
  .trending-packages .trending-packages-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .trending-packages .trending-packages-container .section-title .section-title-background img {
    width: 100%;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package {
    width: 450px;
    height: 600px;
    border: 1px solid #d8d8d8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package:nth-child(2) {
    margin: 0 50px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top {
    height: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top h2 {
    font-size: 20px;
    letter-spacing: 2px;
    font-family: "American Captain", sans-serif;
    font-style: italic;
    margin-bottom: 10px;
    text-align: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top p {
    text-align: center;
    color: #555;
    font-size: 15px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 40px 0px 60px 0px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price h1 {
    font-size: 60px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price p {
    font-size: 30px;
    font-weight: bold;
    color: #fdc76c;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details {
    padding: 5px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details p {
    text-align: left;
    font-size: 14px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details p span {
    color: #2fc393;
    margin-right: 5px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom {
    height: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button {
    width: 180px;
    height: 60px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 25px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button a {
    text-decoration: none;
    color: #000;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
}

@media only screen and (max-width: 850px) {
  .trending-packages {
    width: 100%;
    padding: 150px 0px;
    position: relative;
    overflow: hidden;
  }
  .trending-packages .spot-light {
    position: absolute;
    top: 10%;
    left: 85%;
    width: 100px;
    transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    animation: spotLight 5s linear infinite;
    -webkit-animation: spotLight 5s linear infinite;
  }
  @-webkit-keyframes spotLight {
    0% {
      top: 10%;
      left: 85%;
    }
    50% {
      top: 15%;
      left: 87%;
    }
    100% {
      top: 10%;
      left: 85%;
    }
  }
  @keyframes spotLight {
    0% {
      top: 10%;
      left: 85%;
    }
    50% {
      top: 15%;
      left: 87%;
    }
    100% {
      top: 10%;
      left: 85%;
    }
  }
  .trending-packages .trending-packages-container {
    width: 90%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .trending-packages .trending-packages-container .section-title {
    width: 60%;
    position: relative;
    margin-bottom: 50px;
  }
  .trending-packages .trending-packages-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .trending-packages .trending-packages-container .section-title .section-title-text h1 {
    font-size: 30px;
  }
  .trending-packages .trending-packages-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .trending-packages .trending-packages-container .section-title .section-title-background img {
    width: 100%;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package {
    width: 350px;
    height: 600px;
    border: 1px solid #d8d8d8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package:nth-child(2) {
    margin: 40px 0px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top {
    height: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top h2 {
    font-size: 30px;
    letter-spacing: 2px;
    font-family: "American Captain", sans-serif;
    font-style: italic;
    margin-bottom: 10px;
    text-align: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top p {
    text-align: center;
    color: #555;
    font-size: 17px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 40px 0px 60px 0px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price h1 {
    font-size: 60px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price p {
    font-size: 30px;
    font-weight: bold;
    color: #fdc76c;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details {
    padding: 0px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details p {
    text-align: left;
    font-size: 14px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details p span {
    color: #2fc393;
    margin-right: 5px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom {
    height: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button {
    width: 180px;
    height: 60px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 25px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button a {
    text-decoration: none;
    color: #000;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
}

@media only screen and (max-width: 850px) {
  .trending-packages {
    width: 100%;
    padding: 150px 0px;
    position: relative;
    overflow: hidden;
  }
  .trending-packages .spot-light {
    position: absolute;
    top: 10%;
    left: 85%;
    width: 100px;
    transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    animation: spotLight 5s linear infinite;
    -webkit-animation: spotLight 5s linear infinite;
  }
  @-webkit-keyframes spotLight {
    0% {
      top: 10%;
      left: 85%;
    }
    50% {
      top: 15%;
      left: 87%;
    }
    100% {
      top: 10%;
      left: 85%;
    }
  }
  @keyframes spotLight {
    0% {
      top: 10%;
      left: 85%;
    }
    50% {
      top: 15%;
      left: 87%;
    }
    100% {
      top: 10%;
      left: 85%;
    }
  }
  .trending-packages .trending-packages-container {
    width: 90%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .trending-packages .trending-packages-container .section-title {
    width: 70%;
    position: relative;
    margin-bottom: 50px;
  }
  .trending-packages .trending-packages-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .trending-packages .trending-packages-container .section-title .section-title-text h1 {
    font-size: 30px;
  }
  .trending-packages .trending-packages-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .trending-packages .trending-packages-container .section-title .section-title-background img {
    width: 100%;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package {
    width: 350px;
    height: 600px;
    border: 1px solid #d8d8d8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package:nth-child(2) {
    margin: 40px 0px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top {
    height: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top h2 {
    font-size: 30px;
    letter-spacing: 2px;
    font-family: "American Captain", sans-serif;
    font-style: italic;
    margin-bottom: 10px;
    text-align: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top p {
    text-align: center;
    color: #555;
    font-size: 17px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 40px 0px 60px 0px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price h1 {
    font-size: 60px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price p {
    font-size: 30px;
    font-weight: bold;
    color: #fdc76c;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details {
    padding: 0px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details p {
    text-align: left;
    font-size: 14px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details p span {
    color: #2fc393;
    margin-right: 5px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom {
    height: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button {
    width: 180px;
    height: 60px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 25px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button a {
    text-decoration: none;
    color: #000;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
}

@media only screen and (max-width: 580px) {
  .trending-packages {
    width: 100%;
    padding: 150px 0px;
    position: relative;
    overflow: hidden;
  }
  .trending-packages .spot-light {
    position: absolute;
    top: 10%;
    left: 85%;
    width: 100px;
    transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    animation: spotLight 5s linear infinite;
    -webkit-animation: spotLight 5s linear infinite;
  }
  @-webkit-keyframes spotLight {
    0% {
      top: 10%;
      left: 85%;
    }
    50% {
      top: 15%;
      left: 87%;
    }
    100% {
      top: 10%;
      left: 85%;
    }
  }
  @keyframes spotLight {
    0% {
      top: 10%;
      left: 85%;
    }
    50% {
      top: 15%;
      left: 87%;
    }
    100% {
      top: 10%;
      left: 85%;
    }
  }
  .trending-packages .trending-packages-container {
    width: 90%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .trending-packages .trending-packages-container .section-title {
    width: 80%;
    position: relative;
    margin-bottom: 50px;
  }
  .trending-packages .trending-packages-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .trending-packages .trending-packages-container .section-title .section-title-text h1 {
    font-size: 25px;
  }
  .trending-packages .trending-packages-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .trending-packages .trending-packages-container .section-title .section-title-background img {
    width: 100%;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package {
    width: 350px;
    height: 600px;
    border: 1px solid #d8d8d8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package:nth-child(2) {
    margin: 40px 0px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top {
    height: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top h2 {
    font-size: 30px;
    letter-spacing: 2px;
    font-family: "American Captain", sans-serif;
    font-style: italic;
    margin-bottom: 10px;
    text-align: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top p {
    text-align: center;
    color: #555;
    font-size: 17px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 40px 0px 60px 0px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price h1 {
    font-size: 60px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price p {
    font-size: 30px;
    font-weight: bold;
    color: #fdc76c;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details {
    padding: 0px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details p {
    text-align: left;
    font-size: 14px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details p span {
    color: #2fc393;
    margin-right: 5px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom {
    height: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button {
    width: 180px;
    height: 60px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 25px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button a {
    text-decoration: none;
    color: #000;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
}

@media only screen and (max-width: 400px) {
  .trending-packages {
    width: 100%;
    padding: 150px 0px;
    position: relative;
    overflow: hidden;
  }
  .trending-packages .spot-light {
    position: absolute;
    top: 10%;
    left: 85%;
    width: 80px;
    transform: rotate(5deg);
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    animation: spotLight 5s linear infinite;
    -webkit-animation: spotLight 5s linear infinite;
  }
  @-webkit-keyframes spotLight {
    0% {
      top: 10%;
      left: 85%;
    }
    50% {
      top: 15%;
      left: 87%;
    }
    100% {
      top: 10%;
      left: 85%;
    }
  }
  @keyframes spotLight {
    0% {
      top: 10%;
      left: 85%;
    }
    50% {
      top: 15%;
      left: 87%;
    }
    100% {
      top: 10%;
      left: 85%;
    }
  }
  .trending-packages .trending-packages-container {
    width: 90%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .trending-packages .trending-packages-container .section-title {
    width: 80%;
    position: relative;
    margin-bottom: 50px;
  }
  .trending-packages .trending-packages-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .trending-packages .trending-packages-container .section-title .section-title-text h1 {
    font-size: 20px;
  }
  .trending-packages .trending-packages-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .trending-packages .trending-packages-container .section-title .section-title-background img {
    width: 100%;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package {
    width: 300px;
    height: 600px;
    border: 1px solid #d8d8d8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package:nth-child(2) {
    margin: 40px 0px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top {
    height: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top h2 {
    font-size: 30px;
    letter-spacing: 2px;
    font-family: "American Captain", sans-serif;
    font-style: italic;
    margin-bottom: 10px;
    text-align: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top p {
    text-align: center;
    color: #555;
    font-size: 17px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 40px 0px 60px 0px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price h1 {
    font-size: 60px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-price p {
    font-size: 30px;
    font-weight: bold;
    color: #fdc76c;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details {
    padding: 0px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details p {
    text-align: left;
    font-size: 14px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-top .package-details p span {
    color: #2fc393;
    margin-right: 5px;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom {
    height: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button {
    width: 180px;
    height: 60px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 25px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button a {
    text-decoration: none;
    color: #000;
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package .package-bottom button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  .trending-packages .trending-packages-container .trending-packages-wrapper .package:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
}

@media only screen and (max-width: 1650px) {
  .services {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .services .services-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .section-title {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }
  .services .services-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 25%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .services .services-container .section-title .section-title-text h1 {
    font-size: 60px;
  }
  .services .services-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .services .services-container .section-title .section-title-background img {
    width: 100%;
  }
  .services .services-container .services-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .services .services-container .services-wrapper .service {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .services-wrapper .service .service-container {
    width: 80%;
    height: 320px;
    background: #fff;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    padding: 30px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
  }
  .services .services-container .services-wrapper .service .service-container:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  .services .services-container .services-wrapper .service .service-container .service-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .services .services-container .services-wrapper .service .service-container .service-top i {
    font-size: 40px;
    color: #fdc76c;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom {
    width: 100%;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom h1 {
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-style: normal;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more {
    height: 100%;
    position: absolute;
    bottom: -92.5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button {
    width: 140px;
    background: #fdc76c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button a {
    color: #fff;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button span {
    margin-left: 5px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  .services .services-container .services-wrapper .service:nth-child(6) {
    position: relative;
  }
  .services .services-container .services-wrapper .service:nth-child(6) .camera {
    position: absolute;
    top: 90%;
    left: -10px;
    width: 60px;
    transform: rotateX(-5deg);
    -webkit-transform: rotateX(-5deg);
    -moz-transform: rotateX(-5deg);
    -ms-transform: rotateX(-5deg);
    -o-transform: rotateX(-5deg);
  }
}

@media only screen and (max-width: 1420px) {
  .services {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .services .services-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .section-title {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }
  .services .services-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 20%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .services .services-container .section-title .section-title-text h1 {
    font-size: 50px;
  }
  .services .services-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .services .services-container .section-title .section-title-background img {
    width: 100%;
  }
  .services .services-container .services-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .services .services-container .services-wrapper .service {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .services-wrapper .service .service-container {
    width: 90%;
    height: 300px;
    background: #fff;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    padding: 30px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
  }
  .services .services-container .services-wrapper .service .service-container:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  .services .services-container .services-wrapper .service .service-container .service-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .services .services-container .services-wrapper .service .service-container .service-top i {
    font-size: 40px;
    color: #fdc76c;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom {
    width: 100%;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom h1 {
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-style: normal;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more {
    height: 100%;
    position: absolute;
    bottom: -92.5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button {
    width: 140px;
    background: #fdc76c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button a {
    color: #fff;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button span {
    margin-left: 5px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  .services .services-container .services-wrapper .service:nth-child(3) {
    position: relative;
    z-index: 2;
  }
  .services .services-container .services-wrapper .service:nth-child(3) .facebook {
    position: absolute;
    left: 70%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: facebook 3s linear infinite;
    -webkit-animation: facebook 3s linear infinite;
  }
  @-webkit-keyframes facebook {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 70%;
    }
  }
  @keyframes facebook {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 70%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(3) .instagram {
    position: absolute;
    top: 45%;
    left: 70%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: instagram 4s linear infinite;
    -webkit-animation: instagram 4s linear infinite;
  }
  @-webkit-keyframes instagram {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 70%;
    }
  }
  @keyframes instagram {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 70%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(6) {
    position: relative;
  }
  .services .services-container .services-wrapper .service:nth-child(6) .camera {
    position: absolute;
    top: 90%;
    left: -10px;
    width: 60px;
    transform: rotateX(-5deg);
    -webkit-transform: rotateX(-5deg);
    -moz-transform: rotateX(-5deg);
    -ms-transform: rotateX(-5deg);
    -o-transform: rotateX(-5deg);
  }
}

@media only screen and (max-width: 1340px) {
  .services {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .services .services-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .section-title {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }
  .services .services-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 20%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .services .services-container .section-title .section-title-text h1 {
    font-size: 50px;
  }
  .services .services-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .services .services-container .section-title .section-title-background img {
    width: 100%;
  }
  .services .services-container .services-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .services .services-container .services-wrapper .service {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .services-wrapper .service .service-container {
    width: 90%;
    height: 320px;
    background: #fff;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    padding: 30px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
  }
  .services .services-container .services-wrapper .service .service-container:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  .services .services-container .services-wrapper .service .service-container .service-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .services .services-container .services-wrapper .service .service-container .service-top i {
    font-size: 40px;
    color: #fdc76c;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom {
    width: 100%;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom h1 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-style: normal;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more {
    height: 100%;
    position: absolute;
    bottom: -92.5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button {
    width: 140px;
    background: #fdc76c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button a {
    color: #fff;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button span {
    margin-left: 5px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  .services .services-container .services-wrapper .service:nth-child(3) {
    position: relative;
    z-index: 2;
  }
  .services .services-container .services-wrapper .service:nth-child(3) .facebook {
    position: absolute;
    left: 70%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: facebook 3s linear infinite;
    -webkit-animation: facebook 3s linear infinite;
  }
  @-webkit-keyframes facebook {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 70%;
    }
  }
  @keyframes facebook {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 70%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(3) .instagram {
    position: absolute;
    top: 45%;
    left: 70%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: instagram 4s linear infinite;
    -webkit-animation: instagram 4s linear infinite;
  }
  @-webkit-keyframes instagram {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 70%;
    }
  }
  @keyframes instagram {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 70%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(6) {
    position: relative;
  }
  .services .services-container .services-wrapper .service:nth-child(6) .camera {
    position: absolute;
    top: 90%;
    left: -10px;
    width: 60px;
    transform: rotateX(-5deg);
    -webkit-transform: rotateX(-5deg);
    -moz-transform: rotateX(-5deg);
    -ms-transform: rotateX(-5deg);
    -o-transform: rotateX(-5deg);
  }
}

@media only screen and (max-width: 1170px) {
  .services {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .services .services-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .section-title {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }
  .services .services-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 20%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .services .services-container .section-title .section-title-text h1 {
    font-size: 50px;
  }
  .services .services-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .services .services-container .section-title .section-title-background img {
    width: 100%;
  }
  .services .services-container .services-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .services .services-container .services-wrapper .service {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .services-wrapper .service .service-container {
    width: 90%;
    height: 340px;
    background: #fff;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    padding: 30px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
  }
  .services .services-container .services-wrapper .service .service-container:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  .services .services-container .services-wrapper .service .service-container .service-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .services .services-container .services-wrapper .service .service-container .service-top i {
    font-size: 40px;
    color: #fdc76c;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom {
    width: 100%;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom h1 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-style: normal;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more {
    height: 100%;
    position: absolute;
    bottom: -92.5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button {
    width: 140px;
    background: #fdc76c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button a {
    color: #fff;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button span {
    margin-left: 5px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  .services .services-container .services-wrapper .service:nth-child(3) {
    position: relative;
    z-index: 2;
  }
  .services .services-container .services-wrapper .service:nth-child(3) .facebook {
    position: absolute;
    left: 70%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: facebook 3s linear infinite;
    -webkit-animation: facebook 3s linear infinite;
  }
  @-webkit-keyframes facebook {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 70%;
    }
  }
  @keyframes facebook {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 70%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(3) .instagram {
    position: absolute;
    top: 45%;
    left: 70%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: instagram 4s linear infinite;
    -webkit-animation: instagram 4s linear infinite;
  }
  @-webkit-keyframes instagram {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 70%;
    }
  }
  @keyframes instagram {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 70%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(6) {
    position: relative;
  }
  .services .services-container .services-wrapper .service:nth-child(6) .camera {
    position: absolute;
    top: 90%;
    left: -10px;
    width: 60px;
    transform: rotateX(-5deg);
    -webkit-transform: rotateX(-5deg);
    -moz-transform: rotateX(-5deg);
    -ms-transform: rotateX(-5deg);
    -o-transform: rotateX(-5deg);
  }
}

@media only screen and (max-width: 1100px) {
  .services {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .services .services-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .section-title {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }
  .services .services-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 20%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .services .services-container .section-title .section-title-text h1 {
    font-size: 40px;
  }
  .services .services-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .services .services-container .section-title .section-title-background img {
    width: 100%;
  }
  .services .services-container .services-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .services .services-container .services-wrapper .service {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .services-wrapper .service .service-container {
    width: 80%;
    height: 280px;
    background: #fff;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    padding: 30px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
  }
  .services .services-container .services-wrapper .service .service-container:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  .services .services-container .services-wrapper .service .service-container .service-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .services .services-container .services-wrapper .service .service-container .service-top i {
    font-size: 40px;
    color: #fdc76c;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom {
    width: 100%;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom h1 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-style: normal;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more {
    height: 100%;
    position: absolute;
    bottom: -92.5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button {
    width: 140px;
    background: #fdc76c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button a {
    color: #fff;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button span {
    margin-left: 5px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  .services .services-container .services-wrapper .service:nth-child(3) {
    position: relative;
    z-index: 2;
  }
  .services .services-container .services-wrapper .service:nth-child(3) .facebook {
    position: absolute;
    left: 70%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: facebook 3s linear infinite;
    -webkit-animation: facebook 3s linear infinite;
  }
  @-webkit-keyframes facebook {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 70%;
    }
  }
  @keyframes facebook {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 70%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(3) .instagram {
    position: absolute;
    top: 45%;
    left: 70%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: instagram 4s linear infinite;
    -webkit-animation: instagram 4s linear infinite;
  }
  @-webkit-keyframes instagram {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 70%;
    }
  }
  @keyframes instagram {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 70%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(6) {
    position: relative;
  }
  .services .services-container .services-wrapper .service:nth-child(6) .camera {
    position: absolute;
    top: 90%;
    left: -10px;
    width: 60px;
    transform: rotateX(-5deg);
    -webkit-transform: rotateX(-5deg);
    -moz-transform: rotateX(-5deg);
    -ms-transform: rotateX(-5deg);
    -o-transform: rotateX(-5deg);
  }
}

@media only screen and (max-width: 1040px) {
  .services {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .services .services-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .section-title {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }
  .services .services-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 20%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .services .services-container .section-title .section-title-text h1 {
    font-size: 40px;
  }
  .services .services-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .services .services-container .section-title .section-title-background img {
    width: 100%;
  }
  .services .services-container .services-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .services .services-container .services-wrapper .service {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .services-wrapper .service .service-container {
    width: 90%;
    height: 300px;
    background: #fff;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    padding: 30px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
  }
  .services .services-container .services-wrapper .service .service-container:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  .services .services-container .services-wrapper .service .service-container .service-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .services .services-container .services-wrapper .service .service-container .service-top i {
    font-size: 40px;
    color: #fdc76c;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom {
    width: 100%;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom h1 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-style: normal;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more {
    height: 100%;
    position: absolute;
    bottom: -92.5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button {
    width: 140px;
    background: #fdc76c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button a {
    color: #fff;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button span {
    margin-left: 5px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  .services .services-container .services-wrapper .service:nth-child(3) {
    position: relative;
    z-index: 2;
  }
  .services .services-container .services-wrapper .service:nth-child(3) .facebook {
    position: absolute;
    left: 70%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: facebook 3s linear infinite;
    -webkit-animation: facebook 3s linear infinite;
  }
  @-webkit-keyframes facebook {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 70%;
    }
  }
  @keyframes facebook {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 70%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(3) .instagram {
    position: absolute;
    top: 45%;
    left: 70%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: instagram 4s linear infinite;
    -webkit-animation: instagram 4s linear infinite;
  }
  @-webkit-keyframes instagram {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 70%;
    }
  }
  @keyframes instagram {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 70%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(6) {
    position: relative;
  }
  .services .services-container .services-wrapper .service:nth-child(6) .camera {
    position: absolute;
    top: 90%;
    left: -10px;
    width: 60px;
    transform: rotateX(-5deg);
    -webkit-transform: rotateX(-5deg);
    -moz-transform: rotateX(-5deg);
    -ms-transform: rotateX(-5deg);
    -o-transform: rotateX(-5deg);
  }
}

@media only screen and (max-width: 890px) {
  .services {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .services .services-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .section-title {
    width: 60%;
    position: relative;
    margin-bottom: 50px;
  }
  .services .services-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 18%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .services .services-container .section-title .section-title-text h1 {
    font-size: 40px;
  }
  .services .services-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .services .services-container .section-title .section-title-background img {
    width: 100%;
  }
  .services .services-container .services-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .services .services-container .services-wrapper .service {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .services-wrapper .service .service-container {
    width: 90%;
    height: 300px;
    background: #fff;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    padding: 30px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
  }
  .services .services-container .services-wrapper .service .service-container:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  .services .services-container .services-wrapper .service .service-container .service-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .services .services-container .services-wrapper .service .service-container .service-top i {
    font-size: 40px;
    color: #fdc76c;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom {
    width: 100%;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom h1 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-style: normal;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom p {
    font-size: 15px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more {
    height: 100%;
    position: absolute;
    bottom: -92.5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button {
    width: 140px;
    background: #fdc76c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button a {
    color: #fff;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button span {
    margin-left: 5px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  .services .services-container .services-wrapper .service:nth-child(3) {
    position: relative;
    z-index: 2;
  }
  .services .services-container .services-wrapper .service:nth-child(3) .facebook {
    position: absolute;
    left: 70%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: facebook 3s linear infinite;
    -webkit-animation: facebook 3s linear infinite;
  }
  @-webkit-keyframes facebook {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 70%;
    }
  }
  @keyframes facebook {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 70%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(3) .instagram {
    position: absolute;
    top: 45%;
    left: 70%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: instagram 4s linear infinite;
    -webkit-animation: instagram 4s linear infinite;
  }
  @-webkit-keyframes instagram {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 70%;
    }
  }
  @keyframes instagram {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 70%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(6) {
    position: relative;
  }
  .services .services-container .services-wrapper .service:nth-child(6) .camera {
    position: absolute;
    top: 90%;
    left: -10px;
    width: 60px;
    transform: rotateX(-5deg);
    -webkit-transform: rotateX(-5deg);
    -moz-transform: rotateX(-5deg);
    -ms-transform: rotateX(-5deg);
    -o-transform: rotateX(-5deg);
  }
}

@media only screen and (max-width: 768px) {
  .services {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .services .services-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .section-title {
    width: 60%;
    position: relative;
    margin-bottom: 50px;
  }
  .services .services-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 18%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .services .services-container .section-title .section-title-text h1 {
    font-size: 40px;
  }
  .services .services-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .services .services-container .section-title .section-title-background img {
    width: 100%;
  }
  .services .services-container .services-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .services .services-container .services-wrapper .service {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .services-wrapper .service .service-container {
    width: 90%;
    height: 300px;
    background: #fff;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    padding: 30px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
  }
  .services .services-container .services-wrapper .service .service-container:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  .services .services-container .services-wrapper .service .service-container .service-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .services .services-container .services-wrapper .service .service-container .service-top i {
    font-size: 40px;
    color: #fdc76c;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom {
    width: 100%;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom h1 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-style: normal;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom p {
    font-size: 14px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more {
    height: 100%;
    position: absolute;
    bottom: -92.5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button {
    width: 140px;
    background: #fdc76c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button a {
    color: #fff;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button span {
    margin-left: 5px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  .services .services-container .services-wrapper .service:nth-child(3) {
    position: relative;
    z-index: 2;
  }
  .services .services-container .services-wrapper .service:nth-child(3) .facebook {
    position: absolute;
    left: 70%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: facebook 3s linear infinite;
    -webkit-animation: facebook 3s linear infinite;
  }
  @-webkit-keyframes facebook {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 70%;
    }
  }
  @keyframes facebook {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 70%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(3) .instagram {
    position: absolute;
    top: 45%;
    left: 70%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: instagram 4s linear infinite;
    -webkit-animation: instagram 4s linear infinite;
  }
  @-webkit-keyframes instagram {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 70%;
    }
  }
  @keyframes instagram {
    0% {
      left: 70%;
    }
    50% {
      left: 85%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 70%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(6) {
    position: relative;
  }
  .services .services-container .services-wrapper .service:nth-child(6) .camera {
    position: absolute;
    top: 90%;
    left: -10px;
    width: 60px;
    transform: rotateX(-5deg);
    -webkit-transform: rotateX(-5deg);
    -moz-transform: rotateX(-5deg);
    -ms-transform: rotateX(-5deg);
    -o-transform: rotateX(-5deg);
  }
}

@media only screen and (max-width: 700px) {
  .services {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .services .services-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .section-title {
    width: 70%;
    position: relative;
    margin-bottom: 50px;
  }
  .services .services-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 18%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .services .services-container .section-title .section-title-text h1 {
    font-size: 40px;
  }
  .services .services-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .services .services-container .section-title .section-title-background img {
    width: 100%;
  }
  .services .services-container .services-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-row-gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .services .services-container .services-wrapper .service {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .services-wrapper .service .service-container {
    width: 60%;
    height: 300px;
    background: #fff;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    padding: 30px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
  }
  .services .services-container .services-wrapper .service .service-container:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  .services .services-container .services-wrapper .service .service-container .service-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .services .services-container .services-wrapper .service .service-container .service-top i {
    font-size: 40px;
    color: #fdc76c;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom {
    width: 100%;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom h1 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-style: normal;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom p {
    font-size: 14px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more {
    height: 100%;
    position: absolute;
    bottom: -92.5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button {
    width: 140px;
    background: #fdc76c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button a {
    color: #fff;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button span {
    margin-left: 5px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  .services .services-container .services-wrapper .service:nth-child(3) {
    position: relative;
    z-index: 2;
  }
  .services .services-container .services-wrapper .service:nth-child(3) .facebook {
    position: absolute;
    left: 60%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: facebook 3s linear infinite;
    -webkit-animation: facebook 3s linear infinite;
  }
  @-webkit-keyframes facebook {
    0% {
      left: 60%;
    }
    50% {
      left: 75%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 60%;
    }
  }
  @keyframes facebook {
    0% {
      left: 60%;
    }
    50% {
      left: 75%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 60%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(3) .instagram {
    position: absolute;
    top: 45%;
    left: 60%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: instagram 4s linear infinite;
    -webkit-animation: instagram 4s linear infinite;
  }
  @-webkit-keyframes instagram {
    0% {
      left: 60%;
    }
    50% {
      left: 75%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 60%;
    }
  }
  @keyframes instagram {
    0% {
      left: 60%;
    }
    50% {
      left: 75%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 60%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(6) {
    position: relative;
  }
  .services .services-container .services-wrapper .service:nth-child(6) .camera {
    position: absolute;
    top: 90%;
    left: -10px;
    width: 60px;
    transform: rotateX(-5deg);
    -webkit-transform: rotateX(-5deg);
    -moz-transform: rotateX(-5deg);
    -ms-transform: rotateX(-5deg);
    -o-transform: rotateX(-5deg);
  }
}

@media only screen and (max-width: 600px) {
  .services {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .services .services-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .section-title {
    width: 80%;
    position: relative;
    margin-bottom: 50px;
  }
  .services .services-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 18%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .services .services-container .section-title .section-title-text h1 {
    font-size: 35px;
  }
  .services .services-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .services .services-container .section-title .section-title-background img {
    width: 100%;
  }
  .services .services-container .services-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-row-gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .services .services-container .services-wrapper .service {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .services-wrapper .service .service-container {
    width: 60%;
    height: 300px;
    background: #fff;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    padding: 30px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
  }
  .services .services-container .services-wrapper .service .service-container:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  .services .services-container .services-wrapper .service .service-container .service-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .services .services-container .services-wrapper .service .service-container .service-top i {
    font-size: 40px;
    color: #fdc76c;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom {
    width: 100%;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom h1 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-style: normal;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom p {
    font-size: 14px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more {
    height: 100%;
    position: absolute;
    bottom: -92.5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button {
    width: 140px;
    background: #fdc76c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button a {
    color: #fff;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button span {
    margin-left: 5px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  .services .services-container .services-wrapper .service:nth-child(3) {
    position: relative;
    z-index: 2;
  }
  .services .services-container .services-wrapper .service:nth-child(3) .facebook {
    position: absolute;
    left: 60%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: facebook 3s linear infinite;
    -webkit-animation: facebook 3s linear infinite;
  }
  @-webkit-keyframes facebook {
    0% {
      left: 60%;
    }
    50% {
      left: 75%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 60%;
    }
  }
  @keyframes facebook {
    0% {
      left: 60%;
    }
    50% {
      left: 75%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 60%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(3) .instagram {
    position: absolute;
    top: 45%;
    left: 60%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: instagram 4s linear infinite;
    -webkit-animation: instagram 4s linear infinite;
  }
  @-webkit-keyframes instagram {
    0% {
      left: 60%;
    }
    50% {
      left: 75%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 60%;
    }
  }
  @keyframes instagram {
    0% {
      left: 60%;
    }
    50% {
      left: 75%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 60%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(6) {
    position: relative;
  }
  .services .services-container .services-wrapper .service:nth-child(6) .camera {
    position: absolute;
    top: 90%;
    left: -10px;
    width: 60px;
    transform: rotateX(-5deg);
    -webkit-transform: rotateX(-5deg);
    -moz-transform: rotateX(-5deg);
    -ms-transform: rotateX(-5deg);
    -o-transform: rotateX(-5deg);
  }
}

@media only screen and (max-width: 550px) {
  .services {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .services .services-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .section-title {
    width: 80%;
    position: relative;
    margin-bottom: 50px;
  }
  .services .services-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 18%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .services .services-container .section-title .section-title-text h1 {
    font-size: 35px;
  }
  .services .services-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .services .services-container .section-title .section-title-background img {
    width: 100%;
  }
  .services .services-container .services-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-row-gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .services .services-container .services-wrapper .service {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .services-wrapper .service .service-container {
    width: 70%;
    height: 300px;
    background: #fff;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    padding: 30px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
  }
  .services .services-container .services-wrapper .service .service-container:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  .services .services-container .services-wrapper .service .service-container .service-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .services .services-container .services-wrapper .service .service-container .service-top i {
    font-size: 40px;
    color: #fdc76c;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom {
    width: 100%;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom h1 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-style: normal;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom p {
    font-size: 14px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more {
    height: 100%;
    position: absolute;
    bottom: -92.5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button {
    width: 140px;
    background: #fdc76c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button a {
    color: #fff;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button span {
    margin-left: 5px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  .services .services-container .services-wrapper .service:nth-child(3) {
    position: relative;
    z-index: 2;
  }
  .services .services-container .services-wrapper .service:nth-child(3) .facebook {
    position: absolute;
    left: 60%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: facebook 3s linear infinite;
    -webkit-animation: facebook 3s linear infinite;
  }
  @-webkit-keyframes facebook {
    0% {
      left: 60%;
    }
    50% {
      left: 75%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 60%;
    }
  }
  @keyframes facebook {
    0% {
      left: 60%;
    }
    50% {
      left: 75%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 60%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(3) .instagram {
    position: absolute;
    top: 45%;
    left: 60%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: instagram 4s linear infinite;
    -webkit-animation: instagram 4s linear infinite;
  }
  @-webkit-keyframes instagram {
    0% {
      left: 60%;
    }
    50% {
      left: 75%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 60%;
    }
  }
  @keyframes instagram {
    0% {
      left: 60%;
    }
    50% {
      left: 75%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 60%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(6) {
    position: relative;
  }
  .services .services-container .services-wrapper .service:nth-child(6) .camera {
    position: absolute;
    top: 90%;
    left: -10px;
    width: 60px;
    transform: rotateX(-5deg);
    -webkit-transform: rotateX(-5deg);
    -moz-transform: rotateX(-5deg);
    -ms-transform: rotateX(-5deg);
    -o-transform: rotateX(-5deg);
  }
}

@media only screen and (max-width: 480px) {
  .services {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .services .services-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .section-title {
    width: 90%;
    position: relative;
    margin-bottom: 50px;
  }
  .services .services-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 18%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .services .services-container .section-title .section-title-text h1 {
    font-size: 30px;
  }
  .services .services-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .services .services-container .section-title .section-title-background img {
    width: 100%;
  }
  .services .services-container .services-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-row-gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .services .services-container .services-wrapper .service {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .services-wrapper .service .service-container {
    width: 80%;
    height: 300px;
    background: #fff;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    padding: 30px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
  }
  .services .services-container .services-wrapper .service .service-container:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  .services .services-container .services-wrapper .service .service-container .service-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .services .services-container .services-wrapper .service .service-container .service-top i {
    font-size: 40px;
    color: #fdc76c;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom {
    width: 100%;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom h1 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-style: normal;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom p {
    font-size: 14px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more {
    height: 100%;
    position: absolute;
    bottom: -92.5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button {
    width: 140px;
    background: #fdc76c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button a {
    color: #fff;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button span {
    margin-left: 5px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  .services .services-container .services-wrapper .service:nth-child(3) {
    position: relative;
    z-index: 2;
  }
  .services .services-container .services-wrapper .service:nth-child(3) .facebook {
    position: absolute;
    left: 60%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: facebook 3s linear infinite;
    -webkit-animation: facebook 3s linear infinite;
  }
  @-webkit-keyframes facebook {
    0% {
      left: 60%;
    }
    50% {
      left: 80%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 60%;
    }
  }
  @keyframes facebook {
    0% {
      left: 60%;
    }
    50% {
      left: 80%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 60%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(3) .instagram {
    position: absolute;
    top: 45%;
    left: 60%;
    z-index: -1;
    width: 100px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: instagram 4s linear infinite;
    -webkit-animation: instagram 4s linear infinite;
  }
  @-webkit-keyframes instagram {
    0% {
      left: 60%;
    }
    50% {
      left: 80%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 60%;
    }
  }
  @keyframes instagram {
    0% {
      left: 60%;
    }
    50% {
      left: 80%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 60%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(6) {
    position: relative;
  }
  .services .services-container .services-wrapper .service:nth-child(6) .camera {
    position: absolute;
    top: 90%;
    left: -10px;
    width: 60px;
    transform: rotateX(-5deg);
    -webkit-transform: rotateX(-5deg);
    -moz-transform: rotateX(-5deg);
    -ms-transform: rotateX(-5deg);
    -o-transform: rotateX(-5deg);
  }
}

@media only screen and (max-width: 420px) {
  .services {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .services .services-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .section-title {
    width: 90%;
    position: relative;
    margin-bottom: 50px;
  }
  .services .services-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 18%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .services .services-container .section-title .section-title-text h1 {
    font-size: 30px;
  }
  .services .services-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .services .services-container .section-title .section-title-background img {
    width: 100%;
  }
  .services .services-container .services-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-row-gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .services .services-container .services-wrapper .service {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .services-wrapper .service .service-container {
    width: 90%;
    height: 300px;
    background: #fff;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    padding: 30px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
  }
  .services .services-container .services-wrapper .service .service-container:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  .services .services-container .services-wrapper .service .service-container .service-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .services .services-container .services-wrapper .service .service-container .service-top i {
    font-size: 40px;
    color: #fdc76c;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom {
    width: 100%;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom h1 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-style: normal;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom p {
    font-size: 14px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more {
    height: 100%;
    position: absolute;
    bottom: -92.5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button {
    width: 140px;
    background: #fdc76c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button a {
    color: #fff;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button span {
    margin-left: 5px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  .services .services-container .services-wrapper .service:nth-child(3) {
    position: relative;
    z-index: 2;
  }
  .services .services-container .services-wrapper .service:nth-child(3) .facebook {
    position: absolute;
    left: 60%;
    z-index: -1;
    width: 70px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: facebook 3s linear infinite;
    -webkit-animation: facebook 3s linear infinite;
  }
  @-webkit-keyframes facebook {
    0% {
      left: 60%;
    }
    50% {
      left: 90%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 60%;
    }
  }
  @keyframes facebook {
    0% {
      left: 60%;
    }
    50% {
      left: 90%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 60%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(3) .instagram {
    position: absolute;
    top: 45%;
    left: 60%;
    z-index: -1;
    width: 70px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: instagram 4s linear infinite;
    -webkit-animation: instagram 4s linear infinite;
  }
  @-webkit-keyframes instagram {
    0% {
      left: 60%;
    }
    50% {
      left: 90%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 60%;
    }
  }
  @keyframes instagram {
    0% {
      left: 60%;
    }
    50% {
      left: 90%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 60%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(6) {
    position: relative;
  }
  .services .services-container .services-wrapper .service:nth-child(6) .camera {
    position: absolute;
    top: 90%;
    left: -10px;
    width: 60px;
    transform: rotateX(-5deg);
    -webkit-transform: rotateX(-5deg);
    -moz-transform: rotateX(-5deg);
    -ms-transform: rotateX(-5deg);
    -o-transform: rotateX(-5deg);
  }
}

@media only screen and (max-width: 350px) {
  .services {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .services .services-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .section-title {
    width: 95%;
    position: relative;
    margin-bottom: 50px;
  }
  .services .services-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 18%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .services .services-container .section-title .section-title-text h1 {
    font-size: 25px;
  }
  .services .services-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .services .services-container .section-title .section-title-background img {
    width: 100%;
  }
  .services .services-container .services-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-row-gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .services .services-container .services-wrapper .service {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .services .services-container .services-wrapper .service .service-container {
    width: 100%;
    height: 300px;
    background: #fff;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    padding: 30px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
  }
  .services .services-container .services-wrapper .service .service-container:hover {
    -webkit-box-shadow: 0 14px 28px #d8d8d8;
            box-shadow: 0 14px 28px #d8d8d8;
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
  }
  .services .services-container .services-wrapper .service .service-container .service-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .services .services-container .services-wrapper .service .service-container .service-top i {
    font-size: 40px;
    color: #fdc76c;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom {
    width: 100%;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom h1 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-style: normal;
  }
  .services .services-container .services-wrapper .service .service-container .service-bottom p {
    font-size: 14px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more {
    height: 100%;
    position: absolute;
    bottom: -92.5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button {
    width: 140px;
    background: #fdc76c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button a {
    color: #fff;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button span {
    margin-left: 5px;
  }
  .services .services-container .services-wrapper .service .service-container .service-read-more button:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
  .services .services-container .services-wrapper .service:nth-child(3) {
    position: relative;
    z-index: 2;
  }
  .services .services-container .services-wrapper .service:nth-child(3) .facebook {
    position: absolute;
    left: 60%;
    z-index: -1;
    width: 70px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: facebook 3s linear infinite;
    -webkit-animation: facebook 3s linear infinite;
  }
  @-webkit-keyframes facebook {
    0% {
      left: 60%;
    }
    50% {
      left: 90%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 60%;
    }
  }
  @keyframes facebook {
    0% {
      left: 60%;
    }
    50% {
      left: 90%;
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
    }
    100% {
      left: 60%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(3) .instagram {
    position: absolute;
    top: 45%;
    left: 60%;
    z-index: -1;
    width: 70px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    animation: instagram 4s linear infinite;
    -webkit-animation: instagram 4s linear infinite;
  }
  @-webkit-keyframes instagram {
    0% {
      left: 60%;
    }
    50% {
      left: 90%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 60%;
    }
  }
  @keyframes instagram {
    0% {
      left: 60%;
    }
    50% {
      left: 90%;
      transform: rotate(10deg);
      -webkit-transform: rotate(10deg);
      -moz-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
      -o-transform: rotate(10deg);
    }
    100% {
      left: 60%;
    }
  }
  .services .services-container .services-wrapper .service:nth-child(6) {
    position: relative;
  }
  .services .services-container .services-wrapper .service:nth-child(6) .camera {
    position: absolute;
    top: 90%;
    left: -10px;
    width: 60px;
    transform: rotateX(-5deg);
    -webkit-transform: rotateX(-5deg);
    -moz-transform: rotateX(-5deg);
    -ms-transform: rotateX(-5deg);
    -o-transform: rotateX(-5deg);
  }
}

@media only screen and (max-width: 1650px) {
  .our-process {
    width: 100%;
    padding: 150px 0px;
  }
  .our-process .our-process-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .our-process .our-process-container .process-section-informations .section-title {
    width: 80%;
    position: relative;
    margin-bottom: 50px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 20%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text h1 {
    font-size: 60px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background img {
    width: 100%;
  }
  .our-process .our-process-container .four-processes {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-left: 2px solid #fdc76c;
    padding-left: 40px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    position: relative;
  }
  .our-process .our-process-container .four-processes .process {
    margin-bottom: 60px;
  }
  .our-process .our-process-container .four-processes .process .process-number {
    position: absolute;
    left: -8%;
  }
  .our-process .our-process-container .four-processes .process .process-ball {
    width: 15px;
    height: 15px;
    background: #fdc76c;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: -1.5%;
    margin-top: 8px;
  }
  .our-process .our-process-container .four-processes .process h1 {
    font-style: italic;
  }
  .our-process .our-process-container .four-processes .process p {
    margin-top: 10px;
  }
  .our-process .our-process-container .four-processes .process:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1540px) {
  .our-process {
    width: 100%;
    padding: 150px 0px;
  }
  .our-process .our-process-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .our-process .our-process-container .process-section-informations .section-title {
    width: 80%;
    position: relative;
    margin-bottom: 50px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 20%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text h1 {
    font-size: 50px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background img {
    width: 100%;
  }
  .our-process .our-process-container .four-processes {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-left: 2px solid #fdc76c;
    padding-left: 40px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    position: relative;
  }
  .our-process .our-process-container .four-processes .process {
    margin-bottom: 60px;
  }
  .our-process .our-process-container .four-processes .process .process-number {
    position: absolute;
    left: -8%;
  }
  .our-process .our-process-container .four-processes .process .process-ball {
    width: 15px;
    height: 15px;
    background: #fdc76c;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: -1.5%;
    margin-top: 8px;
  }
  .our-process .our-process-container .four-processes .process h1 {
    font-style: italic;
  }
  .our-process .our-process-container .four-processes .process p {
    margin-top: 10px;
  }
  .our-process .our-process-container .four-processes .process:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1280px) {
  .our-process {
    width: 100%;
    padding: 150px 0px;
  }
  .our-process .our-process-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .our-process .our-process-container .process-section-informations .section-title {
    width: 90%;
    position: relative;
    margin-bottom: 50px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text h1 {
    font-size: 45px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background img {
    width: 100%;
  }
  .our-process .our-process-container .four-processes {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-left: 2px solid #fdc76c;
    padding-left: 40px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    position: relative;
  }
  .our-process .our-process-container .four-processes .process {
    margin-bottom: 60px;
  }
  .our-process .our-process-container .four-processes .process .process-number {
    position: absolute;
    left: -9%;
  }
  .our-process .our-process-container .four-processes .process .process-ball {
    width: 15px;
    height: 15px;
    background: #fdc76c;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: -2%;
    margin-top: 8px;
  }
  .our-process .our-process-container .four-processes .process h1 {
    font-style: italic;
  }
  .our-process .our-process-container .four-processes .process p {
    margin-top: 10px;
  }
  .our-process .our-process-container .four-processes .process:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1150px) {
  .our-process {
    width: 100%;
    padding: 150px 0px;
  }
  .our-process .our-process-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .our-process .our-process-container .process-section-informations .section-title {
    width: 90%;
    position: relative;
    margin-bottom: 50px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text h1 {
    font-size: 45px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background img {
    width: 100%;
  }
  .our-process .our-process-container .four-processes {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-left: 2px solid #fdc76c;
    padding-left: 40px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    position: relative;
  }
  .our-process .our-process-container .four-processes .process {
    margin-bottom: 60px;
  }
  .our-process .our-process-container .four-processes .process .process-number {
    position: absolute;
    left: -11%;
  }
  .our-process .our-process-container .four-processes .process .process-ball {
    width: 15px;
    height: 15px;
    background: #fdc76c;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: -2%;
    margin-top: 8px;
  }
  .our-process .our-process-container .four-processes .process h1 {
    font-style: italic;
  }
  .our-process .our-process-container .four-processes .process p {
    margin-top: 10px;
  }
  .our-process .our-process-container .four-processes .process:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1050px) {
  .our-process {
    width: 100%;
    padding: 150px 0px;
  }
  .our-process .our-process-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .our-process .our-process-container .process-section-informations .section-title {
    width: 90%;
    position: relative;
    margin-bottom: 50px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text h1 {
    font-size: 35px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background img {
    width: 100%;
  }
  .our-process .our-process-container .four-processes {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-left: 2px solid #fdc76c;
    padding-left: 40px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    position: relative;
  }
  .our-process .our-process-container .four-processes .process {
    margin-bottom: 60px;
  }
  .our-process .our-process-container .four-processes .process .process-number {
    position: absolute;
    left: -11%;
  }
  .our-process .our-process-container .four-processes .process .process-ball {
    width: 15px;
    height: 15px;
    background: #fdc76c;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: -2%;
    margin-top: 8px;
  }
  .our-process .our-process-container .four-processes .process h1 {
    font-style: italic;
  }
  .our-process .our-process-container .four-processes .process p {
    margin-top: 10px;
  }
  .our-process .our-process-container .four-processes .process:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 950px) {
  .our-process {
    width: 100%;
    padding: 150px 0px;
  }
  .our-process .our-process-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .our-process .our-process-container .process-section-informations .section-title {
    width: 90%;
    position: relative;
    margin-bottom: 50px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text h1 {
    font-size: 35px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background img {
    width: 100%;
  }
  .our-process .our-process-container .four-processes {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-left: 2px solid #fdc76c;
    padding-left: 40px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    position: relative;
  }
  .our-process .our-process-container .four-processes .process {
    margin-bottom: 60px;
  }
  .our-process .our-process-container .four-processes .process .process-number {
    position: absolute;
    left: -13%;
  }
  .our-process .our-process-container .four-processes .process .process-ball {
    width: 15px;
    height: 15px;
    background: #fdc76c;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: -3%;
    margin-top: 8px;
  }
  .our-process .our-process-container .four-processes .process h1 {
    font-style: italic;
  }
  .our-process .our-process-container .four-processes .process p {
    margin-top: 10px;
  }
  .our-process .our-process-container .four-processes .process:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 850px) {
  .our-process {
    width: 100%;
    padding: 150px 0px;
  }
  .our-process .our-process-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .our-process .our-process-container .process-section-informations .section-title {
    width: 70%;
    position: relative;
    margin-bottom: 50px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 40%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text h1 {
    font-size: 45px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 20%;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background img {
    width: 100%;
  }
  .our-process .our-process-container .process-section-informations .our-process-p {
    text-align: center;
  }
  .our-process .our-process-container .four-processes {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-left: 2px solid #fdc76c;
    padding-left: 40px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    position: relative;
  }
  .our-process .our-process-container .four-processes .process {
    margin-bottom: 60px;
  }
  .our-process .our-process-container .four-processes .process .process-number {
    position: absolute;
    left: -8%;
  }
  .our-process .our-process-container .four-processes .process .process-ball {
    width: 15px;
    height: 15px;
    background: #fdc76c;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: -1.2%;
    margin-top: 8px;
  }
  .our-process .our-process-container .four-processes .process h1 {
    font-style: italic;
  }
  .our-process .our-process-container .four-processes .process p {
    margin-top: 10px;
  }
  .our-process .our-process-container .four-processes .process:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 750px) {
  .our-process {
    width: 100%;
    padding: 150px 0px;
  }
  .our-process .our-process-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .our-process .our-process-container .process-section-informations .section-title {
    width: 80%;
    position: relative;
    margin-bottom: 50px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 40%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text h1 {
    font-size: 40px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 20%;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background img {
    width: 100%;
  }
  .our-process .our-process-container .process-section-informations .our-process-p {
    text-align: center;
  }
  .our-process .our-process-container .four-processes {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-left: 2px solid #fdc76c;
    padding-left: 40px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    position: relative;
  }
  .our-process .our-process-container .four-processes .process {
    margin-bottom: 60px;
  }
  .our-process .our-process-container .four-processes .process .process-number {
    position: absolute;
    left: -8%;
  }
  .our-process .our-process-container .four-processes .process .process-ball {
    width: 15px;
    height: 15px;
    background: #fdc76c;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: -1.5%;
    margin-top: 8px;
  }
  .our-process .our-process-container .four-processes .process h1 {
    font-style: italic;
  }
  .our-process .our-process-container .four-processes .process p {
    margin-top: 10px;
  }
  .our-process .our-process-container .four-processes .process:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 600px) {
  .our-process {
    width: 100%;
    padding: 150px 0px;
  }
  .our-process .our-process-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .our-process .our-process-container .process-section-informations .section-title {
    width: 80%;
    position: relative;
    margin-bottom: 50px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 25%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text h1 {
    font-size: 40px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 10%;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background img {
    width: 100%;
  }
  .our-process .our-process-container .process-section-informations .our-process-p {
    text-align: center;
  }
  .our-process .our-process-container .four-processes {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-left: 2px solid #fdc76c;
    padding-left: 40px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    position: relative;
  }
  .our-process .our-process-container .four-processes .process {
    margin-bottom: 60px;
  }
  .our-process .our-process-container .four-processes .process .process-number {
    position: absolute;
    left: -10%;
  }
  .our-process .our-process-container .four-processes .process .process-ball {
    width: 15px;
    height: 15px;
    background: #fdc76c;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: -1.8%;
    margin-top: 8px;
  }
  .our-process .our-process-container .four-processes .process h1 {
    font-style: italic;
  }
  .our-process .our-process-container .four-processes .process p {
    margin-top: 10px;
  }
  .our-process .our-process-container .four-processes .process:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 500px) {
  .our-process {
    width: 100%;
    padding: 150px 0px;
  }
  .our-process .our-process-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .our-process .our-process-container .process-section-informations .section-title {
    width: 90%;
    position: relative;
    margin-bottom: 50px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 25%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text h1 {
    font-size: 30px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 5%;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background img {
    width: 100%;
  }
  .our-process .our-process-container .process-section-informations .our-process-p {
    text-align: center;
  }
  .our-process .our-process-container .four-processes {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-left: 2px solid #fdc76c;
    padding-left: 20px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    position: relative;
  }
  .our-process .our-process-container .four-processes .process {
    margin-bottom: 60px;
  }
  .our-process .our-process-container .four-processes .process .process-number {
    position: absolute;
    left: -12%;
    font-size: 17px;
  }
  .our-process .our-process-container .four-processes .process .process-ball {
    width: 15px;
    height: 15px;
    background: #fdc76c;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: -2.5%;
    margin-top: 8px;
  }
  .our-process .our-process-container .four-processes .process h1 {
    font-style: italic;
    font-size: 20px;
  }
  .our-process .our-process-container .four-processes .process p {
    margin-top: 10px;
    font-size: 15px;
  }
  .our-process .our-process-container .four-processes .process:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 340px) {
  .our-process {
    width: 100%;
    padding: 150px 0px;
  }
  .our-process .our-process-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .our-process .our-process-container .process-section-informations .section-title {
    width: 95%;
    position: relative;
    margin-bottom: 50px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 20%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-text h1 {
    font-size: 25px;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 3%;
  }
  .our-process .our-process-container .process-section-informations .section-title .section-title-background img {
    width: 100%;
  }
  .our-process .our-process-container .process-section-informations .our-process-p {
    text-align: center;
  }
  .our-process .our-process-container .four-processes {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-left: 2px solid #fdc76c;
    padding-left: 20px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    position: relative;
  }
  .our-process .our-process-container .four-processes .process {
    margin-bottom: 60px;
  }
  .our-process .our-process-container .four-processes .process .process-number {
    position: absolute;
    left: -12%;
    font-size: 17px;
  }
  .our-process .our-process-container .four-processes .process .process-ball {
    width: 15px;
    height: 15px;
    background: #fdc76c;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: -2.5%;
    margin-top: 8px;
  }
  .our-process .our-process-container .four-processes .process h1 {
    font-style: italic;
    font-size: 20px;
  }
  .our-process .our-process-container .four-processes .process p {
    margin-top: 10px;
    font-size: 15px;
  }
  .our-process .our-process-container .four-processes .process:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1400px) {
  .skills {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .skills .skills-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-left {
    width: 100%;
    height: 650px;
    background: url("../images/Skills Section Image.jpg");
    background-size: cover;
  }
  .skills .skills-container .skills-right {
    width: 100%;
  }
  .skills .skills-container .skills-right .section-title {
    width: 90%;
    position: relative;
    margin-bottom: 50px;
  }
  .skills .skills-container .skills-right .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .skills .skills-container .skills-right .section-title .section-title-text h1 {
    font-size: 60px;
  }
  .skills .skills-container .skills-right .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .skills .skills-container .skills-right .section-title .section-title-background img {
    width: 100%;
  }
  .skills .skills-container .skills-right .skills-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill {
    width: 100%;
    margin-bottom: 30px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-top p {
    font-family: "American Captain", sans-serif;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom {
    width: 100%;
    height: 5px;
    background: #222;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale1 {
    margin-left: -1px;
    width: 90%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale1 3s linear;
    -webkit-animation: skillScale1 3s linear;
  }
  @-webkit-keyframes skillScale1 {
    from {
      width: 0px;
    }
    to {
      width: 90%;
    }
  }
  @keyframes skillScale1 {
    from {
      width: 0px;
    }
    to {
      width: 90%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale2 {
    margin-left: -1px;
    width: 79%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale2 3s linear;
    -webkit-animation: skillScale2 3s linear;
  }
  @-webkit-keyframes skillScale2 {
    from {
      width: 0px;
    }
    to {
      width: 79%;
    }
  }
  @keyframes skillScale2 {
    from {
      width: 0px;
    }
    to {
      width: 79%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale3 {
    margin-left: -1px;
    width: 93%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 3s linear;
    -webkit-animation: skillScale3 3s linear;
  }
  @-webkit-keyframes skillScale3 {
    from {
      width: 0px;
    }
    to {
      width: 93%;
    }
  }
  @keyframes skillScale3 {
    from {
      width: 0px;
    }
    to {
      width: 93%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale4 {
    margin-left: -1px;
    width: 84%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 4s linear;
    -webkit-animation: skillScale3 4s linear;
  }
  @-webkit-keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 84%;
    }
  }
  @keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 84%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale5 {
    margin-left: -1px;
    width: 98%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 5s linear;
    -webkit-animation: skillScale3 5s linear;
  }
  @keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 98%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale6 {
    margin-left: -1px;
    width: 73%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale6 4s linear;
    -webkit-animation: skillScale6 4s linear;
  }
  @-webkit-keyframes skillScale6 {
    from {
      width: 0px;
    }
    to {
      width: 73%;
    }
  }
  @keyframes skillScale6 {
    from {
      width: 0px;
    }
    to {
      width: 73%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale7 {
    margin-left: -1px;
    width: 94%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale6 4s linear;
    -webkit-animation: skillScale6 4s linear;
  }
  @-webkit-keyframes skillScale7 {
    from {
      width: 0px;
    }
    to {
      width: 94%;
    }
  }
  @keyframes skillScale7 {
    from {
      width: 0px;
    }
    to {
      width: 94%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1250px) {
  .skills {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .skills .skills-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-left {
    width: 100%;
    height: 650px;
    background: url("../images/Skills Section Image.jpg");
    background-size: cover;
  }
  .skills .skills-container .skills-right {
    width: 100%;
  }
  .skills .skills-container .skills-right .section-title {
    width: 90%;
    position: relative;
    margin-bottom: 50px;
  }
  .skills .skills-container .skills-right .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .skills .skills-container .skills-right .section-title .section-title-text h1 {
    font-size: 50px;
  }
  .skills .skills-container .skills-right .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .skills .skills-container .skills-right .section-title .section-title-background img {
    width: 100%;
  }
  .skills .skills-container .skills-right .skills-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill {
    width: 100%;
    margin-bottom: 30px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-top p {
    font-family: "American Captain", sans-serif;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom {
    width: 100%;
    height: 5px;
    background: #222;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale1 {
    margin-left: -1px;
    width: 90%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale1 3s linear;
    -webkit-animation: skillScale1 3s linear;
  }
  @-webkit-keyframes skillScale1 {
    from {
      width: 0px;
    }
    to {
      width: 90%;
    }
  }
  @keyframes skillScale1 {
    from {
      width: 0px;
    }
    to {
      width: 90%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale2 {
    margin-left: -1px;
    width: 79%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale2 3s linear;
    -webkit-animation: skillScale2 3s linear;
  }
  @-webkit-keyframes skillScale2 {
    from {
      width: 0px;
    }
    to {
      width: 79%;
    }
  }
  @keyframes skillScale2 {
    from {
      width: 0px;
    }
    to {
      width: 79%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale3 {
    margin-left: -1px;
    width: 93%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 3s linear;
    -webkit-animation: skillScale3 3s linear;
  }
  @-webkit-keyframes skillScale3 {
    from {
      width: 0px;
    }
    to {
      width: 93%;
    }
  }
  @keyframes skillScale3 {
    from {
      width: 0px;
    }
    to {
      width: 93%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale4 {
    margin-left: -1px;
    width: 84%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 4s linear;
    -webkit-animation: skillScale3 4s linear;
  }
  @-webkit-keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 84%;
    }
  }
  @keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 84%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale5 {
    margin-left: -1px;
    width: 98%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 5s linear;
    -webkit-animation: skillScale3 5s linear;
  }
  @keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 98%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale6 {
    margin-left: -1px;
    width: 73%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale6 4s linear;
    -webkit-animation: skillScale6 4s linear;
  }
  @-webkit-keyframes skillScale6 {
    from {
      width: 0px;
    }
    to {
      width: 73%;
    }
  }
  @keyframes skillScale6 {
    from {
      width: 0px;
    }
    to {
      width: 73%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale7 {
    margin-left: -1px;
    width: 94%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale6 4s linear;
    -webkit-animation: skillScale6 4s linear;
  }
  @-webkit-keyframes skillScale7 {
    from {
      width: 0px;
    }
    to {
      width: 94%;
    }
  }
  @keyframes skillScale7 {
    from {
      width: 0px;
    }
    to {
      width: 94%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1050px) {
  .skills {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .skills .skills-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-left {
    width: 100%;
    height: 650px;
    background: url("../images/Skills Section Image.jpg");
    background-size: cover;
  }
  .skills .skills-container .skills-right {
    width: 100%;
  }
  .skills .skills-container .skills-right .section-title {
    width: 90%;
    position: relative;
    margin-bottom: 50px;
  }
  .skills .skills-container .skills-right .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 20%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .skills .skills-container .skills-right .section-title .section-title-text h1 {
    font-size: 45px;
  }
  .skills .skills-container .skills-right .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .skills .skills-container .skills-right .section-title .section-title-background img {
    width: 110%;
  }
  .skills .skills-container .skills-right .skills-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill {
    width: 100%;
    margin-bottom: 30px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-top p {
    font-family: "American Captain", sans-serif;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom {
    width: 100%;
    height: 5px;
    background: #222;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale1 {
    margin-left: -1px;
    width: 90%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale1 3s linear;
    -webkit-animation: skillScale1 3s linear;
  }
  @-webkit-keyframes skillScale1 {
    from {
      width: 0px;
    }
    to {
      width: 90%;
    }
  }
  @keyframes skillScale1 {
    from {
      width: 0px;
    }
    to {
      width: 90%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale2 {
    margin-left: -1px;
    width: 79%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale2 3s linear;
    -webkit-animation: skillScale2 3s linear;
  }
  @-webkit-keyframes skillScale2 {
    from {
      width: 0px;
    }
    to {
      width: 79%;
    }
  }
  @keyframes skillScale2 {
    from {
      width: 0px;
    }
    to {
      width: 79%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale3 {
    margin-left: -1px;
    width: 93%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 3s linear;
    -webkit-animation: skillScale3 3s linear;
  }
  @-webkit-keyframes skillScale3 {
    from {
      width: 0px;
    }
    to {
      width: 93%;
    }
  }
  @keyframes skillScale3 {
    from {
      width: 0px;
    }
    to {
      width: 93%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale4 {
    margin-left: -1px;
    width: 84%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 4s linear;
    -webkit-animation: skillScale3 4s linear;
  }
  @-webkit-keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 84%;
    }
  }
  @keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 84%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale5 {
    margin-left: -1px;
    width: 98%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 5s linear;
    -webkit-animation: skillScale3 5s linear;
  }
  @keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 98%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale6 {
    margin-left: -1px;
    width: 73%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale6 4s linear;
    -webkit-animation: skillScale6 4s linear;
  }
  @-webkit-keyframes skillScale6 {
    from {
      width: 0px;
    }
    to {
      width: 73%;
    }
  }
  @keyframes skillScale6 {
    from {
      width: 0px;
    }
    to {
      width: 73%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale7 {
    margin-left: -1px;
    width: 94%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale6 4s linear;
    -webkit-animation: skillScale6 4s linear;
  }
  @-webkit-keyframes skillScale7 {
    from {
      width: 0px;
    }
    to {
      width: 94%;
    }
  }
  @keyframes skillScale7 {
    from {
      width: 0px;
    }
    to {
      width: 94%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1020px) {
  .skills {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .skills .skills-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-left {
    width: 100%;
    height: 650px;
    background: url("../images/Skills Section Image.jpg");
    background-size: cover;
  }
  .skills .skills-container .skills-right {
    width: 100%;
  }
  .skills .skills-container .skills-right .section-title {
    width: 90%;
    position: relative;
    margin-bottom: 50px;
  }
  .skills .skills-container .skills-right .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 20%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .skills .skills-container .skills-right .section-title .section-title-text h1 {
    font-size: 40px;
  }
  .skills .skills-container .skills-right .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .skills .skills-container .skills-right .section-title .section-title-background img {
    width: 120%;
  }
  .skills .skills-container .skills-right .skills-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill {
    width: 100%;
    margin-bottom: 30px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-top p {
    font-family: "American Captain", sans-serif;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom {
    width: 100%;
    height: 5px;
    background: #222;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale1 {
    margin-left: -1px;
    width: 90%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale1 3s linear;
    -webkit-animation: skillScale1 3s linear;
  }
  @-webkit-keyframes skillScale1 {
    from {
      width: 0px;
    }
    to {
      width: 90%;
    }
  }
  @keyframes skillScale1 {
    from {
      width: 0px;
    }
    to {
      width: 90%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale2 {
    margin-left: -1px;
    width: 79%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale2 3s linear;
    -webkit-animation: skillScale2 3s linear;
  }
  @-webkit-keyframes skillScale2 {
    from {
      width: 0px;
    }
    to {
      width: 79%;
    }
  }
  @keyframes skillScale2 {
    from {
      width: 0px;
    }
    to {
      width: 79%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale3 {
    margin-left: -1px;
    width: 93%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 3s linear;
    -webkit-animation: skillScale3 3s linear;
  }
  @-webkit-keyframes skillScale3 {
    from {
      width: 0px;
    }
    to {
      width: 93%;
    }
  }
  @keyframes skillScale3 {
    from {
      width: 0px;
    }
    to {
      width: 93%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale4 {
    margin-left: -1px;
    width: 84%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 4s linear;
    -webkit-animation: skillScale3 4s linear;
  }
  @-webkit-keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 84%;
    }
  }
  @keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 84%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale5 {
    margin-left: -1px;
    width: 98%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 5s linear;
    -webkit-animation: skillScale3 5s linear;
  }
  @keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 98%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale6 {
    margin-left: -1px;
    width: 73%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale6 4s linear;
    -webkit-animation: skillScale6 4s linear;
  }
  @-webkit-keyframes skillScale6 {
    from {
      width: 0px;
    }
    to {
      width: 73%;
    }
  }
  @keyframes skillScale6 {
    from {
      width: 0px;
    }
    to {
      width: 73%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale7 {
    margin-left: -1px;
    width: 94%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale6 4s linear;
    -webkit-animation: skillScale6 4s linear;
  }
  @-webkit-keyframes skillScale7 {
    from {
      width: 0px;
    }
    to {
      width: 94%;
    }
  }
  @keyframes skillScale7 {
    from {
      width: 0px;
    }
    to {
      width: 94%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 900px) {
  .skills {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .skills .skills-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-left {
    width: 100%;
    height: 650px;
    background: url("../images/Skills Section Image.jpg");
    background-size: cover;
    display: none;
  }
  .skills .skills-container .skills-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-right .section-title {
    width: 100%;
    position: relative;
    margin-bottom: 50px;
  }
  .skills .skills-container .skills-right .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 25%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .skills .skills-container .skills-right .section-title .section-title-text h1 {
    font-size: 60px;
  }
  .skills .skills-container .skills-right .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 10%;
  }
  .skills .skills-container .skills-right .section-title .section-title-background img {
    width: 70%;
  }
  .skills .skills-container .skills-right .skills-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill {
    width: 100%;
    margin-bottom: 30px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-top p {
    font-family: "American Captain", sans-serif;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom {
    width: 100%;
    height: 5px;
    background: #222;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale1 {
    margin-left: -1px;
    width: 90%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale1 3s linear;
    -webkit-animation: skillScale1 3s linear;
  }
  @-webkit-keyframes skillScale1 {
    from {
      width: 0px;
    }
    to {
      width: 90%;
    }
  }
  @keyframes skillScale1 {
    from {
      width: 0px;
    }
    to {
      width: 90%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale2 {
    margin-left: -1px;
    width: 79%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale2 3s linear;
    -webkit-animation: skillScale2 3s linear;
  }
  @-webkit-keyframes skillScale2 {
    from {
      width: 0px;
    }
    to {
      width: 79%;
    }
  }
  @keyframes skillScale2 {
    from {
      width: 0px;
    }
    to {
      width: 79%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale3 {
    margin-left: -1px;
    width: 93%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 3s linear;
    -webkit-animation: skillScale3 3s linear;
  }
  @-webkit-keyframes skillScale3 {
    from {
      width: 0px;
    }
    to {
      width: 93%;
    }
  }
  @keyframes skillScale3 {
    from {
      width: 0px;
    }
    to {
      width: 93%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale4 {
    margin-left: -1px;
    width: 84%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 4s linear;
    -webkit-animation: skillScale3 4s linear;
  }
  @-webkit-keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 84%;
    }
  }
  @keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 84%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale5 {
    margin-left: -1px;
    width: 98%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 5s linear;
    -webkit-animation: skillScale3 5s linear;
  }
  @keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 98%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale6 {
    margin-left: -1px;
    width: 73%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale6 4s linear;
    -webkit-animation: skillScale6 4s linear;
  }
  @-webkit-keyframes skillScale6 {
    from {
      width: 0px;
    }
    to {
      width: 73%;
    }
  }
  @keyframes skillScale6 {
    from {
      width: 0px;
    }
    to {
      width: 73%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale7 {
    margin-left: -1px;
    width: 94%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale6 4s linear;
    -webkit-animation: skillScale6 4s linear;
  }
  @-webkit-keyframes skillScale7 {
    from {
      width: 0px;
    }
    to {
      width: 94%;
    }
  }
  @keyframes skillScale7 {
    from {
      width: 0px;
    }
    to {
      width: 94%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 768px) {
  .skills {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .skills .skills-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-left {
    width: 100%;
    height: 650px;
    background: url("../images/Skills Section Image.jpg");
    background-size: cover;
  }
  .skills .skills-container .skills-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-right .section-title {
    width: 100%;
    position: relative;
    margin-bottom: 50px;
  }
  .skills .skills-container .skills-right .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 25%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .skills .skills-container .skills-right .section-title .section-title-text h1 {
    font-size: 45px;
  }
  .skills .skills-container .skills-right .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 10%;
  }
  .skills .skills-container .skills-right .section-title .section-title-background img {
    width: 70%;
  }
  .skills .skills-container .skills-right .skills-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill {
    width: 100%;
    margin-bottom: 30px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-top p {
    font-family: "American Captain", sans-serif;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom {
    width: 100%;
    height: 5px;
    background: #222;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale1 {
    margin-left: -1px;
    width: 90%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale1 3s linear;
    -webkit-animation: skillScale1 3s linear;
  }
  @-webkit-keyframes skillScale1 {
    from {
      width: 0px;
    }
    to {
      width: 90%;
    }
  }
  @keyframes skillScale1 {
    from {
      width: 0px;
    }
    to {
      width: 90%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale2 {
    margin-left: -1px;
    width: 79%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale2 3s linear;
    -webkit-animation: skillScale2 3s linear;
  }
  @-webkit-keyframes skillScale2 {
    from {
      width: 0px;
    }
    to {
      width: 79%;
    }
  }
  @keyframes skillScale2 {
    from {
      width: 0px;
    }
    to {
      width: 79%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale3 {
    margin-left: -1px;
    width: 93%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 3s linear;
    -webkit-animation: skillScale3 3s linear;
  }
  @-webkit-keyframes skillScale3 {
    from {
      width: 0px;
    }
    to {
      width: 93%;
    }
  }
  @keyframes skillScale3 {
    from {
      width: 0px;
    }
    to {
      width: 93%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale4 {
    margin-left: -1px;
    width: 84%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 4s linear;
    -webkit-animation: skillScale3 4s linear;
  }
  @-webkit-keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 84%;
    }
  }
  @keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 84%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale5 {
    margin-left: -1px;
    width: 98%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 5s linear;
    -webkit-animation: skillScale3 5s linear;
  }
  @keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 98%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale6 {
    margin-left: -1px;
    width: 73%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale6 4s linear;
    -webkit-animation: skillScale6 4s linear;
  }
  @-webkit-keyframes skillScale6 {
    from {
      width: 0px;
    }
    to {
      width: 73%;
    }
  }
  @keyframes skillScale6 {
    from {
      width: 0px;
    }
    to {
      width: 73%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale7 {
    margin-left: -1px;
    width: 94%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale6 4s linear;
    -webkit-animation: skillScale6 4s linear;
  }
  @-webkit-keyframes skillScale7 {
    from {
      width: 0px;
    }
    to {
      width: 94%;
    }
  }
  @keyframes skillScale7 {
    from {
      width: 0px;
    }
    to {
      width: 94%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 600px) {
  .skills {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .skills .skills-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-left {
    width: 100%;
    height: 650px;
    background: url("../images/Skills Section Image.jpg");
    background-size: cover;
  }
  .skills .skills-container .skills-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-right .section-title {
    width: 100%;
    position: relative;
    margin-bottom: 50px;
  }
  .skills .skills-container .skills-right .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 25%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .skills .skills-container .skills-right .section-title .section-title-text h1 {
    font-size: 35px;
  }
  .skills .skills-container .skills-right .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 10%;
  }
  .skills .skills-container .skills-right .section-title .section-title-background img {
    width: 70%;
  }
  .skills .skills-container .skills-right .skills-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill {
    width: 100%;
    margin-bottom: 30px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-top p {
    font-family: "American Captain", sans-serif;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom {
    width: 100%;
    height: 5px;
    background: #222;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale1 {
    margin-left: -1px;
    width: 90%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale1 3s linear;
    -webkit-animation: skillScale1 3s linear;
  }
  @-webkit-keyframes skillScale1 {
    from {
      width: 0px;
    }
    to {
      width: 90%;
    }
  }
  @keyframes skillScale1 {
    from {
      width: 0px;
    }
    to {
      width: 90%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale2 {
    margin-left: -1px;
    width: 79%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale2 3s linear;
    -webkit-animation: skillScale2 3s linear;
  }
  @-webkit-keyframes skillScale2 {
    from {
      width: 0px;
    }
    to {
      width: 79%;
    }
  }
  @keyframes skillScale2 {
    from {
      width: 0px;
    }
    to {
      width: 79%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale3 {
    margin-left: -1px;
    width: 93%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 3s linear;
    -webkit-animation: skillScale3 3s linear;
  }
  @-webkit-keyframes skillScale3 {
    from {
      width: 0px;
    }
    to {
      width: 93%;
    }
  }
  @keyframes skillScale3 {
    from {
      width: 0px;
    }
    to {
      width: 93%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale4 {
    margin-left: -1px;
    width: 84%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 4s linear;
    -webkit-animation: skillScale3 4s linear;
  }
  @-webkit-keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 84%;
    }
  }
  @keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 84%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale5 {
    margin-left: -1px;
    width: 98%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 5s linear;
    -webkit-animation: skillScale3 5s linear;
  }
  @keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 98%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale6 {
    margin-left: -1px;
    width: 73%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale6 4s linear;
    -webkit-animation: skillScale6 4s linear;
  }
  @-webkit-keyframes skillScale6 {
    from {
      width: 0px;
    }
    to {
      width: 73%;
    }
  }
  @keyframes skillScale6 {
    from {
      width: 0px;
    }
    to {
      width: 73%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale7 {
    margin-left: -1px;
    width: 94%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale6 4s linear;
    -webkit-animation: skillScale6 4s linear;
  }
  @-webkit-keyframes skillScale7 {
    from {
      width: 0px;
    }
    to {
      width: 94%;
    }
  }
  @keyframes skillScale7 {
    from {
      width: 0px;
    }
    to {
      width: 94%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 500px) {
  .skills {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .skills .skills-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-left {
    width: 100%;
    height: 650px;
    background: url("../images/Skills Section Image.jpg");
    background-size: cover;
  }
  .skills .skills-container .skills-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-right .section-title {
    width: 100%;
    position: relative;
    margin-bottom: 50px;
  }
  .skills .skills-container .skills-right .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 25%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .skills .skills-container .skills-right .section-title .section-title-text h1 {
    font-size: 35px;
  }
  .skills .skills-container .skills-right .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 10%;
  }
  .skills .skills-container .skills-right .section-title .section-title-background img {
    width: 80%;
  }
  .skills .skills-container .skills-right .skills-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill {
    width: 100%;
    margin-bottom: 30px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-top p {
    font-family: "American Captain", sans-serif;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom {
    width: 100%;
    height: 5px;
    background: #222;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale1 {
    margin-left: -1px;
    width: 90%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale1 3s linear;
    -webkit-animation: skillScale1 3s linear;
  }
  @-webkit-keyframes skillScale1 {
    from {
      width: 0px;
    }
    to {
      width: 90%;
    }
  }
  @keyframes skillScale1 {
    from {
      width: 0px;
    }
    to {
      width: 90%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale2 {
    margin-left: -1px;
    width: 79%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale2 3s linear;
    -webkit-animation: skillScale2 3s linear;
  }
  @-webkit-keyframes skillScale2 {
    from {
      width: 0px;
    }
    to {
      width: 79%;
    }
  }
  @keyframes skillScale2 {
    from {
      width: 0px;
    }
    to {
      width: 79%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale3 {
    margin-left: -1px;
    width: 93%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 3s linear;
    -webkit-animation: skillScale3 3s linear;
  }
  @-webkit-keyframes skillScale3 {
    from {
      width: 0px;
    }
    to {
      width: 93%;
    }
  }
  @keyframes skillScale3 {
    from {
      width: 0px;
    }
    to {
      width: 93%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale4 {
    margin-left: -1px;
    width: 84%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 4s linear;
    -webkit-animation: skillScale3 4s linear;
  }
  @-webkit-keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 84%;
    }
  }
  @keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 84%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale5 {
    margin-left: -1px;
    width: 98%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 5s linear;
    -webkit-animation: skillScale3 5s linear;
  }
  @keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 98%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale6 {
    margin-left: -1px;
    width: 73%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale6 4s linear;
    -webkit-animation: skillScale6 4s linear;
  }
  @-webkit-keyframes skillScale6 {
    from {
      width: 0px;
    }
    to {
      width: 73%;
    }
  }
  @keyframes skillScale6 {
    from {
      width: 0px;
    }
    to {
      width: 73%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale7 {
    margin-left: -1px;
    width: 94%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale6 4s linear;
    -webkit-animation: skillScale6 4s linear;
  }
  @-webkit-keyframes skillScale7 {
    from {
      width: 0px;
    }
    to {
      width: 94%;
    }
  }
  @keyframes skillScale7 {
    from {
      width: 0px;
    }
    to {
      width: 94%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 400px) {
  .skills {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .skills .skills-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-left {
    width: 100%;
    height: 650px;
    background: url("../images/Skills Section Image.jpg");
    background-size: cover;
  }
  .skills .skills-container .skills-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-right .section-title {
    width: 100%;
    position: relative;
    margin-bottom: 50px;
  }
  .skills .skills-container .skills-right .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 25%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .skills .skills-container .skills-right .section-title .section-title-text h1 {
    font-size: 30px;
  }
  .skills .skills-container .skills-right .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 5%;
  }
  .skills .skills-container .skills-right .section-title .section-title-background img {
    width: 90%;
  }
  .skills .skills-container .skills-right .skills-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill {
    width: 100%;
    margin-bottom: 30px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-top p {
    font-family: "American Captain", sans-serif;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom {
    width: 100%;
    height: 5px;
    background: #222;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale1 {
    margin-left: -1px;
    width: 90%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale1 3s linear;
    -webkit-animation: skillScale1 3s linear;
  }
  @-webkit-keyframes skillScale1 {
    from {
      width: 0px;
    }
    to {
      width: 90%;
    }
  }
  @keyframes skillScale1 {
    from {
      width: 0px;
    }
    to {
      width: 90%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale2 {
    margin-left: -1px;
    width: 79%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale2 3s linear;
    -webkit-animation: skillScale2 3s linear;
  }
  @-webkit-keyframes skillScale2 {
    from {
      width: 0px;
    }
    to {
      width: 79%;
    }
  }
  @keyframes skillScale2 {
    from {
      width: 0px;
    }
    to {
      width: 79%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale3 {
    margin-left: -1px;
    width: 93%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 3s linear;
    -webkit-animation: skillScale3 3s linear;
  }
  @-webkit-keyframes skillScale3 {
    from {
      width: 0px;
    }
    to {
      width: 93%;
    }
  }
  @keyframes skillScale3 {
    from {
      width: 0px;
    }
    to {
      width: 93%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale4 {
    margin-left: -1px;
    width: 84%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 4s linear;
    -webkit-animation: skillScale3 4s linear;
  }
  @-webkit-keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 84%;
    }
  }
  @keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 84%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale5 {
    margin-left: -1px;
    width: 98%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale3 5s linear;
    -webkit-animation: skillScale3 5s linear;
  }
  @keyframes skillScale4 {
    from {
      width: 0px;
    }
    to {
      width: 98%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale6 {
    margin-left: -1px;
    width: 73%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale6 4s linear;
    -webkit-animation: skillScale6 4s linear;
  }
  @-webkit-keyframes skillScale6 {
    from {
      width: 0px;
    }
    to {
      width: 73%;
    }
  }
  @keyframes skillScale6 {
    from {
      width: 0px;
    }
    to {
      width: 73%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill .skill-bottom .skill-scale7 {
    margin-left: -1px;
    width: 94%;
    height: 100%;
    background: #fdc76c;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    animation: skillScale6 4s linear;
    -webkit-animation: skillScale6 4s linear;
  }
  @-webkit-keyframes skillScale7 {
    from {
      width: 0px;
    }
    to {
      width: 94%;
    }
  }
  @keyframes skillScale7 {
    from {
      width: 0px;
    }
    to {
      width: 94%;
    }
  }
  .skills .skills-container .skills-right .skills-wrapper .skill:last-child {
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1500px) {
  .ceo {
    width: 100%;
    padding: 150px 0px;
  }
  .ceo .ceo-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-left {
    width: 100%;
  }
  .ceo .ceo-container .ceo-left img {
    width: 65%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos {
    width: 65%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title {
    width: 100%;
    position: relative;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 20%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text h1 {
    font-size: 50px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background img {
    width: 100%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 {
    color: #222;
    font-weight: 400;
    font-family: 'American Captain';
    text-align: center;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 span {
    color: #fdc76c;
    letter-spacing: 1px;
  }
  .ceo .ceo-container .ceo-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-right p {
    font-size: 18px;
    color: #555;
  }
  .ceo .ceo-container .ceo-right p span {
    font-size: 30px;
    color: #fdc76c;
  }
}

@media only screen and (max-width: 1300px) {
  .ceo {
    width: 100%;
    padding: 150px 0px;
  }
  .ceo .ceo-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-left {
    width: 100%;
  }
  .ceo .ceo-container .ceo-left img {
    width: 65%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos {
    width: 65%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title {
    width: 100%;
    position: relative;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 20%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text h1 {
    font-size: 40px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background img {
    width: 110%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 {
    color: #222;
    font-weight: 400;
    font-family: 'American Captain';
    text-align: center;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 span {
    color: #fdc76c;
    letter-spacing: 1px;
  }
  .ceo .ceo-container .ceo-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-right p {
    font-size: 18px;
    color: #555;
  }
  .ceo .ceo-container .ceo-right p span {
    font-size: 30px;
    color: #fdc76c;
  }
}

@media only screen and (max-width: 980px) {
  .ceo {
    width: 100%;
    padding: 150px 0px;
  }
  .ceo .ceo-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-left {
    width: 100%;
  }
  .ceo .ceo-container .ceo-left img {
    width: 65%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos {
    width: 65%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title {
    width: 100%;
    position: relative;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text h1 {
    font-size: 40px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background img {
    width: 130%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 {
    color: #222;
    font-weight: 400;
    font-family: 'American Captain';
    text-align: center;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 span {
    color: #fdc76c;
    letter-spacing: 1px;
  }
  .ceo .ceo-container .ceo-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-right p {
    font-size: 18px;
    color: #555;
  }
  .ceo .ceo-container .ceo-right p span {
    font-size: 30px;
    color: #fdc76c;
  }
}

@media only screen and (max-width: 850px) {
  .ceo {
    width: 100%;
    padding: 150px 0px;
  }
  .ceo .ceo-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-left {
    width: 100%;
  }
  .ceo .ceo-container .ceo-left img {
    width: 65%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos {
    width: 65%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title {
    width: 100%;
    position: relative;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 8%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text h1 {
    font-size: 40px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background img {
    width: 150%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 {
    color: #222;
    font-weight: 400;
    font-family: 'American Captain';
    text-align: center;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 span {
    color: #fdc76c;
    letter-spacing: 1px;
  }
  .ceo .ceo-container .ceo-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-right p {
    font-size: 18px;
    color: #555;
  }
  .ceo .ceo-container .ceo-right p span {
    font-size: 30px;
    color: #fdc76c;
  }
}

@media only screen and (max-width: 768px) {
  .ceo {
    width: 100%;
    padding: 150px 0px;
  }
  .ceo .ceo-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-left img {
    width: 65%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos {
    width: 65%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title {
    width: 100%;
    position: relative;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 25%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text h1 {
    font-size: 40px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background img {
    width: 100%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 {
    color: #222;
    font-weight: 400;
    font-family: 'American Captain';
    text-align: center;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 span {
    color: #fdc76c;
    letter-spacing: 1px;
  }
  .ceo .ceo-container .ceo-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-right p {
    font-size: 18px;
    color: #555;
    margin-top: 50px;
    text-align: center;
  }
  .ceo .ceo-container .ceo-right p span {
    font-size: 30px;
    color: #fdc76c;
  }
}

@media only screen and (max-width: 678px) {
  .ceo {
    width: 100%;
    padding: 150px 0px;
  }
  .ceo .ceo-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-left img {
    width: 65%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos {
    width: 65%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title {
    width: 100%;
    position: relative;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 25%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text h1 {
    font-size: 35px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background img {
    width: 100%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 {
    color: #222;
    font-weight: 400;
    font-family: 'American Captain';
    text-align: center;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 span {
    color: #fdc76c;
    letter-spacing: 1px;
  }
  .ceo .ceo-container .ceo-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-right p {
    font-size: 18px;
    color: #555;
    margin-top: 50px;
    text-align: center;
  }
  .ceo .ceo-container .ceo-right p span {
    font-size: 30px;
    color: #fdc76c;
  }
}

@media only screen and (max-width: 550px) {
  .ceo {
    width: 100%;
    padding: 150px 0px;
  }
  .ceo .ceo-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-left img {
    width: 65%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos {
    width: 65%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title {
    width: 100%;
    position: relative;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 20%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text h1 {
    font-size: 35px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background img {
    width: 100%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 {
    color: #222;
    font-weight: 400;
    font-family: 'American Captain';
    text-align: center;
    font-size: 17px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 span {
    color: #fdc76c;
    letter-spacing: 1px;
  }
  .ceo .ceo-container .ceo-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-right p {
    font-size: 16px;
    color: #555;
    margin-top: 50px;
    text-align: center;
  }
  .ceo .ceo-container .ceo-right p span {
    font-size: 30px;
    color: #fdc76c;
  }
}

@media only screen and (max-width: 500px) {
  .ceo {
    width: 100%;
    padding: 150px 0px;
  }
  .ceo .ceo-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-left img {
    width: 65%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos {
    width: 65%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title {
    width: 100%;
    position: relative;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text h1 {
    font-size: 35px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background img {
    width: 120%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 {
    color: #222;
    font-weight: 400;
    font-family: 'American Captain';
    text-align: center;
    font-size: 17px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 span {
    color: #fdc76c;
    letter-spacing: 1px;
  }
  .ceo .ceo-container .ceo-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-right p {
    font-size: 16px;
    color: #555;
    margin-top: 50px;
    text-align: center;
  }
  .ceo .ceo-container .ceo-right p span {
    font-size: 30px;
    color: #fdc76c;
  }
}

@media only screen and (max-width: 430px) {
  .ceo {
    width: 100%;
    padding: 150px 0px;
  }
  .ceo .ceo-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-left img {
    width: 65%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos {
    width: 65%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title {
    width: 100%;
    position: relative;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 10%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text h1 {
    font-size: 35px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background img {
    width: 140%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 {
    color: #222;
    font-weight: 400;
    font-family: 'American Captain';
    text-align: center;
    font-size: 17px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 span {
    color: #fdc76c;
    letter-spacing: 1px;
  }
  .ceo .ceo-container .ceo-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-right p {
    font-size: 16px;
    color: #555;
    margin-top: 50px;
    text-align: center;
  }
  .ceo .ceo-container .ceo-right p span {
    font-size: 30px;
    color: #fdc76c;
  }
}

@media only screen and (max-width: 400px) {
  .ceo {
    width: 100%;
    padding: 150px 0px;
  }
  .ceo .ceo-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-left img {
    width: 65%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos {
    width: 65%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title {
    width: 100%;
    position: relative;
    display: none;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text {
    position: relative;
    top: 0%;
    left: 50%;
    z-index: 20;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text h1 {
    font-size: 35px;
    text-align: center;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: none;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background img {
    width: 140%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 {
    color: #222;
    font-weight: 400;
    font-family: 'American Captain';
    text-align: center;
    font-size: 17px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 span {
    color: #fdc76c;
    letter-spacing: 1px;
  }
  .ceo .ceo-container .ceo-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-right p {
    font-size: 16px;
    color: #555;
    margin-top: 20px;
    text-align: center;
  }
  .ceo .ceo-container .ceo-right p span {
    font-size: 30px;
    color: #fdc76c;
  }
}

@media only screen and (max-width: 350px) {
  .ceo {
    width: 100%;
    padding: 150px 0px;
  }
  .ceo .ceo-container {
    width: 80%;
    height: 100%;
    margin: auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-left img {
    width: 65%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos {
    width: 65%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title {
    width: 100%;
    position: relative;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 5%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-text h1 {
    font-size: 30px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ceo .ceo-container .ceo-left .ceo-infos .section-title .section-title-background img {
    width: 140%;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 {
    color: #222;
    font-weight: 400;
    font-family: 'American Captain';
    text-align: center;
    font-size: 17px;
  }
  .ceo .ceo-container .ceo-left .ceo-infos h3 span {
    color: #fdc76c;
    letter-spacing: 1px;
  }
  .ceo .ceo-container .ceo-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ceo .ceo-container .ceo-right p {
    font-size: 16px;
    color: #555;
    margin-top: 50px;
    text-align: center;
  }
  .ceo .ceo-container .ceo-right p span {
    font-size: 30px;
    color: #fdc76c;
  }
}

@media only screen and (max-width: 1500px) {
  .clients {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .clients .clients-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .clients .clients-container .section-title {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }
  .clients .clients-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 30%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .clients .clients-container .section-title .section-title-text h1 {
    font-size: 60px;
  }
  .clients .clients-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .clients .clients-container .section-title .section-title-background img {
    width: 100%;
  }
  .clients .clients-container .clients-image {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .clients .clients-container .clients-image img {
    width: 50%;
  }
}

@media only screen and (max-width: 1500px) {
  .clients {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .clients .clients-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .clients .clients-container .section-title {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }
  .clients .clients-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 30%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .clients .clients-container .section-title .section-title-text h1 {
    font-size: 60px;
  }
  .clients .clients-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .clients .clients-container .section-title .section-title-background img {
    width: 100%;
  }
  .clients .clients-container .clients-image {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .clients .clients-container .clients-image img {
    width: 70%;
  }
}

@media only screen and (max-width: 950px) {
  .clients {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .clients .clients-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .clients .clients-container .section-title {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }
  .clients .clients-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 30%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .clients .clients-container .section-title .section-title-text h1 {
    font-size: 50px;
  }
  .clients .clients-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .clients .clients-container .section-title .section-title-background img {
    width: 100%;
  }
  .clients .clients-container .clients-image {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .clients .clients-container .clients-image img {
    width: 70%;
  }
}

@media only screen and (max-width: 780px) {
  .clients {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .clients .clients-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .clients .clients-container .section-title {
    width: 60%;
    position: relative;
    margin-bottom: 50px;
  }
  .clients .clients-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 30%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .clients .clients-container .section-title .section-title-text h1 {
    font-size: 40px;
  }
  .clients .clients-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .clients .clients-container .section-title .section-title-background img {
    width: 100%;
  }
  .clients .clients-container .clients-image {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .clients .clients-container .clients-image img {
    width: 80%;
  }
}

@media only screen and (max-width: 550px) {
  .clients {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .clients .clients-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .clients .clients-container .section-title {
    width: 70%;
    position: relative;
    margin-bottom: 50px;
  }
  .clients .clients-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 30%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .clients .clients-container .section-title .section-title-text h1 {
    font-size: 40px;
  }
  .clients .clients-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .clients .clients-container .section-title .section-title-background img {
    width: 100%;
  }
  .clients .clients-container .clients-image {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .clients .clients-container .clients-image img {
    width: 80%;
  }
}

@media only screen and (max-width: 450px) {
  .clients {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .clients .clients-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .clients .clients-container .section-title {
    width: 70%;
    position: relative;
    margin-bottom: 50px;
  }
  .clients .clients-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 30%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .clients .clients-container .section-title .section-title-text h1 {
    font-size: 30px;
  }
  .clients .clients-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .clients .clients-container .section-title .section-title-background img {
    width: 100%;
  }
  .clients .clients-container .clients-image {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .clients .clients-container .clients-image img {
    width: 90%;
  }
}

@media only screen and (max-width: 380px) {
  .clients {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
    display: none;
  }
  .clients .clients-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .clients .clients-container .section-title {
    width: 70%;
    position: relative;
    margin-bottom: 50px;
  }
  .clients .clients-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 30%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .clients .clients-container .section-title .section-title-text h1 {
    font-size: 25px;
  }
  .clients .clients-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .clients .clients-container .section-title .section-title-background img {
    width: 100%;
  }
  .clients .clients-container .clients-image {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .clients .clients-container .clients-image img {
    width: 90%;
  }
}

@media only screen and (max-width: 1500px) {
  .contact {
    width: 100%;
    padding: 150px 0px;
  }
  .contact .contact-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .contact-container .section-title {
    width: 50%;
    position: relative;
    margin-bottom: 100px;
  }
  .contact .contact-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 30%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .contact .contact-container .section-title .section-title-text h1 {
    font-size: 60px;
  }
  .contact .contact-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .contact .contact-container .section-title .section-title-background img {
    width: 100%;
  }
  .contact .contact-container .contact-form {
    width: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .contact-container .contact-form .top-input-groups {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-bottom: 50px;
  }
  .contact .contact-container .contact-form .top-input-groups .input-group {
    width: 100%;
  }
  .contact .contact-container .contact-form .top-input-groups .input-group input {
    width: 100%;
    height: 60px;
    font-size: 18px;
    background: none;
    color: #555;
    border-bottom: 1px solid #d1d1d1;
  }
  .contact .contact-container .contact-form .top-input-groups .input-group input:focus {
    border-bottom-color: #fdc76c;
  }
  .contact .contact-container .contact-form .input-group {
    width: 100%;
  }
  .contact .contact-container .contact-form .input-group textarea {
    width: 100%;
    height: 60px;
    font-size: 18px;
    background: none;
    color: #555;
    border: none;
    border-bottom: 1px solid #d1d1d1;
    outline: none;
    resize: none;
    font-family: "Poppins", sans-serif;
  }
  .contact .contact-container .contact-form .input-group textarea:focus {
    border-bottom-color: #fdc76c;
  }
  .contact .contact-container .contact-form button {
    width: 150px;
    height: 50px;
    margin-top: 30px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    color: #000;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .contact .contact-container .contact-form button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
}

@media only screen and (max-width: 1300px) {
  .contact {
    width: 100%;
    padding: 150px 0px;
  }
  .contact .contact-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .contact-container .section-title {
    width: 50%;
    position: relative;
    margin-bottom: 100px;
  }
  .contact .contact-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 30%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .contact .contact-container .section-title .section-title-text h1 {
    font-size: 60px;
  }
  .contact .contact-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .contact .contact-container .section-title .section-title-background img {
    width: 100%;
  }
  .contact .contact-container .contact-form {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .contact-container .contact-form .top-input-groups {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-bottom: 50px;
  }
  .contact .contact-container .contact-form .top-input-groups .input-group {
    width: 100%;
  }
  .contact .contact-container .contact-form .top-input-groups .input-group input {
    width: 100%;
    height: 60px;
    font-size: 18px;
    background: none;
    color: #555;
    border-bottom: 1px solid #d1d1d1;
  }
  .contact .contact-container .contact-form .top-input-groups .input-group input:focus {
    border-bottom-color: #fdc76c;
  }
  .contact .contact-container .contact-form .input-group {
    width: 100%;
  }
  .contact .contact-container .contact-form .input-group textarea {
    width: 100%;
    height: 60px;
    font-size: 18px;
    background: none;
    color: #555;
    border: none;
    border-bottom: 1px solid #d1d1d1;
    outline: none;
    resize: none;
    font-family: "Poppins", sans-serif;
  }
  .contact .contact-container .contact-form .input-group textarea:focus {
    border-bottom-color: #fdc76c;
  }
  .contact .contact-container .contact-form button {
    width: 150px;
    height: 50px;
    margin-top: 30px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    color: #000;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .contact .contact-container .contact-form button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
}

@media only screen and (max-width: 980px) {
  .contact {
    width: 100%;
    padding: 150px 0px;
  }
  .contact .contact-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .contact-container .section-title {
    width: 50%;
    position: relative;
    margin-bottom: 100px;
  }
  .contact .contact-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 25%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .contact .contact-container .section-title .section-title-text h1 {
    font-size: 50px;
  }
  .contact .contact-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .contact .contact-container .section-title .section-title-background img {
    width: 100%;
  }
  .contact .contact-container .contact-form {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .contact-container .contact-form .top-input-groups {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-bottom: 50px;
  }
  .contact .contact-container .contact-form .top-input-groups .input-group {
    width: 100%;
  }
  .contact .contact-container .contact-form .top-input-groups .input-group input {
    width: 100%;
    height: 60px;
    font-size: 18px;
    background: none;
    color: #555;
    border-bottom: 1px solid #d1d1d1;
  }
  .contact .contact-container .contact-form .top-input-groups .input-group input:focus {
    border-bottom-color: #fdc76c;
  }
  .contact .contact-container .contact-form .input-group {
    width: 100%;
  }
  .contact .contact-container .contact-form .input-group textarea {
    width: 100%;
    height: 60px;
    font-size: 18px;
    background: none;
    color: #555;
    border: none;
    border-bottom: 1px solid #d1d1d1;
    outline: none;
    resize: none;
    font-family: "Poppins", sans-serif;
  }
  .contact .contact-container .contact-form .input-group textarea:focus {
    border-bottom-color: #fdc76c;
  }
  .contact .contact-container .contact-form button {
    width: 150px;
    height: 50px;
    margin-top: 30px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    color: #000;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .contact .contact-container .contact-form button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
}

@media only screen and (max-width: 780px) {
  .contact {
    width: 100%;
    padding: 150px 0px;
  }
  .contact .contact-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .contact-container .section-title {
    width: 70%;
    position: relative;
    margin-bottom: 100px;
  }
  .contact .contact-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 30%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .contact .contact-container .section-title .section-title-text h1 {
    font-size: 40px;
  }
  .contact .contact-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .contact .contact-container .section-title .section-title-background img {
    width: 100%;
  }
  .contact .contact-container .contact-form {
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .contact-container .contact-form .top-input-groups {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-bottom: 50px;
  }
  .contact .contact-container .contact-form .top-input-groups .input-group {
    width: 100%;
  }
  .contact .contact-container .contact-form .top-input-groups .input-group input {
    width: 100%;
    height: 60px;
    font-size: 18px;
    background: none;
    color: #555;
    border-bottom: 1px solid #d1d1d1;
  }
  .contact .contact-container .contact-form .top-input-groups .input-group input:focus {
    border-bottom-color: #fdc76c;
  }
  .contact .contact-container .contact-form .input-group {
    width: 100%;
  }
  .contact .contact-container .contact-form .input-group textarea {
    width: 100%;
    height: 60px;
    font-size: 18px;
    background: none;
    color: #555;
    border: none;
    border-bottom: 1px solid #d1d1d1;
    outline: none;
    resize: none;
    font-family: "Poppins", sans-serif;
  }
  .contact .contact-container .contact-form .input-group textarea:focus {
    border-bottom-color: #fdc76c;
  }
  .contact .contact-container .contact-form button {
    width: 150px;
    height: 50px;
    margin-top: 30px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    color: #000;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .contact .contact-container .contact-form button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
}

@media only screen and (max-width: 480px) {
  .contact {
    width: 100%;
    padding: 150px 0px;
  }
  .contact .contact-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .contact-container .section-title {
    width: 70%;
    position: relative;
    margin-bottom: 100px;
  }
  .contact .contact-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 30%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .contact .contact-container .section-title .section-title-text h1 {
    font-size: 30px;
  }
  .contact .contact-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .contact .contact-container .section-title .section-title-background img {
    width: 100%;
  }
  .contact .contact-container .contact-form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .contact-container .contact-form .top-input-groups {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-bottom: 50px;
  }
  .contact .contact-container .contact-form .top-input-groups .input-group {
    width: 100%;
  }
  .contact .contact-container .contact-form .top-input-groups .input-group input {
    width: 100%;
    height: 60px;
    font-size: 18px;
    background: none;
    color: #555;
    border-bottom: 1px solid #d1d1d1;
  }
  .contact .contact-container .contact-form .top-input-groups .input-group input:focus {
    border-bottom-color: #fdc76c;
  }
  .contact .contact-container .contact-form .input-group {
    width: 100%;
  }
  .contact .contact-container .contact-form .input-group textarea {
    width: 100%;
    height: 60px;
    font-size: 18px;
    background: none;
    color: #555;
    border: none;
    border-bottom: 1px solid #d1d1d1;
    outline: none;
    resize: none;
    font-family: "Poppins", sans-serif;
  }
  .contact .contact-container .contact-form .input-group textarea:focus {
    border-bottom-color: #fdc76c;
  }
  .contact .contact-container .contact-form button {
    width: 150px;
    height: 50px;
    margin-top: 30px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    color: #000;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .contact .contact-container .contact-form button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
}

@media only screen and (max-width: 380px) {
  .contact {
    width: 100%;
    padding: 150px 0px;
    background: #f5f5f5;
  }
  .contact .contact-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .contact-container .section-title {
    width: 70%;
    position: relative;
    margin-bottom: 100px;
  }
  .contact .contact-container .section-title .section-title-text {
    position: absolute;
    top: 50%;
    left: 30%;
    z-index: 20;
    transform: translateY(-70%);
    -webkit-transform: translateY(-70%);
    -moz-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    -o-transform: translateY(-70%);
  }
  .contact .contact-container .section-title .section-title-text h1 {
    font-size: 25px;
  }
  .contact .contact-container .section-title .section-title-background {
    width: 100%;
    position: relative;
    top: 0;
    left: 0%;
  }
  .contact .contact-container .section-title .section-title-background img {
    width: 100%;
  }
  .contact .contact-container .contact-form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .contact-container .contact-form .top-input-groups {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-bottom: 50px;
  }
  .contact .contact-container .contact-form .top-input-groups .input-group {
    width: 100%;
  }
  .contact .contact-container .contact-form .top-input-groups .input-group input {
    width: 100%;
    height: 60px;
    font-size: 18px;
    background: none;
    color: #555;
    border-bottom: 1px solid #d1d1d1;
  }
  .contact .contact-container .contact-form .top-input-groups .input-group input:focus {
    border-bottom-color: #fdc76c;
  }
  .contact .contact-container .contact-form .input-group {
    width: 100%;
  }
  .contact .contact-container .contact-form .input-group textarea {
    width: 100%;
    height: 60px;
    font-size: 18px;
    background: none;
    color: #555;
    border: none;
    border-bottom: 1px solid #d1d1d1;
    outline: none;
    resize: none;
    font-family: "Poppins", sans-serif;
  }
  .contact .contact-container .contact-form .input-group textarea:focus {
    border-bottom-color: #fdc76c;
  }
  .contact .contact-container .contact-form button {
    width: 150px;
    height: 50px;
    margin-top: 30px;
    background: #fdc76c;
    font-family: 'American Captain', sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 30px;
    color: #000;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
  }
  .contact .contact-container .contact-form button:hover {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
}

@media only screen and (max-width: 1120px) {
  footer {
    width: 100%;
    padding: 50px 0px 20px 0px;
    background: #252525;
  }
  footer .footer-top {
    width: 100%;
    padding-bottom: 50px;
    border-bottom: 1px solid #4f4f4f;
  }
  footer .footer-top img {
    width: 100px;
  }
  footer .footer-top .footer-top-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .footer-top .footer-top-container .footer-items {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item {
    width: 100%;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item h3 {
    color: #c1c1c1;
    font-size: 22px;
    margin-bottom: 20px;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item .footer-item-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item .footer-item-links a {
    color: #6f6f6f;
    font-size: 17px;
    font-weight: 300;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item .footer-item-links a:hover {
    color: #fdc76c;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item:nth-child(2) .footer-item-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: auto;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 50px;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item:last-child .footer-social-media-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item:last-child .footer-social-media-icons h3 {
    text-align: center;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item:last-child .footer-social-media-icons .icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item:last-child .footer-social-media-icons .icons .icon {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fdc76c;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-left: 20px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item:last-child .footer-social-media-icons .icons .icon a {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
    font-size: 20px;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item:last-child .footer-social-media-icons .icons .icon:hover {
    opacity: 0.9;
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  footer .footer-bottom {
    width: 100%;
    margin-top: 20px;
  }
  footer .footer-bottom .footer-bottom-container {
    width: 80%;
    margin: auto;
    color: #6f6f6f;
  }
}

@media only screen and (max-width: 580px) {
  footer {
    width: 100%;
    padding: 50px 0px 20px 0px;
    background: #252525;
  }
  footer .footer-top {
    width: 100%;
    padding-bottom: 50px;
    border-bottom: 1px solid #4f4f4f;
  }
  footer .footer-top img {
    width: 100px;
  }
  footer .footer-top .footer-top-container {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .footer-top .footer-top-container .footer-items {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    margin-top: 50px;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item {
    width: 100%;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item h3 {
    color: #c1c1c1;
    font-size: 22px;
    margin-bottom: 20px;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item .footer-item-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item .footer-item-links a {
    color: #6f6f6f;
    font-size: 17px;
    font-weight: 300;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item .footer-item-links a:hover {
    color: #fdc76c;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item:nth-child(2) .footer-item-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0px;
    margin-top: 30px;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 50px;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item:last-child .footer-social-media-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item:last-child .footer-social-media-icons h3 {
    text-align: center;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item:last-child .footer-social-media-icons .icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item:last-child .footer-social-media-icons .icons .icon {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fdc76c;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-left: 20px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item:last-child .footer-social-media-icons .icons .icon a {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
    font-size: 20px;
  }
  footer .footer-top .footer-top-container .footer-items .footer-item:last-child .footer-social-media-icons .icons .icon:hover {
    opacity: 0.9;
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
  }
  footer .footer-bottom {
    width: 100%;
    margin-top: 20px;
  }
  footer .footer-bottom .footer-bottom-container {
    width: 80%;
    margin: auto;
    color: #6f6f6f;
  }
}
/*# sourceMappingURL=main.css.map */