/* 
/ Page: *
/ Project: HOA Auto import
/ --------------------------
/ Creator:  Sharia.Design 👽
/ Web: https://Sharia.Design/ 💻
/ year: 2021 ⏳
*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --blue: #1140c8;
    --red: #ff3c3c;
    --green: #0dd661;
    --orange: #ffa53c;
    --black: #111213;
    --dark: #1d1f25;
    --dark-2: #434650;
    --dark-3: #c5c8d0;
    --gray-f6: #f6f6f6;
    --white: #ffffff;
    --bg-color: #ececec;
    --blur: rgba(17, 64, 200, 0.69);
    --dur: 0.38s;
    --bzr: cubic-bezier(0.125, 0.7, 0.715, 0.755);
    --shadow-1: 0px 4px 22px rgba(29, 31, 37, 0.11);
    /* --- Calculation */
    --screen-width: 83%;
    --screen-padding: calc(100%-var(--screen-width) / 2);
    --mob-width: 94%;
    --mob-padding: calc(100%-var(--mob-width) / 2);
}

@font-face {
    font-family: "dejavu";
    src: url("../fonts/DejaVuSansMono.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "dejavu";
    src: url("../fonts/DejaVuSansMono-Bold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html,
body {
    margin: 0 0 29px 0;
    padding: 0;
    font-size: 14px;
    line-height: 146%;
    scroll-behavior: smooth;
    background: var(--bg-color);
    color: var(--dark);
    font-family: dejavu;
    font-weight: normal;
    font-style: normal;
    /* overflow-x: hidden; */
}

/*** Scroll Bar ***/
body::-webkit-scrollbar {
    width: 11px;
}

body::-webkit-scrollbar-track {
    background-color: var(--white);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--dark-3);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

/*** Selection ***/
::-moz-selection {
    color: var(--white);
    background: var(--blue);
}

::selection {
    color: var(--white);
    background: var(--blue);
}

a {
    text-decoration: none;
}

ul {
    padding: 0;
    list-style: none;
    list-style-type: none;
}

button {
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
}

/*** Glboal Vars  ***/
.trans {
    transition: var(--dur) var(--bzr);
    -webkit-transition: var(--dur) var(--bzr);
    -moz-transition: var(--dur) var(--bzr);
    -ms-transition: var(--dur) var(--bzr);
    -o-transition: var(--dur) var(--bzr);
}

.wrap-69 {
    margin: 0 auto;
    padding: 0 69px;
}

.wrap {
    margin: 0 auto;
    width: 83%;
}

/* --- Global Styles --- */

/* Classes */
.none {
    display: none !important;
}

.hide {
    opacity: 0 !important;
    visibility: hidden !important;
}

.block {
    display: block !important;
}

.content-margin {
    margin: 116px 0 0 0;
}

.pd-69 {
    padding-left: 69px;
    padding-right: 69px;
}

.pt-47 {
    padding-top: 47px;
    padding-bottom: 47px;
}

.pt-56 {
    padding-top: 56px;
    padding-bottom: 56px;
}

.pt-69 {
    padding-top: 69px;
    padding-bottom: 69px;
}
.not-allow {
    cursor: no-drop;
}

/* Classes */

/* Inputs */

.hoa-input {
    margin: 0;
    padding: 0 4px;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--dark-2);
    line-height: 38px;
    font-size: 16px;
    color: var(--dark);
    font-family: dejavu;
    font-weight: bold;
    outline: none;
}

.hoa-input:hover {
    border-bottom: 1px solid var(--blue);
}

.hoa-input:focus {
    border-bottom: 2px solid var(--blue);
}

/* #end Inputs */
/* --- Top Bar */
.top-bar {
    margin: 0;
    padding: 11px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-color);
    overflow: hidden;
}

.company-name {
    font-size: 12px;
    color: var(--black);
    font-weight: lighter;
}

.top-time {
    margin-left: 22px;
    display: inline-block;
    font-size: 11px;
    color: var(--black);
}

.top-account {
    font-size: 12px;
    color: var(--dark);
}

.top-account--icon {
    width: 16px;
    height: 16px;
    background: url(../icons/user-outline.svg);
    vertical-align: middle;
}

.top-account span {
    display: inline-block;
    margin-left: 5px;
}

.top-account:hover {
    color: var(--blue);
}

/* --- Header */
.header {
    position: fixed;
    padding: 0 29px;
    top: 38px;
    height: 92px;
    background: var(--white);
    width: 83%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 11;
    border-radius: 4px 4px 0 0;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    -ms-border-radius: 4px 4px 0 0;
    -o-border-radius: 4px 4px 0 0;
}

.header.fixed {
    top: 0;
    height: 74px;
    border-bottom: 1px solid var(--dark-3);
    z-index: 69;
}

.header-logo {
    height: 47px;
}

.nav > a {
    padding: 15px 11px;
    font-size: 14px;
    font-weight: bold;
    color: var(--dark);
    cursor: pointer;
    display: inline-block;
    background-color: transparent;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.nav > a:hover {
    color: var(--blue);
    background: var(--white);
    box-shadow: var(--shadow-1);
}

.nav > a:active {
    color: var(--white);
    background: var(--dark);
    box-shadow: var(--shadow-1);
}

.nav > a.active {
    color: var(--white);
    background: var(--blue);
    box-shadow: var(--shadow-1);
}

/* -- Sub menu */
.sub-menu-container {
    top: 200px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    background: rgba(17, 64, 200, 0.83);
    z-index: 22;
}

.sub-menu-container.show {
    opacity: 1;
    visibility: visible;
}

.sub-menu {
    padding: 11px 69px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sub-menu > li {
    margin: 0 11px;
}

.sub-menu-item {
    display: inline-block;
    padding: 22px;
    color: var(--white) !important;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.sub-menu-item:hover {
    background: var(--white);
    color: var(--dark) !important;
}

.sub-menu-icon {
    display: block;
    height: 56px;
}

.sub-menu-title {
    margin: 11px 0 0 0;
    display: block;
    font-size: 14px;
    font-weight: bold;
}

.sub-menu-desc {
    margin: 11px 0 0 0;
    font-size: 12px;
}

.header-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-switcher {
    padding: 5px 11px;
    margin-right: 29px;
    background: transparent;
    color: var(--dark);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.lang-switcher:hover {
    box-shadow: var(--shadow-1);
    color: var(--dark);
}

.lang-switcher:hover .current-lang {
    opacity: 1;
}

.lang-switcher.active,
.lang-switcher:active {
    box-shadow: var(--shadow-1);
    background: var(--dark);
    color: var(--white);
}

.current-lang {
    cursor: pointer;
    opacity: 0.83;
}

#current-lang-flag {
    height: 11px;
}

.lang-arrow {
    margin: 0;
    vertical-align: middle;
    background: url(../icons/caret-down-8.svg);
    width: 8px;
    height: 8px;
}

.current-lang-name {
    margin: 0;
    font-size: 12px;
    display: inline-block;
    vertical-align: middle;
}

.current-lang:hover {
    opacity: 1;
}

.select-lang {
    position: absolute;
    top: 100px;
    visibility: hidden;
    opacity: 0;
    background: var(--white);
    box-shadow: var(--shadow-1);
    overflow: hidden;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    z-index: 23;
}

.select-lang-item {
    display: block;
    width: 100%;
    padding: 5px 22px 5px 11px;
    color: var(--dark);
    font-size: 12px;
    background: transparent;
}

.select-lang-item:hover {
    color: var(--white);
    background: var(--blue);
}

.select-lang.show {
    opacity: 1;
    visibility: visible;
    top: 65px;
}

.lang-icon {
    height: 11px;
    display: inline-block;
    vertical-align: middle;
}

.header-cta:visited,
.header-cta {
    margin: 0;
    padding: 16px 22px;
    font-size: 14px;
    color: #fff;
    background: var(--blue);
    box-shadow: 0px 7px 11px rgba(14, 50, 155, 0.22);
    border-radius: 5px;
    cursor: pointer;
    will-change: transform;
}

.header-cta:hover {
    box-shadow: none;
    background: var(--dark);
    color: var(--white);
}

.header-cta:active {
    background: var(--black);
    box-shadow: 0px 7px 11px rgba(14, 50, 155, 0.22);
    transform: scale(0.98);
    -webkit-transform: scale(0.98);
    -moz-transform: scale(0.98);
    -ms-transform: scale(0.98);
    -o-transform: scale(0.98);
}

/* Scrollgress */
.scrollgress {
    position: absolute;
    right: 5%;
    bottom: 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 8px 11px;
    z-index: 999;
    overflow: hidden;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.scrollgress:hover {
    box-shadow: var(--shadow-1);
}

.scrollgress:active {
    box-shadow: none;
}

.scrollgress.fixed {
    position: fixed;
    right: 11px !important;
    bottom: 22px !important;
}

.scrollgress-text {
    margin-right: 11px;
    font-size: 12px;
    color: var(--white);
}

.scroll-circle {
    position: relative;
}

.scroll-arrow-cont {
    position: absolute;
    top: 10px;
    left: 10px;
}

#scroll-arrow {
    fill: var(--white);
}

.scrollgress.fixed #scroll-arrow {
    fill: var(--blue);
}

.scrollgress.fixed .scroll-arrow-cont {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.scrollgress-text.show {
    color: var(--blue);
}

.progress-full {
    fill: none;
    stroke: var(--gray-f6);
}

.scroll-progress {
    transform: rotate(-90deg);
    transform-origin: center;
    fill: none;
    stroke: var(--blue);
}

/* #end Scrollgress */

/* Hidden UI */

.blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--blur);
    z-index: 998;
    opacity: 0;
    visibility: 0;
    display: none;
}

.blur.show {
    opacity: 1;
    visibility: visible;
    display: block;
}

/* #end Hidden UI */

/* HOA Icons */
.hoa-icon {
    display: inline-block;
    background-repeat: no-repeat;
}

/* #end HOA Icons */

/* #end Global Styles */

/* Footer */
.footer {
    margin-top: 69px;
    width: 100%;
    overflow: hidden;
}

.footer-top {
    margin: 0;
    padding: 22px 0;
    width: 100%;
    background: var(--blue);
    overflow: hidden;
}

.footer-top-container {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-top-block {
    margin-right: 22px;
}

.footer-top-block:last-child {
    margin-right: 0;
}

.footer-top-contact {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-top-contact--icon {
    margin-right: 11px;
    display: inline-block;
    width: 38px;
    height: 38px;
    background-repeat: no-repeat;
}

.ft-top-envelope {
    background: url(../icons/ft-envelope.svg);
}

.ft-top-phone {
    background: url(../icons/ft-phone.svg);
}

.ft-top-map {
    background: url(../icons/ft-map.svg);
}

.ft-top-contact-h {
    margin: 0;
    font-size: 14px;
    color: var(--white);
    font-weight: bold;
}

.ft-top-contact-link {
    margin: 0;
    font-size: 12px;
    color: var(--white);
    text-decoration: none;
    font-weight: lighter;
}

.footer-top-contact:hover .ft-top-contact-h,
.footer-top-contact:hover .footer-top-contact--icon {
    opacity: 0.83;
}

.ft-top-contact-link:hover {
    text-decoration: underline;
}

.ft-top-social-h {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    color: var(--white);
}

.ft-social-list {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ft-social-item {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ft-social-item:last-child {
    margin-left: 29px;
}

.ft-social-item:hover {
    opacity: 0.83;
}

.ft-social-icon {
    display: inline-block;
    width: 38px;
    height: 38px;
    background-repeat: no-repeat;
}

.ft-fb {
    background: url(../icons/ft-fb.svg);
}

.ft-ig {
    background: url(../icons/ft-ig.svg);
}

.ft-social-name {
    margin-left: 5px;
    display: inline-block;
    font-size: 14px;
    font-weight: lighter;
    color: var(--white);
}

.footer-middle {
    margin-top: 29px;
    padding: 0;
    width: 100%;
    background: var(--dark);
    overflow: hidden;
}

.footer-container {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ft-company {
    max-width: 29%;
}

.ft-logo {
    display: block;
}

.ft-logo:hover {
    opacity: 0.83;
}

.ft-logo-img {
    height: 56px;
}

.ft-company-text {
    margin-top: 29px;
    width: 92%;
    font-size: 14px;
    font-weight: lighter;
    color: var(--white);
}

.ft-menu-title {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: var(--white);
    white-space: nowrap;
}

.ft-menu {
    margin-top: 22px;
    list-style-type: none;
}

.ft-menu-item {
    margin-bottom: 11px;
    display: block;
    width: 100%;
}

.ft-menu-a {
    display: block;
    font-size: 14px;
    font-weight: lighter;
    color: var(--dark-3);
}

.ft-menu-a:hover {
    color: var(--gray-f6);
}

.footer-bottom {
    margin: 0;
    padding: 11px 0;
    width: 100%;
    background: var(--blue);
}

.copy {
    font-size: 12px;
    text-align: center;
    font-weight: lighter;
    color: var(--white);
}

.ft-hoa {
    font-weight: bold;
}

/* #end Footer */

/* Footer Book: */
.footer-book {
    margin: 69px 0;
    background: var(--dark);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-book__form-container {
    margin-right: 111px;
}

.footer-book__text {
    max-width: 38%;
    color: var(--white);
}

.footer-book__title {
    margin: 0;
    color: var(--white);
    font-size: 29px;
    line-height: 160%;
}

.footer-book__desc {
    margin-top: 11px;
    color: var(--white);
    font-size: 18px;
}

.ft-book-input-container {
    margin-top: 47px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ft-book-input-group {
    width: calc(50% - 11px);
}

.ft-book-label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: var(--white);
    cursor: pointer;
}

.ft-book--error {
    margin: 2px 0;
    display: block;
    font-size: 12px;
    font-weight: bold;
    color: var(--red);
}

.ft-book-input {
    margin-top: 11px;
    padding: 0 22px;
    font-family: dejavu;
    width: 100%;
    border: 2px solid transparent;
    line-height: 38px;
    background: var(--white);
    outline: none;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.ft-book-input:hover {
    border: 2px solid var(--blue);
}

.ft-book-input:focus {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--blue);
}

.ft-book-input.error {
    border: 2px solid var(--red);
}

.ft-book-input.success {
    border: 2px solid var(--blue);
}

.ft-book-send {
    margin-top: 22px;
    padding: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 38px;
    color: var(--white);
    outline: none;
    cursor: pointer;
    background: var(--blue);
    will-change: transform;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.ft-book-send:hover {
    background: var(--black);
}

.ft-book-send:active {
    color: var(--blue);
    border: 1px solid var(--blue);
    transform: scale(0.98);
    -webkit-transform: scale(0.98);
    -moz-transform: scale(0.98);
    -ms-transform: scale(0.98);
    -o-transform: scale(0.98);
}

.ft-book-text__title {
    margin: 0;
    display: block;
    width: 100%;
}

.ft-book-icon {
    display: inline-block;
    vertical-align: middle;
    background: url(../icons/footer-book-icon-47.svg);
    width: 47px;
    height: 47px;
}

.footer-book__text h4 {
    font-size: 18px;
    display: inline-block;
    color: var(--white);
}

.footer-book__text ul {
    margin-top: 29px;
    width: 100%;
}

.footer-book__text ul li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 22px;
    width: 100%;
    color: var(--white);
    font-size: 14px;
    line-height: 146%;
}

.footer-book__text ul li:before {
    content: "■";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
    color: var(--white);
    transition: var(--dur) var(--bzr);
    -webkit-transition: var(--dur) var(--bzr);
    -moz-transition: var(--dur) var(--bzr);
    -ms-transition: var(--dur) var(--bzr);
    -o-transition: var(--dur) var(--bzr);
}

.footer-book__text ul li:hover:before {
    color: var(--blue);
}

/* ----Footer Book--- */

/* Calculate Bottom: */
.calculate-bottom {
    margin: 0 0 69px 0;
    padding: 29px 69px;
    width: 100%;
    background: var(--gray-f6);
    overflow: hidden;
}

.cb-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.alert {
    padding: 11px 22px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.info-alert {
    background: #e7ecfc;
    color: var(--blue);
}

.alert-top {
    margin: 0 0 11px 0;
}

.alert-icon {
    width: 29px;
    height: 29px;
    vertical-align: middle;
}

.info-alert-icon {
    background: url(../icons/alert-info-icon.svg);
}

.alert-title {
    margin: 0;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
}

.alert-text {
    width: 100%;
}

.alert-text p {
    font-size: 12px;
    line-height: 169%;
    margin-bottom: 11px;
}

.alert-source {
    margin-top: 22px;
    text-align: right;
    color: var(--dark);
}

.alert-source-txt {
    font-size: 12px;
    display: inline-block;
}

.alert-source-link {
    vertical-align: middle;
    display: inline-block;
    text-decoration: underline;
    font-size: 12px;
    color: var(--dark);
}

.alert-source-link:hover {
    color: var(--blue);
}

/* Others Links */
.cb-others {
    margin-left: 69px;
    min-width: 360px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.cb-others.horizon {
    flex-direction: row;
    justify-content: space-between;
    min-width: 100%;
    margin-left: 0;
}

.cb-others.horizon > * {
    margin-right: 11px;
}

.cb-other-item {
    margin-bottom: 11px;
    padding: 22px 0 22px 38px;
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid var(--dark-2);
    color: var(--dark);
    font-size: 16px;
    font-weight: bold;
    will-change: transform;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.cb-other-item.active,
.cb-other-item:hover {
    background: var(--dark);
    color: var(--white);
    transform: scale(0.98);
    -webkit-transform: scale(0.98);
    -moz-transform: scale(0.98);
    -ms-transform: scale(0.98);
    -o-transform: scale(0.98);
}

.cb-other-item:active {
    background: var(--black);
    color: var(--white);
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.cb-other-icon {
    width: 38px;
    height: 38px;
    vertical-align: top;
}

.cb-icon--deliver {
    background: url(../icons/other-deliver.svg);
}

.cb-icon--container {
    background: url(../icons/other-container.svg);
}

.cb-icon--clearance {
    background: url(../icons/other-clear.svg);
}

.cb-other--name {
    margin: 0;
    padding-left: 11px;
    display: inline-block;
    vertical-align: top;
}

/* Others Links */

/* :Calculate Bottom */

/* Tooltip: */
.tooltip {
    position: relative;
}
.tooltip::after {
    content: attr(title);
    position: absolute;
    text-align: left;
    max-width: 290px;
    top: -47px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    padding: 6px 11px;
    background: rgba(29, 31, 37, 0.92);
    color: var(--white);
    font-size: 12px;
    z-index: 11;
    border: 1px solid var(--black);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    transition: var(--dur) var(--bzr);
    -webkit-transition: var(--dur) var(--bzr);
    -moz-transition: var(--dur) var(--bzr);
    -ms-transition: var(--dur) var(--bzr);
    -o-transition: var(--dur) var(--bzr);
}
.tooltip:hover::after {
    top: -33px;
    opacity: 1;
    visibility: visible;
}
/* : Tooltip */

/* Paginatons */
nav[role=navigation] {
    margin-bottom: 69px;
    display: flex;
    justify-content: center;
    align-items: center;
}
nav[role=navigation] a {
    margin: 0 29px;
    display: inline-block;
    padding: 11px 29px;
    background: var(--bg-color);
    border-radius: 2px;
    border: 1px solid var(--dark);
    color: var(--dark);
    will-change: transform;
    transition: var(--dur) var(--bzr);
}
nav[role=navigation] a:nth-child(2) {
    background: var(--dark);
    color: var(--white);
}
nav[role=navigation] a:hover {
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white)
}
nav[role=navigation] a:active {
    transform: scale(.98);
}

/* /. Paginatons */

/* Sharia.Design */
.sharia {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 11px 0;
    text-align: center;
    z-index: -1;
}

.sharia-icon {
    font-size: 11px;
}

.sharia-by {
    font-size: 11px;
}

.sharia-link {
    padding: 0 11px;
    color: var(--dark);
    position: relative;
}

.sharia-link:hover {
    color: var(--black);
}

.sharia-link::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    width: 11px;
    height: 111%;
    background: var(--black);
    transition: 0.11s ease-in-out;
    -webkit-transition: 0.11s ease-in-out;
    -moz-transition: 0.11s ease-in-out;
    -ms-transition: 0.11s ease-in-out;
    -o-transition: 0.11s ease-in-out;
}

.sharia-link:hover::before {
    left: 100%;
    width: 2px;
}

/* Sharia.Design */


/* Footer Book Response */
.ft-book-response {
    margin-top: 11px;
    width: 100%;
    background: var(--black);
    text-align: center;
    color: #fff;
    padding: 22px 0;
}
.ft-book-response .call-res-title {
    margin-bottom: 22px;
}


/* /. Footer Book Response */

/* Responsive: */
.header-burger {
    position: absolute;
    top: 13px;
    right: 11px;
    cursor: pointer;
    display: none;
    z-index: 9999;
}
.burger {
    width: 29px;
    height: 29px;
    fill: var(--dark);
}
.header-burger:hover .burger {
    fill: var(--blue);
}
.responsive-menu {
    position: fixed;
    padding: 69px 38px;
    top: 0;
    right: -100vw;
    background: var(--bg-color);
    height: 100vh;
    width: 100%;
    transform: scale(0.69);
    will-change: transform;
    z-index: 999;
}
.responsive-menu.show {
    right: 0;
    transform: scale(1);
}
.close-burger {
    position: absolute;
    top: 29px;
    right: 4%;
    width: 29px;
    height: 29px;
    cursor: pointer;
    fill: var(--dark);
}
.close-burger:hover {
    fill: var(--blue);
}
.menu-logo {
    position: absolute;
    top: 22px;
    left: 4%;
}
.menu-logo-img {
    display: block;
    height: 38px;
}
.menu-lang-container {
    margin: 22px 0;
    padding-bottom: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--dark-3);
}
.menu-lang-item {
    display: block;
    width: 100%;
    line-height: 47px;
    border-radius: 4px;
    text-align: center;
    background: var(--white);
    color: var(--dark);
    box-shadow: none;
}
.menu-lang-item .lang-icon {
    height: 22px;
}
.menu-lang-item .lang-name {
    margin-left: 11px;
    font-weight: bold;
}
.menu-lang-item.active {
    background: var(--blue);
    color: var(--white);
}
.menu-lang-item:hover {
    box-shadow: var(--shadow-1);
}
.menu-lang-item:active {
    background: var(--dark);
    color: var(--white);
    box-shadow: none;
}
.menu-content {
    margin: 0;
    width: 100%;
    overflow: hidden;
}
.menu-block {
    margin-bottom: 22px;
    padding-bottom: 11px;
    border-bottom: 1px solid var(--dark-3);
}
.menu-block-title {
    margin: 0;
    font-size: 14px;
    color: var(--dark-2);
}
.menu-list {
    margin-top: 11px;
}
.menu-item {
    padding: 8px 22px;
    display: block;
    font-size: 16px;
    color: var(--dark);
    line-height: 29px;
    border-radius: 3px;
}
.menu-list > li.active .menu-item {
    background: var(--blue);
    color: var(--white);
}
.menu-item:hover {
    background: var(--dark);
    color: var(--white);
}

@media all and (max-width: 1200px) {
    /* Global */
    .wrap {
        width: 92%;
    }
    .pd-69 {
        padding-left: 29px;
        padding-right: 29px;
    }
    .header-burger {
        display: block;
    }
    /* __Global */

    /* Header : */
    .header.fixed,
    .header {
        width: 92%;
        height: 56px;
    }
    .header-logo {
        margin-top: 4px;
        height: 38px;
    }
    .nav,
    .header-right {
        display: none;
    }
    /* : Header */

    /* Footer :  */
    .footer-container,
    .footer-top-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-top-block {
        margin-right: 0px;
        margin-bottom: 29px;
    }
    .footer-block {
        margin-bottom: 29px;
    }
    .ft-company {
        max-width: 100%;
        width: 100%;
    }
    /* __Footer  */
}

@media all and (max-width: 740px) {
    /* Global */
    .wrap {
        width: 96%;
    }
    .pd-69 {
        padding-left: 22px;
        padding-right: 22px;
    }
    .pt-69 {
        padding-top: 47px;
        padding-bottom: 47px;
    }
    html,
    body {
        overflow-x: hidden;
    }
    .cb-others.horizon {
        flex-direction: column;
    }
    .cb-others.horizon > * {
        margin-right: 0;
        width: 100%;
    }
    /* __Global */

    .header.fixed,
    .header {
        width: 96%;
    }
    .company-name {
        display: none;
    }
    .top-time {
        margin-left: 0px;
    }
    .footer-top-container,
    .footer-container {
        padding-left: 22px;
        padding-right: 22px;
    }

    /* Book Footer */
    .ft-book-input-container,
    .footer-book {
        flex-direction: column;
        align-items: flex-star;
    }
    .footer-book__form-container {
        margin-right: 0px;
        width: 100%;
    }
    .ft-book-input-group {
        width: 100%;
        margin-bottom: 22px;
    }
    .ft-book-input-group:last-child {
        margin-bottom: 0px;
    }
    .footer-book__text {
        margin-top: 47px;
        max-width: 100%;
        width: 100%;
    }
    /* __ Book Footer */
}
/* :Responsive */
