/*-------------------------------- RESET CSS ---------------------------------------*/
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,i,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{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}
/*============================ END RESET CSS =======================================*/


/* Merriweather */
@font-face {
    font-family: "Merriweather";
	font-weight: 300;
	font-style: normal;
    src: url(font/Merriweather/Merriweather-Light.ttf);
	font-display: swap;
}
@font-face {
    font-family: "Merriweather";
	font-weight: 400;
	font-style: normal;
    src: url(font/Merriweather/Merriweather-Regular.ttf);
	font-display: swap;
}
@font-face {
    font-family: "Merriweather";
	font-weight: 700;
	font-style: normal;
    src: url(font/Merriweather/Merriweather-Bold.ttf);
	font-display: swap;
}

/* Rubik */
@font-face {
    font-family: "Rubik";
	font-weight: 400;
	font-style: normal;
    src: url(font/Rubik/Rubik-Regular.ttf);
	font-display: swap;
}
@font-face {
    font-family: "Rubik";
	font-weight: 500;
	font-style: normal;
    src: url(font/Rubik/Rubik-Medium.ttf);
	font-display: swap;
}
@font-face {
    font-family: "Rubik";
	font-weight: 700;
	font-style: normal;
    src: url(font/Rubik/Rubik-Bold.ttf);
	font-display: swap;
}

html,
body{
	margin: 0;
	padding: 0;
	font-size: 17px;
	line-height: 23px;
	height: 100%;
	color: var(--gray);
	font-family: 'Helvetica', sans-serif;
	font-family: 'Rubik', sans-serif;
	font-weight: 400;	
	-webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;

	scroll-behavior: smooth;

	touch-action: manipulation;
}

.bkg_gradient {
	background-image: var(--gradient);
}
.bkg_gradient_light {
	background-image: var(--gradient_light);
}
.bkg_gradient_tmates {
	background-image: var(--gradient_tmates);
}
.bkg_blue {
	background: var(--blue);
}
.bkg_purple {
	background: var(--purple);
}

a {
    text-decoration: none;
}
a:not(.button),
a:not(.button):focus,
a:not(.button):active,
a:not(.button):visited {
    color: inherit;
}
a:not(.button):hover {
	color: var(--blue);
}

.rubik {
	font-family: 'Rubik', sans-serif;
}
.merriweather {
	font-family: "Merriweather", serif;
}


.blue {
	color: var(--blue);
}
.dark {
	color: var(--dark);
}
.gray {
	color: var(--gray);
}
.lightgray {
	color: var(--lightgray);;
}
.white {
	color: #fff;
}

.regular {
	font-weight: 400;
}
.medium {
	font-weight: 500;
}
.bold {
	font-weight: 700;
}
.underline {
	text-decoration: underline;
}
.italic {
	font-style: italic;
}
.left {
	text-align: left;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}
.justify {
	text-align: justify;
}
hr {
	border: 0;
	border-top: 1px solid rgb(var(--blue_rgb) / 20%);
}
li {  
    padding: 0 0 0 0px;
    margin-left: 35px;
    margin-bottom: 5px;
    list-style-type: disc;
}

strong {
	font-weight: bold;
}
.spacer_10 {
	display: table;
	width: 100%;
	height: 10px;
}
.spacer_15 {
	display: table;
	width: 100%;
	height: 15px;
}
.spacer_25 {
	display: table;
	width: 100%;
	height: 25px;
}
.spacer_50 {
	display: table;
	width: 100%;
	height: 50px;
}
.spacer_100 {
	display: table;
	width: 100%;
	height: 100px;
}
input,
select {
    font-family: 'Rubik', sans-serif;
	display: table;
	width: 100%;
    width: calc(100% - 2px);
    border: 1px solid;
    border-color: rgb(var(--dark_rgb) / 20%);
    /* background: #fff; */
    background-color: rgb(var(--blue_rgb) / 3%);
    font-size: 15px;
    font-weight: 500;
    padding: 13px 0;
    border-radius: 8px;
    margin: 5px 0;
    text-align: left;
    text-indent: 50px;
    transition: all .2s;

    font-feature-settings: inherit;
    font-variation-settings: inherit;
    color: inherit;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.input_big {
	font-size: 25px;
    font-weight: 700;
	padding: 10px 0;
	margin: 13px 0;
	text-indent: 20px;
}
textarea {
    font-family: 'Rubik', sans-serif;
    display: block;
    width: calc(100% - 2px);
    background: #fff;
    border: 1px solid;
    border-color: rgb(var(--blue_rgb) / 30%);
    border-radius: 8px;
    margin: 13px 0;
    text-align: left;
    resize: vertical;
    overflow-y: auto;
    text-indent: 0px;
    padding: 10px;
	font-size: 15px;
    line-height: 21px;
    text-overflow: ellipsis;
    box-sizing: border-box;
}
select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    /* background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAh0lEQVQ4T93TMQrCUAzG8V9x8QziiYSuXdzFC7h4AcELOPQAdXYovZCHEATlgQV5GFTe1ozJlz/kS1IpjKqw3wQBVyy++JI0y1GTe7DCBbMAckeNIQKk/BanALBB+16LtnDELoMcsM/BESDlz2heDR3WePwKSLo5eoxz3z6NNcFD+vu3ij14Aqz/DxGbKB7CAAAAAElFTkSuQmCC); */
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='25' fill='none'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%2300203E' d='M19.68 9.486 12 17.433 4.32 9.486a1.134 1.134 0 1 1 1.633-1.573L12 14.173l6.053-6.26a1.134 1.134 0 0 1 1.634 1.573z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 24.5h24V.5H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center right 7px;
	text-align-last: left;
    background-size: 17px;
}
select option {
    font-weight: 500;
}
select option:disabled {
    font-weight: 300;
    color: initial;
}
input:active,
input:focus,
select:active,
select:focus,
textarea:focus,
textarea:active {
	border-color: rgb(var(--blue_rgb) / 100%);
    outline: 0;
    box-shadow: 0 0 0 1px rgb(var(--blue_rgb) / 100%);
}
.field_valid,
.field_valid:active,
.field_valid:focus {
	border-color: var(--green);
    outline: 0;
    box-shadow: 0 0 0 1px var(--green);
}
.field_error,
.field_error:valid,
.field_error:focus {
	border-color: var(--red);
    outline: 0;
    box-shadow: 0 0 0 1px var(--red);
}
input[type=radio]:active,
input[type=radio]:focus {
    box-shadow: none;
    border-color: initial;
}

input[type=checkbox],
input[type=radio] {
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin: 5px 5px;
    transform: scale(1.5);
	border-radius: initial;
}

input[type=checkbox]+label,
input[type=radio]+label {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    max-width: calc(100% - 50px);
}
.radio_checkbox_100 {
    display: inline-block;
    vertical-align: middle;
    width: 100px;
    margin-right: 10px;
}
.radio_checkbox_150 {
    display: inline-block;
    vertical-align: middle;
    width: 150px;
    margin-right: 10px;
}
.radio_checkbox_200 {
    display: inline-block;
    vertical-align: middle;
    width: 200px;
    margin-right: 10px;
}

input[type=checkbox]+label:hover,
input[type=radio]+label:hover {
    cursor: pointer;
}

input[type=checkbox]:hover,
input[type=radio]:hover {
    cursor: pointer !important;
}

.input_label {
	font-weight: 500;
}

.input_relative {
	display: table;
	width: 100%;
	position: relative;
}
.input_relative span {
	position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0%, -50%);
}

.input_line_big {
	display: table;
	width: 100%;
	position: relative;
	border-bottom: 3px solid;
	border-color: rgb(var(--blue_rgb) / 30%);
	text-align: center;
}
.input_line_big_valid,
.input_line_big_valid:active,
.input_line_big_valid:focus {
	border-color: rgb(var(--blue_rgb) / 100%);
}
.input_line_big input {
	display: table;
    width: 200px;
    font-size: 100px;
	padding: 0 10px;
    margin: auto;
    font-weight: 500;
	text-indent: 0;
	text-align: center;
    border: 0;
	background: transparent;
    box-shadow: none; 
}
.input_line_big span {
	position: absolute;
    bottom: 10px;
    right: 10px;
}

input[type=radio] {
	display: inline-block;
	vertical-align: middle;
	width: 19px;
	height: 19px;
	border-radius: 100%;
}
input[type=radio]:active,
input[type=radio]:focus {
	box-shadow: none;
	border-color: initial;
}
input[type=radio]:hover {
	cursor: pointer;
}
::placeholder {
	font-weight: 400;
	color: rgb(var(--darkblue_rgb) / 30%);
}
::-ms-input-placeholder {
	font-weight: 400;
	color: rgb(var(--darkblue_rgb) / 30%);
}
.section {
	display: table;
	width: 100%;
    padding: 77px 0;
}
.section_inner {
	display: table;
	width: 90%;
    max-width: 1100px;
	margin: auto;
}
.section_title {
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    margin: 0 auto 33px auto;
}
.row {
    display: grid;
    /* padding: 10px; */
    /* column-gap: 10px; */
    /* row-gap: 10px; */
}
.row_top {
    align-items: top;
}
.row_center {
    align-items: center;
}
.row_bottom {
    align-items: bottom;
}
.row_1 {
    grid-template-columns: 1fr;
}
.row_2 {
    grid-template-columns: 1fr 1fr;
}
.row_3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.row_4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.row_5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}


.row_2 .row_item:nth-child(2n+1):not(.form) {
    padding-right: 10px;
}
.row_2 .row_item:nth-child(2n+2):not(.form_right) {
    padding-left: 10px;
}

.row_3 .row_item:nth-child(3n+1) {
    padding-right: 10px;
}
.row_3 .row_item:nth-child(3n+2) {
    padding: 0 10px;
}
.row_3 .row_item:nth-child(3n+3) {
    padding-left: 10px;
}

.row_4 .row_item:nth-child(4n+1) {
    padding-right: 10px;
}
.row_4 .row_item:nth-child(4n+2) {
    padding-left: 10px;
	padding-right: 10px;
}
.row_4 .row_item:nth-child(4n+3) {
    padding-left: 10px;
	padding-right: 10px;
}
.row_4 .row_item:nth-child(4n+4) {
    padding-left: 10px;
}

.row_1 .row_item {
	padding: 0 !important;
}

.inline_middle {
	display: inline-block;
	vertical-align: middle;
}
.inline_top {
	display: inline-block;
	vertical-align: top;
}
.inline_bottom {
	display: inline-block;
	vertical-align: bottom;
}

.button {
    display: table;
    width: 100%;
    font-weight: 500;
    text-align: center;
    text-transform: none;
    padding: 25px 30px;
    margin: auto;
	/* letter-spacing: 2px; */
	font-weight: 500;
    background: var(--blue);
    color: #fff;
    border-radius: 33px;
    border: 0;
    position: relative;
    text-decoration: none;
    box-sizing: border-box;

	user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    text-decoration: none;

    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.button:hover,
.button_clicked {
	cursor: pointer;
	transform: translateY(-4px);
    box-shadow: 0 14px 48px rgb(var(--blue_rgb) / 0.5);
}
.button_clicked .button_spinner {
    display: block;
}

.button i {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0, -50%);
	margin: auto;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.button:hover i,
.button_clicked i {
	transform: translate(5px, -50%);
}

.button_next {
    float: right;
    max-width: 100%;
    padding: 13px 0;
}
.button_next i {
    right: 13px;
}
.button_next .button_spinner {
    top: 8px;
    right: 2px;
}
.button_next:hover i,
.button_next.button_clicked i {
    transform: translate(3px, -50%);
}
.button_back {
    float: left;
    max-width: 120px;
    padding: 13px 0;
    background: var(--gray);
}
.button_back i {
    left: 13px;
    right: initial;
}
.button.button_back:hover,
.button.button_back.button_clicked {
    box-shadow: 0 14px 48px rgb(var(--gray_rgb) / 0.5);
}
.button.button_back:hover i,
.button.button_back.button_clicked i {
	transform: translate(-3px, -50%);
}


.button_spinner {
    display: none;
    position: absolute;
	top: 20px;
    right: 7px;

    width: 25px;
    height: 25px;
    -webkit-animation: button_spinner infinite .75s linear;
    -moz-animation: button_spinner infinite .75s linear;
    -o-animation: button_spinner infinite .75s linear;
    animation: button_spinner infinite .75s linear;
    border: 4px solid rgba(255, 255, 255, .7);
    border-top-color: rgba(255, 255, 255, .2);
    border-right-color: rgba(255, 255, 255, .2);
    border-bottom-color: rgba(255, 255, 255, .2);
    border-radius: 100%;
}

@keyframes button_spinner {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.light_bkg {
    /* background: var(--lightgray); */
    background: var(--lightgray);
}










/* ----------------- LOADER LOGO SPIN ------------------ */
.loader {
    position: fixed;
    z-index: 100000;
    height: 100%;
    width: 100%;
    text-align: center;
    top: 0;
    left: 0;
    background: var(--blue);
}

.loader_inner {
    position: relative;
    margin: 0px auto;
    display: block;
    top: 40%;
}

.loader_logo {
	display: table;
	margin: auto;
	width: 80vw;
	max-width: 500px;
    height: auto;
	position: fixed;
    left: 50%;
    right: 50%;
    transform: translate(-50%, 0%);
    bottom: 0;
    margin: auto;
    margin-bottom: 50px;
    opacity: 0.3;
}
.loader_logo img {
    display: table;
    width: 100%;
    margin: auto;
}

.loader_spinner {
    width: 170px;
    height: 170px;
    position: absolute;
    border-radius: 50%;
    border: 3px solid;
    border-color: #fff transparent #fff transparent;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    animation: dual-ring-spinner 1.5s linear infinite;
}

@keyframes dual-ring-spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*================== END LOADER LOGO SPIN ================*/

/* ----------------- LOADER PURE CSS ------------------ */
.loaderCSS {
    margin: 0px auto;
    font-size: 5px;
    position: relative;
    text-indent: -9999em;
    border-top: 0.7em solid rgba(255, 255, 255, 0.1);
    border-right: 0.7em solid rgba(255, 255, 255, 0.1);
    border-bottom: 0.7em solid rgba(255, 255, 255, 0.1);
    border-left: 0.7em solid #F8F8FF;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 0.33s infinite linear;
    animation: load8 0.33s infinite linear;
}

.loaderCSS,
.loaderCSS:after {
    border-radius: 50%;
    width: 5em;
    height: 5em;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*=============== END LOADER PURE CSS ==================*/



/*------------------------ HOMEPAGE ---------------------*/
.topnav {    
    border-bottom: 1px solid rgb(var(--dark_rgb) / 5%);
	padding: 15px 0;
    position: relative;
    z-index: 100;
    box-sizing: border-box;
}
.topnav_inner {
	display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    max-width: 1100px;
    margin: auto;
}
.topnav .logo {
	display: table;	
	margin: 0;
	float: left;
}
.topnav .logo img {
    display: table;
	width: auto;
	height: 45px;
}
.topnav .menu {
	display: table;
	float: right;
}
.topnav .menu_item {
	display: inline-block;
	vertical-align: middle;
	margin: 0 13px;
}
.topnav .menu_item:not(.button):hover {
	cursor: pointer;
	color: var(--blue);
}
.menu .menu_item:last-child {
    margin-right: 0;
}
.topnav .button {
    font-size: 15px;
	padding: 8px 13px;
    letter-spacing: 0;
}
.topnav .button i {
	position: relative;
    top: initial;
    right: initial;
    transform: translate(0, 0);
    font-size: 13px;
	margin-left: 5px;
}
.topnav .button:hover i
.topnav .button_clicked i {
    transform: translate(3px, 0);
}
.topnav .button_spinner {
    width: 15px;
    height: 15px;
    top: 9.5px;
    right: 9.5px;
    border-width: 2px;
}
.landing_sticky {
    position: sticky;
    top: 33px;
    left: 0;
}
.menu_full .menu_item {
    font-size: 15px;
}
.menu_full .menu_button_right_icon i {
    margin-left: 5px;
    margin-right: 0;    
}
.menu_full .menu_item:last-child {
    /* margin: 0; */
}
.menu_open {
    display: table;
    width: 100%;
    position: absolute;
    z-index: 1;
    top: 57px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgb(var(--dark_rgb) / 5%);
    padding: 0 20px 40px 20px;
    box-sizing: border-box;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
}
.menu_mobile_icon {
    display: none;
	float: right;
	font-size: 23px;
	/* background: var(--blue); */
	color: var(--lightgray);;
	padding: 7px 12px;
	border-radius: 4px;
}
.menu_mobile_icon i {
    color: var(--dark);
}

.hero {
    padding: 10vh 0;

    position: relative;
    z-index: 0;

    background-color: #ffffff;        
}
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1500'%3E%3Cdefs%3E%3Crect stroke='%23ffffff' stroke-width='.5' width='1' height='1' id='s'/%3E%3Cpattern id='a' width='3' height='3' patternUnits='userSpaceOnUse' patternTransform='scale(20) translate(-950 -712.5)'%3E%3Cuse fill='%23fcfcfc' href='%23s' y='2'/%3E%3Cuse fill='%23fcfcfc' href='%23s' x='1' y='2'/%3E%3Cuse fill='%23fafafa' href='%23s' x='2' y='2'/%3E%3Cuse fill='%23fafafa' href='%23s'/%3E%3Cuse fill='%23f7f7f7' href='%23s' x='2'/%3E%3Cuse fill='%23f7f7f7' href='%23s' x='1' y='1'/%3E%3C/pattern%3E%3Cpattern id='b' width='7' height='11' patternUnits='userSpaceOnUse' patternTransform='scale(20) translate(-950 -712.5)'%3E%3Cg fill='%23f5f5f5'%3E%3Cuse href='%23s'/%3E%3Cuse href='%23s' y='5' /%3E%3Cuse href='%23s' x='1' y='10'/%3E%3Cuse href='%23s' x='2' y='1'/%3E%3Cuse href='%23s' x='2' y='4'/%3E%3Cuse href='%23s' x='3' y='8'/%3E%3Cuse href='%23s' x='4' y='3'/%3E%3Cuse href='%23s' x='4' y='7'/%3E%3Cuse href='%23s' x='5' y='2'/%3E%3Cuse href='%23s' x='5' y='6'/%3E%3Cuse href='%23s' x='6' y='9'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='h' width='5' height='13' patternUnits='userSpaceOnUse' patternTransform='scale(20) translate(-950 -712.5)'%3E%3Cg fill='%23f5f5f5'%3E%3Cuse href='%23s' y='5'/%3E%3Cuse href='%23s' y='8'/%3E%3Cuse href='%23s' x='1' y='1'/%3E%3Cuse href='%23s' x='1' y='9'/%3E%3Cuse href='%23s' x='1' y='12'/%3E%3Cuse href='%23s' x='2'/%3E%3Cuse href='%23s' x='2' y='4'/%3E%3Cuse href='%23s' x='3' y='2'/%3E%3Cuse href='%23s' x='3' y='6'/%3E%3Cuse href='%23s' x='3' y='11'/%3E%3Cuse href='%23s' x='4' y='3'/%3E%3Cuse href='%23s' x='4' y='7'/%3E%3Cuse href='%23s' x='4' y='10'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='c' width='17' height='13' patternUnits='userSpaceOnUse' patternTransform='scale(20) translate(-950 -712.5)'%3E%3Cg fill='%23f2f2f2'%3E%3Cuse href='%23s' y='11'/%3E%3Cuse href='%23s' x='2' y='9'/%3E%3Cuse href='%23s' x='5' y='12'/%3E%3Cuse href='%23s' x='9' y='4'/%3E%3Cuse href='%23s' x='12' y='1'/%3E%3Cuse href='%23s' x='16' y='6'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='d' width='19' height='17' patternUnits='userSpaceOnUse' patternTransform='scale(20) translate(-950 -712.5)'%3E%3Cg fill='%23ffffff'%3E%3Cuse href='%23s' y='9'/%3E%3Cuse href='%23s' x='16' y='5'/%3E%3Cuse href='%23s' x='14' y='2'/%3E%3Cuse href='%23s' x='11' y='11'/%3E%3Cuse href='%23s' x='6' y='14'/%3E%3C/g%3E%3Cg fill='%23efefef'%3E%3Cuse href='%23s' x='3' y='13'/%3E%3Cuse href='%23s' x='9' y='7'/%3E%3Cuse href='%23s' x='13' y='10'/%3E%3Cuse href='%23s' x='15' y='4'/%3E%3Cuse href='%23s' x='18' y='1'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='e' width='47' height='53' patternUnits='userSpaceOnUse' patternTransform='scale(20) translate(-950 -712.5)'%3E%3Cg fill='%23D1E7FF'%3E%3Cuse href='%23s' x='2' y='5'/%3E%3Cuse href='%23s' x='16' y='38'/%3E%3Cuse href='%23s' x='46' y='42'/%3E%3Cuse href='%23s' x='29' y='20'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='f' width='59' height='71' patternUnits='userSpaceOnUse' patternTransform='scale(20) translate(-950 -712.5)'%3E%3Cg fill='%23D1E7FF'%3E%3Cuse href='%23s' x='33' y='13'/%3E%3Cuse href='%23s' x='27' y='54'/%3E%3Cuse href='%23s' x='55' y='55'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='g' width='139' height='97' patternUnits='userSpaceOnUse' patternTransform='scale(20) translate(-950 -712.5)'%3E%3Cg fill='%23D1E7FF'%3E%3Cuse href='%23s' x='11' y='8'/%3E%3Cuse href='%23s' x='51' y='13'/%3E%3Cuse href='%23s' x='17' y='73'/%3E%3Cuse href='%23s' x='99' y='57'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23b)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23h)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23c)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23d)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23e)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23f)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23g)' width='100%25' height='100%25'/%3E%3C/svg%3E");
    /* background-attachment: fixed; */
    background-size: cover;
    opacity: 0.5; 
    z-index: -1;
}
.hero_title {
	font-size: 40px;
    line-height: 50px;
}
.hero_subtitle {
	font-size: 21px;
    line-height: 25px;
    margin-top: 33px;
}
.hero_compare {
	display: table;
	margin: auto;
	width: 300px;	
	box-sizing: border-box;
}
.hero_compare_item {
    font-size: 20px;
	padding: 20px;
	box-sizing: border-box;
	background: var(--lightgray);
	border-bottom: 2px solid rgb(var(--dark_rgb) / 7%);
    transition: transform 0.2s ease;
}
.hero_compare .hero_compare_item:first-child {
	border-top-left-radius: 13px;
	border-top-right-radius: 13px;
}
.hero_compare .hero_compare_item:last-child {
	border-bottom-left-radius: 13px;
	border-bottom-right-radius: 13px;
	border-bottom: 0;
}
.hero_compare_item_active {
	background: rgb(var(--blue_rgb) / 100%);
	transform: scale(1.15);
    border-radius: 13px;
    color: rgb(var(--lightgray_rgb) / 100%);;    
}
.hero_compare_logo {
	text-align: left;
}
.hero_compare_logo img {
    display: table;
    width: auto;
    height: 33px;
}
.hero_compare_item_active img {
    filter: brightness(0) invert(1);
}
.hero_compare_price {
	text-align: right;
    font-weight: 500;
    margin-top: 5px;
}

.hero .button {
    margin: 33px 0 0 0;
    max-width: 400px;
}
.hero .button .button_spinner {
	top: 21px;
}
.hero .button .button_text {
    font-size: 22px;
    line-height: 25px;
}

.section_text {
    margin: 15px auto;
    max-width: 700px;
}


#section_how_it_works .button {
    max-width: 400px;
    margin: 50px auto 0 auto;
}
.section_benefit {
    padding: 33px 0;
}
#section_about .section_benefit {
    width: 100%;
    background: radial-gradient(circle at center, white 0%, var(--lightgray) 70%);
    border-top: 1px solid rgb(var(--dark_rgb) / 3%);
    border-bottom: 1px solid rgb(var(--dark_rgb) / 3%);
    padding: 50px 0;
}
#section_about .section_text {
    text-align: left;
}
.benefit_icon {    
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100px;
    margin: auto;
    box-sizing: border-box;
    border-radius: 100%;
    font-size: 37px;
    /* background: linear-gradient(90deg, rgb(var(--blue_rgb) / 3%), rgb(var(--blue_rgb) / 7%)); */
    background: linear-gradient(90deg, rgb(var(--blue_rgb) / 5%), rgb(var(--blue_rgb) / 8%));
}
.benefit_title {
    font-size: 25px;
    line-height: 30px;
    margin: 15px auto;
}
.benefit_text {
    display: table;
    margin: auto;
    max-width: 300px;
}

.testimonials {
    padding: 33px 0;
}
.testimonial {
    max-width: 350px;
    padding: 20px !important;
    margin: 0 auto;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 var(--lightgray);
}
.testimonial i {
    color: #FFC300;
}
.testimonials_text {
    min-height: 160px;
}
.testimonial_stars_name {
    margin-top: 33px;
}

#section_faq .section_inner {
    max-width: 700px;
}
.faq_item {
    display: table;
    width: 100%;
    margin-bottom: 10px;
    padding: 20px;
    background: var(--lightgray);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}
.faq_item_open,
.faq_item:hover {
    background: rgb(var(--dark_rgb) / 8%);
    cursor: pointer
}
.faq_title {
    font-size: 17px;
    line-height: 25px;
    max-width: calc(100% - 20px);

    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    text-decoration: none;
}
.faq_chevron {
    position: absolute;
    top: 23px;
    right: 20px;
    font-size: 15px;

    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    text-decoration: none;
}
.faq_chevron i {
	transition-duration: 0.15s;
}
.faq_item_open i {
	-webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);	
}
.faq_answer {
    display: none;
    margin-top: 20px;
}
.faq_item_open .faq_answer {
    display: block;
}

#section_prefooter {
	background: var(--lightgray);
	padding: 70px 0;
}
#section_prefooter .button {
    max-width: 400px;
    margin: 50px auto 0 auto;
}
#section_prefooter .section_text {
    max-width: 900px;
    text-align: center;
    font-size: 20px;
    line-height: 25px;
}

#section_footer {
	background: var(--dark);
	padding: 70px 0;
}
#section_footer .row_4 {
    padding-bottom: 50px;
    border-bottom: 1px solid rgb(var(--lightgray_rgb) / 3%);
}
#section_footer .row_item {
	display: table;
	margin: 0 auto;
}
.logo_footer {
	display: table;
	margin: 0 0 20px 0;
	width: auto;
	height: 50px;
}
a.footer_link {
	display: table;
	margin: 0 0 10px 0;
	color: rgb(var(--lightgray_rgb) / 70%) !important;
}
a.footer_link:hover,
a.footer_link:active,
a.footer_link:focus {
	color: rgb(var(--lightgray_rgb) / 70%);
	text-decoration: underline;
	transition-duration: 0.15s;
}
.footer_contact {
    display: table;
    width: 100%;
	margin: 10px 0;
    text-decoration: none;
}
.footer_title {
    font-size: 20px;
    line-height: 25px;
	margin: 13px 0 40px 0;
    color: rgb(var(--lightgray_rgb) / 100%) !important;
}
.footer_contact_icon {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    background: rgb(var(--lightgray_rgb) / 70%);
    margin-right: 8px;
    border-radius: 100%;
    position: relative;
}
.footer_contact_icon i {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15px;
    color: var(--dark);
}
.footer_contact_text {
    display: inline-block;
    vertical-align: middle;
	max-width: calc(100% - 50px);
    color: rgb(var(--lightgray_rgb) / 70%);
    line-height: 20px;
}
.legiscript_logo {
	display: table;
	margin: 0;
}
.legiscript_logo img {
	display: table;
	width: 120px;
	height: auto;
}
.footer_logo_small {
    display: table;
    width: auto;
    height: 50px;
    margin: 0 0 20px 0;
    /* opacity: 0.5; */
}
.footer_motto {
    color: rgb(var(--lightgray_rgb) / 70%) !important;
}
.footer_copyright {
    font-size: 13px;
    line-height: 15px;
    color: rgb(var(--lightgray_rgb) / 50%) !important;
    margin-top: 20px;
}
.footer_logo {
	display: table;
	width: 80vw;
	max-width: 500px;
	height: auto;
	margin: 77px auto 33px auto;
	opacity: 0.1;
}
.section_general .section_inner {
    max-width: 900px;
}
.section_general p {
    margin-bottom: 15px;
}
/*======================= END HOMEPAGE ==================*/











/*------------------------- FORM --------------------*/
#section_form {
    background: rgb(var(--blue_rgb) / 10%);
    padding: 50px 0 77px 0;
}
.form, 
.form_right {
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
    margin: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgb(var(--dark_rgb) / 10%);
}
.form_title {
    max-width: 90%;
    font-size: 30px;
    line-height: 40px;
    margin: auto auto 15px auto;
}
.form_subtitle {
    max-width: 80%;
    margin: auto auto 33px auto;
}
.form_steps {
    display: table;
    width: 100%;
    margin: 20px auto 33px auto;
    text-align: center;
    box-sizing: border-box;
}
.form_step {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}
.form_step_active .form_step_number {
    background: var(--blue);
    color: #fff;
}
.form_step_complete .form_step_number {
    /* background: var(--blue); */
    /* color: #fff; */
}
.form_step:last-child {
    margin: 0;
}
.form_step_number_div {
    display: inline-block;
    vertical-align: middle;
}
.form_step_number {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 33px;
    width: 33px;
    margin: auto;
    box-sizing: border-box;
    border-radius: 100%;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    background: rgb(var(--dark_rgb) / 8%);
}
.form_step_line {
    display: inline-block;
    vertical-align: middle;
    margin: 0 7px;
    width: 50px;
    height: 3px;
    background: rgb(var(--dark_rgb) / 8%);
    border-radius: 33px;
}
.form_step_line_inner {
    width: 50%;
    height: 100%;
    border-radius: 33px;
}
.form_step_active .form_step_line_inner {
    background: var(--blue);
}
.form_step_complete .form_step_line_inner {
    background: var(--blue);
    width: 100%;
}
.form_step_text {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    font-size: 15px;
    color: var(--dark);
    padding-left: 3px;
}
.form .row .row_item {
    margin-bottom: 15px;
}
.form_label {
    padding-left: 5px;
    color: var(--dark);
}
.form_field {
    position: relative;
}
.form_field i {
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translate(0%, -50%);
    width: 25px;
    text-align: center;
    font-size: 15px;
    color: rgb(var(--dark_rgb) / 50%);
    border-right: 1px solid rgb(var(--dark_rgb) / 13%);
    padding-right: 5px;
}
.form_field:has(.field_valid) i{
    color: #4CAF50;
}
.form_field:has(.field_error) i {
    color: #FF004E;
}
.form_buttons {
    margin-top: 25px;
}
.form_right_title {
    margin: 20px 10px 25px 10px;
    font-size: 25px;
    line-height: 30px;
    box-sizing: border-box;
}
.form_right_item {
    display: table;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}
.form_right_icon_div {
    float: left;
}
.form_right_icon {    
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    margin: auto;
    box-sizing: border-box;
    border-radius: 100%;
    font-size: 25px;
    color: var(--blue);
    background: linear-gradient(90deg, rgb(var(--blue_rgb) / 5%), rgb(var(--blue_rgb) / 8%));
}
.form_right_text {
    float: right;
    max-width: calc(100% - 65px);
}
#section_form .testimonials {
    padding: 0;
}
#section_form .testimonial {
    max-width: 100%;
    margin: 15px;
}
#section_form .testimonial {
    box-shadow: 0 1px 2px 0 rgb(var(--dark_rgb) / 10%);
}
#section_form .testimonials_text {
    min-height: 50px;
}
.notification {
    display: table;
    width: 100%;
    font-size: 15px;
    line-height: 19px;
    padding: 10px 15px;
    margin: 10px auto;
    border-radius: 8px;
    box-sizing: border-box;
}
.notification i,
.tcpa i {
    display: inline-block;
    padding-right: 5px;
}
.notification_blue {
    color: var(--gray);
    background: rgb(var(--blue_rgb) / 10%);
    border: 1px solid rgb(var(--blue_rgb) / 20%);
}
.notification_green {
    color: var(--green);
    background: rgb(var(--green_rgb) / 10%);
    border: 1px solid rgb(var(--green_rgb) / 20%);
}
.tcpa {
    display: table;
    width: 100%;
    font-size: 13px;
    line-height: 17px;
    padding: 10px 15px;
    margin: 10px auto;
    border-radius: 8px;
    box-sizing: border-box;
    color: var(--gray);
}
#view_3 .form_buttons {
    margin-top: 0;
}


#section_listings {
    background: rgb(var(--blue_rgb) / 5%);
    padding: 33px 0 77px 0;
}
#section_listings .section_inner {
    max-width: 900px;
    width: 95%;
}
.section_listings_header {
    max-width: 700px;
    margin: 0 auto 33px auto;
}
#section_compare_header {
    background-color: rgb(var(--blue_rgb) / 10%);
    /* background-image: url("/assets/img/glp1-compare-header.jpg");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 40% auto; */
    padding: 45px 0 33px 0;
    border-bottom: 1px solid rgb(var(--blue_rgb) / 5%);
    /* border-top: 1px solid rgb(var(--blue_rgb) / 5%); */
    position: relative;
}
.compare_title {
    width: calc(100% - 400px);
    max-width: 700px;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
}
.compare_subtitle {
    width: calc(100% - 400px);
    max-width: 700px;
    margin-bottom: 20px;
}
.section_compare_header_img {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: url("/assets/img/glp1-compare-header.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.section_compare_header_img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: #eaf1fd;
    transform-origin: top right;
    transform: skewX(-10deg);
    pointer-events: none;
    z-index: 2;
    border-right: 1px solid rgb(var(--blue_rgb) / 5%);
}

.listing {
    margin: 15px 0 33px 0;
    box-sizing: border-box;
    position: relative
}
.listing_inner {
    background: #fff;    
    border-radius: 15px;
    box-sizing: border-box;
    box-shadow: 0 1px 2px 0 rgb(var(--dark_rgb) / 10%);    
    position: relative;
    overflow: hidden;
    /* border: 2px solid transparent; */
}
.listing_inner:hover {
    /* border: 2px solid rgb(var(--dark_rgb) / 10%); */
    box-shadow: 0 0 10px 0 rgb(var(--dark_rgb) / 13%);
}
.listing_top_choice .listing_inner {
    border: 2px solid rgb(var(--blue_rgb) / 100%);
}
.listing_top_choice .listing_inner:hover {
    box-shadow: 0 0 10px 0 rgb(var(--blue_rgb) / 33%);
}
.listing_top_choice .listing_number {
    background: var(--blue);
    color: #fff;
}
.listing_trending_now .listing_inner {
    border: 2px solid rgb(var(--green_rgb) / 100%);
}
.listing_trending_now .listing_inner:hover {
    box-shadow: 0 0 10px 0 rgb(var(--green_rgb) / 33%);
}
.listing_trending_now .listing_number {
    background: var(--green);
    color: #fff;
}
.listing_badge {
    display: table;
    width: auto;
    margin-left: 60px;
    padding: 7px 15px 5px 15px;
    color: #fff;
    font-size: 10px;
    line-height: 10px;
    font-weight: 500;
    border-radius: 13px 13px 0 0;
}
.listing_top_choice .listing_badge {
    background: var(--blue);
}
.listing_trending_now .listing_badge {
    background: var(--green);
}
.listing_badge i {
    padding-right: 3px;
}
.listing_legitscript {
    display: table;    
    margin: 10px auto 0 auto;
    color: var(--green);
    font-size: 11px;
    font-weight: 500;
}
.listing_legitscript i {
    padding-right: 3px;
}
.listing_number {
    display: table;
    width: 25px;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    background: rgb(var(--gray_rgb) / 20%);
    /* border-radius: 0 10px 0 0; */
    border-radius: 0 0 10px 0;
    padding: 0 5px;
}
.listing_columns {
    display: grid;
    grid-template-columns: 2fr 5fr 3fr;
    align-items: center;
    padding: 20px;
    gap: 0;
}
.listing_1 {
    grid-column: 1;
    text-align: left;
}
.listing_2 {
    grid-column: 2;
    text-align: left;
}
.listing_3 {
    grid-column: 3;
    text-align: right;
}
.button_listing {
    padding: 13px 0;
    font-size: 15px;
}
.listing_1 img {
    display: table;
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 50px;
}
.button_listing.button_clicked .button_spinner {
    top: 8px;
    right: 5px;
}
.listing_rating i {
    color: var(--yellow);
    font-size: 13px;
    margin-right: -3px;
    vertical-align: middle;
}
.listing_rating_number {
    padding-left: 5px;
    font-size: 13px;
    font-weight: 500;
    vertical-align: middle;
}
.listing_alert {
    display: table;
    width: auto;
    margin: 10px 0;
    padding: 7px 13px;
    font-size: 13px;
    line-height: 17px;
    color: var(--dark);
    /* background: rgb(var(--green_rgb) / 8%);
    border: 1.5px dashed rgb(var(--green_rgb) / 33%); */
    background: rgb(var(--yellow_rgb) / 13%);
    border: 1.5px dashed rgb(var(--yellow_rgb) / 50%);
    border-radius: 33px;
    box-sizing: border-box;
}
.listing_benefits {
    display: table;
    width: 100%;
}
.listing_benefit {
    margin: 0 0 10px 0;
    padding: 0 0 0 13px;
    font-size: 15px;
    line-height: 17px;
    border-radius: 33px;
    box-sizing: border-box;
}
.listing_benefit i {
    color: var(--green);
}
.listing_highlights {
    display: table;
    width: 100%;
    max-width: 350px;
    position: relative;
    margin: 15px 0 20px 0;
    font-size: 15px;
    line-height: 17px;
    color: rgb(var(--blue_rgb) / 90%);
    box-sizing: border-box;
}
.listing_highlight {
    display: inline-block;
    vertical-align: middle;
    width: 33%;
    box-sizing: border-box;
}
.listing_highlight i {
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    margin-right: 3px;
    width: 25px;
    text-align: center;
}
.listing_highlight_text {
    display: inline-block;
    vertical-align: middle;
    max-width: calc(100% - 40px);
    font-size: 11px;
    line-height: 12px;
    text-align: left;
}
/*======================= END FORM ==================*/












/*--------------------------- MEDIA QUERIES -----------------------*/
@media only screen and (max-width: 1200px) {	    
    #section_form .section_inner {
        width: 95%;
    }
}
@media only screen and (max-width: 1100px) {	
    .form_step_text {
        display: none;
    }
}
@media only screen and (max-width: 1100px) and (min-width: 901px) {
    #section_compare_header {
        background-size: auto 100%;
    }
}
@media only screen and (max-width: 900px) and (min-width: 601px) {	
    .form_step_text {
        display: inline-block !important;
    }
}
@media only screen and (max-width: 900px) {	
    .row_1,
    .row_2,
    .row_3,
    .row_4,
    .row_5 {
        grid-template-columns: 1fr;
    }   
    .topnav {
        padding: 10px 0;
    }
    .hero .row_item {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }     
    .menu_mobile_icon {
		display: table;
	}
    .topnav .menu:not(.menu_open) {
        display: none;
    }
    .topnav .menu {
        float: unset;
    }
    .topnav .menu_item {
        display: block;
        margin: 15px auto;
    }
    .menu_full {
        max-width: 90%;
        margin: auto;
    }
    .topnav .logo img {
        height: 35px;
    }
    .topnav .button i {
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translate(0, -50%);
    }
    .topnav .button:hover i,
    .topnav .button_clicked i {
        transform: translate(3px, -50%);
    }
    .topnav .button_spinner {
        right: 13.5px;
    }
    .hero {
        padding: 5vh 0 9vh 0;
    }
    .hero::before {
        /* content: unset; */
        background-attachment: initial;
    }
    .hero_title {
        font-size: 30px;
        line-height: 40px;
        min-height: 160px;
    }
    .hero_subtitle {
        font-size: 19px;
        line-height: 25px;
        margin-top: 25px;
    }
    .hero .button {
        max-width: 100%;
    }
    .hero_compare {
        margin-top: 50px;
    }
    .hero_compare .row_2 {
        grid-template-columns: 1fr 1fr;
    }
    #section_about {
        text-align: center;
    }
    #section_about .section_benefit {
        background: initial;
        border-top: 1px solid rgb(var(--dark_rgb) / 5%);
        border-bottom: 1px solid rgb(var(--dark_rgb) / 5%);
    }
    .section_benefit .row_item:not(.section_benefit .row_item:last-child) {
        margin-bottom: 50px;
    }
    .benefit_title {
        font-size: 23px;
        line-height: 27px;
    }
    .section_title {
        font-size: 30px;
        line-height: 40px;
    }
    .benefit_icon {
        height: 80px;
        width: 80px;
        font-size: 33px;
    }
    .testimonial {
        margin: 0px auto 20px auto;
    }
    .testimonial:last-child {
        margin-bottom: 0;
    }
    .testimonials_text {
        min-height: unset;
    }    
    #section_footer .row_4 {
        padding-bottom: 20px;
    }
    .footer_logo {
        margin: 50px auto 33px auto;
    }
    #section_footer .row_item {
        margin: 0 0 33px 0;
        padding-left: 0;
        padding-right: 0;
    }
    a.footer_link {
        margin: 0 0 10px 0;
    }
    .footer_title { 
        margin: 13px 0 20px 0;
    }

    #section_form {
        padding: 33px 0 77px 0;
    }
    .form_title {
        font-size: 25px;
        line-height: 30px;
        min-height: 60px;
        margin-bottom: 10px;
    }
    .form_subtitle {
        margin-bottom: 0;
    }
    .form {
        margin: 20px 0 10px 0;        
    }
    .form,
    .form_right {
        padding-left: 10px;
        padding-right: 10px;
    }
    .form_right {
        margin: 10px 0;
    }    

    .form_right_item {
        padding-left: 10px;
        padding-right: 10px;
    }
    .form .row_2 .row_item {
        padding: 0 !important;
    }
    .form_steps {
        margin: 5px auto 33px auto;
        text-align: center;
    }
    .form_step_text {
        display: none;
    }
    .form_step_line {
        margin: 0 10px;
    }    
    .form_right_title {
        text-align: center;
        margin: 20px auto 25px auto;
    }
    #section_form .testimonial {
        margin: 10px 0;
    }
    .form_buttons {
        margin-top: 10px;
        grid-template-columns: 1fr 1fr;
    }
    .notification {
        font-size: 13px;
        line-height: 17px;
    }

    #section_listings {
        padding: 15px 0 77px 0;
    }
    .section_listings_header {
        margin: 0 auto 25px auto;
    }
    #section_compare_header {
        background: rgb(var(--blue_rgb) / 10%);
        padding: 25px 0 25px 0;
    }
    .compare_title,
    .compare_subtitle {
        width: 100%;
    }
    .section_compare_header_img {
        display: none;
    }
    #section_compare_header .form_title {
        width: 100%;
        margin-bottom: 10px;
        min-height: auto;
    }
    #section_compare_header .form_subtitle {
        width: 100%;
        margin-bottom: 10px;   
        font-size: 15px;
        line-height: 19px;     
    }
    .listing_number {
        /* top: 0;
        border-radius: 0 0 10px 0; */
    }
    .listing_columns {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        align-items: end;
        margin: 0;
        padding: 33px 10px 15px 10px;
        gap: 0;
    }    
    .listing_1 { 
        grid-column: 1; 
        grid-row: 1;
    }
    .listing_3 { 
        grid-column: 2;
        grid-row: 1;
    }
    .listing_2 { 
        grid-column: 1 / span 2;
        grid-row: 2;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgb(var(--dark_rgb) / 7%);        
    }
    .button_listing {
        font-size: 13px;
    }
    .button_listing i {
        right: 10px;
    }
    .listing_rating i {
        font-size: 11px;
    }
    .button_listing.button_clicked .button_spinner {
        top: 12px;
        right: 0px;
        width: 18px;
        height: 18px;
        border-width: 3px;
    }
    .listing_title {
        text-align: center;
    }
    .listing_alert {
        width: 100%;
        text-align: center;
    }
    .listing_highlights {
        max-width: 100%;
        text-align: center;
    }
    .listing_badge {
        margin: auto;
    }
    .listing_legitscript {
        margin: 5px auto 0 auto;
    }

}
/*========================= END MEDIA QUERIES =======================*/












/*--- Google Translate ---*/
.skiptranslate {
    display: none !important;
}
.body_lang_es {
    position: initial !important;
    top: 0 !important;
}
.body_lang_es .landing_logos_text {
    width: 180px;
}
/*=== END Google Translate ===*/












.mt_10 {
    margin-top: 10px;
}
.mt_25 {
    margin-top: 25px;
}
.mt_50 {
    margin-top: 50px;
}
.mb_10 {
    margin-bottom: 10px;
}
.mb_25 {
    margin-bottom: 25px;
}
.mb_50 {
    margin-bottom: 50px;
}
.mx_10 {
    margin-left: 10px;
    margin-right: 10px;
}
.my_10 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.mx_25 {
    margin-left: 25px;
    margin-right: 25px;
}
.my_25 {
    margin-top: 25px;
    margin-bottom: 25px;
}
.my_50 {
    margin-top: 50px;
    margin-bottom: 50px;
}
.px_10 {
    padding-left: 10px;
    padding-right: 10px;
}
.px_20 {
    padding-left: 20px;
    padding-right: 20px;
}
.py_10 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.py_20 {
    padding-top: 20px;
    padding-bottom: 20px;
}