@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sriracha&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  position: relative;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  margin: 0 auto;
}

.page-title {
  display: flex;
  justify-content: center;
}
.page-title .title {
  display: inline-block;
  color: #4830d4;
  font-size: 50px;
  text-transform: uppercase;
  margin: 30px auto;
  font-weight: bolder;
  border-bottom: 10px solid #02fcad;
  padding-bottom: 15px;
}

.grey-bg {
  background-color: #f3f3f3;
}

.primary-btn {
  padding: 15px 20px;
  border: 3px solid #4830d4;
  color: #4830d4;
  border-radius: 50px;
  font-weight: 600;
  transition: 300ms all;
}
.primary-btn:hover {
  background-color: #4830d4;
  color: #fff;
}

.primary-btn2 {
  padding: 15px 20px;
  border: 3px solid #4830d4;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  transition: 300ms all;
  background-color: #4830d4;
}
.primary-btn2:hover {
  background-color: transparent;
}

.center-button {
  display: flex;
  justify-content: center;
}

.box-title {
  font-size: 25px;
  font-weight: 500;
  color: #02fdad;
  padding: 15px 20px;
  background-color: #4830d4;
  display: inline-block;
}

.header-content-top-title {
  text-align: center;
  background-color: #02fdad;
  color: #4830d4;
  font-size: 41px;
  padding: 7px 0;
  font-family: "Sriracha", cursive;
}

.blueText {
  text-align: center;
  font-weight: bold;
  color: #4830d4;
  margin: 30px 0 10px 0;
}

.primary-btn3 {
  padding: 15px 60px;
  background-color: #02fcad;
  color: #4830d4;
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  transition: 300ms all;
  font-size: 21px;
  font-weight: bold;
}
.primary-btn3:hover {
  transform: scale(0.9);
}
.primary-btn3 img {
  margin-right: 10px;
}

#menu-btn {
  width: 40px;
  height: 30px;
  -o-object-position: cover;
     object-position: cover;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
  display: none;
}

#mobile-menu {
  width: 0;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #4830d4;
  display: flex;
  flex-direction: column;
  transition: 300ms all;
}
#mobile-menu .close-btn {
  width: 50px;
  height: 50px;
  overflow: hidden;
  margin: 10px 10px 10px auto;
}
#mobile-menu .close-btn img {
  width: 100%;
  height: 100%;
  -o-object-position: cover;
     object-position: cover;
  -o-object-fit: contain;
     object-fit: contain;
}
#mobile-menu .content ul li {
  padding: 10px 30px;
  transition: 300ms all;
}
#mobile-menu .content ul li:hover {
  background-color: #02fdad;
}
#mobile-menu .content ul li a {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 500;
}
#mobile-menu .content ul li a img {
  margin-right: 10px;
  width: 30px;
  height: 30px;
}

#header {
  width: 100%;
}
#header .header-top {
  padding: 20px 0;
  background-color: #4830d4;
}
#header .header-top ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
#header .header-top ul li {
  margin-right: 80px;
  transition: 300ms all;
}
#header .header-top ul li a {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}
#header .header-top ul li a img {
  margin-right: 15px;
  width: 20px;
  height: 20px;
}
#header .header-top ul li:hover {
  opacity: 0.5;
}
#header .header-bottom {
  width: 100%;
}
#header .header-bottom .container {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .header-bottom .container .logo {
  width: 150px;
  height: 66px;
  margin-bottom: 15px;
}
#header .header-bottom .container .logo img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}

#sss .accordion {
  background-color: transparent;
  color: #4830d4;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 19px;
  transition: 0.4s;
  font-weight: bold;
  border-radius: 20px;
  border: 1px solid #dedede;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#sss .accordion img {
  width: 24px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: 300ms all;
}
#sss .accordion:hover {
  /*background-color: rgba(72, 48, 212, 0.2);*/
}
#sss .panel {
  margin-bottom: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top: none;
  max-height: 0;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
#sss .panel p {
  padding: 20px;
}
#sss .active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
  border-color: #4830d4;
  transition: max-height 0.2s ease-out;
}
#sss .active img {
  opacity: 0;
}
#sss .active + .panel {
  border: 1px solid #4830d4;
  border-top: none;
}

#footer {
  margin-top: 70px;
  padding-bottom: 30px;
}
#footer .container {
  border-top: 3px solid #4830d4;
  display: flex;
  justify-content: space-evenly;
  padding-top: 60px;
}
#footer .container .left {
  flex: 1;
  justify-content: center;
  display: flex;
}
#footer .container .mid {
  flex: 1;
}
#footer .container .right {
  flex: 1;
  justify-content: center;
  display: flex;
}
.footer-menu-right {
  text-align: right;
}
#footer .container .footer-menu li {
  margin-top: 20px;
}
#footer .container .footer-menu li a {
  color: #4830d4;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  transition: 300ms all;
}
#footer .container .footer-menu li a:hover {
  opacity: 0.4;
}
#footer .container .mid {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#footer .container .mid .primary-btn2 {
  display: inline-flex;
  margin: 0 auto;
}
#footer .container .mid .primary-btn2:hover {
  color: #4830d4 !important;
}
#footer .container .mid .social-media {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
#footer .container .mid .social-media ul {
  display: flex;
  align-items: center;
}
#footer .container .mid .social-media ul li {
  margin: 0 5px;
}
#footer .container .mid .social-media ul li a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid #4830d4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 300ms all;
}
#footer .container .mid .social-media ul li a svg path {
  transition: 300ms all;
}
#footer .container .mid .social-media ul li a:hover {
  background-color: #4830d4;
}
#footer .container .mid .social-media ul li a:hover svg path {
  fill: #fff;
}
#footer .footer-logo {
  width: 94px;
  height: 30px;
  overflow: hidden;
  margin: 20px auto 10px auto;
}
#footer .footer-logo img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
#footer .copy-right {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #282828;
}

#footer .right a{
  text-align: right;
}

#header-content {
  margin-top: 30px;
  margin-bottom: 80px;
}
#header-content .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header-content .container .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding-left: 50px;
}
#header-content .container .right {
  width: 50%;
  display: flex;
  justify-content: center;
  padding-right: 50px;
}
#header-content .container .right .right-img {
  width: 240px;
  height: 440px;
  overflow: hidden;
}
#header-content .container .right .right-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.bigTitle {
  font-size: 60px;
  font-weight: 900;
  text-transform: uppercase;
  color: #4830d4;
  margin-bottom: 30px;
  line-height: 1.2;
}

.bigDesc {
  font-size: 24px;
  font-weight: bold;
  color: #232323;
  line-height: 1.2;
}

#how .items {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
#how .items .item {
  width: 30%;
  margin: 40px 0;
}
#how .items .item .image {
  width: 100%;
  height: 75px;
  overflow: hidden;
  margin-bottom: 15px;
}
#how .items .item .image img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
#how .items .item .title {
  font-size: 25px;
  font-weight: bold;
  color: #4830d4;
  text-align: center;
  margin-bottom: 10px;
}
#how .items .item .desc {
  color: #232323;
  font-weight: 500;
  text-align: center;
  width: 70%;
  margin: 0 auto;
}

.text {
  color: #232323;
  line-height: 1.3;
  text-align: center;
  font-weight: 500;
  width: 80%;
  margin: 0 auto;
  font-size: 18px;
}

#header-content .slide-content {
  width: 100%;
  height: 550px;
  background-size: cover;
  background-position: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#header-content .slide-content .content .bigTitle {
  font-size: 69px;
  margin-left: 60px;
}
#header-content .slide-content .buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header-content .slide-content .buttons a {
  margin: 20px 10px 0 10px;
  padding: 15px 60px;
}

.white {
  color: #fff !important;
}

#flex-section .container {
  margin: 50px 0;
  padding-left: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#flex-section .container .left {
  width: 50%;
}
#flex-section .container .right {
  width: 45%;
  display: flex;
  justify-content: center;
}
#flex-section .container .right .image {
  width: 365px;
  height: 365px;
  overflow: hidden;
}
#flex-section .container .right .image img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
#flex-section .container .radius-image {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 100px;
}
#flex-section .container .radius-image img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 300ms all;
}
#flex-section .container .radius-image:hover img {
  transform: scale(1.2);
}
#flex-section .primary-btn2:hover {
  color: #4830d4;
}

#header-content .slide-content {
  width: 100%;
  height: 550px;
  background-size: cover;
  background-position: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#header-content .slide-content .content .bigTitle {
  font-size: 69px;
  margin-left: 60px;
}
#header-content .slide-content .buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header-content .slide-content .buttons a {
  margin: 20px 10px 0 10px;
  padding: 15px 60px;
}

.white {
  color: #fff !important;
}

#flex-section .container {
  margin: 50px auto;
  padding-left: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#flex-section .container .left {
  width: 50%;
}
#flex-section .container .right {
  width: 45%;
  display: flex;
  justify-content: center;
}
#flex-section .container .right .image {
  width: 365px;
  height: 365px;
  overflow: hidden;
}
#flex-section .container .right .image img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
#flex-section .container .radius-image {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 100px;
}
#flex-section .container .radius-image img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 300ms all;
}
#flex-section .container .radius-image:hover img {
  transform: scale(1.2);
}
#flex-section .primary-btn2:hover {
  color: #4830d4;
}

.index-header-content {
  margin-top: 70px !important;
}
.index-header-content .bigTitle {
  font-size: 70px !important;
}

.register-form .head {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  color: #4830d4;
  padding: 0 45px 5px 45px;
  border-bottom: 5px solid #02fcad;
  margin-bottom: 15px;
}
.register-form .form-group {
  width: 100%;
  height: 55px;
  border-radius: 500px;
  background-color: #eeeeee;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  transition: 300ms all;
}
.register-form .form-group:hover {
  background-color: #dedede;
}
.register-form .form-group img {
  width: 25px;
  height: 25px;
  overflow: hidden;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 12px;
}
.register-form .form-group select,
.register-form .form-group input {
  width: 100%;
  height: 100%;
  margin-right: 10px;
  cursor: pointer;
  border: none;
  outline: none;
  background-color: transparent;
  color: #595959;
  font-weight: 500;
}
.register-form .form-group input {
  padding-left: 5px;
}
.register-form .checkbox {
  display: flex;
  align-items: center;
}
.register-form .checkbox label {
  font-size: 12px;
  color: #595959;
  cursor: pointer;
}
.register-form .checkbox input {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  cursor: pointer;
}
.register-form .primary-btn2 {
  margin-top: 15px;
  padding: 15px 60px;
}
.register-form .primary-btn2:hover {
  color: #4830d4;
}

#mobile-phone-section .container {
  display: flex;
}
#mobile-phone-section .container .phone-img {
  width: 380px;
  /*height: 320px;*/
}
#mobile-phone-section .container .phone-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
#mobile-phone-section .right {
  margin: 0 60px 0 100px;
}
#mobile-phone-section .right .bigTitle {
  font-size: 38px;
  padding-left: 50px;
}
#mobile-phone-section .right ul {
  padding-left: 50px;
}
#mobile-phone-section .right ul li {
  font-weight: 600;
  color: #595959;
  margin-top: 17px;
}
#mobile-phone-section .right ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #02fcad;
  font-weight: bold;
  display: inline-block;
  margin-right: 15px;
}

.allert-box {
  margin: 30px 0;
  padding: 20px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 2px dashed #4830d4;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #232323;
  line-height: 1.3;
}
.allert-box img {
  width: 45px;
  height: 45px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 20px;
}

#step .container {
  display: flex;
  justify-content: space-evenly;
  position: relative;
  margin-top: 50px;
}
#step .container .item {
  width: 170px;
  height: 200px;
  border-radius: 15px;
  background-color: #f3f3f3;
  box-shadow: -10px -10px 15px rgba(255, 255, 255, 0.5), 10px 10px 15px rgba(70, 70, 70, 0.12);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 20px;
  overflow: hidden;
}
#step .container .item .number {
  font-size: 200px;
  font-weight: bold;
  color: #02fcad;
  position: absolute;
  left: -20px;
  top: 0;
}
#step .container .item .desc {
  z-index: 2;
  text-align: center;
  font-weight: 500;
  color: #232323;
  line-height: 1.2;
  font-size: 14px;
}

#list-item {
  margin: 100px 0;
}
#list-item .container .top {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
#list-item .container .top .bigTitle {
  font-size: 79px;
  margin-left: 50px;
}
#list-item .container .top .right .right-image {
  width: 400px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}
#list-item .container .top .right .right-image img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 300ms all;
}
#list-item .container .top .right .right-image:hover img {
  transform: scale(1.2);
}
#list-item .container .items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
#list-item .container .items .item {
  width: calc(25% - 20px);
  height: 135px;
  border-radius: 20px;
  margin: 10px;
  background-color: #e5e5e5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 300ms all;
}
#list-item .container .items .item:hover {
  background-color: #c5c4c4;
}
#list-item .container .items .item .icon {
  width: 60px;
  height: 66px;
  overflow: hidden;
  margin-bottom: 8px;
}
#list-item .container .items .item .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
#list-item .container .items .item .strong {
  display: block;
  width: 50%;
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
}

#detail .bigTitle {
  text-align: center;
}
#detail .items {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
#detail .items .item {
  width: calc(20% - 20px);
  padding: 20px;
  border-radius: 20px;
  margin: 10px;
  background-color: #e5e5e5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 300ms all;
}
#detail .items .item:hover {
  background-color: #c5c4c4;
}
#detail .items .item .icon {
  width: 100px;
  height: 120px !important;
  overflow: hidden;
  margin-bottom: 8px;
}
#detail .items .item .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
#detail .items .item .title {
  text-align: center;
  margin: 10px 0;
  font-weight: bold;
  color: #4830d4;
  width: 70%;
}
#detail .items .item .strong {
  display: block;
  width: 70%;
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
  font-size: 14px;
}

#tab-menu {
  margin-top: 50px;
}
#tab-menu .container .tab {
  overflow: auto;
  margin: 30px 0;
  display: flex;
  justify-content: space-evenly;
}
#tab-menu .container .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  text-transform: uppercase;
  padding-bottom: 7px;
  border-bottom: 5px solid transparent;
  margin: 0 10px;
  color: #4830d4;
  font-weight: 600;
  font-size: 16px;
}
#tab-menu .container .tab button:hover,
#tab-menu .container .tab button.active {
  border-color: #02fcad;
}
#tab-menu .container .tabcontent {
  display: none;
  width: 100%;
  box-sizing: border-box;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
  background-size: cover;
  background-position: center;
  padding: 20px;
}
#tab-menu .container .tabcontent .content{
  margin-left: 10px;
}
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#tab-menu .content {
  width: 300px;
  min-height: 360px;
  padding: 40px 20px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.8);
}
#tab-menu .content .bigTitle {
  font-size: 29px !important;
}
#tab-menu .content .desc {
  color: #232323;
  font-weight: 500;
  margin-bottom: 50px;
}
#tab-menu .content .primary-btn2:hover {
  color: #4830d4;
}

.page-title2 {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-title2 .bigTitle {
  display: inline-block;
  position: relative;
}
.page-title2 .bigTitle::after {
  content: "";
  width: 50%;
  height: 5px;
  background-color: #02fcad;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 0);
}

@media only screen and (max-width: 1148px) {
  #list-item .bigTitle {
    font-size: 59px !important;
  }
  #list-item .item {
    height: 200px !important;
  }
}
@media only screen and (max-width: 1048px) {
  #mobile-phone-section .container {
    flex-direction: column;
  }
  #mobile-phone-section .container .left {
    width: 100% !important;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  #mobile-phone-section .container .right {
    width: 100% !important;
    margin-left: 0 !important;
  }
  #header-content .right {
    padding-right: 0 !important;
  }
  .register-form {
    width: 100% !important;
  }
  .header-top ul li {
    margin-right: 20px !important;
  }
}
@media only screen and (max-width: 998px) {
  #header-content .left {
    padding-left: 0 !important;
  }
  #detail .items {
    flex-wrap: wrap;
  }
  #detail .items .item {
    width: 100% !important;
  }
  #list-item .item {
    width: calc(50% - 20px) !important;
  }
  #step .container {
    flex-wrap: wrap;
  }
  #step .container .item {
    margin-bottom: 30px;
  }
  #list-item .container .top {
    flex-direction: column;
  }
  #list-item .container .top .left {
    width: 100% !important;
    text-align: center;
  }
  #list-item .container .top .right {
    width: 100% !important;
    display: flex;
    justify-content: center;
  }
  #list-item .container .top .right .right-image {
    width: 100% !important;
  }
  #list-item .bigTitle {
    margin-left: 0 !important;
  }
  .slide-content {
    background-position: center !important;
  }
  #header-content .container {
    flex-direction: column;
  }
  #header-content .container .left {
    width: 100%;
    margin-bottom: 30px;
  }
  #header-content .container .right {
    width: 100%;
  }
  .header-bottom .container {
    flex-wrap: wrap;
    justify-content: center !important;
  }
  .header-bottom .container .right a {
    display: inline-block;
  }
  #flex-section .container {
    flex-direction: column;
    padding-left: 30px;
  }
  #flex-section .container .left {
    width: 100% !important;
    margin-bottom: 30px;
  }
  #flex-section .container .right {
    width: 100% !important;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 748px) {
  #tab-menu .container .tabcontent .content{
    margin-left: 0px;
  }
  #list-item .bigTitle {
    font-size: 36px !important;
  }
  #flex-section .container {
    padding-left: 0 !important;
  }
  .header-bottom .right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .header-bottom .right a {
    margin: 0 0 10px 0 !important;
  }
  #header-content .bigTitle {
    margin-left: 30px !important;
    font-size: 49px !important;
    text-align: center;
  }
  #header-content .buttons {
    flex-wrap: wrap;
  }
  .header-top {
    box-sizing: border-box;
  }
  .header-top ul {
    display: none !important;
  }
  .header-top #menu-btn {
    display: block !important;
  }
  #how .items {
    flex-wrap: wrap;
  }
  #how .items .item {
    width: 100%;
  }
  .bigTitle {
    font-size: 36px !important;
  }
  .bigDesc {
    font-size: 20px !important;
    margin-top: 15px;
  }
  #footer .container {
    flex-direction: column;
  }
  #footer .container .mid {
    margin: 20px;
  }
  #footer .container .mid ul {
    justify-content: center;
  }
}
@media only screen and (max-width: 448px) {
  #step .container {
    justify-content: center !important;
  }
  #tab-menu .content {
    width: 100% !important;
  }
  #list-item .item {
    width: 100% !important;
  }
  .header-content-top-title {
    font-size: 26px !important;
  }
  .page-title .title {
    font-size: 36px;
  }
  .accordion {
    font-size: 16px !important;
  }
  #flex-section .right .image {
    width: 100% !important;
  }
  #header-content .left {
    padding-left: 0 !important;
  }
  #header-content .right {
    padding-right: 0 !important;
  }
  #header-content .right .right-img {
    width: 100% !important;
  }
  #header-content .slide-content {
    height: 400px !important;
  }
  #header-content .bigTitle {
    font-size: 36px !important;
    margin: 0 !important;
    overflow: hidden;
  }
}/*# sourceMappingURL=style.css.map */