body {
  font-family: 'Google Sans', sans-serif;
  font-size: 14px;
  background: #f4f4f4;
  color: #3a3535;
}
* {
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
}
.header {
  overflow: hidden;
  padding: 65px 10%;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  background: url(../images/header-bg.png);
  height: 700px;
  padding-right: 60px;
}
.header .top {
  z-index: 50;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.header .top div,
.header .top ul:not(.sub-menu) {
  display: flex;
  align-items: center;
  position: relative;
}
.header .top ul.sub-menu {
  transform: scale(0);
  opacity: 0;
  transition: 0.3s;
  padding: 10px 0;
  background: #ff7315;
  position: absolute;
  top: 30px;
  left: 0;
  border-radius: 10px;
}
.header .top ul.sub-menu a {
  padding: 10px 15px;
  display: inline-block;
}
.header .top a {
  padding: 10px 23px;
}
.header .top a.logo {
  font-size: 22px;
  font-weight: bold;
  color: #ff8d41;
}
.header .top a.btn {
  border: 1px solid #fff;
  border-radius: 50px;
  margin: 0 20px;
}
.header .bgs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  user-select: none;
  -webkit-user-select: none;
}
.header .bgs .bg1 {
  position: absolute;
  left: 0;
  top: -140px;
  width: 1030px;
}
.header .bgs .bg2 {
  position: absolute;
  left: 800px;
  top: 70px;
}
.header .bgs .bg3 {
  position: absolute;
  top: 0;
  right: 0;
}
.header .bgs .icon1,
.header .bgs .icon2,
.header .bgs .icon3 {
  position: absolute;
}
.header .bgs .icon1 {
  top: 50px;
  left: 900px;
}
.header .bgs .icon2 {
  top: 440px;
  left: 810px;
}
.header .bgs .icon3 {
  left: 1430px;
  top: 500px;
}
.header .bgs .icon4 {
  position: absolute;
  left: 1500px;
  bottom: 250px;
}

.header .promo {
  position: absolute;
  left: 250px;
  top: 200px;
  width: 345px;
  color: #fff;
}
.header .promo h1 {
  font-size: 33px;
  font-weight: bold;
}
.header .promo h3 {
  padding: 20px 0;
}
.header .promo div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .promo a.cta {
  background: #ff7315;
  color: #fff;
  font-weight: 700;
  padding: 15px 35px;
  border-radius: 50px;
  text-transform: uppercase;
}
.header .promo a.video-play {
  display: flex;
  align-items: center;
}
.header .promo a.video-play img {
  margin-left: 10px;
}

.learn {
  background: url(../fonts/video-bg.svg) center no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 100px;
  flex-wrap: wrap;
}
.learn .how-to {
  max-width: 300px;
  font-size: 27px;
  color: #57007e;
  font-weight: 500;
}
.learn .how-to a {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  color: #ff7315;
  font-size: 19px;
  font-weight: bold;
  padding: 13px 15px 13px 25px;
  border: 2px solid #ff7315;
  border-radius: 50px;
}
.learn .how-to a span {
  display: block;
  width: 27px;
  height: 27px;
  margin-left: 10px;
  background: url(../fonts/watch-btn.svg) center no-repeat;
}

.learn .video {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  max-width: 550px;
  max-height: 350px;
  overflow: hidden;
  position: relative;
}
.learn .video img {
  max-width: 100%;
  max-height: 100%;
}
.learn .video a.play {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100px;
  height: 100px;
  background: url(../fonts/big-play.svg) center no-repeat;
  background-size: 100px;
  transition: 0.3s;
}
.learn .video a.play:hover {
  transform: scale(1.1);
}
.experts {
  text-align: center;
  margin: 80px 0;
  font-size: 16px;
}
.experts .title {
  height: 70px;
  background: #ff7315;
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.experts p.main {
  margin: 0 auto;
  font-weight: 500;
  line-height: 24px;
  max-width: 60%;
}
.experts ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 0 50px;
}
.experts ul li {
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.experts ul li p {
  font-style: italic;
  line-height: 25px;
}
.experts ul li img {
  margin-top: 25px;
  max-width: 170px;
  max-height: 50px;
}
.reviews {
  text-align: center;
}
.reviews .title {
  background: #57007e;
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
  padding: 14px 40px;
  font-weight: bold;
  line-height: 26px;
  margin-bottom: 70px;
}
.reviews ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0 10%;
  margin-bottom: 40px;
}
.reviews ul li {
  width: 250px;
  height: 190px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  box-sizing: border-box;
  align-items: center;
  flex-direction: column;
  margin: 20px;
}
.reviews ul li a {
  font-weight: bold;
  color: #57007e;
  border: 1px solid #57007e;
  padding: 12px 24px;
  border-radius: 50px;
}
.video-frame {
  z-index: 98;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.video-frame .close {
  margin-top: 30px;
  color: #fff;
  padding: 7px 15px;
  font-weight: 500;
  border: 2px solid #fff;
  border-radius: 50px;
}
.video-fram video {
  max-width: 100%;
  max-height: 90%;
}

.why-amco {
  margin-top: 50px;
  position: relative;
}
.why-amco .shape {
  width: 100%;
  height: 70px;
  background: url(../fonts/why-amco.svg) center no-repeat;
  background-size: 100% 100%;
}
.why-amco .title {
  font-size: 32px;
  font-weight: bold;
  color: #57007e;
  background: url(../fonts/doted-line.svg) center repeat-x;
  margin-bottom: 30px;
}
.why-amco .title h2 {
  display: inline-block;
  background: #fff;
}
.why-amco .title h2 span {
  color: #ff7315;
}
.why-amco .content {
  background: #fff;
  padding: 30px 10%;
}
.why-amco ul.listone {
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.why-amco ul.listone li {
  padding: 0 30px;
  margin-top: 50px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  width: 320px;
  height: 280px;
  background: linear-gradient(#e8e8e8, #fff);
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
}
.why-amco ul.listone li h3 {
  font-size: 22px;
  font-weight: bold;
  color: #57007e;
  margin-top: 30px;
  margin-bottom: 15px;
}
.why-amco ul.listone li .icon {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -50px;
}
.why-amco ul.listone li p {
  font-size: 16px;
  font-style: italic;
  line-height: 24px;
}
.why-amco .doted-line {
  background: url(../fonts/doted-line.svg) center no-repeat;
  height: 10px;
  width: 100%;
  background: contain;
  margin: 20px 0;
}
.why-amco .card {
  margin: 40px auto;
  background: linear-gradient(#b000ff, #57007e);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 80px;
  display: flex;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
  justify-content: space-between;
  flex-wrap: wrap;
}
.why-amco .card .col h2 {
  font-size: 26px;
  font-weight: bold;
}
.why-amco .card .col h2 span {
  text-decoration: underline;
}
.why-amco .card .col a {
  text-transform: uppercase;
  padding: 20px 40px;
  border: 2px solid #fff;
  border-radius: 60px;
  display: inline-block;
  margin-top: 40px;
}
.why-amco .card ul li {
  line-height: 20px;
  margin-bottom: 15px;
  position: relative;
}
.why-amco .card ul li:before {
  content: '';
  display: inline-block;
  width: 21px;
  height: 20px;
  background: url(../fonts/list-icon.svg);
  position: absolute;
  top: 0;
  left: -28px;
}
.why-amco .card ul {
  background: url(../fonts/card-bg.svg) no-repeat;
  background-position: bottom right;
  background-size: contain;
}
.why-amco .card .col:first-child {
  max-width: 260px;
}
.footer {
  display: flex;
  justify-content: space-between;
  padding: 30px 10%;
  flex-wrap: wrap;
}
.footer .col {
  display: flex;
  flex-wrap: wrap;
}
.footer .col ul.social li.links {
  display: flex;
  justify-content: space-between;
}
.footer .col ul {
  margin: 20px 40px;
}
.footer .col ul h3 {
  font-size: 16px;
  font-weight: bold;
  color: #57007e;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer .col ul a {
  display: inline-block;
  color: #9a9a9a;
  margin: 6px 0;
}

.footer .col ul li a.call {
  color: #ff7315;
  font-weight: 500;
}
.copyrights {
  text-align: center;
  color: #a4a4a4;
  margin-bottom: 70px;
}

a {
  transition: 0.3s;
}
a:hover {
  transform: scale(1.1);
}

.prices .titles {
  display: flex;
  align-items: flex-end;
}
.prices .titles .col1 {
  background: #f7d4bc;
  color: #3a3535;
  font-size: 28px;
  font-weight: bold;
  width: 31%;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 20px;
}
.prices .titles .col2,
.prices .titles .col4,
.prices .titles .col3 {
  width: 240px;
  height: 220px;
  background: linear-gradient(#8b00ca, #57007e);
  color: #fff;
  border-top-left-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.prices .titles .col2 h4,
.prices .titles .col4 h4,
.prices .titles .col3 h4 {
  font-size: 32px;
  font-weight: bold;
}
.prices .titles .col2 h3,
.prices .titles .col4 h3,
.prices .titles .col3 h3 {
  font-size: 64px;
  font-weight: bold;
}
.prices .titles .col2 a,
.prices .titles .col4 a,
.prices .titles .col3 a {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 10px 15px;
  border: 1px solid #fff;
  border-radius: 50px;
  margin-top: 15px;
}
.prices .titles .col4 {
  border-top-left-radius: 0px;
  border-top-right-radius: 20px;
  width: 23%;
}
.prices .titles .col3 {
  width: 23%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  height: 244px;
  background: linear-gradient(#ffb582, #ff8635);
  color: #3a3535;
}
.prices .titles .col2 {
  width: 23%;
}
.prices .titles .col3 a {
  border-color: #3a3535;
}

.table .row {
  display: flex;
}
.table .row .name {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  width: 31%;
  font-size: 16px;
  font-weight: bold;
}
.table .row .col1,
.table .row .col2,
.table .row .col3 {
  width: 23%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.table .row span {
  width: 21px;
  height: 20px;
  display: block;
  background: url(../fonts/price-icon.svg) center no-repeat;
}
.table .row:nth-child(even) {
  background: #fff;
}
.prices {
  margin: 50px 10%;
}
.prices .table {
  border: 1px solid #57007e;
}

.header.inner {
  height: auto !important;
  background: #57007e;
  padding: 30px 10%;
}
.custom-header {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}
.custom-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.custom-header h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  padding: 50px 10%;
  font-size: 27px;
  font-weight: 500;
  color: #fff;
  background: rgba(87, 0, 126, 0.8);
}
.inner-page {
  padding: 50px 10%;
  font-size: 16px;
  font-weight: 500;
}
.mail-form {
  display: flex;
  justify-content: center;
}
.mail-form .cols {
  display: flex;
}
.mail-form .cols .left {
  margin: 20px 0;
  max-width: 460px;
  padding: 50px;
  padding-left: 60px;
  color: #fff;
  background: linear-gradient(#a500ef, #57007e);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.mail-form .cols .right {
  max-width: 600px;
  padding: 50px 40px;
  color: #57007e;
  background: #fff;
  border: 5px solid #ff7315;
  border-radius: 20px;
}
.mail-form form .col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.mail-form form label {
  max-width: 250px;
  overflow: hidden;
  width: 48%;
  margin: 10px 0;
  font-size: 14px;
}
.mail-form form .col input,
.mail-form form .col select,
.mail-form form textarea {
  margin-top: 5px;
  max-width: 100%;
  border-radius: 10px;
  padding: 10px 15px;
  border: 1px solid #a8a8a8;
  font-family: 'Google Sans', sans-serif;
  font-size: 14px;
}
.mail-form form textarea {
  font-family: 'Google Sans', sans-serif;
  font-size: 14px;
  width: 100%;
  resize: none;
  height: 80px;
}
.mail-form form .col input[type='date'] {
  padding: 9px 15px;
  width: 100%;
}
.mail-form form input[type='submit'] {
  background: #ff7315;
  color: #fff;
  font-family: 'Google Sans', sans-serif;
  font-size: 17px;
  font-weight: bold;
  padding: 15px 35px;
  border-radius: 40px;
  border: none;
  text-transform: uppercase;
  margin: 30px 0;
  float: right;
  cursor: pointer;
}
.mail-form .left h4 {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  line-height: 25px;
}
.mail-form .left p {
  font-size: 14px;
  font-weight: normal;
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 18px;
}
.mail-form .left h4:before {
  content: '';
  display: inline-block;
  width: 21px;
  height: 20px;
  background: url(../fonts/list-icon.svg);
  position: absolute;
  top: 0;
  left: -28px;
}

/* RESPONSIVE */

a.sub-menu-trigger:hovser > ul.sub-menu {
  transform: scale(1);
  opacity: 1;
}

@media screen and (max-width: 1440px) {
  .header {
    padding: 50px 60px;
    height: 600px;
  }
  .header .bgs .bg1 {
    width: 800px;
    top: -60px;
  }
  .header .promo {
    left: 160px;
    top: 160px;
  }
  .header .bgs .bg3 {
    top: -20px;
    right: -50px;
  }
  .header .bgs .bg2 {
    left: 380px;
    top: -10px;
  }
  .header .bgs .icon4 {
    right: initial;
    bottom: 0;
    left: 0;
  }
  .header .bgs .icon1 {
    left: 640px;
    top: 170px;
  }
  .header .bgs .icon2 {
    left: 600px;
    top: 410px;
  }
  .learn .video {
    max-width: 350px;
  }
  .why-amco {
    margin-top: 0;
  }
  .why-amco .card {
    justify-content: center;
    padding: 40px;
  }
  .learn .how-to {
    font-size: 21px;
  }
  .learn .how-to a {
    padding: 5px 5px 5px 10px;
    margin-top: 10px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .header .bgs,
  .header .top .account {
    display: none;
  }
  .header {
    background: url(../images/mobile-header.png) center no-repeat;
    background-size: cover;
    height: auto;
    margin-bottom: 50px;
  }
  .header .promo {
    position: relative;
    top: initial;
    left: initial;
    margin-top: 60px;
    margin-left: 10%;
  }
  .learn .how-to {
    text-align: center;
    margin: 20px 0;
  }
  .experts {
    margin: 30px 0;
  }
  .learn {
    padding: 0 10%;
  }
  .why-amco .card .col:first-child {
    text-align: center;
  }
  .why-amco .card .col a {
    padding: 10px 30px;
    margin-bottom: 30px;
    margin-top: 20px;
  }
  .why-amco .content {
    padding: 30px 5%;
  }
}
.prices .titles .col1 p {
  display: none;
}
@media screen and (max-width: 768px) {
  .experts ul li img {
    max-width: 100px;
    margin-top: 15px;
  }
  .experts ul li {
    margin-bottom: 30px;
  }
  .why-amco .title {
    font-size: 22px;
    text-align: center;
  }
  .reviews .title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .prices {
    overflow: hidden;
  }
  .header .top ul,
  .header .top,
  .header .top div,
  .header .promo div {
    flex-direction: column;
  }
  .header .top ul li {
    display: flex;
  }
  .header .promo {
    margin: 0 5%;
    margin-top: 40px;
    width: auto;
  }
  .header .promo h1 {
    font-size: 22px;
  }
  .header .promo div {
    align-items: flex-start;
  }
  .header .promo a.video-play {
    margin: 10px 0;
  }
  .header {
    padding: 30px 10%;
  }
  .experts .title {
    height: 50px;
    font-size: 18px;
  }
  .prices {
    overflow-x: scroll;
    margin-top: 0;
  }
  .prices .table {
    width: 550px;
  }
  .table .row .col1,
  .table .row .col2,
  .table .row .col3 {
    min-width: 100px;
  }
  .prices .titles .col2 h4,
  .prices .titles .col4 h4,
  .prices .titles .col3 h4 {
    font-size: 14px;
  }
  .prices .titles .col2 h3,
  .prices .titles .col4 h3,
  .prices .titles .col3 h3 {
    font-size: 32px;
  }
  .prices .titles .col2 a,
  .prices .titles .col4 a,
  .prices .titles .col3 a {
    display: none;
  }
  .table .row .name {
    font-size: 14px;
    min-width: 250px;
    padding: 10px;
    font-weight: 500;
  }
  .prices .titles .col1 {
    font-size: 18px;
    min-width: 250px;
    height: 50px;
    flex-direction: column;
  }
  .prices .titles .col1 span {
    display: block;
  }
  .prices .titles .col1 p {
    display: block;
    font-size: 12px;
  }
  .prices .titles .col2,
  .prices .titles .col4,
  .prices .titles .col3 {
    min-width: 100px;
    width: 100px;
    height: 70px;
  }
  .prices .titles .col3 {
    height: 80px;
  }
  .prices .titles .col2 span,
  .prices .titles .col4 span,
  .prices .titles .col3 span {
    display: none;
  }
  .table .row span {
    background-size: 16px;
  }
  .mail-form form label {
    width: 100%;
  }
  .mail-form .cols {
    flex-direction: column;
  }
  .mail-form .cols .left {
    border-radius: 15px;
    max-width: 100%;
  }
  .header.inner {
    margin-bottom: 0;
  }
  .experts p.main {
    max-width: 90%;
  }
  .experts ul {
    padding: 0 10%;
  }
  .reviews ul li {
    margin: 10px;
  }
  .why-amco .shape {
    height: 15px;
  }
  .why-amco ul.listone li .icon {
    width: 80px;
    height: 80px;
  }
  .why-amco ul.listone li .icon img {
    max-width: 40px;
    max-height: 40px;
  }
  .why-amco ul.listone li {
    padding: 0 20px;
    padding-bottom: 20px;
    height: auto;
  }
  .why-amco ul.listone {
    margin-bottom: 0;
  }
  .why-amco .card ul li:before {
    width: 15px;
    height: 14px;
    background-size: 15px;
    left: -20px;
    top: 2px;
  }
  .why-amco .card ul li {
    font-size: 14px;
  }
  .why-amco ul.listone li p {
    font-size: 14px;
  }
  .why-amco ul.listone li h3 {
    font-size: 18px;
  }
  .experts ul li p {
    font-size: 14px;
  }
  .header .top div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 30px;
  }
  .mail-form .cols .right {
    padding: 30px 20px;
  }
  .video-frame video {
    width: 90vw;
    height: 50vh;
  }
}
