@font-face {
	font-family: "regular";
	src: url("../fonts/Manrope-Regular.ttf") format("truetype");
	font-display: auto;
    font-style: normal;
    font-stretch: normal;
    font-weight: normal;
}
@font-face {
	font-family: "semibold";
	src: url("../fonts/Manrope-SemiBold.ttf") format("truetype");
	font-display: auto;
    font-style: normal;
    font-stretch: normal;
    font-weight: normal;
}
@font-face {
	font-family: "bold";
	src: url("../fonts/Manrope-Bold.ttf") format("truetype");
	font-display: auto;
    font-style: normal;
    font-stretch: normal;
    font-weight: normal;
}
@font-face {
	font-family: "sofar";
	src: url("../fonts/SOFARMONOVF.ttf") format("truetype");
	font-display: auto;
    font-style: normal;
    font-stretch: normal;
    font-weight: normal;
}
:root {
    --black: #000000;
    --white: #FFFFFF;
    --white_rgb: 255, 255, 255;
    --green: #00E2A4;
    --green_rgb: 0, 226, 164;
    --green_dark: #011810;
    --cyan: #00FFFF;
    --transition: all .5s ease;
}
*,
::before,
::after {
	box-sizing: border-box;
}
*::selection {
    background: var(--white);
    background-color: rgba(var(--white_rgb), .99);
    color: var(--green);
}
BODY {
	margin: 0px;
	font-size: 24px;
	font-family: "regular";
	color: var(--white);
	background: var(--black);
	line-height: 1.3;
	padding-top: 200px;
}
BODY.pages {
	padding-top: 200px;
}
@media screen and (max-width: 990px) {
    BODY.pages {
    	padding-top: 0px;
    }
}
H1, H2, H3, H4, H5, H6 {
	margin-top: 0px;
	font-weight: normal;
}
UL {
    margin-top: 0px;
}
li::marker {
    color: var(--green);
    font-size: 32px;
}
P {
    margin-top: 0px;
}
IMG {
	width: 100%;
	height: auto;
	display: block;
}
STRONG {
	font-weight: normal;
	font-family: "bold";
}
A {
	text-decoration: none;
	transition: var(--transition);
	color: var(--white);
	cursor: pointer;
}
A:hover {
    color: var(--green);
}
HEADER {
    padding: 0px 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 200px;
    background: var(--black);
    z-index: 1;
    box-shadow: none;
	transition: var(--transition);
}
@media screen and (max-width: 990px) {
    HEADER {
        padding: 0px 15px;
    height: 90px;
    }
}
HEADER.scroll {
    /* padding: 22px 100px; */
    /* background: none; */
    height: 90px;
    box-shadow: 0px 0px 10px var(--black);
}
/* @media screen and (max-width: 990px) {
    HEADER.scroll {
        padding: 0px 15px;
    }
} */
HEADER .logo IMG {
    max-width: 400px;
    width: 100%;
	transition: var(--transition);
}
HEADER.scroll .logo IMG {
    max-width: 215px;
}
@media screen and (max-width: 1199px) {
    HEADER .logo IMG {
        max-width: 215px;
    }
}
.logo A {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    font-size: 36px;
    font-family: "bold";
}
FOOTER .logo IMG {
    max-width: 365px;
    width: 100%;
}
.header_btn_wrap {
    position: fixed;
    white-space: nowrap;
    left: calc(100% - 316px);
    top: 40px;
	transition: var(--transition);
}
.header_btn_wrap.bottom_pos {
    left: 100px;
    top: calc(100vh - 135px);
}
BODY.pages .header_btn_wrap.bottom_pos {
    left: calc(100% - 316px);
    top: 40px;
}
BODY.pages HEADER.no_scroll .header_btn_wrap.bottom_pos {
    top: 75px;
}
.menu_btn {
    cursor: pointer;
    position: relative;
    z-index: 1;
    width: 40px;
    height: 20px;
    z-index: 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    display: none;
}
@media screen and (max-width: 767px) {
    .menu_btn {
        display: flex;
    }
}
.line {
    width: 40px;
    height: 2px;
    background: var(--green);
    position: absolute;
    border-radius: 1px;
    transition: var(--transition);
}
.line_top {
    top: 0px;
}
.line_middle {
    margin: 9px 0px;
}
.line_bottom {
    bottom: 0px;
}
.menu_btn.open_menu .line {
    margin: 9px 0px;
}
.menu_btn.open_menu .line_top {
    transform: rotate(45deg);
}
.menu_btn.open_menu .line_middle {
    opacity: 0;
}
.menu_btn.open_menu .line_bottom {
  transform: rotate(-45deg);
}
.menu_wrap {
    margin-left: auto;
    /* display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px; */
    transition: var(--transition);
}
@media screen and (max-width: 990px) {
    .menu_wrap {
        margin-right: 0px;
    }
}
@media screen and (max-width: 767px) {
    .menu_wrap {
        position: fixed;
        top: -100%;
        left: 0px;
        width: 100%;
        height: 100vh;
        background: var(--black);
        z-index: -1;
    }
}
.menu_wrap.open_menu {
    top: 0px;
}
.menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
	list-style-type: none;
	padding: 0px;
    margin: 0px;
}
@media screen and (max-width: 767px) {
    .menu {
        flex-direction: column;
        justify-content: center;
        height: 100%;
        gap: 50px;
    }
    .menu LI {
    	width: 100%;
    	text-align: center;
    }
}
.menu A {
    color: var(--white);
    font-size: 17px;
    padding: 10px 20px;
}
.menu A:hover {
	color: var(--green);
}
.menu > LI.last A:hover {
	color: var(--black);
}
.dropdown {
    position: relative;
}
.submenu {
    position: absolute;
	list-style-type: none;
	padding: 15px 0px 0px 0px;
    min-width: 350px;
    width: 100%;
    display: none;
}
@media screen and (max-width: 767px) {
    .submenu {
        position: static;
        margin: 0px;
    }
}
.submenu A {
	padding: 10px 20px;
	display: inline-block;
    font-size: 16px;
    background: var(--black);
    border: 2px solid var(--green);
    border-radius: 30px;
    margin-bottom: 10px;
}
.submenu A:hover {
	color: var(--green);
}
.lang {
    list-style-type: none;
	padding: 0px;
    margin: 0px;
}
HTML[lang="el"] .lang_el {
    display: none;
}
HTML[lang="en"] .lang_en {
    display: none;
}
FOOTER {
    padding: 100px;
    background: var(--green_dark);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
@media screen and (max-width: 990px) {
    FOOTER {
        padding: 50px 15px;
    }
}
.footer_panels {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin: 100px 0px;
}
.footer_panel {
    flex: 1 0 calc(25% - 22.5px);
    max-width: calc(25% - 22.5px);
    width: 100%;
}
@media screen and (max-width: 1199px) {
    .footer_panel {
        flex: 1 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}
@media screen and (max-width: 575px) {
    .footer_panel {
        flex: 1 0 100%;
        max-width: 100%;
    }
}
.footer_panel UL {
	list-style-type: none;
	padding: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}
.footer_panel.social {
    text-align: center;
    font-size: 32px;
}
@media screen and (max-width: 1199px) {
    .footer_panel.social {
        text-align: left;
    }
}
.social_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
@media screen and (max-width: 1199px) {
    .social_items {
        justify-content: flex-start;
    }
}
.footer_panel.social LI {
    justify-content: center;
}
@media screen and (max-width: 1199px) {
    .footer_panel.social LI {
        justify-content: flex-start;
    }
}
.footer_panel_title {
    font-family: "bold";
    font-size: 36px;
    margin-bottom: 50px;
}
SECTION {
    padding: 100px;
    overflow-x: hidden;
}
@media screen and (max-width: 990px) {
    SECTION {
        padding: 50px 15px;
    }
}
SECTION.no_padding_right {
    padding: 100px 0px 100px 100px;
}
@media screen and (max-width: 990px) {
    SECTION.no_padding_right {
        padding: 50px 0px 50px 15px;
    }
    SECTION.no_padding_right .panel_left {
        padding-right: 15px;
        order: 2;
    }
}
SECTION.no_padding_right .section {
    align-items: flex-start;
}
SECTION.squares {
    padding: 200px 15px 200px 100px;
}
@media screen and (max-width: 990px) {
    SECTION.squares {
        padding: 100px 15px;
    }
}
.section {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
}
@media screen and (max-width: 767px) {
    .section {
        gap: 50px;
    }
}
.section.column {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.panel_right,
.panel_left {
    flex: 1 0 calc(50% - 50px);
    max-width: calc(50% - 50px);
    width: 100%;
    position: relative;
}
.panel_left.panel_left_40 {
    flex: 1 0 calc(40% - 50px);
    max-width: calc(40% - 50px);
}
.panel_left.panel_left_60 {
    flex: 1 0 calc(60% - 50px);
    max-width: calc(60% - 50px);
}
.panel_right.panel_right_40 {
    flex: 1 0 calc(40% - 50px);
    max-width: calc(40% - 50px);
}
.panel_right.panel_right_60 {
    flex: 1 0 calc(60% - 50px);
    max-width: calc(60% - 50px);
}
@media screen and (max-width: 990px) {
    .panel_left {
        margin-bottom: 30px;
    }
    .panel_right,
    .panel_left {
        flex: 1 0 100%;
        max-width: 100%;
    }
    .panel_left.panel_left_40 {
        flex: 1 0 100%;
        max-width: 100%;
    }
    .panel_left.panel_left_60 {
        flex: 1 0 100%;
        max-width: 100%;
    }
    .panel_right.panel_right_40 {
        flex: 1 0 100%;
        max-width: 100%;
    }
    .panel_right.panel_right_60 {
        flex: 1 0 100%;
        max-width: 100%;
    }
}
.big_text {
    font-family: "bold";
    font-size: 48px;
    margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
    .big_text {
        font-size: 36px;
        margin-bottom: 50px;
    }
}
.big_text SMALL {
    font-size: 36px;
    color: var(--green);
}
@media screen and (max-width: 767px) {
    .big_text SMALL {
        font-size: 24px;
    }
}
.big_text SPAN {
    color: var(--green);
}
.grey_text {
    color: rgba(var(--white_rgb), .75);
}
.grey_text SPAN {
    color: var(--green);
    color: rgba(var(--green_rgb), .75);
}
SECTION.faqs {
    padding: 100px 200px;
}
@media screen and (max-width: 990px) {
    SECTION.faqs {
        padding: 100px 15px;
    }
}
SECTION.faqs .big_text {
    flex: 1 0 100%;
    max-width: 100%;
    width: 100%;
    margin-bottom: 50px;
}
SECTION.faqs .section {
    gap: 50px;
}
.faq {
    flex: 1 0 100%;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}
.faq_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 0px;
    cursor: pointer;
}
.plus {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
}
.plus:before,
.plus:after {
	content: "";
	position: absolute;
	background: var(--white);
	transition: var(--transition);
}
.plus:before {
	width: 14px;
	height: 2px;
}
.plus:after {
	width: 2px;
	height: 14px;
}
.faq_title.open .plus:after {
	height: 0px;
}
.faq_text {
    padding: 15px 0px;
    display: none;
}
.bold {
    font-family: "bold";
}
.list {
    padding: 0px;
}
.list LI {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
.list IMG {
    max-width: 30px;
    line-height: 0;
}
.list IMG.safecontrol_logo {
    max-width: 100%;
}
.list.services_list LI SPAN {
    color: var(--green);
}
.no_padding_right .map_image {
    border-top: 3px solid var(--green);
    border-bottom: 3px solid var(--green);
    border-left: 3px solid var(--green);
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    padding: 30px 0px 30px 30px;
    height: 100%;
}
@media screen and (max-width: 767px) {
    .no_padding_right .map_image {
        display: none;
    }
}
.no_padding_right .map_image > DIV {
    border-top: 3px solid var(--green);
    border-bottom: 3px solid var(--green);
    border-left: 3px solid var(--green);
}
.car_image {
    position: relative;
    /* padding-top: 12vw; */
    border-radius: 30px;
    overflow: hidden;
}
.target {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18vw;
    height: 18vw;
    top: 0px;
    left: 55%;
}
.circle {
    background: rgba(var(--green_rgb), .4);
    border-radius: 50%;
    position: absolute;
}
.circle1 {
    width: 18vw;
    height: 18vw;
}
.circle2 {
    width: 11vw;
    height: 11vw;
}
.circle3 {
    width: 5vw;
    height: 5vw;
}
.items_center {
    align-items: center;
}
.panelakia {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    width: 100%;
}
.panelaki {
    flex: 1 0 calc(16.666667% - 25px);
    max-width: calc(16.666667% - 25px);
    width: 100%;
    aspect-ratio: 1;
    padding: 3px;
    /* background: linear-gradient(var(--green) 70%, var(--cyan)); */
    border-radius: 30px;
}
.panelaki:nth-child(2) .front,
.panelaki:nth-child(2) .back {
    background: linear-gradient(90deg, var(--green) 70%, var(--cyan));
}
.panelaki:nth-child(3) .front,
.panelaki:nth-child(3) .back {
    background: linear-gradient(var(--cyan), var(--green) 30%);
}
.panelaki:nth-child(4) .front,
.panelaki:nth-child(4) .back {
    background: linear-gradient(-90deg, var(--green) 70%, var(--cyan));
}
.panelaki:nth-child(5) .front,
.panelaki:nth-child(5) .back {
    background: linear-gradient(var(--green) 70%, var(--cyan));
}
.panelaki:last-child .front,
.panelaki:last-child .back {
    background: linear-gradient(90deg, var(--green) 70%, var(--cyan));
}
@media screen and (max-width: 1199px) {
    .panelaki {
        flex: 1 0 calc(33.333333% - 20px);
        max-width: calc(33.333333% - 20px);
    }
}
@media screen and (max-width: 990px) {
    .panelaki {
        flex: 1 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}
@media screen and (max-width: 575px) {
    .panelaki {
        font-size: 16px;
    }
}
.panelaki .panelaki_inner_wrap {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    position: relative;
}
.panelaki:hover .panelaki_inner_wrap {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.back,
.front {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(var(--green) 70%, var(--cyan));
    border-radius: 30px;
    overflow: hidden;
    padding: 3px;
    
}
.back > DIV,
.front > DIV {
    background: var(--black);
    border-radius: 30px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 30px;
    padding: 30px;
}
@media screen and (max-width: 767px) {
    .back > DIV,
    .front > DIV {
        gap: 10px;
    }
}
.front {
    z-index: 2;
    -webkit-transform: rotateY(1deg);
    transform: rotateY(1deg);
}
.back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.panelaki IMG {
    max-height: 100px;
    width: 100%;
    /* margin: auto auto 30px auto; */
}
.fleets {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    text-align: center;
}
.fleet {
    flex: 1 0 calc(16.666667% - 25px);
    max-width: calc(16.666667% - 25px);
    width: 100%;
    font-size: 18px;
    text-decoration: underline;
}
@media screen and (max-width: 1199px) {
    .fleet {
        flex: 1 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}
@media screen and (max-width: 575px) {
    .fleet {
        flex: 1 0 100%;
        max-width: 100%;
    }
}
.btn_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.btn {
    background: var(--green);
    border: 3px solid var(--green);
    border-radius: 50px;
    padding: 10px 20px;
    color: var(--black);
    font-size: 18px;
    font-family: "semibold";
}
.btn:hover {
    color: var(--black);
}
.btn.empty {
    background: none;
    color: var(--white);
}
.btn.black {
    background: var(--black);
    border: 3px solid var(--black);
    color: var(--white);
}
.mb_50 {
    margin-bottom: 50px;
}
.mb_15 {
    margin-bottom: 15px;
}
.squares_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    color: var(--black);
    text-align: center;
}
.square {
    background: linear-gradient(var(--green) 85%, var(--cyan));
    border-radius: 30px;
    aspect-ratio: 1;
    width: 70%;
    right: 0px;
    left: 0px;
    margin: auto;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.square .big_text {
    margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
    .square {
        width: 100%;
        padding: 15px;
    }
}
.square.rotate {
    position: absolute;
    transform: rotate(-45deg);
    filter: brightness(.8);
    z-index: -1;
}
.form_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.form_wrap > * {
    flex: 1;
}
@media screen and (max-width: 767px) {
    .form_wrap > * {
        flex: 1 0 100%;
        max-width: 100%;
    }
}
.form {
    max-width: 850px;
}
.form FIELDSET {
    border: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form_fields {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.field_wrap {
    width: 100%;
}
.field_wrap .btn {
    width: 100%;
    font-size: 24px;
}
.field {
    width: 100%;
    padding: 10px 0px;
    background: none;
    border: none;
    border-bottom: 1px solid var(--white);
    font-family: "regular";
    font-size: 16px;
    color: var(--white);
    outline: none;
}
.field_wrap.message .field {
    padding: 10px 15px;
    border: 1px solid var(--white);
    border-radius: 10px;
}
.field_wrap.message {
    margin-top: 18px;
}
.field::placeholder {
    color: var(--white);
    opacity: 1;
}
.checkbox_title {
    font-size: 18px;
    margin-bottom: 15px;
}
.checkbox_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--white);
    margin-bottom: 5px;
}
.checkbox_field {
    font-size: 16px;
    position: relative;
}
.checkbox_field input {
    position: absolute;
    opacity: 0;
    height: 15px;
    width: 15px;
    margin: 0px;
    top: 3px;
    left: 0px;
    z-index: 1;
}
.checkmark {
    height: 15px;
    width: 15px;
    margin-top: 3px;
    margin-right: 10px;
    border: 1px solid var(--white);
    display: block;
    float: left;
    pointer-events: none;
}
.checkmark:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: transparent;
    /* transform: rotate(45deg);
    top: -8px;
    left: 5px; */
}
.checkbox_field input:checked ~ .checkmark::after {
    background: var(--white);
}
.email_details {
    height: 100%;
    padding: 30px;
    border-top: 3px solid var(--green);
    border-bottom: 3px solid var(--green);
    border-left: 3px solid var(--green);
    color: var(--white);
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.email_details:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url("/assets/templates/gps/images/map.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(10px);
    z-index: -1;
    opacity: 0.6;
}
.email_details .big_text {
    margin-bottom: 0px;
}
.copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    font-size: 16px;
}
.sofar {
    font-family: "sofar";
}
.pages_section A {
    text-decoration: underline;
}
.pages_section .btn_wrap A {
    text-decoration: none;
}
.pages_section:nth-child(2n+1) {
    padding: 100px 0px 100px 100px;
}
@media screen and (max-width: 990px) {
    .pages_section:nth-child(2n+1) {
        padding: 100px 0px 50px 15px;
    }
    .pages_section:nth-child(2n+1) .big_text,
    .pages_section:nth-child(2n+1) .section_text {
        padding-right: 15px;
    }
}
.pages_section:nth-child(2n+1) .map_image {
    border-top: 3px solid var(--green);
    border-bottom: 3px solid var(--green);
    border-left: 3px solid var(--green);
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    padding: 30px 0px 30px 30px;
}
.pages_section:nth-child(2n+1) .map_image > DIV {
    border-top: 3px solid var(--green);
    border-bottom: 3px solid var(--green);
    border-left: 3px solid var(--green);
}
.pages_section:nth-child(2n+1) .mob .map_image > DIV {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    overflow: hidden;
}
.pages_section:nth-child(2n+1) .mob .map_image > DIV IMG {
    padding-right: 30px;
}
.pages_section:nth-child(2n) {
    padding: 100px 100px 100px 0px;
}
.pages_section:nth-child(2n) .panel_left {
    order: 2;
}
@media screen and (max-width: 990px) {
    .pages_section:nth-child(2n) {
        padding: 100px 15px 50px 0px;
    }
    .pages_section:nth-child(2n) .big_text,
    .pages_section:nth-child(2n) .section_text {
        padding-left: 15px;
    }
    .pages_section:nth-child(2n) .panel_left {
        order: unset;
    }
}
.pages_section:nth-child(2n) .map_image {
    border-top: 3px solid var(--green);
    border-bottom: 3px solid var(--green);
    border-right: 3px solid var(--green);
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    padding: 30px 30px 30px 0px;
}
.pages_section:nth-child(2n) .map_image > DIV {
    border-top: 3px solid var(--green);
    border-bottom: 3px solid var(--green);
    border-right: 3px solid var(--green);
}
.pages_section:nth-child(2n) .mob .map_image > DIV {
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
}
.pages_section:nth-child(2n) .mob .map_image > DIV IMG {
    padding-left: 30px;
}
.pages_section .panel_left.mob {
    flex: 1;
    max-width: 100%;
}
.pages_section .panel_right.mob {
    flex: 0 0 23%;
    max-width: 23%;
}
@media screen and (max-width: 990px) {
    .pages_section .panel_right.mob {
        flex: 1 0 100%;
        max-width: 100%;
    }
}
.pages_section .panel_right.flex_30 {
    flex: 0 0 30%;
    max-width: 30%;
}
@media screen and (max-width: 990px) {
    .pages_section .panel_right.flex_30 {
        flex: 1 0 100%;
        max-width: 100%;
    }
}
.pages_section#exatomikefsi {
    padding: 100px;
}
@media screen and (max-width: 990px) {
    .pages_section#exatomikefsi {
        padding: 100px 15px 50px 15px;
    }
    .pages_section#exatomikefsi .big_text,
    .pages_section#exatomikefsi .section_text {
        padding-left: 0px;
    }
}
.svg {
    padding: 30px;
}
