* {
  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;
  }
}

.contact {
  width: 100%;
  padding-top: 200px;
  padding-bottom: 110px;
}

.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: 1500px) {
  .contact {
    width: 100%;
    padding-top: 200px;
    padding-bottom: 110px;
  }
  .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-top: 200px;
    padding-bottom: 110px;
  }
  .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-top: 200px;
    padding-bottom: 110px;
  }
  .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-top: 200px;
    padding-bottom: 110px;
  }
  .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-top: 200px;
    padding-bottom: 110px;
  }
  .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-top: 200px;
    padding-bottom: 110px;
  }
  .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 */