*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0 auto;
}
body .container {
  max-width: 85%;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  body .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
body .full-menu {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: transparent;
  padding: 12px 0;
  border-bottom: 1px solid whitesmoke;
}
@media (max-width: 768px) {
  body .full-menu {
    background-color: #212121 !important;
  }
}
@media only screen and (max-width: 768px) {
  body .full-menu .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
body .full-menu .container .navbar {
  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;
}
@media (max-width: 768px) {
  body .full-menu .container .navbar {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: auto;
  }
}
body .full-menu .container .navbar .logo-div {
  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;
  min-width: 80px;
}
@media (max-width: 768px) {
  body .full-menu .container .navbar .logo-div {
    width: 100%;
  }
}
body .full-menu .container .navbar .logo-div img {
  text-align: center;
  width: 100%;
}
body .full-menu .container .navbar .menu-toggle {
  display: none;
}
@media only screen and (max-width: 768px) {
  body .full-menu .container .navbar .menu-toggle {
    z-index: 999;
    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;
    width: 60px;
    height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
  }
  body .full-menu .container .navbar .menu-toggle.active .hambourger {
    background: rgba(0, 0, 0, 0);
  }
  body .full-menu .container .navbar .menu-toggle.active .hambourger::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  body .full-menu .container .navbar .menu-toggle.active .hambourger::after {
    top: 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  body .full-menu .container .navbar .menu-toggle .hambourger {
    width: 30px;
    height: 3px;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    position: relative;
  }
  body .full-menu .container .navbar .menu-toggle .hambourger::before, body .full-menu .container .navbar .menu-toggle .hambourger::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 3px;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  body .full-menu .container .navbar .menu-toggle .hambourger::before {
    top: -10px;
  }
  body .full-menu .container .navbar .menu-toggle .hambourger::after {
    top: 10px;
  }
}
body .full-menu .container .navbar .menu-nav {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-family: "Yeseva One", cursive;
  width: 55%;
  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;
}
@media (max-width: 1199px) {
  body .full-menu .container .navbar .menu-nav {
    width: 65%;
  }
}
@media (max-width: 991px) {
  body .full-menu .container .navbar .menu-nav {
    width: 74%;
  }
}
@media (max-width: 768px) {
  body .full-menu .container .navbar .menu-nav {
    position: fixed;
    top: 0;
    left: -100%;
    text-align: center;
    background: #212121;
    height: 100vh;
    width: 100%;
    -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;
  }
}
body .full-menu .container .navbar .menu-nav .icons-ul {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 20%;
}
@media (max-width: 768px) {
  body .full-menu .container .navbar .menu-nav .icons-ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }
}
body .full-menu .container .navbar .menu-nav .icons-ul #icons {
  margin: 0 4px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
body .full-menu .container .navbar .menu-nav .icons-ul #icons:hover {
  color: orange;
}
body .full-menu .container .navbar .menu-nav ul {
  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;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 80%;
}
@media (max-width: 768px) {
  body .full-menu .container .navbar .menu-nav ul {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
body .full-menu .container .navbar .menu-nav ul li a {
  text-decoration: none;
  color: #fff;
  position: relative;
  font-size: 16px;
  padding: 50px 2px 0 2px;
}
body .full-menu .container .navbar .menu-nav ul li a::before {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  left: 50%;
  width: 0;
  height: 4px;
  background: #fff;
  content: "";
  display: block;
  top: 0;
  position: absolute;
}
body .full-menu .container .navbar .menu-nav ul li a:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
body .full-menu .container .navbar .menu-nav ul li a:hover::before {
  width: 100%;
  left: 0;
}
@media (max-width: 768px) {
  body .full-menu .container .navbar .menu-nav ul li a:hover::before {
    display: none;
  }
}
@media (max-width: 768px) {
  body .full-menu .container .navbar .menu-nav ul li a:hover {
    color: orange;
  }
}
@media (max-width: 991px) {
  body .full-menu .container .navbar .menu-nav ul li a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body .full-menu .container .navbar .menu-nav ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 10px 0;
    padding: 10px 10px;
    font-size: 25px;
  }
}
body .full-menu .container .navbar .active-nav {
  left: 0;
}
body header .header-div {
  background: url(../img/BgTOP.png) no-repeat;
  background-size: cover;
  padding-top: 150px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  body header .header-div {
    background-position: center center;
  }
}
body header .header-div .header-section-content {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
body header .header-div .header-section-content .header-title-div .header-title {
  margin-bottom: 50px;
  font-size: 100px;
  text-align: center;
  color: #fff;
}
body header .header-div .header-section-content .header-title-div .header-title::after {
  margin: 20px auto 0 auto;
  content: "";
  background: url(../img/DecorationTop.png) 50% 50% no-repeat;
  height: 55px;
  width: 270px;
  display: block;
  bottom: 0;
}
@media (max-width: 991px) {
  body header .header-div .header-section-content .header-title-div .header-title {
    font-size: 65px;
  }
}
@media (max-width: 768px) {
  body header .header-div .header-section-content .header-title-div .header-title {
    font-size: 45px;
  }
}
body header .header-div .header-section-content .header-buttons {
  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;
}
@media (max-width: 576px) {
  body header .header-div .header-section-content .header-buttons {
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  body header .header-div .header-section-content .header-buttons {
    font-size: 10px;
  }
}
@media (max-width: 320px) {
  body header .header-div .header-section-content .header-buttons {
    font-size: 8px;
  }
}
body header .header-div .header-section-content .header-buttons .header-button-1 {
  color: #fff;
  padding: 1em 3em;
  text-decoration: none;
  border: 1px solid #000;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 700;
  margin: 10px;
  text-transform: uppercase;
}
body header .header-div .header-section-content .header-buttons .header-button-1:hover {
  background: #000;
}
body header .header-div .header-section-content .header-buttons .header-button-2 {
  color: #fff;
  padding: 1em 3em;
  text-decoration: none;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.15);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 700;
  margin: 10px;
  text-transform: uppercase;
}
body header .header-div .header-section-content .header-buttons .header-button-2:hover {
  background: none;
}
body main .main-section {
  background: url(../img/s.png) no-repeat;
  background-size: cover;
  padding-top: 70px;
}
body main .main-section .main-section-content {
  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;
  text-align: center;
}
@media (max-width: 991px) {
  body main .main-section .main-section-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
body main .main-section .main-section-content .main-section-div {
  -ms-flex-preferred-size: 45%;
  flex-basis: 45%;
}
body main .main-section .main-section-content .main-section-div .main-section-div-title {
  margin: 0;
  color: #c90;
  font-size: 40px;
}
body main .main-section .main-section-content .main-section-div .main-section-div-title::after {
  content: "";
  background: url(../img/Divider.png) no-repeat;
  width: 250px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 10px;
  margin-bottom: 20px;
  height: 25px;
}
body main .main-section .main-section-content .main-section-div .main-section-div-text {
  margin: 0 0 20px 0;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 28px;
  color: #494d4e;
}
body main .main-section .main-section-content .main-section-1-div img {
  width: 100%;
}
body main .section {
  background: url(../img/bg.png);
  background-size: cover;
  padding-top: 70px;
  padding-bottom: 70px;
  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;
}
body main .section .section-content {
  background-color: rgba(0, 0, 0, 0.8);
  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;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 50px;
  color: #fff;
}
body main .section .section-content img {
  border-radius: 50%;
  margin: 5px;
}
body main .section .section-content .section-div-title {
  font-size: 40px;
}
@media (max-width: 375px) {
  body main .section .section-content .section-div-title {
    font-size: 30px;
  }
}
body main .section .section-content .section-div-title::after {
  content: "";
  margin-top: 10px;
  margin-bottom: 20px;
  background: url(../img/decoration.png) 50% 50% no-repeat;
  height: 35px;
  width: 270px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
body main .section .section-content .section-div-text {
  font-size: 19px;
  max-width: 620px;
  line-height: 28px;
}
@media (max-width: 375px) {
  body main .section .section-content .section-div-text {
    font-size: 15px;
  }
}
body main .section-1 {
  background: url(../img/download.png);
  padding-top: 70px;
  padding-bottom: 70px;
}
body main .section-1 .section-1-1-2 {
  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;
}
@media (max-width: 576px) {
  body main .section-1 .section-1-1-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
  }
}
body main .section-1 .section-1-1-2 .section-content-1 {
  width: 48%;
  position: relative;
}
@media (max-width: 576px) {
  body main .section-1 .section-1-1-2 .section-content-1 {
    padding: 0;
    width: 100%;
  }
}
body main .section-1 .section-1-1-2 .section-content-1 .section-1-div-title {
  text-align: center;
  color: #c90;
  margin: 0;
  font-size: 40px;
}
body main .section-1 .section-1-1-2 .section-content-1 .section-1-div-title::after {
  content: "";
  background: url(../img/Divider.png) no-repeat;
  width: 250px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 10px;
  margin-bottom: 20px;
  height: 25px;
}
body main .section-1 .section-1-1-2 .section-content-1 ul {
  padding: 0;
  list-style: none;
}
body main .section-1 .section-1-1-2 .section-content-1 ul .section-1-div-li {
  margin-bottom: 70px;
}
body main .section-1 .section-1-1-2 .section-content-1 ul .section-1-div-li:last-child {
  margin-bottom: 95px;
}
body main .section-1 .section-1-1-2 .section-content-1 ul .section-1-div-li .section-1-div-div-title-span {
  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;
  border-bottom: 1px solid #b6a46c;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
body main .section-1 .section-1-1-2 .section-content-1 ul .section-1-div-li .section-1-div-div-title-span .section-1-div-title-1 {
  text-align: left;
  margin: 0;
  padding: 0;
  font-size: 24px;
  color: #cd9f0b;
}
body main .section-1 .section-1-1-2 .section-content-1 ul .section-1-div-li .section-1-div-div-title-span .section-1-div-span {
  text-align: right;
  padding: 0;
  font-size: 24px;
  color: #cd9f0b;
}
body main .section-1 .section-1-1-2 .section-content-1 ul .section-1-div-li .section-1-div-text-div .section-1-div-text {
  display: block;
  font-size: 20px;
  color: #494d4e;
}
@media (max-width: 768px) {
  body main .section-1 .section-1-1-2 .section-content-1 ul .section-1-div-li .section-1-div-text-div .section-1-div-text {
    text-align: center;
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  body main .section-1 .section-1-1-2 .section-content-1 ul .section-1-div-li .section-1-div-text-div .section-1-div-text {
    font-size: 16px;
  }
}
body main .section-1 .section-1-1-2 .section-content-1 ul .section-1-div-li-1 {
  margin-bottom: 70px;
  border: 1px solid #b6a46c;
  padding-top: 20px;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
  position: relative;
}
body main .section-1 .section-1-1-2 .section-content-1 ul .section-1-div-li-1::after {
  font-size: 13px;
  line-height: 30px;
  content: "Special";
  display: block;
  position: absolute;
  height: 30px;
  top: -30px;
  right: -1px;
  font-weight: 700;
  padding: 0 5px;
  background-color: #cd9f0b;
  color: #fff;
}
body main .section-1 .section-1-1-2 .section-content-1 ul .section-1-div-li-1 .section-1-div-div-title-span {
  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;
  border-bottom: 1px solid #b6a46c;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
body main .section-1 .section-1-1-2 .section-content-1 ul .section-1-div-li-1 .section-1-div-div-title-span .section-1-div-title-1 {
  text-align: left;
  margin: 0;
  padding: 0;
  font-size: 24px;
  color: #cd9f0b;
}
body main .section-1 .section-1-1-2 .section-content-1 ul .section-1-div-li-1 .section-1-div-div-title-span .section-1-div-span {
  text-align: right;
  padding: 0;
  font-size: 24px;
  color: #cd9f0b;
}
body main .section-1 .section-1-1-2 .section-content-1 ul .section-1-div-li-1 .section-1-div-text-div .section-1-div-text {
  display: block;
  font-size: 20px;
  color: #494d4e;
}
@media (max-width: 576px) {
  body main .section-1 .section-1-1-2 .section-content-1 ul .section-1-div-li-1 .section-1-div-text-div .section-1-div-text {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  body main .section-1 .section-1-1-2 .section-content-1 ul .section-1-div-li-1 .section-1-div-text-div .section-1-div-text {
    text-align: center;
  }
}
body main .section-2 {
  background: url(../img/SectionBackground_2.png);
  background-size: cover;
  padding-top: 70px;
  padding-bottom: 70px;
  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;
}
body main .section-2 .section-2-content {
  background-color: rgba(0, 0, 0, 0.8);
  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;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 50px;
  color: #fff;
}
body main .section-2 .section-2-content img {
  border-radius: 50%;
  margin: 5px;
}
body main .section-2 .section-2-content .section-2-div-title {
  font-size: 40px;
}
@media (max-width: 375px) {
  body main .section-2 .section-2-content .section-2-div-title {
    font-size: 30px;
  }
}
body main .section-2 .section-2-content .section-2-div-title::after {
  content: "";
  margin-top: 10px;
  margin-bottom: 20px;
  background: url(../img/decoration.png) 50% 50% no-repeat;
  height: 35px;
  width: 270px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
body main .section-2 .section-2-content .section-2-div-text {
  font-size: 19px;
  max-width: 620px;
  line-height: 28px;
  font-style: italic;
}
@media (max-width: 375px) {
  body main .section-2 .section-2-content .section-2-div-text {
    font-size: 15px;
  }
}
body main .section-2 .section-2-content .section-2-div-text-1 {
  text-align: center;
  font-family: sans-serif;
  font-weight: 700;
}
body main .section-3 {
  background: url(../img/download.png);
  padding-top: 70px;
  padding-bottom: 70px;
}
body main .section-3 .section-3-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
body main .section-3 .section-3-div .section-3-div-image-div img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1199px) {
  body main .section-3 .section-3-div .section-3-div-image-div {
    display: none;
  }
}
body main .section-3 .section-3-div .section-3-div-image-div-1 img {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  body main .section-3 .section-3-div .section-3-div-image-div-1 {
    display: none;
  }
}
body main .section-3 .section-3-div-1 {
  width: 50%;
}
@media (max-width: 1199px) {
  body main .section-3 .section-3-div-1 {
    width: 70%;
  }
}
@media (max-width: 991px) {
  body main .section-3 .section-3-div-1 {
    width: 100%;
  }
}
body main .section-3 .section-3-div-1 .section-3-div-1-title-text .section-3-div-1-title {
  text-align: center;
  color: #c90;
  margin: 0;
  font-size: 40px;
}
body main .section-3 .section-3-div-1 .section-3-div-1-title-text .section-3-div-1-title::after {
  content: "";
  background: url(../img/Divider.png) no-repeat;
  width: 250px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 10px;
  margin-bottom: 20px;
  height: 25px;
}
body main .section-3 .section-3-div-1 .section-3-div-1-title-text .section-3-div-1-text {
  text-align: center;
  line-height: 28px;
  font-size: 20px;
  color: #494d4e;
}
body main .section-3 .section-3-div-1 .section-3-div-form .inputs .inputs-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 991px) {
  body main .section-3 .section-3-div-1 .section-3-div-form .inputs .inputs-div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
body main .section-3 .section-3-div-1 .section-3-div-form .inputs .inputs-div .inputs-div-label-input {
  padding: 10px;
  border-radius: 10px;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
body main .section-3 .section-3-div-1 .section-3-div-form .inputs .inputs-div .inputs-div-label-input .label {
  display: block;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 10px;
}
body main .section-3 .section-3-div-1 .section-3-div-form .inputs .inputs-div .inputs-div-label-input .input {
  width: 100%;
  overflow: hidden;
  border: 1px solid #bababa;
  background: none;
  height: 40px;
  margin: 0;
  outline: none;
  padding: 0 10px;
}
body main .section-3 .section-3-div-1 .section-3-div-form .inputs .inputs-div-1 {
  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;
}
body main .section-3 .section-3-div-1 .section-3-div-form .inputs .inputs-div-1 .section-2-div-button {
  margin-top: 30px;
  padding: 0.5em 2.5em;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  border: 1px solid transparent;
  background: #c90;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
}
body main .section-3 .section-3-div-1 .section-3-div-form .inputs .inputs-div-1 .section-2-div-button:hover {
  cursor: pointer;
}
body footer .footer {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #212121;
  -webkit-transition: 2s;
  transition: 2s;
}
body footer .footer .full-footer {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  body footer .footer .full-footer {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  body footer .footer .full-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
body footer .footer .full-footer .footer-1 {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-preferred-size: 33.33%;
  flex-basis: 33.33%;
}
@media (max-width: 768px) {
  body footer .footer .full-footer .footer-1 {
    -ms-flex-preferred-size: 48%;
    flex-basis: 48%;
  }
}
body footer .footer .full-footer .footer-1 #footer-1-title {
  margin-top: 0;
}
body footer .footer .full-footer .footer-1 .footer-1-title {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  margin: 0;
}
@media (max-width: 991px) {
  body footer .footer .full-footer .footer-1 .footer-1-title {
    margin-top: 50px;
  }
}
body footer .footer .full-footer .footer-1 .footer-1-title::after {
  content: "";
  margin-top: 10px;
  margin-bottom: 20px;
  background: url(../img/decoration.png) 50% 50% no-repeat;
  height: 35px;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
body footer .footer .full-footer .footer-1 strong {
  color: #fff;
}
body footer .footer .full-footer .footer-1 .footer-1-text {
  max-width: 400px;
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  color: #999;
  margin: 0;
}
@media (max-width: 991px) {
  body footer .footer .full-footer .footer-1 .footer-1-text {
    max-width: 100%;
  }
}
body footer .footer .full-footer .footer-1 ul {
  list-style: none;
  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;
  text-align: center;
  padding: 0;
}
body footer .footer .full-footer .footer-1 ul img {
  margin: 5px;
}
body footer .footer .full-footer .footer-1 ul a {
  color: #fff;
  margin: 5px;
}

.over {
  overflow: hidden;
}

/*# sourceMappingURL=style.css.map */
