a.submit {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Montserrat, sans-serif;
  border-radius: 15px;
  width: 100%;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  height: 64px;
}
a.submit .icon {
  margin-top: -3px;
  margin-left: 1vw;
  height: 35px;
  width: 35px;
}
a.submit .icon.blue-stroke {
  stroke: #1E78FF;
}
a.submit .icon.white-stroke {
  stroke: white;
}
a.submit .icon.none-stroke {
  stroke: none;
}
a.submit .icon.bg-white {
  fill: white;
}
a.submit .icon.bg-blue {
  fill: #1E78FF;
}
.card-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 5vh;
}
.card-list .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 18vw;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
  border-radius: 15px;
  padding: 3vh 20px 20px;
}
.card-list .card .card-title,
.card-list .card .card-num {
  font-family: Bowler, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  text-align: left;
  width: 100%;
}
.card-list .card .card-title {
  height: 2rem;
}
.card-list .card .card-num {
  color: #8BB1EE;
  margin-bottom: 0;
}
.card-list .card .card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 45vh;
}
.card-list .card .card-submit {
  border-radius: 40px;
  font-family: Bowler, sans-serif;
  font-weight: 400;
  font-size: 18px;
  position: absolute;
  width: calc(100% - 60px);
  bottom: 10px;
  margin: 0 auto;
  background: #0000FE;
  padding: 5px 10px;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: white;
}
.card-list .card .card-submit .icon {
  width: 16px;
  height: 16px;
}
img.main {
  border-radius: 40px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
}
.container {
  position: relative;
}
.loader-screen {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #CCCCCC;
  margin: 0;
}
.loader {
  width: 48px;
  height: 48px;
  border: 3px dotted #FFF;
  border-style: solid solid dotted dotted;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 2s linear infinite;
}
.loader::after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px dotted #FF3D00;
  border-style: solid solid dotted;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  animation: rotationBack 1s linear infinite;
  transform-origin: center center;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1;
}
/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1;
}
/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}
/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
/* Make sure textarea without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}
/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}
html,
body {
  margin: 0;
  padding: 0;
}
.hidden {
  display: none;
}
@media (min-width: 768px) {
  .section {
    min-height: 100vh;
  }
  .section.header {
    background: #EFF6FA;
  }
  .section.header header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 5vw;
    width: 100vw;
  }
  .section.header header .left {
    width: 70vw;
  }
  .section.header header .right {
    width: 30vw;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    text-align: center;
  }
  .section.header header .submit {
    width: 220px;
  }
  .section.header header .submit.phone {
    background: white;
    border-radius: 15px;
    color: #000;
  }
  .section.header header .submit.consult {
    background: #000;
    border-radius: 15px;
    color: white;
  }
  .section.header header .submit.connect {
    font-family: Bowler, sans-serif;
    font-weight: 400;
    background: #1E78FF;
    border-radius: 15px;
    color: white;
    width: 94%;
    height: 90px;
    font-size: 24px;
  }
  .section.header header .submit.connect .icon {
    width: 16px;
    height: 16px;
    margin-top: -3px;
  }
  .section.header header .slogan {
    display: inline-block;
    width: 54vw;
  }
  .section.header header .slogan .small {
    display: inline-block;
    font-size: 14px;
    line-height: 15px;
    font-family: Montserrat, sans-serif;
    width: 12vw;
    color: #1E78FF;
  }
  .section.header header .slogan .medium {
    display: inline;
    font-family: Bowler, sans-serif;
    font-size: 35px;
  }
  .section.header header .top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 10vh;
  }
  .section.header header .bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    min-height: 10vh;
  }
  .section.header .container {
    border-radius: 40px;
    margin: 0 1vw;
    width: 97vw;
    height: 75vh;
  }
  .section.header .container .inner {
    position: absolute;
    display: flex;
    border: 5px solid #EFF6FA;
    border-radius: 40px;
  }
  .section.header .container .inner .play_btn {
    position: absolute;
    left: calc(50% - 33px);
    top: calc(50% - 33px);
  }
  .section.header .container .inner .inner_text {
    font-family: Bowler, sans-serif;
    font-size: 24px;
    position: absolute;
    bottom: 10px;
    left: 40px;
    color: white;
    text-transform: uppercase;
    z-index: 10;
  }
  .section.header .container .inner img {
    border-radius: 40px;
    position: relative;
    z-index: 9;
  }
  .section.header .container .inner.bottom-right {
    bottom: 0;
    right: 0;
  }
  .section.header .container .inner.bottom-right:before,
  .section.header .container .inner.bottom-right:after {
    content: " ";
    position: absolute;
    height: 80px;
    width: 80px;
    border-width: 0;
    border-bottom-right-radius: 40px;
    background-color: transparent;
  }
  .section.header .container .inner.bottom-right:before {
    height: 40px;
    width: 40px;
    bottom: -5px;
    left: -45px;
    box-shadow: 20px 20px 0 20px #EFF6FA;
    z-index: 8;
  }
  .section.header .container .inner.bottom-right:after {
    top: -85px;
    right: -5px;
    box-shadow: 80px 80px 0 80px #EFF6FA;
    z-index: 7;
  }
  .section.tech {
    max-height: 100vh;
    background: white;
  }
  .section.tech .main {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    mask-image: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    z-index: 1;
  }
  .section.tech .main img {
    object-fit: cover;
    height: 100vh;
    width: 100vw;
  }
  .section.tech .header {
    position: relative;
    font-family: Bowler, sans-serif;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 5vh 5vw;
    z-index: 3;
  }
  .section.tech .header .left {
    display: flex;
    flex-direction: row;
  }
  .section.tech .header .left .num {
    margin-right: 2vw;
    font-size: 62px;
    background: linear-gradient(to right, #000000, #3D6680);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .section.tech .header .left .text {
    font-size: 62px;
    background: linear-gradient(to right, #000000, #3D6680);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .section.tech .header .right .submit {
    font-family: Bowler, sans-serif;
    font-weight: 400;
    font-size: 24px;
    justify-content: space-between;
    align-items: flex-end;
    height: 150px;
    color: white;
    width: 25vw;
    padding: 5%;
    background: #1E78FF;
    margin-right: 3vw;
  }
  .section.tech .container {
    z-index: 3;
    position: relative;
    height: 80vh;
    padding: 0 5vw;
  }
  .section.tech .container .card-list .card .card-num {
    margin: 0 0 3vh;
    font-size: 18px;
  }
  .section.tech .container .card-list .card .card-title {
    font-size: 1.6em;
  }
  .section.tech .container .card-list .card .card-submit {
    font-size: 14px;
    height: 80px;
  }
  .section.tech .container .card-list .card .card-submit .icon {
    width: 14px;
    height: 14px;
  }
  .section.support-auto {
    padding: 3vh 1vw 1vh;
    background: white;
  }
  .section.support-auto .support {
    height: 80vh;
  }
  .section.support-auto .support.support {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 10px;
  }
  .section.support-auto .support.support .support-image {
    border-radius: 40px;
    width: 60vw;
    height: 80vh;
  }
  .section.support-auto .support.support .support-description {
    background: black;
    font-family: Bowler, sans-serif;
    font-size: 24px;
    position: relative;
    display: flex;
    flex-direction: row;
    border-radius: 40px;
    color: white;
    width: 40vw;
    height: 80vh;
  }
  .section.support-auto .support.support .support-description h3 {
    background: linear-gradient(90deg, #fff, #8BB1EE);
    -webkit-background-clip: text;
    font-weight: 700;
    -webkit-text-fill-color: transparent;
  }
  .section.support-auto .support.support .support-description .background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .section.support-auto .support.support .support-description .left {
    margin-left: 3vw;
    margin-top: 15vh;
    z-index: 2;
  }
  .section.support-auto .support.support .support-description .right {
    display: flex;
    flex-direction: column;
    margin-left: 3vw;
    margin-top: 15vh;
    margin-right: 10vw;
    z-index: 2;
  }
  .section.support-auto .support.support .support-description .right .heading {
    font-size: 32px;
    line-height: 44px;
    padding: 20px 0;
    font-family: Montserrat, sans-serif;
  }
  .section.support-auto .support.support .support-description .right .subheading {
    font-size: 20px;
    line-height: 31px;
    font-family: Montserrat, sans-serif;
  }
  .section.support-auto .support.support .support-description h3 {
    font-size: 48px;
    padding-bottom: 50px;
  }
  .section.support-auto .auto {
    position: relative;
    z-index: 12;
    margin-top: -10vh;
  }
  .section.support-auto .auto .header {
    font-size: 48px;
    font-family: Bowler, sans-serif;
    color: white;
    background: url("../img/auto.png");
    width: 30vw;
    height: 10vh;
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
    border: 5px solid white;
    position: relative;
    left: -5px;
    top: 0;
  }
  .section.support-auto .auto .header:before,
  .section.support-auto .auto .header:after {
    content: " ";
    position: absolute;
    width: 40px;
    height: 40px;
    border-width: 0;
    border-bottom-left-radius: 40px;
    background-color: transparent;
  }
  .section.support-auto .auto .header:before {
    top: calc((40px + 5px) * -1);
    left: 0;
    box-shadow: -40px 40px 0 40px white;
    z-index: 8;
  }
  .section.support-auto .auto .header:after {
    bottom: 0;
    right: -40px;
    box-shadow: -10px 10px 0 10px #A7B2A4;
    z-index: 8;
    border-bottom: 5px solid white;
    border-left: 5px solid white;
  }
  .section.support-auto .auto .header .auto-num {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 99;
    font-size: 48px;
    font-family: Bowler, sans-serif;
    color: white;
    background: url("../img/auto.png");
    width: calc(30vw - 60px);
    height: 10vh;
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
    position: relative;
    padding: 0 0 0 60px;
  }
  .section.support-auto .auto .container {
    height: 80vh;
    background: url("../img/auto.png");
    z-index: 10;
    position: relative;
    top: -5px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }
  .section.support-auto .auto .container > .content {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    padding: 0 5vw;
  }
  .section.support-auto .auto .container > .content * {
    padding: 0;
    margin: 0;
  }
  .section.support-auto .auto .container > .content .subtitle {
    color: white;
    font-family: Montserrat, sans-serif;
    font-size: 24px;
    line-height: 26px;
  }
  .section.support-auto .auto .container > .content .title {
    color: white;
    font-family: Bowler, sans-serif;
    font-size: 67px;
    line-height: 78px;
    margin-top: 5vh;
  }
  .section.support-auto .auto .container > .content .addition {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: white;
  }
  .section.support-auto .auto .container > .content .submit {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Bowler, sans-serif;
    font-size: 24px;
    font-weight: 400;
    border-radius: 15px;
    width: 35vw;
    height: 10vh;
    text-transform: uppercase;
    text-decoration: none;
    background: #1E78FF;
    color: white;
    margin-top: 3vh;
  }
  .section.support-auto .auto .container > .content .submit .icon {
    margin-left: 1vw;
    margin-top: -3px;
    width: 24px;
    height: 24px;
  }
  .section.support-auto .auto .container > .images {
    position: absolute;
    bottom: 0;
    width: 100vw;
    right: 0;
  }
  .section.support-auto .auto .container > .images > .notebook {
    position: absolute;
    bottom: -9vh;
    right: -19px;
    width: 52vw;
  }
  .section.support-auto .auto .container > .images > .mobiles {
    position: absolute;
    right: 30vw;
    bottom: 5vh;
    width: 15vw;
  }
  .section.faq-footer .back {
    position: absolute;
    top: 0;
    width: 99vw;
    z-index: 1;
  }
  .section.faq-footer .back img {
    width: 100%;
    opacity: 0.4;
  }
  .section.faq-footer .faq {
    padding: 3vh 4vw 0;
    z-index: 2;
    position: relative;
  }
  .section.faq-footer .faq .header {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    font-family: Bowler, sans-serif;
    font-size: 48px;
    line-height: 0;
    border-bottom: 1px solid #EEE;
  }
  .section.faq-footer .faq .header .header-num {
    margin-right: 3vw;
  }
  .section.faq-footer .faq .content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    width: 100vw;
    overflow-x: hidden;
  }
  .section.faq-footer .faq .content .faq-list {
    list-style-type: decimal-leading-zero;
    font-family: Bowler, sans-serif;
    font-size: 24px;
    width: 70vw;
  }
  .section.faq-footer .faq .content .faq-list .answer {
    display: none;
    font-family: Montserrat, sans-serif;
    padding-bottom: 10px;
  }
  .section.faq-footer .faq .content .faq-list .answer p {
    padding-bottom: 10px;
  }
  .section.faq-footer .faq .content .faq-list .question {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-family: Montserrat, sans-serif;
    font-size: 24px;
    position: relative;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .section.faq-footer .faq .content .faq-list .question .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 33px;
  }
  .section.faq-footer .faq .content .faq-list .question .icon {
    border: 1px solid #1E78FF;
    padding: 10px;
    border-radius: 5px;
    background: #1E78FF;
    width: 32px;
    height: 32px;
    fill: white;
    color: white;
  }
  .section.faq-footer .faq .content .faq-list .question .icon:hover {
    cursor: pointer;
  }
  .section.faq-footer .faq .content .faq-list li.active .answer {
    display: block;
  }
  .section.faq-footer .faq .content .faq-list li.active .question .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 33px;
  }
  .section.faq-footer .faq .content .faq-list li.active .question .icon {
    background: transparent;
    transform: rotate(-90deg);
    fill: #1E78FF;
    color: #1E78FF;
  }
  .section.faq-footer .faq .content .submit {
    margin-top: -10vh;
    padding: 20px;
    background: #1E78FFFF;
    text-align: center;
    color: white;
    width: 25vw;
    justify-content: center;
    display: inline-flex;
    position: relative;
    top: -50px;
    margin-right: 50px;
  }
  .section.faq-footer .footer {
    z-index: 2;
    position: relative;
  }
  .section.faq-footer .footer .head .annot {
    font-family: Bowler, sans-serif;
    width: 100%;
    display: inline-block;
    text-align: right;
    font-size: 30px;
    position: relative;
    right: 400px;
  }
  .section.faq-footer .footer .head .annot .first-line {
    display: inline-block;
    margin-right: -200px;
  }
  .section.faq-footer .footer .content {
    display: grid;
    grid-template: "a a a b" auto "a a a b" auto "c c c b" auto / 3fr 1fr;
    border-radius: 40px;
    margin: 10px;
    padding: 90px 60px;
    background: rgba(0, 0, 0, 0.8);
    font-family: Montserrat, sans-serif;
  }
  .section.faq-footer .footer .content .col {
    width: 33%;
  }
  .section.faq-footer .footer .content .col.links {
    display: flex;
    flex-direction: column;
  }
  .section.faq-footer .footer .content .col.links .link {
    color: white;
    text-decoration: none;
    margin-bottom: 30px;
    font-size: 21px;
  }
  .section.faq-footer .footer .content .col .address {
    color: white;
    font-size: 16px;
    line-height: 24px;
    font-weight: 100;
  }
  .section.faq-footer .footer .content .col .submit {
    background: #1E78FF;
    border-radius: 40px;
    color: white;
    width: 60%;
    font-size: 14px;
    margin: 20px 0;
    justify-content: space-evenly;
  }
  .section.faq-footer .footer .content .col .submit .icon {
    float: right;
    margin-right: -30px;
  }
  .section.faq-footer .footer .content .col .announcement {
    font-weight: 100;
    line-height: 24px;
  }
  .section.faq-footer .footer .content .top {
    grid-area: a;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .section.faq-footer .footer .content .map {
    grid-area: b;
  }
  .section.faq-footer .footer .content .bottom {
    grid-area: c;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
  .section.faq-footer .footer .content .bottom .col {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
  .section.faq-footer .footer .content .bottom .col .social {
    margin-right: 40px;
  }
}
@media (max-width: 768px) {
  .section {
    background: white;
    padding: 0 1vw;
  }
  .section.header {
    background: #EFF6FA;
  }
  .section.header header .submit {
    font-family: Bowler, sans-serif;
    font-weight: 400;
    color: white;
  }
  .section.header header .submit.phone {
    width: 64px;
  }
  .section.header header .submit.phone span {
    display: none;
  }
  .section.header header .submit.consult {
    display: none;
  }
  .section.header header .submit.connect {
    background: #1E78FF;
    font-size: 18px;
    padding: 15px 0;
    height: 90px;
  }
  .section.header header .submit.connect .icon {
    width: 18px;
    height: 18px;
    margin-top: -6px;
    margin-left: 3vw;
  }
  .section.header header .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .section.header header .top .logo {
    width: 50vw;
  }
  .section.header header .bottom .slogan {
    display: flex;
    flex-direction: column;
  }
  .section.header header .bottom .slogan .small {
    order: 3;
    margin: 20px 0;
    font-family: Montserrat, sans-serif;
    font-size: 21px;
    line-height: 25px;
    color: #1E78FF;
  }
  .section.header header .bottom .slogan .medium {
    order: 1;
    font-family: Bowler, sans-serif;
    font-size: 28px;
    line-height: 29px;
    font-weight: 700;
  }
  .section.header .container {
    margin-top: 20px;
    position: relative;
    margin-bottom: -190px;
  }
  .section.header .container div.main {
    border-radius: 40px;
  }
  .section.header .container div.main img.main {
    object-position: 34% 50%;
    width: 100%;
    height: 90%;
    margin: 0 auto;
    object-fit: cover;
    scale: 1;
  }
  .section.header .container div.inner {
    position: relative;
    top: -210px;
    width: 97%;
    margin: 0 auto;
  }
  .section.header .container div.inner .overlay {
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .section.header .container div.inner .overlay .play_btn {
    width: 40px;
    height: 40px;
  }
  .section.header .container div.inner .overlay .inner_text {
    position: absolute;
    bottom: 10px;
    font-family: Bowler, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: white;
  }
  .section.header .container div.inner img {
    max-width: 100%;
    display: block;
    height: 200px;
    object-fit: cover;
    border-radius: 40px;
  }
  .section.tech {
    padding: 10px 1vw;
    position: relative;
  }
  .section.tech .header {
    z-index: 2;
  }
  .section.tech .header .left .num {
    display: none;
  }
  .section.tech .header .left .text {
    font-family: Bowler, sans-serif;
    font-weight: 400;
    font-size: 24px;
  }
  .section.tech .header .right {
    display: none;
  }
  .section.tech .container {
    z-index: 2;
  }
  .section.tech .container .card-list {
    flex-direction: row;
    width: 98%;
    display: inline-flex;
    flex-wrap: nowrap;
    overflow: auto;
    position: relative;
    padding-bottom: 40px;
  }
  .section.tech .container .card-list .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 80vw;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
    border-radius: 15px;
    padding: 3vh 20px 20px;
    scroll-behavior: smooth;
  }
  .section.tech .container .card-list .card .card-num {
    padding: 20px 0;
  }
  .section.tech .container .card-list .card .card-image {
    min-height: 50vh;
  }
  .section.tech .main {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    mask-image: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    z-index: 1;
  }
  .section.tech .main img {
    object-fit: cover;
    height: 100vh;
    width: 100vw;
  }
  .section.support-auto .support {
    border-radius: 40px;
    background: url("../img/support-back.png"), linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
  }
  .section.support-auto .support .support-image {
    border-radius: 40px;
  }
  .section.support-auto .support .support-description .background {
    display: none;
  }
  .section.support-auto .support .support-description .left {
    display: none;
  }
  .section.support-auto .support .support-description .right {
    padding: 20px;
    font-family: Montserrat, sans-serif;
    color: white;
  }
  .section.support-auto .support .support-description .right h3 {
    background: linear-gradient(90deg, #fff, #8BB1EE);
    -webkit-background-clip: text;
    font-weight: 700;
    -webkit-text-fill-color: transparent;
    font-size: 27px;
    font-family: Bowler, sans-serif;
    padding-bottom: 20px;
  }
  .section.support-auto .support .support-description .right .heading {
    font-weight: 700;
    font-size: 22px;
    line-height: 24px;
    padding: 20px 0;
  }
  .section.support-auto .support .support-description .right .subheading {
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    padding: 10px 0 60px;
  }
  .section.support-auto .auto {
    border-radius: 40px;
    margin-top: 20px;
    background: url("../img/auto.png");
  }
  .section.support-auto .auto .header {
    display: none;
  }
  .section.support-auto .auto .container {
    display: flex;
    flex-direction: column;
  }
  .section.support-auto .auto .container .images {
    order: 1;
    position: relative;
    overflow-x: clip;
    z-index: 100;
  }
  .section.support-auto .auto .container .images .notebook {
    position: absolute;
    top: -80px;
    right: -10vw;
  }
  .section.support-auto .auto .container .images .mobiles {
    position: absolute;
    width: 30vw;
    top: 10vh;
    right: 50vw;
  }
  .section.support-auto .auto .container .content {
    order: 2;
    padding: 35vh 40px 5vh;
    font-family: Montserrat, sans-serif;
  }
  .section.support-auto .auto .container .content div {
    display: flex;
    flex-direction: column;
    color: white;
  }
  .section.support-auto .auto .container .content div .title {
    background: linear-gradient(90deg, #fff, #8BB1EE);
    -webkit-background-clip: text;
    font-weight: 700;
    -webkit-text-fill-color: transparent;
    order: 1;
    font-family: Bowler, sans-serif;
    line-height: 30px;
  }
  .section.support-auto .auto .container .content div .subtitle {
    order: 2;
    font-weight: 700;
    font-size: 18px;
    padding: 20px 0;
    line-height: 24px;
  }
  .section.support-auto .auto .container .content div .addition {
    line-height: 24px;
    padding-bottom: 10px;
  }
  .section.support-auto .auto .container .content div .submit {
    background: #1E78FF;
    padding: 10px 0;
    color: white;
    font-family: Bowler, sans-serif;
    font-weight: 500;
    font-size: 21px;
  }
  .section.support-auto .auto .container .content div .submit .icon {
    display: none;
  }
  .section.faq-footer {
    padding: 0;
    position: relative;
  }
  .section.faq-footer .back {
    position: absolute;
    top: 0;
  }
  .section.faq-footer .back img {
    object-fit: fill;
    max-width: fit-content;
    opacity: 0.5;
  }
  .section.faq-footer .faq {
    position: relative;
    z-index: 2;
    padding: 10vh 2vw;
  }
  .section.faq-footer .faq .header .header-num {
    display: none;
  }
  .section.faq-footer .faq .header .header-title {
    font-family: Bowler, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
  }
  .section.faq-footer .faq .content {
    display: flex;
    flex-direction: column;
  }
  .section.faq-footer .faq .content .faq-list {
    order: 1;
    padding: 0;
    font-family: Montserrat, sans-serif;
  }
  .section.faq-footer .faq .content .faq-list .question {
    font-weight: 700;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
  }
  .section.faq-footer .faq .content .faq-list .question .title {
    font-size: 18px;
  }
  .section.faq-footer .faq .content .faq-list .question svg {
    display: block;
    border: 1px solid #1E78FF;
    background: transparent;
    fill: #1E78FF;
    min-width: 32px;
    min-height: 32px;
    padding: 10px;
    border-radius: 5px;
    transform: scaleY(-1);
  }
  .section.faq-footer .faq .content .faq-list .answer {
    display: none;
  }
  .section.faq-footer .faq .content .faq-list .answer p {
    padding-bottom: 10px;
    font-size: 18px;
    font-family: Montserrat, sans-serif;
    line-height: 21px;
  }
  .section.faq-footer .faq .content .faq-list .active {
    list-style-type: none;
  }
  .section.faq-footer .faq .content .faq-list .active .question svg {
    border: 1px solid #1E78FF;
    background: #1E78FF;
    fill: white;
  }
  .section.faq-footer .faq .content .faq-list .active .answer {
    display: block;
  }
  .section.faq-footer .faq .content .submit {
    order: 2;
    background: #1E78FF;
    color: white;
    font-family: Bowler, sans-serif;
    font-size: 21px;
  }
  .section.faq-footer .footer {
    position: relative;
    z-index: 2;
    margin: 0 3vw;
    border-radius: 40px;
  }
  .section.faq-footer .footer .head {
    display: none;
  }
  .section.faq-footer .footer .content {
    background: #2B2D30;
    border-radius: 40px;
    padding: 40px 20px;
    color: white;
    font-family: 'Montserrat', sans-serif;
  }
  .section.faq-footer .footer .content .col {
    font-weight: 100;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
  }
  .section.faq-footer .footer .content .col .link {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 20px;
    font-weight: 400;
  }
  .section.faq-footer .footer .content .col .submit {
    border-radius: 40px;
    height: 50px;
    margin: 20px 0;
    font-weight: 400;
  }
  .section.faq-footer .footer .content .col .submit.phone {
    background: #1E78FF;
    color: white;
    position: relative;
    font-weight: 100;
  }
  .section.faq-footer .footer .content .col .submit.phone .icon {
    position: absolute;
    right: 7px;
    top: 10px;
  }
  .section.faq-footer .footer .content .bottom {
    display: flex;
    flex-direction: column;
  }
  .section.faq-footer .footer .content .bottom .copyright {
    order: 2;
  }
  .section.faq-footer .footer .content .bottom .social-links {
    order: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin: 20px 0;
  }
  .section.faq-footer .footer .content .bottom .social-links a {
    color: white;
    text-decoration: none;
    margin-right: 10px;
  }
  .section.faq-footer .footer .content .bottom .col:last-child {
    display: none;
  }
  .section.faq-footer div.logo {
    margin: 20px 0;
  }
  .section.faq-footer div.logo svg {
    width: 95%;
  }
}
/*# sourceMappingURL=style.css.map */