<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**************

    Template Information:
        Website: PinkPen For Design And marketing Solutions;
        Company: PinkPen;
        Front-End Developer: Nadeem Ayesh;
        Back-End Developer: Muath Qandil;
        Email: zekrayat.aboelqaraya@gmail.com;

 *************/

/* Fonts Include */

@font-face {
    src: url("../fonts/Montserrat-Regular.ttf");
    font-family: "main";
}

/* bold Fonts */

@font-face {
    src: url("../fonts/Montserrat-Bold.ttf");
    font-family: "bold";
}

/* Medium Fonts */

@font-face {
    src: url("../fonts/Montserrat-Medium.ttf");
    font-family: "medium";
}

/* Fonts Include */

/* Start General */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "main", sans-serif;
    margin: 0;
    padding: 0;
}

:root {
    --main-color: #CE9926;
    --secondary-color: #00B7FF;
    --font-family: "main", sans-serif;
    --trans: all 0.4s ease-in-out;
}

body {
    overflow-x: hidden;
    background: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "bold", "main", sans-serif;
}

a:hover, a:focus, a:active, button:hover, button:focus, button:active, div, section, span, p, div:hover, section:hover, span:hover, p:hover {
    text-decoration: none;
    outline: none;
}

select, input[type="checkbox"], input[type="radio"], select:focus, input[type="checkbox"]:focus, input[type="radio"]:focus {
    cursor: pointer;
}

.form-control:focus,
.btn:focus {
    box-shadow: none !important;
    border-color: var(--secondary-color);
}

.has-fixed-top .main-header {
    padding-top: 100px;
}

.btn-rafeeq {
    padding: 8px 30px !important;
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
    color: #FFF !important;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    background-image: linear-gradient(to right, #76490F 0%, #CE9926 40%, #76490F 100%);
    transition: all 800ms ease;
    background-size: 200% auto;
}

.btn-rafeeq:hover {
    background-position: center right;
}

.sec-padding {
    padding: 60px 0;
}

.sec-padding-top {
    padding: 0 0 60px 0;
}
/* End General */

/* covid-sec */
.covid-sec {
    background: url("../images/covid-bg.png") no-repeat center / cover;
    padding: 20px 0;
}

.covid-sec div {
    color: #FFF;
    font-size: 18px;
    font-family: "main", sans-serif;
}

.covid-sec div a {
    color: #FFF;
    font-size: 18px;
    font-family: "bold", "main", sans-serif;
    text-decoration: underline;
}
/* covid-sec */

/* loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    z-index: 999;
}

.loader img {
    animation: pulse 1s infinite;
    -webkit-animation: pulse 1s infinite;
    height: 100px;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
		-webkit-transform: scale(0.95);
		-moz-transform: scale(0.95);
		-ms-transform: scale(0.95);
		-o-transform: scale(0.95);
}

	70% {
		transform: scale(1);
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
}

	100% {
		transform: scale(0.95);
		-webkit-transform: scale(0.95);
		-moz-transform: scale(0.95);
		-ms-transform: scale(0.95);
		-o-transform: scale(0.95);
}
}
/* loader */

/* Side Menu */
.side-menu {
    position: fixed;
    left: -400px;
    top: 0;
    width: 280px;
    height: 100%;
    background: #FFF;
    z-index: 9999;
    -webkit-box-shadow: -12px 0 59px 1px #191919;
    box-shadow: -12px 0 59px 1px #191919;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.side-menu .scroll-menu {
    height: calc(100vh - 155px - 41px - 15px - 34px);
}

.side-menu-header {
    background: url("../images/safeer-bg.png") no-repeat left;
    background-size: cover;
    padding: 40px 15px;
    text-align: center;
}

.side-menu-header a img {
    mx-height: 115px;
}

.menu-title {
    display: block;
    background: #f4f4f4;
    color: var(--main-color);
    border-bottom: 1px solid #e3e3e3;
    padding: 8px 10px;
    text-align: center;
    font-size: 16px;
    font-family: 'bold-ar', 'main', sans-serif;
    margin-bottom: 15px;
}

.side-menu nav ul {
    list-style: none;
    padding: 0 15px;
}

.side-menu nav&gt;ul li a {
    display: block;
    color: var(--main-color);
    font-size: 16px;
    padding: 8px 10px;
    font-weight: bold;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
    margin-bottom: 5px;
}

.side-menu nav&gt;ul li a:hover,
.side-menu nav&gt;ul li a:focus,
.side-menu nav&gt;ul li a.active {
    background: var(--main-color);
    color: #FFF;
    border-radius: 5px;
}

.side-menu nav&gt;ul li a img {
    height: 20px;
    margin-right: 8px;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}

.side-menu nav&gt;ul li a:hover img,
.side-menu nav&gt;ul li a:focus img,
.side-menu nav&gt;ul li a.active img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.social-menu {
    display: flex;
    display: -ms-flex;
    display: -webkit-box;
    flex-wrap: nowrap;
    background: var(--main-color);
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.social-menu a {
    display: block;
    color: #FFF;
    padding: 5px 10px;
}

.side-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 3, .8);
    z-index: 9998;
    display: none;
}

/* Side Menu */

/* main header */
.main-header {
    position: relative;
}

.main-header .main-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 5%, transparent);
}

.main-header .main-slider .carousel-item:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #CE9926, transparent);
    z-index: 8;
}

.main-header .main-navbar .navbar-brand img {
    max-width: 100%;
    height: 35px;
}

.main-header .main-navbar.navbar-light .navbar-nav .nav-link {
    color: #FFF;
    font-size: 14px;
    padding: 8px 18px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: capitalize;
    font-family: 'medium', 'main', sans-serif;
}

.main-header .main-navbar.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .active &gt; .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show &gt; .nav-link {
    color: var(--main-color) !important;
}

.main-header .main-navbar.navbar-light .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    display: block;
    width: calc(100% - 40px);
    height: 0;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scale(0, 0);
    background: var(--main-color);
    transition: all 0.4s linear;
}

.main-header .main-navbar.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .active &gt; .nav-link::before,
.navbar-light .navbar-nav .nav-link.active::before,
.navbar-light .navbar-nav .nav-link.show::before,
.navbar-light .navbar-nav .show &gt; .nav-link::before {
    transform: translateX(-50%) scale(1, 1) !important;
    height: 3px !important;
    transition: all 0.3s linear !important;
    -webkit-transform: translateX(-50%) scale(1, 1) !important;
    -moz-transform: translateX(-50%) scale(1, 1) !important;
    -ms-transform: translateX(-50%) scale(1, 1) !important;
    -o-transform: translateX(-50%) scale(1, 1) !important;
    -webkit-transition: all 0.3s linear !important;
    -moz-transition: all 0.3s linear !important;
    -ms-transition: all 0.3s linear !important;
    -o-transition: all 0.3s linear !important;
}

.main-header .main-navbar.navbar-light .navbar-nav .nav-link.dropdown-toggle::after {
    content: '';
    display: block;
    border: none !important;
    width: 10px;
    height: 5px;
    background: url("../images/icons/Icon ionic-ios-arrow-down.svg") no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: all 0.4s ease;
}

.main-header.inner-header .main-navbar.navbar-light .navbar-nav .nav-link.dropdown-toggle::after {
    background: url("../images/icons/Icon ionic-ios-arrow-down-inner.svg") no-repeat;
    background-size: contain;
}

.main-header .main-navbar.navbar-light .navbar-nav .show .nav-link.dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

.main-header .main-navbar .dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(232, 232, 232, 0.5);
    border: none !important;
    top: 130%;
    padding: 10px 12px;
}

.main-header .main-navbar .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 7px solid #FFF;
}

.main-header .main-navbar .dropdown-menu .dropdown-item {
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid #E8E8E8;
    margin-bottom: 5px;
    font-family: 'medium', 'main', sans-serif;
}

.main-header .main-navbar .dropdown-menu .dropdown-item:last-child {
    border: none !important;
}

.main-header .main-navbar .dropdown-menu .dropdown-item:hover,
.main-header .main-navbar .dropdown-menu .dropdown-item:focus {
    color: var(--main-color);
    background: none !important;
    background-color: transparent !important;
}

.main-slider .carousel-item {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.main-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* main header */

/* main slider */
.slider-caption {
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 9;
}

.slider-caption h1 {
    color: #FFF;
    font-size: 35px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.slider-caption p {
    color: #FFF;
    line-height: 30px;
    font-size: 15px;
    margin-bottom: 20px;
}

.slider-caption a.btn-download {
    color: #FFF;
    font-size: 15px;
    font-family: 'bold', 'medium', sans-serif;
    padding: 10px 25px;
    background-image: linear-gradient(to right, #76490F 0%, #CE9926 40%, #76490F 100%);
    border: none !important;
    border-radius: 25px;
    margin-right: 15px;
    transition: all 800ms ease;
    background-size: 200% auto;
}

.slider-caption a.btn-download:hover {
    background-position: right center;
}

.slider-caption a.btn-play {
    padding: 10px 25px;
    font-size: 15px;
    font-family: 'bold', 'medium', sans-serif;
    background: #FFF;
    color: var(--main-color);
    border: none !important;
    border-radius: 25px;
    transition: all 800ms ease;
}

.slider-caption a.btn-play:hover {
    color: #FFF;
    background-color: var(--main-color);
}

.main-slider .carousel-indicators {
    top: calc(50vh - 60px);
    display: block;
    margin: 0;
    padding-left: 15px;
    padding-right: 15px;
    right: 0;
    left: auto;
}

.main-slider .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 1 !important;
    text-indent: unset;
    padding: 0;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 25px;
    border: none !important;
    background-color: #FFF;
    transition: all 0.3s ease;
}

.main-slider .carousel-indicators li:not(:last-child) {
    margin-right: 20px;
}

.carousel-indicators .active {
    box-shadow: 0 0 0 8px rgba(206, 153, 38, 0.75);
}

/* main slider */

/*header-search */
.header-search {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.header-search h4,
.header-search h3 {
    color: #FFF;
    font-size: 20px;
    font-family: 'medium', 'bold', sans-serif;
    margin-bottom: 20px;
}

.header-search form {
    background-color: #FFF;
    border-radius: 20px;
    padding: 15px;
}

.select2-container .select2-selection--single {
    height: 46px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    border-color: #ced4da;
    transition: all 0.4s ease;
}

.select2-container .select2-selection--single:hover,
.select2-container .select2-selection--single:focus {
    border-color: var(--main-color);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 46px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 10px;
    top: 15px;
    display: none !important;
}

.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--main-color);
}

.header-search form label {
    color: #707070;
    font-size: 15px;
    font-family: 'medium', 'bold', sans-serif;
}

.header-search form label img {
    margin: 0 5px;
}

.header-search form .btn,
.header-search form button {
    height: 46px;
    border-radius: 25px;
}

.search-btn-sm {
    display: none;
}
/*header-search */

/* sec-header */
.sec-header {
    margin-bottom: 30px;
}

.sec-header h1,
.sec-header h3,
.sec-header h4,
.sec-header h5 {
    color: vaR(--main-color);
    display: inline-block;
    position: relative;
    font-size: 40px;
    margin-bottom: 15px;
    margin-top: 36px;
}

.sec-header h1::before,
.sec-header h3::before,
.sec-header h4::before,
.sec-header h5::before {
    content: '';
    display: block;
    position: absolute;
    top: -36px;
    left: -31px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: RGBA(207, 154, 39, 0.09);
}

.sec-header p {
    color: #707070;
    font-family: 'bold', 'main', sans-serif;
    font-size: 15px;
}

.sec-header a.btn.btn-rafeeq {
    border-radius: 25px;
}
/* sec-header */

/* why-rafeeq */
.why-item {
    padding: 30px 35px;
    border: 1px solid #E2E2E2;
    border-radius: 30px;
    height: 100%;
    transition: all .4s ease;
}

.why-item:hover,
.why-item:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 31px -15px var(--main-color);
}

.why-item img {
    max-width: 100%;
    height: 60px;
    margin-bottom: 15px;
}

.why-item h4 {
    font-size: 20px;
    color: #00ACEA;
    margin-bottom: 20px;
}

.why-item p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 25px;
}

.why-items [class*=col]:nth-child(2) .why-item h4 {
    color: #E95454;
}

.why-items [class*=col]:nth-child(3) .why-item h4 {
    color: #00AA63;
}
/* why-rafeeq */

/* how-it-works */
.how-it-works {
    background-image: url("../images/icons/elipses.svg");
    background-repeat: no-repeat;
    background-size: 400px;
    background-position: 135% bottom;
}

.svg-circle {
    text-align: center;
}

.svg-circle svg {
    margin: 0 auto;
}

.step-points {
    width: 326px;
    height: 190px;
    display: flex;
    display: -ms-flexbox;
    position: absolute;
    top: -15px;
    left: 50%;
    justify-content: space-between;
    z-index: 99;
    transform: translateX(-50%);
}

.step-points span {
    width: 50px;
    height: 50px;
    color: #FFF;
    background: #707070;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
    border-radius: 50%;
    transition: all 0.34s ease;
}

.step-points img {
    height: 20px;
}

.step-points span.active {
    background: var(--main-color);
}

/*.path {*/
/*    stroke-dasharray: 500;*/
/*    stroke-dashoffset: 0;*/
/*    animation: dash 10s;*/
/*    animation-fill-mode: both ;*/
/*}*/

/*@keyframes dash {*/
/*    from {*/
/*        stroke-dashoffset: 500;*/
/*    }*/
/*    to {*/
/*        stroke-dashoffset: 0;*/
/*    }*/
/*}*/
.progress-it {
    /* --percent: 50; */
    stroke-dashoffset: 150;
    transition: all 1s linear;
    /*animation: dash 10s;*/
    /*animation-fill-mode: both ;*/

}

.progress-it.anim-4 {
    stroke-dashoffset: 75;
}

.progress-driver {
    stroke-dashoffset: 150;
}

.progress-it.anim-2 {
    stroke-dashoffset: 50;
}

.progress-it.anim-1 {
    stroke-dashoffset: 90;
}

.progress-it.anim {
    stroke-dashoffset: calc(142 - (var(--percent) * 142 / 100));
}

/*@keyframes dash {
    from {
        stroke-dashoffset: 150
    }
    to {
        stroke-dashoffset: calc(142 - (var(--percent) * 142 / 100));
    }
}*/

.air-bow {
    position: absolute;
    width: 50%;
    height: 50%;
    border-top: 5px solid var(--main-color);
    border-radius: 50%;
}

.step-points span:first-child,
.step-points span:last-child {
    margin-top: 135px;
}

.driver-steps span:nth-child(2),
.driver-steps span:nth-child(3){
    margin-top: 20px;
}

.driver-steps span:nth-child(3) {
    margin-right: -45px;
}

.driver-steps span:nth-child(2) {
    margin-left: -45px;
}

/* how-it-works */

/* how-it-works-tabs */
.how-it-works-tabs.nav-pills .nav-link {
    font-size: 15px;
    text-transform: uppercase;
    font-family: 'bold', 'medium', sans-serif;
    border-radius: 25px;
    box-shadow: 0 0 20px RGBA(232, 232, 232, .50);
    margin: 0 10px;
    transition: all 0.34s ease-in-out;
    color: #707070;
    background-color: #FFF;
}

.how-it-works-tabs.nav-pills .nav-link.active,
.how-it-works-tabs.nav-pills .active .nav-link {
    background-color: #CE9926 !important;
    background-image: linear-gradient(to right, #76490F, #CE9926) !important;
    color: #FFF !important;
}

/* how-it-works-tabs */

/* step-item */
.step-item {
    margin-bottom: 20px;
    cursor: pointer;
}

.step-item figure {
    width: 70px;
    height: 70px;
    background-color: #707070;
    vertical-align: middle;
    color: #FFFF;
    border-radius: 50%;
    text-align: center;
    line-height: 70px;
    margin-bottom: 0;
    margin-right: 30px;
    transition: all 0.4s ease;
}

.step-item figure img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.step-item h3,
.step-item h4 {
    color: #707070;
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 15px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.step-item p {
    color: #707070;
    font-size: 15px;
    line-height: 25px;
    transition: all 0.4s ease;
}

.selected-step figure {
    background-color: var(--main-color);
}

.selected-step h3,
.selected-step h4 {
    color: var(--main-color);
}

/* step-item */

/* step-img */
.step-img {
    width: 100%;
    height: 435px;
}

.step-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* step-img */

/* download-now */
.download-now {
    padding: 50px 0;
    background-color: var(--main-color);
    background-image: linear-gradient(to top, #76490F, #CE9926) !important;
    position: relative;
}

.download-now::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../images/map-grey.png") no-repeat center;
    background-size: cover;
    opacity: 0.20;
}

.download-now h3 {
    color: #FFF;
    font-family: 'main', 'medium', sans-serif;
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 20px;
}

.download-now h3 b {
    font-size: 30px;
    font-family: 'bold', 'main', 'medium', sans-serif;
}

.download-now p {
    color: #FFF;
    font-size: 15px;
    line-height: 25px;
}

.download-now a {
    min-width: 260px;
    padding: 8px 35px;
    color: var(--main-color);
    font-size: 15px;
    border-radius: 25px;
    font-family: 'medium', 'main', sans-serif;
}

.download-now a:hover,
.download-now a:focus {
    background: none;
    color: #FFF;
}

.download-now a img {
    height: 15px;
    margin-right: 5px;
}

.download-now a:hover img {
    filter: brightness(0) invert(1)
}
/* download-now */

/* gallery */
.gallery {
    background: url("../images/icons/big-elipses.png") no-repeat 115% bottom;
    background-size: 500px 700px;
}


.grid-item {
    width: 32.333333%;
    overflow: hidden
}

.grid:after {
    content: '';
    display: block;
    clear: both;
}

.grid-item {
    height: 200px;
    float: left;
    background: var(--main-color);
    /*border: 1px solid #333;*/
    /*border-color: hsla(0, 0%, 0%, 0.5);*/
    border-radius: 23px;
    margin-bottom: 15px;
}

.grid-item--height2 { height: 385px; }

.grid-item figure {
    height: 200px;
    margin-bottom: 0;
    position: relative;
}

.grid-item--height2 figure {
    height: 385px;
    margin-bottom: 0;
    position: relative;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-item figure .gallery-item-caption {
    background: rgba(206, 153, 38, 0.75);
    color: #FFF;
    text-align: center;
    position: absolute;
    top: 78%;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 2;
    display: table;
    padding: 10px 20px;
    transition: all 0.4s ease-in-out;
}

.grid-item--height2 figure .gallery-item-caption {
    top: 89%;
}

.grid-item figure figcaption.gallery-item-caption p {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 0;
    display: table-cell;
    vertical-align: top;
    transition: all 0.4s ease-in-out;
}

.grid-item:hover figure .gallery-item-caption {
    top: 0;
}

.grid-item:hover figure .gallery-item-caption p {
    vertical-align: middle;
}

.view-more {
    margin-top: 30px;
}

.view-more a.btn-light {
    padding: 8px 30px;
    font-size: 15px;
    font-family: 'medium', 'main', sans-serif;
    border-radius: 25px;
    box-shadow: 0 0 20px RGBA(232, 232, 232, .50);
    background: #FFF;
    color: var(--main-color);
}

.view-more a.btn-rafeeq {
    border-radius: 25px;
}

/* gallery */

/* faq section */
.faq {
    background: #FCFCFC;
    position: relative;
}

.faq::after {
    content: '';
    display: block;
    position: absolute;
    width: 183px;
    height: 200px;
    background: url("../images/faq.png") no-repeat;
    background-size: contain;
    bottom: -90px;
    right: 0;
}

.faq-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.faq-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* .faq .sec-header p {
    font-weight: bold;
    color: #707070;
} */

.question-item {
    padding: 20px;
    background: #FFF;
    border-radius: 23px;
    border: 1px solid #E8E8E8;
    position: relative;
    margin-bottom: 25px;
    /* height: 100%; */
}

.question-item .q-num {
    position: absolute;
    top: 0;
    left: 20px;
    color: #FAFAFA;
    font-size: 60px;
    font-family: 'bold', 'main', sans-serif;
}

.question-item h2,
.question-item h3 {
    color: #CE9926;
    font-size: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    min-height: 36px
}

.faq-desc {
    height: 276px;
    overflow: hidden;
    position: relative;
    padding-bottom: 25px;
}

.red-more {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    background-color: #FFF;
}

.faq-desc b {
    color: var(--main-color);
}

.question-item a {
    color: #707070;
    font-size: 15px;
    font-weight: bold;
}

.question-item p,
.question-item li {
    color: #707070;
    font-size: 15px;
    line-height: 25px;
}

.question-item ul {
    padding-left: 10px;
    list-style: none;
}

.question-item li {
    margin-bottom: 5px;
}
/* faq section */

/* rafeeq-form */
.contact-us {
    position: relative;
    overflow: hidden;
    background: url("../images/icons/big-elipses.png") no-repeat 110% bottom;
    background-size: 300px 300px;
}

.contact-us::before {
    content: '';
    display: block;
    position: absolute;
    width: 183px;
    height: 200px;
    background: url("../images/faq.png") no-repeat;
    background-size: contain;
    bottom: 50px;
    left: -50px;
}

/* .contact-us .sec-header p {
    font-family: 'medium', 'main', sans-serif;
} */

.rafeeq-form label {
    font-size: 15px;
    color: var(--main-color);
    margin-bottom: 5px;
    line-height: 25px;
    font-family: 'medium', 'main', sans-serif;
}

.rafeeq-form .form-control {
    border-color: transparent !important;
    box-shadow: 0 0 15px #E8E8E8;
    border-radius: 25px;

}

.rafeeq-form .form-control:not(textarea) {
    height: 46px;
}

.rafeeq-form .form-control:focus {
    border-color: #E8E8E8 !important;
}

.rafeeq-form .btn {
    border-radius: 25px;
}

.rafeeq-form label.error {
    color: var(--danger);
    margin-top: 10px;
    margin-left: 15px;
    display: block;
}

.form-control.error {
    color: var(--danger);
}
/* rafeeq-form */

/* footer */
.main-footer {
    position: relative;
}

.main-footer::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(232, 232, 232, 0.20);
    -webkit-clip-path: ellipse(100% 100% at 50% 0);
    clip-path: ellipse(100% 100% at 50% 0);
    top: 0;
    left: 0;
    position: absolute;
    transform: rotate(180deg);
}

.footer-top {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.promo-p{
    text-align: center;
}

.promo-p p,
.promo-p a {
    font-size: 15px;
    color: #707070;
    margin-bottom: 0;
}

.footer-nav {
    display: flex;
}

.footer-nav a {
    color: #707070;
    font-size: 15px;
}

.social-nav ul {
    list-style: none;
    display: flex;
    display: -ms-flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
}

.social-nav ul li a {
    display: block;
    color: var(--main-color);
    padding: 5px;
    margin-left: 15px;
}

.copyrights {
    padding: 15px 0;
    background-image: linear-gradient(to right, #76490F, #CE9926) !important;
    text-align: center;
}

.copyrights p {
    color: #FFF;
    margin-bottom: 0;
}
/* footer */

/* inner header */
.inner-header .main-navbar {
    position: static;
    background: #FFF;
}

.inner-header .main-navbar.navbar-light .navbar-nav .nav-link {
    color: #707070;
}
/* inner header */

/* main-content */
.main-content {
    min-height: 90vh;
    position: relative;
    background: url("../images/icons/big-elipses.png") no-repeat 110% center;
    background-size: 400px 500px;
    overflow: hidden;
}

.main-content::before {
    content: '';
    display: block;
    position: absolute;
    top: -150px;
    left: -200px;
    background: url("../images/icons/big-elipses.png") no-repeat 110% bottom;
    background-size: 400px 500px;
    width: 400px;
    height: 500px;
}

.breadcrumb .breadcrumb-item a {
    color: #707070;
    font-size: 15px;
}

.breadcrumb-item.active {
    color: var(--main-color);
    font-size: 15px;
}

.page-title {
    margin-bottom: 20px;
}

.page-title h1 {
    color: var(--main-color);
    font-size: 40px;
    margin-bottom: 10px;
}

.page-title span {
    display: block;
    color: #707070;
    font-size: 15px;
    margin-left: auto;
    text-align: right;
}

.text-strip,
.text-strip p,
.text-strip li,
.text-strip pre,
.text-strip span,
.text-strip strong,
.text-strip i {
    color: #707070;
    font-size: 18px;
    line-height: 30px;
    font-family: 'main', 'medium', 'bold', sans-serif !important;
}

.main-content .py-5 .text-strip,
.main-content .py-5 .text-strip li,
.main-content .py-5 .text-strip p,
.main-content .py-5 .text-strip pre,
.main-content .py-5 .text-strip span,
.main-content .py-5 .text-strip strong,
.main-content .py-5 .text-strip i {
    font-family:  'medium', 'main', 'bold', sans-serif !important;
}

.text-strip ul {
    list-style: none;
}

.text-strip ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.text-strip ul li::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 1px;
    background: #707070;
    vertical-align: middle;
    margin-right: 15px;
}

.text-strip h1,
.text-strip h2,
.text-strip h3,
.text-strip h4,
.text-strip h5,
.text-strip h6 {
    color: #76490F;
}

.iframe-video{
    margin-bottom: 30px;
    position: relative;
    height: 0;
    padding-bottom:56.25%;
    padding-top:30px;
}

.iframe-video iframe{
    height: 100%;
    width: 100%;
    position:absolute;
    top: 0;
    right: 0;
}

.video_face,
.iframe-video{
    margin-bottom:20px;text-align:center;position:relative;
    padding-bottom:56.25%;
    padding-top:30px;
    height:0;
    overflow:hidden;
}
.video_face iframe,
.iframe-video iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.screen-item {
    width: 269px;
    height: 563px;
    overflow: hidden;
    border-radius: 40px;
}

.screen-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-about {
    position: absolute;
    top: 50px;
    right: 0;
    width: 552px;

}

#carousel-custom-dots {
    max-width: 220px;
    margin-bottom: 0;
}

#carousel-custom-dots li button {
    width: 10px;
    height: 10px;
    background-color: #E8E8E8;
    padding: 0 !important;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
    outline: none !important;
    border: none !important;
    margin: 0 5px;
}

#carousel-custom-dots li.active button {
    width: 20px;
    background-color: #CE9926;
}

.scren-nav {
    margin-top: 50px;
}

.navigations  {
    position: relative;
    width: 250px;
}

.scren-nav button {
    background-image: linear-gradient(to right, #76490F, #CE9926) !important;
    color: #FFF;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: none !important;
    font-size: 16px;
    position: absolute;
}

.scren-nav button.owl-next {
    right: 0;
    bottom: 0;
}

.scren-nav button.owl-prev {
    left: 0;
    bottom: 0;
}

.screens-slider {
    position: relative;
}

.screens-slider::after {
    content: '';
    width: 322px;
    height: 625px;
    position: absolute;
    top: -22px;
    left: -28px;
    background: url("../images/mobile.png") no-repeat top left;
    background-size: auto;
    background-size: contain;
    z-index: 99;
}

.page-image {
    width: 100%;
    height: 340px;
    overflow: hidden;
    position: relative;
}

.page-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.build-item {
    margin-bottom: 30px;
    margin-top: 30px;
}

.build-item:nth-child(even) .row {
    flex-direction: row-reverse;
}

.build-text h4 {
    color: var(--main-color);
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
}

.build-text h4::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--main-color);
    margin-right: 15px;
    box-shadow: 0 0 15px RGBA(118, 73, 15, 0.16);
}

.build-text p {
    color: #707070;
    font-size: 18px;
    line-height: 30px;
}

.msg-to-membar p {
    color: #707070;
    font-size: 18px;
    line-height: 30px;
}

.msg-to-membar p::before {
    content: '';
    display: inline-block;
    background: url("../images/icons/Icon awesome-arrow-right.svg") no-repeat;
    background-size: contain;
    width: 9px;
    height: 9px;
    margin-right: 15px;
}

.msg-to-membar p b {
    color: #76490F;
    font-family: 'bold', 'main', sans-serif;
}

.building-img {
    width: 250px;
    height: 480px;
    overflow: hidden;
    /*background: url("../images/icons/big-circle.svg") no-repeat center;
    *//*background-size: 340px;
    */text-align: center;
    padding: 15px;
    background-color: #FFF;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border: 1px solid var(--main-color);
    margin-right: auto;
    margin-left: auto;
    position: relative;
    z-index: 9;
}

.building-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.circles-to-building-test {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background-color: #f4f4f4;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: 0 0 0 40px #fbfbfb;
}

.besafe-img {
    background: url("../images/faq.png") no-repeat center top;
    background-size: 200px 200px;
}

.inner-h1 i,
.inner-h1 .general-icon-img {
    width: 92px;
    height: 92px;
    color: #FFF;
    border-radius: 50%;
    line-height: 92px;
    background-image: linear-gradient(to right, #76490F, #CE9926) !important;
    font-size: 45px;
    margin-right: auto;
    margin-left: auto;
}

.inner-h1 h4 {
    color: var(--main-color);
    font-size: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.general-item {
    margin-bottom: 35px;
}

.general-item h5 {
    position: relative;
    color: #76490F;
    font-size: 18px;
    font-family: 'bold', 'main', sans-serif;
    display: inline-block;
}

.general-item h5 img {
    height: 30px;
    margin-right: 15px;
}

.general-item .text-strip,
.general-item .text-strip p,
.general-item .text-strip li,
.general-item .text-strip pre,
.general-item .text-strip span,
.general-item .text-strip strong,
.general-item .text-strip i {
    font-family: 'medium', sans-serif !important;
}

.members-level {
    background: #FCFCFC;
}

.members-level-table tr td,
.members-level-table tr th {
    vertical-align: middle !important;
}

.table-badge {
    width: 168px;
}

.hed-badge {
    width: 168px;
    background: #F9F5EC;
    border-radius: 25px;
    color: #76490F;
    display: flex;
    align-items: center;
    position: relative;
}

.hed-badge p {
    flex: 1;
    text-align: center;
}

.hed-badge::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #F9F5EC;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateY(-50%);
}

.check-item {
    width: 168px;
    background: #FFF;
    padding: 8px 5px;
    border: 1px solid #E2E2E2;
    text-align: center;
    border-radius: 25px;
    min-height: 42px;
}

.members-table-title {
    color: #76490F;
    font-size: 17px;
    font-family: 'medium', 'main', sans-serif;
    padding: 8px 15px;
    background: #F9F5EC;
    border-radius: 25px;
    min-width: 300px;
}

.members-faq {
    padding: 50px 0;
}

.member-faq-item {
    margin-bottom: 30px;
}

.member-faq-item:nth-child(even) .row {
    flex-direction: row-reverse;
}

.member-faq-item:nth-child(even) .row .col-lg-4 {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.safeer-div {
    background: url("../images/safeer-bg.png") no-repeat center center;
    background-size: cover;
}

.safeer-div h4 {
    color: #FFF;
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 40px;
}

.safeer-div p,
.safeer-div li {
    color: #FFF;
    font-size: 18px;
    line-height: 30px;
}

.safeer-div ul {
    margin-left: 20px;
}

.safeer-div ul li {
    margin-bottom: 10px;
    list-style: circle;
}

.rafeeq-rate-text ol {
    list-style-type: none !important;
}

.rafeeq-rate-text ol li {
    color: var(--main-color);
    font-family: 'bold', 'main', sans-serif;
}

.circle-ul {
    list-style: circle;
    margin-left: 15px;
}

.event-item {
    background: #FFF;
    box-shadow: 0 0 30px RGBA(232, 232, 232, 0.60);
    border-radius: 23px;
    overflow: hidden;
    margin-bottom: 35px;
    transition: all 0.3s ease;
}

.event-item:hover {
    transform: translateY(-10px);
}

.event-item figure {
    width: 100%;
    height: 290px;
    position: relative;
    overflow: hidden;
}

.event-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.event-item:hover figure img {
    transform: scale(1.05, 1.05);
}

.event-item h4 {
    color: var(--main-color);
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 30px;
}

.event-item p {
    color: #707070;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 10px;
}

.date-more span{
    color: #E8E8E8;
    font-size: 15px;
}

.date-more a:hover {
    color: var(--main-color);
}

.text-rafeeq {
    color: var(--main-color);
    font-family: 'medium', 'main', sans-serif;
}

.page-link {
    color: #707070 !important;
    background: #E8E8E8;
    border-color: transparent;
    margin: 0 7px;
    border-radius: 50% !important;
    font-size: 16px;
    width: 35px;
    height: 35px;
    padding: 0 !important;
    text-align: center;
    line-height: 35px;
    font-family: 'medium', 'main', sans-serif;
}

.page-link.active,
.pagination .page-item.active .page-link {
    background: var(--main-color) !important;
    border-color: var(--main-color) !important;
    color: #FFF !important;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    background-image: linear-gradient(to right, #76490F, #CE9926) !important;
    color: #FFF !important;
    border-color: var(--main-color) !important;
}

.single-image {
    width: 100%;
    height: 530px;
    border-radius: 23px;
    margin-bottom: 20px;
    overflow: hidden;
}

.single-image img,
.iner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iner-img {
    width: 350px;
    height: 340px;
    border-radius: 23px;
    margin-bottom: 20px;
    overflow: hidden;
}

.iner-img {
    float: right;
}

.text-strip img,
.text-strip video,
.text-strip audio {
    max-width: 100%;
    height: auto;
    border-radius: 23px;
}

.share-icons {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
    background: #FFF;
    border: 1px solid #E8E8E8;
    border-radius: 25px;
    padding: 5px 10px;
    margin: 15px 0
}

.share-icons a {
    color: var(--main-color);
    font-size: 18px;
    display: block;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.share-icons a:hover {
    color: #FFF;
    background: var(--main-color);
    border-radius: 5px;
}

.view-more-items .event-item figure {
    height: 170px;
}

.news-item figure {
    height: 230px;
}

.main-content .grid-item,
.main-content .grid-item figure {
    width: 100%;
    height: 380px;
    float: none !important;
}

.video-item {
    border-radius: 15px;
    border: 1px solid #F1F1F1;
    overflow: hidden;
    margin-bottom: 35px;
}

.video-item figure {
    width: 100%;
    height: 215px;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.video-item figure::before {
    content: "\f167";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: RGBA(255, 255, 255, 0.80);
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 46px;
    transition: all 0.5s ease;
    z-index: 99;
}

.video-item:hover figure::before {
    color: #FFF;
}

.video-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.video-item:hover figure img {
    transform: scale(1.05, 1.05);
}

.video-item h4 {
    color: var(--main-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.video-item p {
    color: #707070;
    font-size: 15px;
    line-height: 25px;
}

.pagination {
    margin-top: 25px;
}

.faq-search {
    margin-top: 60px;
}

.faq-search .form-group {
    position: relative;
}

.faq-search input {
    height: 46px;
    border: none !important;
    box-shadow: 0 0 25px RGBA(232, 232, 232, 0.50) !important;
    border-radius: 25px;
    padding-right: 150px !important;
}

.faq-search input:focus {
    box-shadow: 0 0 25px RGBA(232, 232, 232, 0.50) !important;
}

.faq-search .btn {
    border-radius: 25px;
    padding: 8px 30px;
    position: absolute;
    top: 0;
    right: 0;
    height: 46px;
}

.nav-tabs.swiper-wrapper {
    flex-wrap: unset !important;
    padding-bottom: 2px;
}

.nav-tabs.faq-tabs {
    margin-top: 50px;
    border-bottom: 1px solid #707070;
}

.nav-tabs.faq-tabs .nav-link {
    color: #E8E8E8;
    font-size: 18px;
    font-family: 'medium', 'main', sans-serif;
    transition: all 0.34s ease;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: var(--main-color);
    border-color: #707070 #707070 #fff;
}

.faq-collapse-item {
    position: relative;
    margin-top: 30px;
}

.faq-collapse-item h5 {
    color: var(--main-color);
    font-size: 18px;
    cursor: pointer;
    user-select: none;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
}

.faq-collapse-item .plus-minus-icon {
    width: 40px;
    height: 40px;
    background: var(--main-color);
    color: #FFF;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    margin-right: 15px;
    display: inline-block;
    flex: 0 0 40px;
}

.faq-collapse-item .text-strip {
    margin-left: 65px;
}

.faq-collapse-item .text-strip ul {
    list-style: circle !important;
    padding-left: 20px;
}

.faq-collapse-item .text-strip ol {
    list-style: decimal !important;
    padding-left: 20px;
}

.faq-collapse-item .text-strip ul li {
    padding-left: 0;
}

.faq-collapse-item .text-strip ul li::before {
    display: none !important;
}

.main-content .header-search {
    position: static;
    margin-bottom: 35px;
    display: block !important;
}

.main-content .header-search h4,
.main-content .header-search h3 {
    color: #707070;
}

.main-content .header-search form {
    box-shadow: 0 0 25px RGBA(232, 232, 232, 0.5);
}

.trip-item {
    background: #FFF;
    box-shadow: 0 0 30px RGBA(232, 232, 232, 0.60);
    border-radius: 23px;
    overflow: hidden;
    margin-bottom: 35px;
}

.trip-item &gt; .d-flex {
    padding: 10px 12px;
}

.trip-item &gt; .d-flex h4 {
    color: var(--main-color);
    font-size: 20px;
    margin-right: auto;
}

.trip-item &gt; .d-flex h4 img {
    height: 25px;
}

.trip-item &gt; .d-flex span {
    color: #C7C7C7;
}

.trip-item table i {
    color: #707070;
    font-size: 14px;
    margin-right: 5px;
}

.trip-item table img {
    height: 28px;
}

.bg-table-rf {
    background-color: #F6FFE4;
}

.driver-item {
    padding: 10px 15px;
}

.driver-item figure {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    padding: 3px;
    border: 1px solid var(--main-color);
    margin-right: 10px;
    margin-bottom: 0;
}

.driver-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.driver-item svg,
.driver-item img.level-img {
    position: absolute;
    bottom: -5px;
    left: -5px;
    height: 25px;
}

.driver-item .media-body span {
    color: #C7C7C7;
    font-size: 12px;
}

.driver-item .media-body h5 {
    color: var(--main-color);
    font-size: 15px;
    margin-bottom: 10px;
}

.driver-item .media-body {
    padding-bottom: 15px;
}

.driver-item .media-body .progress {
    height: 6px;
}

.driver-item .media-body .progress .progress-bar {
    background-color: var(--main-color);
}

.driver-item .media-body .progrees-val {
    position: absolute;
    left: 0;
    top: 100%;
    margin-bottom: 0;
    color: var(--main-color);
    font-size: 12px;
}

.btn-bold-rafeeq {
    background-color: var(--main-color);
    border-radius: 0;
    color: #FFF !important;
    font-size: 20px;
    font-family: 'medium', sans-serif;
}

.promo {
    margin-top: 70px;
}

.promo p {
    color: #707070;
}

.promo a {
    border-radius: 25px;
    padding: 8px 35px;
    min-width: 260px;
    font-size: 18px;
}
    /* main-content */

/* Media Query */
.navbar-light .navbar-toggler {
    border-color: RGBA(255, 255, 255, 0.6);
    color: #FFF;
    padding: 8px 12px;
}

.inner-header .navbar-light .navbar-toggler {
    color: var(--main-color);
    border-color: var(--main-color);
}

.table-logo {
    max-height: 40px;
    width: auto;
}
.note-list li {
    position: relative;
    padding-left: 26px;
    margin-left: 10px;
    margin-bottom: 10px;
}

.note-list li::before {
    display: none !important;
}

.note-list li::after {
    width: 18px;
    height: 18px;
    position: absolute;
    left: 0;
    top: 2px;
    content: '';
    display: block;
    background: url(../images/icons/check.svg);
    background-size: contain;
}

/* covid-safe */
.covid-safe {
    padding-bottom: 70px;
    position: relative;
}

.covid-safe::before {
    content: '';
    display: block;
    position: absolute;
    top: 30%;
    left: -150px;
    width: 280px;
    height: 280px;
    background: url("../images/icons/Page-12.svg") no-repeat center / contain;
}

.covid-safe::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 10%;
    right: -262px;
    width: 525px;
    height: 525px;
    background: url("../images/icons/Page-1.svg") no-repeat center / contain;
}
/* covid-safe */

/*title-covid*/
.title-covid {
    background: url("../images/covid-safe-bg.png") no-repeat center / cover;
    color: #FFF;
    text-align: center;
    padding: 40px 0;
}

.title-covid h4,
.title-covid h3 {
    color: #FFF;
    font-size: 35px;
}
/*title-covid*/

/* covid-hed */
.covid-hed {
    padding: 40px 0;
}

.covid-hed h3,
.covid-hed h4 {
    color: var(--main-color);
    font-size: 25px;
    margin-bottom: 15px;
}

.text-strip-safe,
.text-strip-safe p,
.text-strip-safe span,
.text-strip-safe div,
.text-strip-safe pre,
.text-strip-safe li,
.text-strip-safe a {
    font-size: 18px;
    font-family: "main", sans-serif;
    color: #76490F;
    line-height: 30px;
}

.covid-hed figure {
    margin-bottom: 0;
    width: 100%;
    height: 390px;
    position: relative;
}

.covid-hed figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right;
}
/* covid-hed */

/* covid-steps */
.covid-steps ul li {
    color: #707070;
    font-size: 18px;
    font-family: 'medium', 'bold', sans-serif;
    margin-bottom: 30px;
}

.covid-steps ul li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #707070;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}
/* covid-steps */

/*.custom-file-label::after {
    content: 'Click to upload the image';
    left: 0;
    right: auto;
    background: none !important;
    border: none !important;
}

.custom-file-label {
    left: auto;
    right: 0;
    background: #E8E8E8;
    color: #707070 !important;
    border-radius: 25px;
    height: 46px;
    line-height: 46px !important;
    padding-top: 0;
    padding-bottom: 0;
}

.custom-file,
.custom-file-input {
    height: 46px;
}

.custom-file {
    border-color: transparent !important;
    box-shadow: 0 0 15px #E8E8E8;
    border-radius: 25px;
}*/

.js .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.custom-upload {
    position: relative;
}

.custom-upload label#browse-label {
    font-size: 1.25rem;
    /* 20px */
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 0.625rem 1.25rem;
    /* 10px 20px */
    width: 100%;
}

.no-js .custom-upload label#browse-label {
    display: none;
}

.custom-upload:focus + label#browse-label,
.custom-upload.has-focus + label#browse-label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.custom-upload label#browse-label * {
    /* pointer-events: none; */
    /* in case of FastClick lib use */
}

.custom-upload label#browse-label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    /* 4px */
    margin-right: 0.25em;
    /* 4px */
}

/* style 6 */

.custom-upload label#browse-label {
    color: var(--main-color);
    display: flex;
    justify-content: space-between;
}

.custom-upload label#browse-label {
    border-color: transparent !important;
    box-shadow: 0 0 15px #E8E8E8;
    border-radius: 25px;
    padding: 0;
    font-size: 15px;
}

.custom-upload:focus label#browse-label,
.custom-upload.has-focus label#browse-label,
.custom-upload label#browse-label:hover {
    border-color: #722040;
}

.custom-upload label#browse-label span,
.custom-upload label#browse-label strong {
    padding: 0.625rem 1.25rem;
    /* 10px 20px */
}

.custom-upload label#browse-label span {
    width: 100%;
    min-height: 2em;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: top;
    font-size: 15px;
}

.custom-upload label#browse-label strong {
    color: #707070;
    background-color: #E8E8E8;
    display: inline-block;
    border-radius: 25px;
    height: 46px;
}

.custom-upload:focus label#browse-label strong,
.custom-upload.has-focus label#browse-label strong,
.custom-upload label#browse-label:hover strong {
    background-color: #E8E8E8;
}

@media screen and (max-width: 50em) {
    .custom-upload + label#browse-label strong {
        display: block;
    }
}

.custom-upload input {
    opacity: 0;
    height: 0;
    visibility: hidden;
    position: absolute;
}

.images-container {
    position: relative;
    background: #FFF;
    box-shadow: 0 0 15px #E8E8E8;
    overflow: hidden;
    border-radius: 24px;
}

.images-container .img-cont-header {
    padding: 15px 25px;
    border-bottom: 1px solid #E8E8E8;
    margin-bottom: 5px;
}

.images-container .img-cont-header .btn-light {
    background: #FFF;
    padding: 8px 35px;
    border: 1px solid #E8E8E8;
    color: #707070;
}

.images-wrap {
    padding: 10px;
}

.added-image {
    width: 100%;
    height: 122px;
    overflow: hidden;
    border-radius: 24px;
    position: relative;
}

.added-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.close-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 50%;
    color: #000000;
    padding: 0 !important;
    background: RGBA(255, 255, 255, 0.61);
    width: 30px !important;
    height: 30px !important;
}

.actions {
    position: relative;
}

.upload-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.add-gallery-form .form-control::-webkit-input-placeholder { /* Edge */
    color: #E8E8E8;
}

.add-gallery-form .form-control:-ms-input-placeholder { /* Internet Explorer */
    color: #E8E8E8;
}

.add-gallery-form .form-control::placeholder {
    color: #E8E8E8;
}

.col-xs-5th-5 {
    width: 100%;
}

.col-xs-5th-4 {
    width: 80%;
}

.col-xs-5th-3 {
    width: 60%;
}

.col-xs-5th-2 {
    width: 40%;
}

.col-xs-5th-1 {
    width: 20%;
}

.col-xs-5th-pull-5 {
    right: 100%;
}

.col-xs-5th-pull-4 {
    right: 80%;
}

.col-xs-5th-pull-3 {
    right: 60%;
}

.col-xs-5th-pull-2 {
    right: 40%;
}

.col-xs-5th-pull-1 {
    right: 20%;
}

.col-xs-5th-pull-0 {
    right: auto;
}

.col-xs-5th-push-5 {
    left: 100%;
}

.col-xs-5th-push-4 {
    left: 80%;
}

.col-xs-5th-push-3 {
    left: 60%;
}

.col-xs-5th-push-2 {
    left: 40%;
}

.col-xs-5th-push-1 {
    left: 20%;
}

.col-xs-5th-push-0 {
    left: auto;
}

.col-xs-5th-offset-5 {
    margin-left: 100%;
}

.col-xs-5th-offset-4 {
    margin-left: 80%;
}

.col-xs-5th-offset-3 {
    margin-left: 60%;
}

.col-xs-5th-offset-2 {
    margin-left: 40%;
}

.col-xs-5th-offset-1 {
    margin-left: 20%;
}

.col-xs-5th-offset-0 {
    margin-left: 0%;
}

@media (min-width: 768px) {
    .col-sm-5th-5 {
        float: left;
        width: 100%;
    }

    .col-sm-5th-4 {
        width: 80%;
    }

    .col-sm-5th-3 {
        width: 60%;
    }

    .col-sm-5th-2 {
        width: 40%;
    }

    .col-sm-5th-1 {
        width: 20%;
    }

    .col-sm-5th-pull-5 {
        right: 100%;
    }

    .col-sm-5th-pull-4 {
        right: 80%;
    }

    .col-sm-5th-pull-3 {
        right: 60%;
    }

    .col-sm-5th-pull-2 {
        right: 40%;
    }

    .col-sm-5th-pull-1 {
        right: 20%;
    }

    .col-sm-5th-pull-0 {
        right: auto;
    }

    .col-sm-5th-push-5 {
        left: 100%;
    }

    .col-sm-5th-push-4 {
        left: 80%;
    }

    .col-sm-5th-push-3 {
        left: 60%;
    }

    .col-sm-5th-push-2 {
        left: 40%;
    }

    .col-sm-5th-push-1 {
        left: 20%;
    }

    .col-sm-5th-push-0 {
        left: auto;
    }

    .col-sm-5th-offset-5 {
        margin-left: 100%;
    }

    .col-sm-5th-offset-4 {
        margin-left: 80%;
    }

    .col-sm-5th-offset-3 {
        margin-left: 60%;
    }

    .col-sm-5th-offset-2 {
        margin-left: 40%;
    }

    .col-sm-5th-offset-1 {
        margin-left: 20%;
    }

    .col-sm-5th-offset-0 {
        margin-left: 0%;
    }
}
@media (min-width: 992px) {
    .col-md-5th-5 {
        width: 100%;
    }

    .col-md-5th-4 {
        width: 80%;
    }

    .col-md-5th-3 {
        width: 60%;
    }

    .col-md-5th-2 {
        width: 40%;
    }

    .col-md-5th-1 {
        width: 20%;
    }

    .col-md-5th-pull-5 {
        right: 100%;
    }

    .col-md-5th-pull-4 {
        right: 80%;
    }

    .col-md-5th-pull-3 {
        right: 60%;
    }

    .col-md-5th-pull-2 {
        right: 40%;
    }

    .col-md-5th-pull-1 {
        right: 20%;
    }

    .col-md-5th-pull-0 {
        right: auto;
    }

    .col-md-5th-push-5 {
        left: 100%;
    }

    .col-md-5th-push-4 {
        left: 80%;
    }

    .col-md-5th-push-3 {
        left: 60%;
    }

    .col-md-5th-push-2 {
        left: 40%;
    }

    .col-md-5th-push-1 {
        left: 20%;
    }

    .col-md-5th-push-0 {
        left: auto;
    }

    .col-md-5th-offset-5 {
        margin-left: 100%;
    }

    .col-md-5th-offset-4 {
        margin-left: 80%;
    }

    .col-md-5th-offset-3 {
        margin-left: 60%;
    }

    .col-md-5th-offset-2 {
        margin-left: 40%;
    }

    .col-md-5th-offset-1 {
        margin-left: 20%;
    }

    .col-md-5th-offset-0 {
        margin-left: 0%;
    }
}
@media (min-width: 1200px) {
    .col-lg-5th-1, .col-lg-5th-2, .col-lg-5th-3, .col-lg-5th-4 {
        float: left;
    }

    .col-lg-5th-5 {
        float: left;
        width: 100%;
    }

    .col-lg-5th-4 {
        width: 80%;
    }

    .col-lg-5th-3 {
        width: 60%;
    }

    .col-lg-5th-2 {
        width: 40%;
    }

    .col-lg-5th-1 {
        width: 20%;
    }

    .col-lg-5th-pull-5 {
        right: 100%;
    }

    .col-lg-5th-pull-4 {
        right: 80%;
    }

    .col-lg-5th-pull-3 {
        right: 60%;
    }

    .col-lg-5th-pull-2 {
        right: 40%;
    }

    .col-lg-5th-pull-1 {
        right: 20%;
    }

    .col-lg-5th-pull-0 {
        right: auto;
    }

    .col-lg-5th-push-5 {
        left: 100%;
    }

    .col-lg-5th-push-4 {
        left: 80%;
    }

    .col-lg-5th-push-3 {
        left: 60%;
    }

    .col-lg-5th-push-2 {
        left: 40%;
    }

    .col-lg-5th-push-1 {
        left: 20%;
    }

    .col-lg-5th-push-0 {
        left: auto;
    }

    .col-lg-5th-offset-5 {
        margin-left: 100%;
    }

    .col-lg-5th-offset-4 {
        margin-left: 80%;
    }

    .col-lg-5th-offset-3 {
        margin-left: 60%;
    }

    .col-lg-5th-offset-2 {
        margin-left: 40%;
    }

    .col-lg-5th-offset-1 {
        margin-left: 20%;
    }

    .col-lg-5th-offset-0 {
        margin-left: 0%;
    }
}


/* map-in-page */
.map-in-page {
    height: 500px;
    position: relative;
    margin-bottom: 180px;
}

.map-in-page #mapa {
  height: 500px;
    border-radius: 20px;
}

.calculator-map {
    position: absolute;
    left: 75px;
    top: 75px;
    background-color: #FFF;
    padding: 15px;
    border-radius: 20px;
    overflow: hidden;
    min-height: 200px;
    width: 570px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
}

.calculator-map .nav-pills .nav-link {
    border-radius: 25px;
    background-color: #FFF;
    transition: all 0.3s ease;
    font-size: 15px;
    color: #707070;
    box-shadow: 0 0 15px RGBA(118, 73, 15, .12);
    font-family: 'bold', 'main', sans-serif;
    text-transform: uppercase;
}

.nav-pills .nav-link.active, .nav-pills .show &gt; .nav-link {
    background-image: linear-gradient(to right, #76490F, #CE9926) !important;
    color: #FFF !important;
}
/* map-in-page */

/* tab-form */
.tab-form label {
    margin-left: 15px;
    color: #707070;
    font-size: 13px;
    font-weight: 600;
}

.tab-form label span {
    color: #C4C4C4;
}

.tab-form .form-control {
    border-radius: 25px;
    height: 36px;
    font-size: 14px;
    color: #CE9926;
    border: 1px solid #E8E8E8;
}

.tab-form .form-control::placeholder {
    color: #E8E8E8;
    opacity: 1; /* Firefox */
}

.tab-form .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #E8E8E8;
}

.tab-form .form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #E8E8E8;
}

.tab-form .select2-container .select2-selection--single {
    border-color: #E8E8E8;
}

.tab-form .select2-container .select2-selection--single {
    height: 36px;
}

.tab-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
    font-size: 14px;
    padding-left: 15px;
    color: #707070;
}
/* tab-form */

/* Map In Modal */
#mapInModal {
    height: 500px;
}
#mapInModalArrival {
    height: 500px;
}

#description {
  font-size: 15px;
  font-weight: 300;
}

#infowindow-content .title {
  font-weight: bold;
}

#infowindow-content {
  display: none;
}

#map #infowindow-content {
  display: inline;
}

.pac-card {
  margin: 10px 10px 0 0;
  border-radius: 2px 0 0 2px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

#pac-container {
  padding-bottom: 12px;
  margin-right: 12px;
}

.pac-controls {
  display: inline-block;
  padding: 5px 11px;
}

.pac-controls label {
  font-size: 13px;
  font-weight: 300;
}

#pac-input {
  background-color: #fff;
  font-size: 15px;
  font-weight: 300;
  text-overflow: ellipsis;
  width: 400px;
    top: 10px !important;
    height: 40px;
}

#pac-input:focus {
  border-color: #4d90fe;
}

#title {
  color: #fff;
  background-color: #4d90fe;
  font-size: 25px;
  font-weight: 500;
  padding: 6px 12px;
}

/* **** */
#target2 {
  width: 345px;
}

#map {
    height: 500px;
}

#description2 {
  font-size: 15px;
  font-weight: 300;
}

#infowindow-content2 .title2 {
  font-weight: bold;
}

#infowindow-content2 {
  display: none;
}

#map #infowindow-content2 {
  display: inline;
}

.pac-card2 {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  top: 12px !important;
  width: 100%;
  padding: 0 10px !important;
}

#pac-container2 {
  padding-bottom: 12px;
}

.pac-controls2 {
  display: inline-block;
  padding: 5px 11px;
}

.pac-controls2 label {
  font-family: Roboto;
  font-size: 13px;
  font-weight: 300;
}

#pac-input2 {
  background-color: #fff;
  font-size: 15px;
  font-weight: 300;
  padding: 0 11px 0 13px;
  text-overflow: ellipsis;
}

#pac-input2:focus {
  border-color: #4d90fe;
}

#title2 {
  color: #fff;
  background-color: #4d90fe;
  font-size: 25px;
  font-weight: 500;
  padding: 6px 12px;
}

.pac-container {
    z-index: 9999 !important;
}

#mapInModal .gmnoprint .gm-style-mtc,
#map .gmnoprint .gm-style-mtc {
    top: 50px !important;
}

#mapInModal .gm-fullscreen-control,
map .gm-fullscreen-control {
    top: 50px !important;
}

.pac-matched {
    font-weight: normal !important;
}
/* Map In Modal */

/* custom slider */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

label {
  display: block;
  margin: 0 0 6px;
}

.slider-wrapper {
  margin: 20px 0 30px;
  max-width: 100%;
  position: relative;
}
.slider-wrapper .custom-track {
  background-color: #E8E8E8;
  border-radius: 3px;
  height: 5px;
  position: relative;
  width: 100%;
}
.slider-wrapper .custom-fill {
  background-color: #CE9926;
  border-radius: 3px;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 50%;
}
.slider-wrapper .custom-thumb {
  background-color: #CE9926;
  border-radius: 50%;
  height: 28px;
  left: 50%;
  margin-left: -12px;
  position: absolute;
  top: -12px;
  width: 28px;
  text-align: center;
  line-height: 28px;
  color: #FFF;
  font-weight: 600;
}
/* .slider-wrapper .custom-thumb:before {
  background-color: #f2f2f2;
  border-radius: 50%;
  box-shadow: 0 0 3px 0 #0c0b0d;
  content: "";
  height: 12px;
  left: 6px;
  position: absolute;
  top: 6px;
  width: 12px;
} */

.slider-wrapper input:focus ~ .custom-track .custom-thumb {
  box-shadow: 0 0 4px 2px #72C2C1;
}
.slider-wrapper input[type=range] {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.slider-wrapper input[type=range]::-ms-track {
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  margin: 0px;
  padding: 0px;
  border: 0 none;
  background: transparent;
  color: transparent;
  overflow: visible;
}
.slider-wrapper input[type=range]::-moz-range-track {
  width: 100%;
  height: 100%;
  -moz-appearance: none;
  margin: 0px;
  padding: 0px;
  border: 0 none;
  background: transparent;
  color: transparent;
  overflow: visible;
}
.slider-wrapper input[type=range] {
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  margin: 0px;
  padding: 0px;
  border: 0 none;
  background: transparent;
  color: transparent;
  overflow: visible;
}
.slider-wrapper input[type=range]:focus::-webkit-slider-runnable-track {
  background: transparent;
  border: transparent;
}
.slider-wrapper input[type=range]:focus {
  outline: none;
}
.slider-wrapper input[type=range]::-ms-thumb {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  border: 0 none;
  background: transparent;
  cursor: pointer;
}
.slider-wrapper input[type=range]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  border: 0 none;
  background: transparent;
  cursor: pointer;
}
.slider-wrapper input[type=range]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  border: 0 none;
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
}
.slider-wrapper input[type=range]::-ms-fill-lower {
  background: transparent;
  border: 0 none;
}
.slider-wrapper input[type=range]::-ms-fill-upper {
  background: transparent;
  border: 0 none;
}
.slider-wrapper input[type=range]::-ms-tooltip {
  display: none;
}

.native-slider-widget {
  width: 500px;
}
.native-slider-widget input[type=range] {
  background: transparent;
  display: block;
  margin: 10px 0 20px;
  -webkit-appearance: none;
  width: 100%;
}
.native-slider-widget input[type=range]:focus {
  outline: none;
}
.native-slider-widget input[type=range]::-webkit-slider-thumb {
  background: linear-gradient(#8c8097, #595061);
  border: 1px solid #0c0b0d;
  border-radius: 50%;
  box-shadow: 0 0 3px 0 #0c0b0d;
  cursor: pointer;
  height: 24px;
  margin-top: -8px;
  width: 24px;
  -webkit-appearance: none;
}
.native-slider-widget input[type=range]::-moz-range-thumb {
  background: linear-gradient(#8c8097, #595061);
  border: 1px solid #0c0b0d;
  border-radius: 50%;
  box-shadow: 0 0 3px 0 #0c0b0d;
  cursor: pointer;
  height: 24px;
  margin-top: -8px;
  width: 24px;
}
.native-slider-widget input[type=range]::-ms-thumb {
  background: linear-gradient(#8c8097, #595061);
  border: 1px solid #0c0b0d;
  border-radius: 50%;
  box-shadow: 0 0 3px 0 #0c0b0d;
  cursor: pointer;
  height: 24px;
  margin-top: -8px;
  width: 24px;
}
.native-slider-widget input[type=range]:focus::-webkit-slider-thumb {
  box-shadow: 0 0 4px 2px #72C2C1;
}
.native-slider-widget input[type=range]:focus::-moz-range-thumb {
  box-shadow: 0 0 4px 2px #72C2C1;
}
.native-slider-widget input[type=range]:focus::-ms-thumb {
  box-shadow: 0 0 4px 2px #72C2C1;
}
.native-slider-widget input[type=range]::-webkit-slider-runnable-track {
  background-color: #f2f2f2;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  height: 8px;
  position: relative;
  width: 100%;
}
.native-slider-widget input[type=range]::-moz-range-track {
  background-color: #f2f2f2;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  height: 8px;
  position: relative;
  width: 100%;
}
.native-slider-widget input[type=range]::-ms-track {
  background-color: #f2f2f2;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  height: 8px;
  position: relative;
  width: 100%;
}

[for="widget1"] {
    margin-left: 0 !important;
}
/* custom slider */

/* distance */
.sm-control {
    width: 80px;
    border: none !important;
    font-size: 14px;
    color: #CE9926;
    padding-left: 5px;
}

.a2 {
    fill: #CE9926;
}

.tab-footer label {
    margin-left: 0 !important;
    color: #CE9926;
}
/* distance */

/* driver-results */
.driver-results,
.title-in-page {
    padding: 50px 0;
}
/* driver-results */

/* result-item */
.result-item {
    padding: 20px 30px;
    background-color: #FFF;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-bottom: 30px;
    height: 100%;
    z-index: 1;
}

.result-item figure {
    width: 100%;
    height: 150px;
}

.result-item figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.result-item h4 {
    color: #2E3C87;
    font-size: 22px;
    margin-bottom: 0;
}

.res-list {
    margin-top: 20px;
}

.res-list li {
    border-top: 1px solid #E8E8E8;
    padding-top: 15px;
    padding-bottom: 15px;
}

.res-list li p{
    font-size: 15px;
    margin-bottom: 5px;
    color: #707070;
    font-weight: 600;
}

.res-list li h6 {
    color: #76490F;
    font-size: 20px;
    margin-bottom: 15px;
}

.res-list li h5 {
    color: #CE9926;
    font-size: 30px;
    font-family: 'main', 'bold', sans-serif;
    font-weight: 600;
}

.res-list li h5 b {
    font-family: 'bold', sans-serif;
    font-weight: normal;
}

.res-list li h5 small {
    font-size: 15px;
    font-family: 'main', sans-serif;
}

.res-list li h5 span {
    font-size: 15px;
    display: inline-block;
    color: #CE9926;
}

.res-list li span {
    display: block;
    font-size: 13px;
    color: #707070;
    font-weight: 600;
}
/* result-item */

/* title-in-page */
.title-in-page h3 {
    color: #CE9926;
    text-align: center;
    font-size: 20px;
}
/* title-in-page */

/* passinger-result */
.passinger-result .table thead th {
    text-align: center;
    border-top: 0;
}

.passinger-result .table th svg,
.passinger-result .table th img {
    height: 30px;
    margin-bottom: 10px;
}

.passinger-result .table th span {
    display: block;
    font-size: 15px;
    color: #CE9926;
    font-family: 'meduim', sans-serif;
    font-weight: 900;
}

.passinger-result .table thead th {
    vertical-align: top;
}

.passinger-result .table thead th p {
    color: #707070;
    font-size: 10px;
    margin-bottom: 0;
    font-weight: 400;
    margin-top: 8px;
    font-family: 'main', sans-serif;

}

.passinger-result .table tbody tr th {
    color: #76490F;
    font-size: 15px;
    font-weight: 600;
    width: 150px;
    text-align: center;
    font-family: 'medium', sans-serif;
}

.passinger-result .table tbody tr th svg,
.passinger-result .table tbody tr th img {
    display: block;
    margin: 0 auto 5px auto;

}

.passinger-result .table tbody tr td {
    text-align: center;
    color: #707070;
    font-size: 15px;
    vertical-align: middle;
}

.not-middle td {
    vertical-align: top !important;
}

.passinger-result .table tbody tr td b {
    color: #CE9926;
    font-family: 'medium', sans-serif;
    font-size: 18px;
}

.passinger-result .table tbody tr td i {
    color: #CE9926;
}

.passinger-result .table tbody tr td:last-child {
    color: #CE9926;
    font-weight: 600;
    font-family: 'medium', sans-serif;
}

.passinger-result .table tbody tr td span {
    display: block;
}

.passinger-result .table tbody tr td p {
    margin: 0;
    color: #707070;
    font-weight: 400;
}
/* passinger-result */

/* change-curency */
.change-curency {
    margin-bottom: 20px;
}

.change-curency h4 {
    color: #CE9926;
    font-size: 25px;
    margin: 0;
}

.curency-changer {
    position: relative;
}

.curency-changer .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 50px;
    padding-right: 40px;
    color: #CE9926;
}

.curency-changer label {
    position: absolute;
    top: 10px;
    left: 15px;
    z-index: 3;
    margin: 0;
}

.curency-changer .select2-container .select2-selection--single {
    border-color: #CE9926;
}

.curency-changer .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: inline-block !important;
    color: #CE9926;
}

.curency-changer .select2-container--default .select2-selection--single .select2-selection__arrow b {
  background-image: url(../images/icons/arrow-circle-down.svg);
  background-color: transparent;
  background-size: contain;
  border: none !important;
  height: 20px !important;
  width: 20px !important;
  margin: auto !important;
  top: auto !important;
  left: auto !important;
}
/* change-curency */

/* co2-div */
.co2-div {
    position: relative;
    background: #FBFBFB;
}

.co2-div .page-image {
    overflow: visible;
}

.co2-div .page-image::before {
    content: '';
    display: block;
    width: 206px;
    height: 682px;
    position: absolute;
    top: -481px;
    right: -65px;
    background: url(../images/long-dots.svg) no-repeat center / contain;
}

.map-in-page::before {
    content: '';
    display: block;
    width: 206px;
    height: 379px;
    position: absolute;
    top: 50px;
    right: -65px;
    background: url(../images/sm-dots-all.svg) no-repeat center / contain;
    z-index: -1;
}

.co2-div .page-image img {
    position: relative;
    z-index: 3;
}

.co2-div .page-title small {
    font-family: 'bold', sans-serif;
    font-size: 22px;
}
/* co2-div */

/* rafeeq-premuim */
.rafeeq-premuim h4 {
    color: #0786A3;
    font-size: 29px;
    margin-bottom: 15px;
}

.donload-buttons a {
    padding: 8px 30px;
    border-radius: 25px;
    font-size: 15px !important;
    line-height: 1.8;
    margin-bottom: 10px;
}

.how-it-works .donload-buttons a img {
    height: 28px;
    vertical-align: middle;
}
/* rafeeq-premuim */

/* calc-header */
.calc-header {
    padding: 70px 0 200px 0;
    background-color: #FFF;
    border-bottom-left-radius: 72px;
    border-bottom-right-radius: 72px;
    position: relative;
}

.calc-header::before {
    content: '';
    display: block;
    background: url("../images/cloud-arrow.svg") no-repeat center 100%;
    width: 340px;
    height: 344px;
    position: absolute;
    top: 40%;
    right: 0;
    transform: translateY(-50%);
    background-size: 100% 100%;
}

.calc-header::after {
    content: '';
    display: block;
    background: url("../images/cloud-arrow-car.svg") no-repeat center 100%;
    width: 340px;
    height: 100%;
    position: absolute;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    background-size: 100% 100%;
}

.calc-header img {
    height: 140px;
    margin-bottom: 24px;
}

.calc-header h1 {
    color: rgba(215, 170, 74, 1);
    font-size: 24px;
    line-height: 44px;
}

.calc-header p {
    font-size: 16px;
    line-height: 26px;
    color: rgba(148, 148, 148, 1);
}
/* calc-header */

/* form-sec */
.calc-form-section {
    padding-bottom: 50px;
}

.form-sec {
    box-shadow: 0 10px 60px 0 rgba(38, 45, 118, 0.08);
    padding: 40px 48px 104px 48px;
    border-radius: 16px;
    position: relative;
    z-index: 9;
    margin-top: -167px;
    background-color: rgba(252, 252, 252, 1);
}

.calc-form label {
    font-weight: 600;
    font-size: 14px;
    color: rgba(58, 68, 92, 1);
}

.calc-form input[type=number],
.calc-form select {
    appearance: textfield;
    -moz-appearance: textfield;
    -webkit-appearance: none;
}

.calc-form select {
    background: url("../images/icons/Icon ionic-ios-arrow-down-inner.svg") no-repeat calc(100% - 18px) center #FFF;
}

.calc-form .form-control,
.select2-container .select2-selection--single {
    border: 1px solid rgba(232, 232, 232, 1);
    border-radius: 10px;
    height: 45px;
}

.calc-form .form-control::placeholder {
    color: rgba(150, 150, 150, 1);
    opacity: 1; /* Firefox */
    font-size: 14px;
}

.calc-form .form-control::-ms-input-placeholder { /* Edge 12 -18 */
    color: rgba(150, 150, 150, 1);
    font-size: 14px;
}

.btn-calc-submit {
    background: rgba(206, 153, 38, 1);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #FFF;
    padding: 12px 69px 12px 69px;
}

.btn-calc-submit:hover {
    background-color: #FFF;
    border-color: var(--main-color);
    color: var(--main-color);
}
/* form-sec */

/*results-calc*/
.results-calc {
    border-radius: 16px;
    background: rgba(255, 255, 255, 1);
    padding: 24px 40px;
    margin-top: -52px;
    position: relative;
    z-index: 10;
    max-width: calc(100% - 80px);
    margin-right: auto;
    margin-left: auto;
    box-shadow: 0px 10px 60px 0px rgba(38, 45, 118, 0.08);
}
/*results-calc*/

/**
 * 1. The `reverse` animation direction plays the animation backwards
 *    which makes it start at the stroke offset 100 which means displaying
 *    no stroke at all and animating it to the value defined in the SVG
 *    via the inline `stroke-dashoffset` attribute.
 * 2. Rotate by -90 degree to make the starting point of the
 *    stroke the top of the circle.
 * 3. Using CSS transforms on SVG elements is not supported by Internet Explorer
 *    and Edge, use the transform attribute directly on the SVG element as a
 * .  workaround (https://markus.oberlehner.net/blog/pure-css-animated-svg-circle-chart/#part-4-internet-explorer-strikes-back).
 */
.circle-chart__circle {
    animation: circle-chart-fill 2s reverse; /* 1 */
    transform: rotate(-90deg); /* 2, 3 */
    transform-origin: center; /* 4 */
}

/**
 * 1. Rotate by -90 degree to make the starting point of the
 *    stroke the top of the circle.
 * 2. Scaling mirrors the circle to make the stroke move right
 *    to mark a positive chart value.
 * 3. Using CSS transforms on SVG elements is not supported by Internet Explorer
 *    and Edge, use the transform attribute directly on the SVG element as a
 * .  workaround (https://markus.oberlehner.net/blog/pure-css-animated-svg-circle-chart/#part-4-internet-explorer-strikes-back).
 */
.circle-chart__circle--negative {
    transform: rotate(-90deg) scale(1,-1); /* 1, 2, 3 */
}

.circle-chart__info {
    animation: circle-chart-appear 2s forwards;
    opacity: 0;
    transform: translateY(0.3em);
}

@keyframes circle-chart-fill {
    to { stroke-dasharray: 0 100; }
}

@keyframes circle-chart-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.circle-chart__percent {
    /*font-size: 14px;*/
    font-weight: 800;
    line-height: 19px;
    color: rgba(36, 52, 101, 1);
}

.chart-sm-item p {
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    color: rgba(64, 68, 99, 1);
}

/*calc-result-tabs*/
.calc-result-tabs {
    background: rgba(255, 255, 255, 1);
    padding: 40px;
    border-radius: 16px;
}

.calc-result-tabs .nav-tabs .nav-item.show .nav-link,
.calc-result-tabs .nav-tabs .nav-link.active,
.calc-result-tabs .nav-tabs .nav-item .nav-link,
.calc-result-tabs .nav-tabs .nav-item .nav-link:hover {
    border-color: transparent !important;
}

.calc-result-tabs .nav-tabs .nav-item .nav-link {
    text-align: center;
    color: rgba(232, 232, 232, 1);
    font-size: 12px;
    font-weight: 600;
    line-height: 21px;
    transition: all 0.4s ease;
    position: relative;
}

.calc-result-tabs .nav-tabs .nav-item .nav-link::after {
    content: '';
    display: block;
    width: 100%;
    height: 0;
    background-color: var(--main-color);
    position: absolute;
    top: calc(100% - 1px);
    border-radius: 5px;
    opacity: 0;
    transition: all 0.2s linear;
    left: 0;
}

.calc-result-tabs .nav-tabs .nav-item .nav-link figure {
    height: 76px;
    width: 76px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

.calc-result-tabs .nav-tabs .nav-item .nav-link img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
    object-fit: contain;
    width: 100%;
    height: 100%;
    object-position: center;
}

.calc-result-tabs .nav-tabs .nav-item.show .nav-link,
.calc-result-tabs .nav-tabs .nav-link.active {
    color: rgba(36, 52, 101, 1);
}

.calc-result-tabs .nav-tabs .nav-item.show .nav-link::after,
.calc-result-tabs .nav-tabs .nav-link.active::after {
    height: 3px;
    opacity: 1;
}

.calc-result-tabs .nav-tabs .nav-item.show .nav-link img,
.calc-result-tabs .nav-tabs .nav-link.active img {
    filter: none;
    opacity: 1;
}

.danger-text,
.success-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    padding: 8px 10px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.danger-text {
    color: rgba(224, 0, 27, 1);
}

.success-text {
    color: rgba(0, 164, 26, 1);
}

.list-res li {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    margin-bottom: 30px;
}

.list-res li:last-child {
    margin-bottom: 0 !important;
}

.list-res li span {
    color: rgba(224, 0, 27, 1);
    font-weight: bold;
}

.succes-res li span {
    font-weight: bold;
    color: rgba(0, 164, 26, 1);
}

label.error {
    color: var(--danger);
    margin-top: 5px;
    display: block;
}

.select2-container {
    display: block;
}

.calc-form .fom-group {
    display: flex;
    flex-direction: column;
}

.calc-form .fom-group label.error {
    order: 3;
}
/*calc-result-tabs*/

@keyframes rotateMeter {
    0% {
        transform: rotate(-140deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes fillMeter {
    0% {
        opacity: 0;
        /*mask: none;*/
        width: 0;
    }
    100% {
        /*mask: url(#path-7-inside-6_188_474);*/
        width: 100%;
        opacity: 1;
    }
}

#meterIndicator {
    transform-origin: center;
    animation: rotateMeter 1.5s linear alternate;
    animation-delay: 2s;
}

#bg-gradient-meter {
    /*fill: white;*/
    animation: fillMeter 1.5s linear alternate;
}

.border-right-custom {
    border-right: 1px solid rgba(232, 232, 232, 1)
}

.calc-result-tabs .swiper-button-next, .calc-result-tabs .swiper-button-prev {
    display: block !important;
}

.calc-result-tabs .swiper-button-next::after, .calc-result-tabs .swiper-button-prev::after {
    font-size: 20px;
    color: #333;
    width: 35px;
    height: 35px;
    background-color: #e3e3e3;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    display: block !important;
}



@media(max-width: 1200px) {


    .right-about {
        position: static;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 35px;
    }

    .calc-header img {
        height: 110px;
    }

    .calc-header h1 {
        font-size: 22px;
        line-height: 38px;
    }

    .calc-header p {
        font-size: 14px;
        line-height: 22px;
    }
}

@media(max-width: 991px) {
    .slider-caption {
        top: 100px;
        transform: none;
    }

    .slider-caption h1 {
        font-size: 28px;
    }

    .sec-header h3, .sec-header h4, .sec-header h5, .sec-header h1 {
        font-size: 30px;
    }

    .why-item {
        padding: 20px 25px;
        text-align: center;
    }

    .step-item figure {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }

    .step-item figure img {
        width: 28px;
        height: 28px;
    }

    .download-now h3 {
        font-size: 18px;
        line-height: 30px;
    }

    .download-now h3 b {
        font-size: 25px;
    }

    .faq-img {
        height: 200px;
    }

    .question-item {
        height: auto;
    }

    .footer-nav a {
        font-size: 13px;
        padding: 5px 8px;
    }

    .page-image {
        height: 250px;
    }

    .page-title h1,
    .safeer-div h4 {
        font-size: 34px;
    }

    .page-image {
        margin-bottom: 30px;
    }

    .ord-1 {
        order: 1;
    }

    .ord-2 {
        order: 2;
    }

    .dropdown-menu {
        width: 100%;
        min-width: 100%;
    }

    .map-in-page {
        height: auto !important;
        margin-bottom: 20px;
    }

    .calculator-map {
        position: static;
        width: 100%;
        margin-top: 30px;
    }

    .map-in-page #map {
        height: 340px;
        z-index: 1;
    }

    #pac-input {
        width: calc(100% - 20px) !important;
        left: 10px !important;
        right: 10px !important;
        top: 54px !important;
    }

    .how-it-works .donload-buttons {
        margin-bottom: 25px;
    }

    .calc-header::after {
        display: none;
    }

    .calc-header {
        padding-top: 40px;
        padding-bottom: 150px;
    }

    .form-sec {
        margin-top: -130px;
        padding: 25px 28px 104px 28px;
    }

    .chart-sm-item {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .results-calc{
        padding: 12px 20px;
        max-width: calc(100% - 18px);
    }

    .chart-sm-item p {
        font-size: 12px;
    }

    .border-right-custom {
        border: none;
    }

    .list-res {
        margin-bottom: 20px !important;
    }
}

@media(max-width: 768px) {
    .header-search form label {
        display: none !important;
    }

    .search-btn-sm{
        display: block;
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        z-index: 99;
        width: 100%;
    }

    .search-btn-sm .btn {
        padding: 8px 35px;
        border-radius: 25px;
        -webkit-border-radius: 25px;
        -moz-border-radius: 25px;
        -ms-border-radius: 25px;
        -o-border-radius: 25px;
        color: var(--main-color);
        font-family: 'medium', 'bold', sans-serif;
    }

    .slider-caption {
        text-align: center;
    }

    .slider-caption h1 {
        font-size: 20px;
    }

    .slider-caption p,
    .why-item p,
    .step-item p,
    .sec-header p,
    .question-item p, .question-item li {
        font-size: 14px;
        line-height: 25px;
    }

    .slider-caption a,
    .how-it-works-tabs.nav-pills .nav-link {
        font-size: 13px !important;
    }

    .main-slider .carousel-indicators,
    .header-search{
        display: none;
    }

    .sec-header h3, .sec-header h4, .sec-header h5, .sec-header h1, .safeer-div h4 {
        font-size: 25px;
    }

    .why-item h4,
    .step-item h3, .step-item h4 {
        font-size: 17px;
    }

    .download-now a {
        width: 100%;
        margin-top: 15px;
    }

    .grid-item, .grid-item figure {
        height: 200px !important;
    }

    .grid-item {
        width: 49%;
    }

    .grid-item figure .gallery-item-caption {
        top: 78% !important;
    }

    .grid-item:hover figure .gallery-item-caption {
        top: 0 !important;
    }

    .faq-img {
        display: none;
    }

    .contact-img {
        display: none;
    }

    .footer-nav,
    .social-nav ul {
        justify-content: center;
    }

    .social-nav ul {
        margin-top: 10px;
    }

    .inner-h1 i {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 30px;
    }

    .inner-h1 h4,
    .build-text h4,
    .title-covid h4,
    .title-covid h3 {
        font-size: 20px;
    }

    .general-item h5 {
        font-size: 16px;
    }

    .text-strip, .text-strip p, .text-strip li, .text-strip pre, .text-strip span, .text-strip strong, .text-strip i,
    .build-text p {
        font-size: 14px;
        line-height: 25px;
    }

    .page-title h1 {
        font-size: 28px;
    }

    .build-text h4::before {
        width: 14px;
        height: 14px;
    }

    .building-img {
        height: auto;
        max-height: 500px;
    }

    .building-img img {
        max-height: 500px;
    }

    .faq-collapse-item .plus-minus-icon {
        width: 30px;
        height: 30px;
        line-height: 30px;
        flex: 0 0 30px;
        font-size: 16px;
    }

    .faq-collapse-item h5,
    .nav-tabs.faq-tabs .nav-link,
    .safeer-div p, .safeer-div li {
        font-size: 16px;
    }

    .faq-collapse-item .text-strip {
        margin-left: 55px;
    }

    .single-image {
        height: 350px;
    }

    .promo a {
        width: auto;
        min-width: auto;
        margin-bottom: 10px;
        font-size: 16px;
    }

    .nav-tabs.faq-tabs .nav-link {
        padding: 6px 5px;
    }

    .navigations {
        padding: 0 15px;
        width: 100%;
    }

    #carousel-custom-dots {
        max-width: 100%;
    }

    .scren-nav button.owl-next {
        right: 15px;
        bottom: 0;
    }

    .scren-nav button.owl-prev {
        left: 15px;
        bottom: 0;
    }

    .covid-hed h3, .covid-hed h4 {
        font-size: 18px;
    }

    .text-strip-safe,
    .text-strip-safe p,
    .text-strip-safe span,
    .text-strip-safe div,
    .text-strip-safe pre,
    .text-strip-safe li,
    .text-strip-safe a,
    .covid-steps ul li {
        font-size: 14px;
    }

    .covid-hed figure img {
        object-position: center;
    }

    .result-item figure {
        height: 115px;
    }

    .result-item h4 {
        font-size: 18px;
    }

    .res-list li h5 {
        font-size: 22px;
    }

    .calc-form label,
    .calc-form .form-control,
    .calc-form .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 12px;
    }
    .calc-form .form-control::placeholder {
        color: rgba(150, 150, 150, 1);
        opacity: 1; /* Firefox */
        font-size: 12px;
    }

    .calc-form .form-control::-ms-input-placeholder { /* Edge 12 -18 */
        color: rgba(150, 150, 150, 1);
        font-size: 12px;
    }

    .calc-header::before {
        display: none;
    }

    .calc-header img {
        height: 80px;
        margin-bottom: 14px;
    }

    .calc-header h1 {
        font-size: 20px;
        line-height: 32px;
    }

    .btn-calc-submit {
        padding: 10px 50px 10px 50px;
        width: 100%;
    }

    .chart-sm-item {
        flex-direction: column;
    }

    .chart-sm-item .flex-grow-1 {
        margin: 0 !important;
        text-align: center;
    }
}

@media(max-width: 576px) {
    .footer-nav {
        flex-wrap: wrap;
    }

    .footer-nav a {
        flex: 0 0 50%;
        text-align: center;
        margin-bottom: 10px;
    }

    .calc-result-tabs .nav-tabs .nav-item .nav-link figure {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

    .list-res li {
        font-size: 14px;
        line-height: 20px;
    }
}

@media(max-width: 500px) {
    .grid-item,
    .rafeeq-form .btn {
        width: 100%;
    }

    .right-about {
        width: 100%;
    }

    .circles-to-building-test {
        width: 200px;
        height: 200px;
        box-shadow: 0 0 0 20px #fbfbfb;
    }

    .building-img {
        width: 180px;
    }

    .single-image {
        height: 200px;
    }

    .promo a {
        width: 100%;
        font-size: 14px;
    }

    .nav-tabs.faq-tabs {
        border-bottom: none !important;
        justify-content: center;
    }

    .nav-tabs.faq-tabs .nav-item {
        flex: 0 0 33.3333333%;
    }

    .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
        border-color: #707070 !important;
    }

    .nav-tabs.faq-tabs .nav-link  {
        margin-bottom: 15px;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
    }
}

@media (max-width: 480px) {
    .view-more a {
        width: 100%;
    }

    .svg-circle svg {
        width: 250px !important;
    }

    .step-points {
        width: 272px;
    }

    .nav-tabs.faq-tabs .nav-item {
        flex: 0 0 auto;
        margin-left: 10px;
    }

    .nav-tabs.faq-tabs .nav-link {
        padding: 6px 8px;
    }

    .how-it-works .donload-buttons a {
        width: 100%;
    }

    .results-calc .col-6 {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

@media(max-width: 380px) {
    .how-it-works-tabs {
        flex-direction: column;
    }

    .how-it-works-tabs.nav-pills .nav-link {
        margin-top: 10px;
    }

    .slider-caption a {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 15px;
    }

    .footer-nav a {
        flex: 0 0 100%;
    }

    .members-table-title {
        min-width: 200px;
        font-size: 15px;
    }
}
/* Media Query */
</pre></body></html>