:root {
--green: #2ee627;
--pink: #e32a84;
--black: #242424;
--blue: #0d4b79;
}
.container {
width: 90%;
max-width: 1400px;
margin: 0 auto;
}
main {
padding: 129px 0 0;
}
#page {
max-width: 1920px;
width: 100%;
margin: 0 auto;
overflow: hidden;
}
.post-edit-link {
text-align: center;
display: block;
}
.phone_hp {
display: none!important;
}
.line_block {
display: block;
}
.noselect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
html {
scroll-behavior: smooth;
}
.progress-container {
z-index: 11;
position: fixed;
top: 0;
} .header-top {
background-color: var(--black);
color: #fff;
font-size: 14px;
font-weight: 600;
padding: 11px 0;
}
.header-top .container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.header-top .container .box {
width: 33%;
}
.header-top .container .box-cta {
text-align: center;
color: #fff;
-webkit-transition: 0.3s all ease-in-out;
-o-transition: 0.3s all ease-in-out;
transition: 0.3s all ease-in-out;
}
.header-top .container .box-cta:hover {
color: var(--green);
}
.header-top .container .box-cta .underline {
text-decoration: underline;
}
.header-top .container .box-contact {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.header-top .container .box-contact .phone {
margin: 0 0 0 10px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 5px;
}
.header-top .container .box-contact .phone .phone-icon {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.header-top .container .box-contact .phone svg {
width: 12px;
color: var(--green);
}
.header-top .container .social-icons {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
gap: 22px;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.header-top .container .social-icons a{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.header-top .container .social-icons svg {
color: #fff;
-webkit-transition: 0.3s all ease-in-out;
-o-transition: 0.3s all ease-in-out;
transition: 0.3s all ease-in-out;
width: 15px;
}
.header-top .container .social-icons svg:hover {
color: var(--green);
}
#myBar {
height: 2px;
background: var(--green);
width: 0%;
}
#myBar.fixed {
position: fixed;
top: 0;
z-index: 3;
} #masthead {
padding: 20px 0 0;
position: fixed;
width: 100%;
}
#masthead .container {
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;
}
#masthead #site-navigation ul {
margin: 0;
list-style: none;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
gap: 30px;
background-color: #fff;
border-radius: 50px;
padding: 20px 45px;
border: 2px solid #e5e5e5;
}
#masthead #site-navigation ul li a {
color: var(--black);
-webkit-transition: 0.3s all ease-in-out;
-o-transition: 0.3s all ease-in-out;
transition: 0.3s all ease-in-out;
font-size: 14px;
font-weight: 600;
position: relative;
}
#masthead #site-navigation ul li a:hover {
color: var(--pink);
}
#masthead #site-navigation ul li a::before {
visibility: hidden;
content: '';
width: 100%;
height: 5px;
border-radius: 50px;
background-color: var(--green);
position: absolute;
-webkit-transition: 0.2s ease-in-out;
-o-transition: 0.2s ease-in-out;
transition: 0.2s ease-in-out;
bottom: -23px;
-webkit-transform: scaleX(0);
-ms-transform: scaleX(0);
transform: scaleX(0);
}
#masthead #site-navigation ul li a:hover::before {
visibility: visible;
-webkit-transform: scaleX(1);
-ms-transform: scaleX(1);
transform: scaleX(1);
}
#masthead .btn_get_started {
color: #fff;
background: rgb(217,36,138);
background: -webkit-gradient(linear, left top, right top, from(rgba(217,36,138,1)), color-stop(66%, rgba(179,1,93,1)));
background: -o-linear-gradient(left, rgba(217,36,138,1) 0%, rgba(179,1,93,1) 66%);
background: linear-gradient(90deg, rgba(217,36,138,1) 0%, rgba(179,1,93,1) 66%);
border-radius: 50px;
padding: 19px 32px;
border: 4px solid #d9d9d9;
font-weight: 700;
font-size: 14px;
-webkit-transition: 0.3s all ease-in-out;
-o-transition: 0.3s all ease-in-out;
transition: 0.3s all ease-in-out;
}
#masthead .btn_get_started:hover {
background: -webkit-gradient(linear, left top, right top, from(rgba(217,36,138,1)), color-stop(0%, rgba(217,36,138,1)));
background: -o-linear-gradient(left, rgba(217,36,138,1) 0%, rgba(217,36,138,1) 0%);
background: linear-gradient(90deg, rgba(217,36,138,1) 0%, rgba(217,36,138,1) 0%);
}
#masthead.fixed {
position: fixed;
top: 0;
width: 100%;
background-color: #fff;
-webkit-box-shadow: 0 0 10px #00000029;
box-shadow: 0 0 10px #00000029;
padding: 10px 0;
z-index: 10;
}
#masthead.fixed .site-branding {
width: 200px;
}
#masthead.fixed .site-branding img {
width: 110px;
}
#masthead.fixed  #site-navigation ul {
padding: 14px 45px;
}
#masthead.fixed .btn_get_started {
padding: 14px 32px;
}
#masthead.fixed #site-navigation ul li a::before {
bottom: -17px;
}
#masthead .wrap_mobile {
display: none;
}
#masthead .container-navigation {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
width: 75%;
}
.logo_menu_mobile_open {
display: none;
} #colophon {
background-color: #14314a;
color: #fff;
}
#colophon a {
color: #fff;
-webkit-transition: 0.3s all ease-in-out;
-o-transition: 0.3s all ease-in-out;
transition: 0.3s all ease-in-out;
}
#colophon a:hover {
color: var(--pink);
}
#colophon .title-social {
text-transform: uppercase;
font-weight: 700;
font-size: 14px;
}
#colophon .title {
font-size: 20px;
text-transform: uppercase;
font-family: "Sofia Sans Extra Condensed", sans-serif;
font-weight: 700;
margin: 0 0 44px;
letter-spacing: 0.03em;
}
#colophon .text {
font-size: 12px;
color: #b3b3b3;
line-height: 20px;
margin: 20px 0;
}
#colophon .container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 95px 0 79px;
}
#colophon .container.contact_true {
padding: 175px 0 79px;
}
#colophon .site-branding {
width: 263px;
}
#colophon .site-branding img {
width: 186px;
}
#colophon .site-branding .social-icons {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
gap: 15px;
margin: 20px 0;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#colophon svg {
width: 15px;
}
#colophon .footer-navigation {
width: 25%;
margin: 0 0 0 88px;
}
#colophon .footer-business-hours {
width: 25%;
}
#colophon .footer-location-contact {
width: 25%;
}
#colophon ul {
padding: 0;
margin: 0;
list-style: none;
}
#colophon ul li {
margin: 0 0 15px;
}
#colophon ul li, #colophon ul li a {
font-size: 14px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 10px;
}
#colophon .icon {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#colophon .footer-location-contact .bottom {
margin: 50px 0 0;
}
#colophon .footer-location-contact svg {
width: 11px;
}
#colophon .footer-location-contact .bottom .icon-mail svg{
width: 15px;
}
#colophon .politc-term {
text-align: center;
background: rgb(23, 138, 225);
background: -webkit-gradient(linear, left top, right top, from(rgba(23, 138, 225, 1)), to(rgba(12, 72, 116, 1)));
background: -o-linear-gradient(left, rgba(23, 138, 225, 1) 0%, rgba(12, 72, 116, 1) 100%);
background: linear-gradient(90deg, rgba(23, 138, 225, 1) 0%, rgba(12, 72, 116, 1) 100%);
padding: 21px 5%;
font-size: 14px;
} .form_contact {
width: 90%;
max-width: 1400px;
margin: -55px auto -86px;
z-index: 2;
position: relative;
}
.form_contact .box_contact {
background: rgb(23, 138, 225);
background: -webkit-gradient(linear, left top, right top, from(rgba(23, 138, 225, 1)), to(rgba(12, 72, 116, 1)));
background: -o-linear-gradient(left, rgba(23, 138, 225, 1) 0%, rgba(12, 72, 116, 1) 100%);
background: linear-gradient(90deg, rgba(23, 138, 225, 1) 0%, rgba(12, 72, 116, 1) 100%);
padding: 80px 85px;
border-radius: 15px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-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;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.form_contact .box_contact .left, .form_contact .box_contact .right {
width: 45%;
}
.form_contact .box_contact .left {
color: #fff;
}
.form_contact .box_contact .left .title {
font-size: 100px;
font-family: "Sofia Sans Extra Condensed", sans-serif;
font-weight: 700;
text-transform: none;
line-height: 114px;
margin: 0;
}
.form_contact .box_contact .left .text {
font-size: 18px;
color: #fff;
line-height: 26px;
font-weight: 600;
}
.form_contact .box_contact .left .text .underline {
text-decoration: underline;
}
.form_contact .box_contact .right form {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.form_contact .social_phone {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start;
gap: 30px;
margin: 75px 0 0;
}
.form_contact .social_phone .title_box {
text-transform: uppercase;
font-weight: 700;
font-size: 14px;
margin: 0 0 20px;
}
.form_contact .social_phone .social-icons {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
gap: 15px;
margin: 0;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.form_contact .social_phone svg {
width: 15px;
color: #fff;
-webkit-transition: 0.3s all ease-in-out;
-o-transition: 0.3s all ease-in-out;
transition: 0.3s all ease-in-out;
}
.form_contact .social_phone svg:hover {
color: var(--pink);
}
.form_contact .social_phone .sep {
width: 1px;
height: 60px;
background-color: #50a4e2;
margin: 0 10px;
}
.form_contact .social_phone .phone_contact .number {
font-size: 13px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
gap: 10px;
}
.form_contact .social_phone .phone_contact .number .icon {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.form_contact .social_phone .phone_contact svg {
width: 12px;
}
.form_contact .box_contact .right .input_form {
border-radius: 8px;
padding: 12px;
font-size: 16px;
border: 2px solid #fff;
-webkit-transition: 0.3s all ease-in-out;
-o-transition: 0.3s all ease-in-out;
transition: 0.3s all ease-in-out;
width: 100%;
}
.form_contact .box_contact .right .input_form:focus {
border-color: var(--green);
}
.form_contact .box_contact .right .input_form.error {
border-color: red!important;
}
.box_input {
position: relative;
margin: 0 0 16px;
}
.form_contact .box_contact .right .label_input {
position: absolute;
top: 14px;
left: 14px;
font-size: 16px;
color: var(--black);
font-weight: 500;
-webkit-transition: 0.3s all ease-in-out;
-o-transition: 0.3s all ease-in-out;
transition: 0.3s all ease-in-out;
z-index: 1;
background-color: #fff;
}
.form_contact .box_contact .right .input_mesage {
height: 100px;
}
.form_contact .box_contact .right .label_input.label_input_up {
top: -11px;
font-size: 12px;
background-color: var(--green);
border-radius: 30px;
color: #fff;
font-weight: 600;
padding: 3px 7px;
}
.form_contact .box_contact .right .sendButton {
text-align: center;
background-color: #25c61f;
font-size: 24px;
border: 0;
padding: 12px 5%;
color: #fff;
border-radius: 50px;
font-weight: 600;
margin: 0;
display: block;
-webkit-transition: 0.3s all ease-in-out;
-o-transition: 0.3s all ease-in-out;
transition: 0.3s all ease-in-out;
letter-spacing: 0.03em;
cursor: pointer;
}
.form_contact .box_contact .right .sendButton:hover { 
background-color: var(--green);
}
.form_contact .box_contact .right .mandatory {
font-size: 10px;
opacity: .7;
color: #fff;
}
.statusForm {
text-align: center;
color: #f9f9f9;
font-size: 12px;
font-weight: 500;
margin: 0;
}
.statusForm .status_error{
margin: 0 0 15px;
display: block;
}
@media only screen and (max-width:1500px){
#masthead #site-navigation ul {
padding: 17px 45px;
}
#masthead #site-navigation ul li a {
font-size: 13px;
}
#masthead #site-navigation ul li a::before {
bottom: -21px;
}
#masthead .btn_get_started {
font-size: 13px;
padding: 17px 32px;
}
#masthead .site-branding, #masthead.fixed .site-branding {
width: 160px;
}
.form_contact .box_contact .left .title {
font-size: 85px;
line-height: 93px;
}
.form_contact .box_contact .left .text {
font-size: 16px;
line-height: 25px;
}
.form_contact .box_contact .right .sendButton {
font-size: 22px;
}
}
@media only screen and (max-width:1300px){
.form_contact .box_contact .left .title {
font-size: 71px;
line-height: 78px;
}
.form_contact .box_contact .left .text {
font-size: 14px;
}
}
@media only screen and (max-width:1200px){
#colophon ul li, #colophon ul li a {
font-size: 13px;
}
#colophon .title {
font-size: 18px;
margin: 0 0 35px;
}
#colophon .site-branding img {
width: 170px;
}
#colophon .footer-navigation {
width: 20%;
margin: 0 0 0 60px;
}
#masthead #site-navigation ul {
gap: 22px;
padding: 14px 24px;
}
#masthead.fixed #site-navigation ul {
padding: 14px 24px;
}
#masthead.fixed .btn_get_started {
padding: 14px 21px;
}
#masthead .btn_get_started {
padding: 17px 21px;
}
}
@media only screen and (max-width: 1100px) {
#masthead .btn_get_started {
padding: 14px 16px;
font-size: 12px;
}
#masthead #site-navigation ul {
gap: 16px;
padding: 14px 19px;
}
.form_contact .box_contact .left .title {
font-size: 64px;
line-height: 72px;
}
}
@media only screen and (max-width:1024px){
.header-top .container .box-social {
display: none;
}
.header-top .container .box {
width: 50%;
}
.header-top .container .box-cta {
text-align: left;
}
#site-navigation, .btn_get_started {
display: none;
}
#colophon .site-branding img {
width: 100%;
max-width: 170px;
}
#colophon .container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
#colophon .site-branding,
#colophon .footer-navigation,
#colophon .footer-business-hours,
#colophon .footer-location-contact {
max-width: 300px;
width: 100%;
margin: 20px 0;
text-align: center;
}
#colophon ul li, #colophon ul li a {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
#colophon .site-branding .social-icons {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
#colophon .politc-term {
padding: 15px 5%;
font-size: 12px;
}
#masthead .wrap_mobile {
display: block;
}
#pencet{
display:-webkit-box;
display:-ms-flexbox;
display:flex;
-webkit-box-align:center;
-ms-flex-align:center;
align-items:center;
margin-top:0;
-webkit-box-orient:vertical;
-webkit-box-direction:normal;
-ms-flex-direction:column;
flex-direction:column;
cursor:pointer;
}
#pencet span{
background-color:black;
width: 28px;
height: 2px;
margin:4px 0;
display:block;
-webkit-transition: 0.3s all ease-in-out;
-o-transition: 0.3s all ease-in-out;
transition: 0.3s all ease-in-out;
-webkit-transform-origin:0 0;
-ms-transform-origin:0 0;
transform-origin:0 0;
}
.menu_active span:nth-child(1) {
-webkit-transform: rotate(45deg) translate(1px, -1px);
-ms-transform: rotate(45deg) translate(1px, -1px);
transform: rotate(45deg) translate(1px, -1px);
}
.menu_active span:nth-child(2) {
Transform: scaleX(0);
}
.menu_active span:nth-child(3) {
-webkit-transform: rotate(-45deg) translate(1px, 0);
-ms-transform: rotate(-45deg) translate(1px, 0);
transform: rotate(-45deg) translate(1px, 0);
}
#masthead.menu_mobile_open {
height: 100%;
z-index: 10;
top: 0;
}
#masthead.menu_mobile_open .logo_menu {
display: none;
}
#masthead.menu_mobile_open .logo_menu_mobile_open {
display: block;
}
#masthead.menu_mobile .site-branding {
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;
width: 100%;
z-index: 3;
position: relative;
}
#masthead.menu_mobile a img {
width: 160px;
}
#pencet.menu_active span {
background-color: #fff;
}
#site-navigation.menu_mobile .btn_get_started {
display: block;
text-align: center;
margin: 0 auto;
max-width: 200px;
width: 100%;
}
#site-navigation.open_menu {
display: block;
}
#site-navigation.menu_mobile {
position: absolute;
height: 100%;
width: 100%;
top: 0;
left: 0;
background-color: #14314a;
z-index: 2;
padding-top: 165px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
#masthead #site-navigation.menu_mobile ul {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
max-width: 90%;
margin: 0 auto;
border-radius: 18px;
margin-bottom: 50px;
}
#masthead #site-navigation.menu_mobile ul li a {
font-size: 16px;
}
body.no-scroll {
overflow: hidden;
}
body.no-scroll #masthead.fixed {
height: 100%;
}
#colophon .container.contact_true {
padding: 110px 0 20px;
}
@media (max-height: 535px) {
#masthead #site-navigation.menu_mobile ul {
margin-bottom: 30px;
}
body.no-scroll .progress-container, body.no-scroll .header-top {
display: none;
}
#site-navigation.menu_mobile {
padding-top: 106px;
}
}
.form_contact .box_contact {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
gap: 40px;
padding: 50px 60px;
}
.form_contact .box_contact .left, .form_contact .box_contact .right {
width: 100%;
}
.form_contact .social_phone {
margin: 30px 0 0;
}
}
@media only screen and (max-width:770px) {
.form_contact .box_contact {
padding: 30px;
}
.form_contact .box_contact .right .sendButton {
font-size: 20px;
}
.form_contact .box_contact .right .label_input {
font-size: 14px;
}
}
@media only screen and (max-width:660px){
.header-top .container .box-cta {
display: none;
}
.header-top .container .box {
width: 100%;
}
.header-top .container .box-contact {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
}
@media only screen and (max-width:500px){
#masthead.menu_mobile a img {
width: 135px;
}
}
@media only screen and (max-width:430px) {
.form_contact .box_contact .left .title {
font-size: 56px;
line-height: 56px;
}
.form_contact .box_contact .right .sendButton {
font-size: 18px;
}
}
@media only screen and (max-width:410px) {
.form_contact .social_phone {
gap: 8px;
}
}
@media only screen and (max-width:380px) {
.form_contact .box_contact .left .title {
font-size: 46px;
line-height: 51px;
}
.form_contact .social_phone .title_box {
font-size: 12px;
}
}
@media only screen and (max-width:360px){
.header-top {
font-size: 12px;
}
.header-top .container .box-contact .phone svg {
width: 10px;
}
}
@media only screen and (max-width:350px) {
.form_contact .social_phone {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.form_contact .social_phone .sep {
display: none;
}
.form_contact .social_phone .title_box {
margin: 0 0 10px;
}
.form_contact .social_phone {
gap: 26px;
}
}
@media only screen and (max-width:290px){
.header-top .container .box-contact {
-ms-flex-wrap: wrap;
flex-wrap: wrap;
gap: 6px;
}
}
#faq {
padding: 90px 0px;
background-color: #fff;
}
.faq-header {
margin-bottom: 2.5000rem;
position: relative;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-align-items: center;
-ms-align-items: center;
align-items: center;
}
.faq-header span {
color: var(--pink);
font-size: 12px;
display: block;
}
.faq-header h2 {
font-size: 2rem;
font-weight: 700;
margin: 10px 0;
}
.faq-header p {
font-weight: 600;
font-size: 16px;
}
.faq-item {
border-bottom: 2px solid #e7e7e7;
padding: 20px 0;
}
.faq-question {
border: none;
font-size: 20px;
font-weight: 600;
color: var(--black);
cursor: pointer;
width: 100%;
text-align: left;
position: relative;
padding-left: 0;
-webkit-background: transparent;
-moz-background: transparent;
background: transparent;
transition: .2s ease;
}
.faq-item.active .faq-question,
.faq-item .faq-question:hover {
color: var(--pink);
transition: .2s ease;
}
.faq-answer {
margin-top: 16px;
display: none;
color: var(--black);
font-size: 16px;
line-height: 1.6;
}
.faq-item.active .faq-answer {
display: block;
}
.arrow::before {
content: '';
position: absolute;
right: 0;
top: 8px;
width: 12px;
height: 12px;
border-right: 2px solid #959595;
border-bottom: 2px solid #959595;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transition: transform 0.3s ease, border-color 0.3s ease;
-moz-transition: transform 0.3s ease, border-color 0.3s ease;
-ms-transition: transform 0.3s ease, border-color 0.3s ease;
transition: transform 0.3s ease, border-color 0.3s ease;
}
.faq-item.active .arrow::before {
-webkit-transform: rotate(-135deg);
-moz-transform: rotate(-135deg);
-ms-transform: rotate(-135deg);
transform: rotate(-135deg);
border-color: var(--cor-bordo);
-webkit-transition: transform 0.3s ease;v
-moz-transition: transform 0.3s ease;
-ms-transition: transform 0.3s ease;
transition: transform 0.3s ease;
}
@media only screen and (max-width: 1600px) {
.faq-question {
font-size: 18px;
}
}
@media only screen and (max-width: 1023px) {
.faq-header h2 {
font-size: 5.5rem;
}
.faq-header {
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
gap: 30px;
}
#faq .esq,
#faq .dir {
max-width: 100%;
width: 100%;
}
}
@media only screen and (max-width: 768px) {
.faq-header h2 {
font-size: 8.5rem;  
}
.faq-header span {
font-size: 14px;
}
.faq-header p {
font-size: 24px;
}
}
@media only screen and (max-width: 768px) {
.faq-header {
margin-bottom: 60px;
}
}
@media only screen and (max-width: 768px) {
.faq-header h2 {
font-size: 7.5rem;
}
}