/*-------------------------------*/


/*       html and body styles    */


/*-------------------------------*/

html {
    display: flex;
    width: 100%;
}

body {
    font-family: RANSans !important;
    width: 100%;
    height: 100%;
    background-color: white;
    color: #2c2c2c;
    text-align: right;
    overflow-x: hidden;
    overflow-y: auto;
}

.sticky-top{
    padding-right: 0 !important;
    margin-right: 0 !important;
}

/*******************************************/
/**         global css variables          **/
/*******************************************/
:root {
    --wide-desktop-limiter-container-width: 1115px;
    --desktop-limiter-container-width: 960px;
    --color-blue: rgba(29, 161, 243, 1);
    --color-pink: rgba(237, 13, 110, 1);
    --color-tertiary: rgba(46, 49, 146, 1);
    --color-blue-light: rgba(29, 161, 243, 0.1);
	--color-blue-hover: rgba(29, 161, 243, 0.9);
    --color-blue-gradient: rgba(15, 108, 248, 1);
    --color-warning: rgba(217, 119, 6, 1);
    --color-error: rgba(220, 38, 38, 1);
    --color-success: rgba(22, 163, 74, 1);
    --color-primary-text-dark: rgba(0, 0, 0, 0.9);
    --color-secondary-text-dark: rgba(102, 102, 102, 1);
    --color-weak-white:rgba(255, 255, 255, 0.7);
    --color-primary-light: rgba(232, 246, 254, 1);
    --color-primary-text-light: #8390b2;
    --color-pink-light: rgb(253, 231, 241);
    --color-gray: #707070;
    --color-paper: #F1F1F1;
    --color-gray-light: #8d8d8d;
    --filter-pink: brightness(0) saturate(100%) invert(16%) sepia(91%) saturate(4293%) hue-rotate(324deg) brightness(93%) contrast(100%);
    --filter-white: brightness(0) invert(1);
    --filter-blue: invert(46%) sepia(78%) saturate(1548%) hue-rotate(177deg) brightness(101%) contrast(91%);
    --filter-dark: invert(0%) sepia(100%) saturate(5%) hue-rotate(319deg) brightness(30%) contrast(100%);
    --filter-dark-blue: invert(21%) sepia(56%) saturate(1732%) hue-rotate(218deg) brightness(91%) contrast(105%);
    --filter-error: invert(19%) sepia(53%) saturate(6224%) hue-rotate(354deg) brightness(96%) contrast(80%);
    --filter-warning: invert(46%) sepia(80%) saturate(586%) hue-rotate(353deg) brightness(95%) contrast(103%);
}
/*******************************************/

/*--------------------------------*/

/*             COLORS             */

/*--------------------------------*/

.color-white {
    color: white !important;
}

.color-gray {
    color: #707070 !important;
}

.color-blue-gradient {
    color: var(--color-blue-gradient)!important;
}

.color-dark-blue {
    color: #2e3192 !important;
}

.color-blue {
    color: #1da1f3 !important;
}

.color-mid-blue {
    color: #66bff7 !important;
}

.color-light-blue {
    color: #cbe9fc !important;
}

.color-pink {
    color: #ed0d6e !important;
}

.color-error {
    color: var(--color-error) !important;
}

.color-warning {
    color: var(--color-warning) !important;
}

.color-success {
    color: var(--color-success) !important;
}

.color-tertiary {
    color: var(--color-tertiary) !important;
}

.color-primary-text-dark {
    color: var(--color-primary-text-dark) !important;
}

.color-secondary-text-dark {
    color: var(--color-secondary-text-dark) !important;
}

.covered_by_background_image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    width: 100%;
}

.back-white {
    background-color: #fff !important;
}

.back-white-smoke {
    background: #F6F6F6 !important;
}

.back-paper {
    background-color: var(--color-paper) !important;
}

.back-gray {
    background-color:  #707070 !important;
}

.back-mid-gray {
    background-color:  #cccccc !important;
}

.back-light-gray {
    background-color:  #eeeeee !important;
}

.back-lighter-gray {
    background-color:  #fafafc !important;
}

.back-ultra-dark-blue {
    background-color: #001A34 !important;
    color: white;
}

.back-dark-blue {
    background-color: #2e3192 !important;
    color: white;
}

.back-blue {
    background-color: #1da1f3 !important;
    color: white !important;
}

.back-error {
    background-color: var(--color-error) !important;
    color: white !important;
}

.back-mid-blue {
    background-color: #66bff7 !important;
}

.back-primary-blue {
    background-color: var(--color-primary-light);
}

.back-blue-light {
    background-color: var(--color-blue-light) !important;
}

.back-pastel-blue {
    background-color: rgba(27, 160, 243, 0.1) ;
}

.back-light-blue {
    background-color: #F6F8FB !important;
}

.back-blue-light {
    background-color: var(--color-blue-light);
}

.back-linear-gradient-blue {
    background: linear-gradient(97.4deg, #1DA1F3 -1.94%, #2E3191 218.74%);
}

.back-linear-gradient-dark-blue {
    background: linear-gradient(134.23deg, #0F6CF8 -12.34%, #1F14A4 115.31%);
}

.back-linear-gradient-light-blue {
    background: linear-gradient(134.23deg, #4AB4F5 -12.34%, #1A93DD 115.31%);
}

.back-linear-gradient-pink {
    background: linear-gradient(134.23deg, #F35D9E -12.34%, #ED0D6E 115.31%);
}

.back-pink {
    background-color: #ed0d6e !important;
    color: white;
    transition: 0.3s;
}

.back-pink-light {
    background-color: var(--color-pink-light) !important;
}

.back-warning {
    background-color: var(--color-warning) !important;
}

.back-success {
    background-color: var(--color-success) !important;
    color: white;
}

.back-blur {
    filter: blur(3px); 
    -webkit-filter: blur(3px);
}

.bg-1 {
    background-color: #EF476F;
}

.bg-2 {
    background-color: #FFD166;
}

.bg-3 {
    background-color: #0DE681;
}

.bg-4 {
    background-color: #1FB7EA;
}

.bg-5 {
    background-color: #5434B3;
}

.white-svg-img {
    filter: var(--filter-white);
}

.black-svg-img {
    filter: var(--filter-dark);
}

.blue-svg-img {
    filter: var(--filter-blue);
}

.pink-svg-img {
    filter: var(--filter-pink);
}

.error-svg-img {
    filter: var(--filter-error);
}

.warning-svg-img {
    filter: var(--filter-warning);
}

/*---------------------------------*/

/*             borders             */

/*---------------------------------*/

.border-2 {
    border-width:2px !important;
}

.border-style-dashed {
    border-style: dashed !important;
}

.border-style-dashed-2 {
    border: 2px dashed !important;
}

.border-white {
    border: 1px solid white !important;
}

.border-light-gray {
    border: 1px solid #cccccc !important;
}

.border-gray {
    border: 1px solid  #707070 !important;
}

.border-mid-gray {
    border: 1px solid  #0000000d !important;
}


.border-dark-blue {
    border: 1px solid #2e3192 !important;
}

.border-blue {
    border-width: 1px;
    border-style: solid;
    border-color: var(--color-blue) !important;
}

.border-mid-blue {
    border: 1px solid  #66bff7 !important;
}

.border-light-blue {
    border: 1px solid #cbe9fc !important;
}

.border-pink {
    border-width: 1px;
    border-style: solid;
    border-color: var(--color-pink) !important;
}

.border-right-pink {
    border-right: 2px solid #ed0d6e !important;
}

.border-left-pink {
    border-left: 2px solid #ed0d6e !important;
}

.border-top-pink {
    border-top: 2px solid #ed0d6e !important;
}

.border-bottom-pink {
    border-bottom: 2px solid #ed0d6e !important;
}

.border-bottom-light-gray {
    border-bottom: 1px solid #cccccc !important;
}

.border-warning {
    border-width: 1px;
    border-style: solid;
    border-color: var(--color-warning) !important;
}

.border-black {
    border: 1px solid black;
}

.border-hint-dark {
    border: 1px solid rgba(0, 0, 0, 0.4);
}

/*-------------------------------------*/
.opacity-60{
    opacity: 60%;
}

.text-12 {
    font-size: 12px !important;
}

.text-14 {
    font-size: 14px !important;
}

.text-16{
    font-size : 16px
}

.text-18{
    font-size : 18px
}

.text-20 {
    font-size: 20px !important;
}

.text-24 {
    font-size: 24px !important;
}
/*-------------------------------------*/

/*           text colors               */

/*-------------------------------------*/
.text-blue-light {
    color: var(--color-blue-light);
}
.text-weak-white {
    color: var(--color-weak-white);
}
.text-hint-dark {
    color : rgba(0, 0, 0, 0.4);
}
.text-weak-dark {
    color : rgba(0, 0, 0, 0.6)
}
.text-dark {
    color : rgba(0, 0, 0, 0.9)!important;
}
.text-primary-light {
    color : var(--color-primary-text-light)!important;
}
.text-gray-light {
    color : var(--color-gray-light)!important;
}

/*---------------------------------*/

/*             buttons             */

/*---------------------------------*/

.btn-arrow {
    width: 20px;
}

.btn.back-white {
    color: #ed0d6e;
    border: 1px solid #ed0d6e;
}

.btn.back-white:hover {
    transition-duration: 0.5s;
    background-color: #e7c0d1 !important;
}

.btn.back-blue:hover {
    transition-duration: 0.5s;
    background-color: white !important;
    border: 1px solid #1da1f3;
    color: #1da1f3 !important;
}

.btn.back-pink:hover {
    transition-duration: 0.5s;
    background-color: white !important;
    border: 1px solid #ed0d6e;
    color: #ed0d6e;
}

.btn.back-pink:hover > img {
    filter: var(--filter-pink);
}

.btn.back-dark-blue:hover {
    transition-duration: 0.5s;
    background-color: white !important;
    border: 1px solid #2e3192;
    color: #2e3192;
}

/*-------------------------------------*/

/*             font styles             */

/*-------------------------------------*/
.f-ss {
    font-size: 75%;
}

.f-s {
    font-size: 90%;
}

.f-100 {
    font-size: 100%;
}

.f-b {
    font-size: 120%;
}

.f-l {
    font-size: large;
}

.font-300 {
    font-weight: 300;
}

.font-400 {
    font-weight: 400;
}

.font-500{
    font-weight: 500 !important;
}

.font-700{
    font-weight: 700;
}

/*-----------------------------------*/

/*             positions             */

/*-----------------------------------*/
.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-0 {
    top: 0 !important;
}  

.bottom-0 {
    bottom: 0 !important;
}  

.left-0 {
    left: 0;
}

.start-0 {
    left: 0 !important;
}

.start-100 {
    left: 100% !important;
}

.end-0 {
    right: 0 !important;
}

.end-100 {
    right: 100% !important;
}

.fixed-bottom-container {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.fix-bottom {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

.translate-middle {
    transform: translate(-50%, -50%) !important;
}
  
.translate-middle-x {
    transform: translateX(-50%) !important;
}
  
.translate-middle-y {
    transform: translateY(-50%) !important;
}

.zindex-0 {
    z-index: 0;
}

.zindex-back {
    z-index: -1;
}

.zindex-1 {
    z-index: 1;
}

/*------------------------------------*/

/*             a & inputs             */

/*------------------------------------*/

a,
a:hover {
    text-decoration: none !important;
    outline: none !important;
    color: inherit;
}

input,
textarea {
    border: none;
    outline: none;
    transition: 0.2s;
}

input:focus::placeholder,
textarea:focus::placeholder {
    color: transparent;
}

textarea:hover,
textarea:active,
textarea:focus,
button:focus,
button:active,
button:hover,
label:focus,
.btn:active,
.btn.active {
    outline: none !important;
    -webkit-appearance: none;
    box-shadow: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*------------------------------*/

/*       General styles         */

/*------------------------------*/

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    line-height: 1.5 !important;
}

.cursor {
    cursor: pointer;
}

.cursor-default {
    cursor: default !important;
}

img {
    width: 100%;
    height: auto;
}

.desktop-limiter-container {
    width: 100%;
    max-width: var(--desktop-limiter-container-width);
    margin-right: auto !important;
    margin-left: auto !important;
}
.wide-desktop-limiter-container {
    width: 100%;
    max-width: var(--wide-desktop-limiter-container-width);
    margin-right: auto !important;
    margin-left: auto !important;
}

.half-round {
    border-radius: 0.5rem; /* 8px */
}

.main-round {
  border-radius: 1rem; /* 16px */
}

.round {
    border-radius: 1.5rem; /* 24px */
}

.large-round {
    border-radius: 2.0rem; /* 32px */
}

.semi-round {
  border-radius: 0.75rem; /* 12px */
}

.small-round {
    border-radius: 0.313rem; /* 5px */
}

.rounded-circle {
    border-radius: 50% !important;
}

.opacity-low {
    opacity: 0.9;
}

/*------------------------------*/

/*       Shadow styles         */

/*------------------------------*/

.shadow-sm-1 {
    box-shadow: 0 0 0.125rem rgba(14, 31, 53, 0.12);
}

.shadow-sm-2 {
    box-shadow: 0px 0px 2px rgba(14, 31, 53, 0.12),
    0px 1px 4px rgba(14, 31, 53, 0.06);
}

.shadow-sm-3 {
    box-shadow: 0px 1px 4px rgba(14, 31, 53, 0.12),
    0px 4px 8px rgba(14, 31, 53, 0.08);
}

.shadow-sm-4 {
    box-shadow: 0px 1px 4px rgba(14, 31, 53, 0.12),
    0px 4px 8px rgba(14, 31, 53, 0.1),
    0px 6px 12px rgba(14, 31, 53, 0.08);
}

.shadow-md-1 {
    box-shadow: 0px 2px 4px rgba(14, 31, 53, 0.06),
    0px 6px 12px rgba(14, 31, 53, 0.08),
    0px 12px 20px rgba(14, 31, 53, 0.06);
}

.shadow-md-2 {
    box-shadow: 0px 3px 6px rgba(14, 31, 53, 0.08),
    0px 6px 12px rgba(14, 31, 53, 0.12),
    0px 14px 24px rgba(14, 31, 53, 0.08);
}

.shadow-md-3 {
    box-shadow: 0px 4px 8px rgba(14, 31, 53, 0.1),
    0px 8px 16px rgba(14, 31, 53, 0.16),
    0px 16px 28px -1px rgba(14, 31, 53, 0.1);
}

.shadow-md-4 {
    box-shadow: 0px 6px 10px rgba(14, 31, 53, 0.12),
    0px 12px 18px rgba(14, 31, 53, 0.2),
    0px 20px 40px -1px rgba(14, 31, 53, 0.12);
}

.shadow-lg-1 {
    box-shadow: 0px 5px 10px rgba(14, 31, 53, 0.02),
    0px 10px 20px rgba(14, 31, 53, 0.05),
    0px 16px 24px -1px rgba(14, 31, 53, 0.05),
    0px 20px 38px -2px rgba(14, 31, 53, 0.02);
}

.shadow-lg-2 {
    box-shadow: 0px 5px 10px rgba(14, 31, 53, 0.08),
    0px 10px 20px rgba(14, 31, 53, 0.16),
    0px 24px 32px -1px rgba(14, 31, 53, 0.16),
    0px 32px 64px -2px rgba(14, 31, 53, 0.08);
}

.shadow-lg-3 {
    box-shadow: 0px 5px 10px -1px rgba(14, 31, 53, 0.06),
    0px 10px 20px -2px rgba(14, 31, 53, 0.1),
    0px 16px 32px -3px rgba(14, 31, 53, 0.12),
    0px 32px 64px -4px rgba(14, 31, 53, 0.14),
    0px 40px 72px -5px rgba(14, 31, 53, 0.24);
}

.shadow-lg-4 {
    box-shadow: 0px 5px 10px -1px rgba(14, 31, 53, 0.06),
    0px 10px 20px -2px rgba(14, 31, 53, 0.1),
    0px 16px 32px -3px rgba(14, 31, 53, 0.12),
    0px 32px 64px -4px rgba(14, 31, 53, 0.14),
    0px 56px 84px -5px rgba(14, 31, 53, 0.32);
}

.shadow-blue {
    box-shadow: 0px 4px 12px rgba(29, 161, 243, 0.4);
}

.shadow-mid-blue {
    box-shadow: 0px 4px 10px rgba(29, 161, 243, 0.1);
}

.shadow-pink {
    box-shadow: 0px 4px 12px rgba(237, 13, 110, 0.5);
}

.shadow-card {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.shadow-bottom {
    background-color: rgb(255, 255, 255, 0.8);
    box-shadow: 0px -5px 5px rgb(0, 0, 0, 0.2);
}

.new-shadow {
    box-shadow: 0px 3px 6px rgb(0, 0, 0, 0.16);
}
.shadow-on-hover{
    transition: 0.3s;
    box-shadow: 5px 5px 10px rgb(0, 0, 0, 0.16);
}
.shadow-on-hover:hover {
  box-shadow: 5px 5px 20px rgb(0, 0, 0, 0.26) !important;
}
/*  */
.shadow-on-hover-light {
  transition: 0.3s;
  box-shadow: 0px 0px 0px rgb(0, 0, 0, 0.16);
}
.shadow-on-hover-light:hover {
  box-shadow: 0px 4px 12px 0px #0000000d;
}
/*  */
.shadow-on-hover-dark-blue {
  transition: 0.3s;
  box-shadow: 5px 5px 10px rgb(42, 43, 56, 0.16);
}
.shadow-on-hover-dark-blue:hover{
    box-shadow: 5px 5px 10px rgb(42, 43, 56, 0.26)
}
.shadow-on-hover-pink{
    transition: 0.3s;
    box-shadow: 5px 5px 10px rgb(237, 13, 110, 0.16);
}
.shadow-on-hover-pink:hover{
    box-shadow: 5px 5px 20px rgb(237, 13, 110, 0.66);
}
/* deprecated */
#first-view {
    background-size: cover;
    padding-top: 20vh;
    background-repeat: no-repeat;
    color: white;
}
.text-input-container {
    background-color: white;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 1.5em;
    height: 2.5em;
}

.text-input-container input {
    background-color: transparent;
    border: none;
    overflow: hidden !important;
}

.box-container {
    margin: 1em;
    border-radius: 1em;
    background-color: white;
    box-shadow: 0px 3px 10px rgb(0, 0, 0, 0.4);
}
/* depricate */
.service {
    position: relative;
    top: 10px;
    margin: 0 1rem 3rem 1rem;
}

/* for mobile */
@media only screen and (max-width: 970px) {
    #homepage-header h1{
        font-size: 2.37em;
    }
    #homepage-header h2{
        font-size: 1.5rem;
    }

    #homepage-header h3{
        font-size: 1rem;
    }
}
@media only screen and (max-width: 768px) {
    .titr-responsive-align{
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    /* depricate */
    .text-responsive {
        text-align: center;
    }
    /* depricated */
    #first-view {
        background-image: url("https://static.homeca.ir/static/img/landing/sky-cut-mobile.jpg");
    }
    /* depricated */
    #service-search {
        width: 85%;
        font-size: 1rem;
        margin: auto;
    }
    #service-search-container {
        font-size: 1rem;
        margin: auto;
    }
    #desktop-nav {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .flex-md-break {
        flex-flow: column;
    }
    h1 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1rem;
    }
    .center-on-mobile {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .between-on-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footer-under-logo {
        text-align: center;
    }
    .f-sm-b {
        font-size: 120%;
    }
    .f-sm-same {
        font-size: 100%;
    }
    .f-sm-s {
        font-size: 70%;
    }
    .ordernow {
        border-radius: 2em !important;
        padding: 0.5em 2.5em !important;
    }
    /* new styles */
}


/* for desktop */
@media not screen and (max-width: 768px) {
    .titr-responsive-align{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    /* depricated */
    .text-responsive {
        text-align: right;
        padding-right: 3rem;
        padding-left: 3rem;
    }
    #service-search-container {
        font-size: 1.2rem;
    }
    /* depricated */
    #first-view { 
        background-image: url("https://static.homeca.ir/static/img/landing/sky-cut-desktop.jpg");
    }
    /* depricated */
    #service-search {
        font-size: 1.2rem;
        width: 40%;
    }
    h1 {
        font-size: 3rem;
    }
    #desktop-nav {
        padding-left: 4rem;
        padding-right: 4rem;
    }
    .ordernow {
        border-radius: 1.5em !important;
        padding: 0.5em 2.5em !important;
    }
}

/*-----------------------------*/

/*           navbar            */

/*-----------------------------*/

#desktop-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
    box-shadow: 0px 4px 10px rgba(46, 49, 146, 0.1);
}

.nav-link {
    margin-left: 0.6rem;
    margin-right: 0.6rem;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4rem;
    font-weight: 500;
    cursor: pointer;
}

.dropdown-nav-item {
    position: relative;
}

.dropdown-nav-item img {
    width: 24px;
    filter: var(--filter-white);
}

.dropdown-nav-item > .dropdown-nav-menu {
    display: none;
    position: absolute;
    right: 0;
}

.nav-link:not(.nav-active)~.dropdown-nav-menu{
    top: 56px;
}

.nav-link.nav-active~.dropdown-nav-menu{
    top: 40px;
}

.dropdown-nav-items-container {
    position: relative;
    left: 0;
    top: -0.3em;
    min-width: 245px;
    color: rgba(0, 0, 0, 0.9);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.07);
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    font-weight: light;
}

.nav-link:not(.nav-active){
    opacity: 0.8;
}

.nav-link.nav-active,
.nav-link:not(.nav-active):hover{
    opacity: 1;
}

.active-nav-item-line{
    height: 40px !important; 
    border-bottom: 2px solid white;
}
/* responsive display navbar (desktop/mobile) */

@media only screen and (max-width: 1178px) {
    .fd-desktop,
    .bd-desktop {
        display: none !important;
    }
    .bd-mobile {
        display: block !important;
    }
    .fd-mobile {
        display: flex !important;
    }
}

@media only screen and (min-width: 1178px) {
    .display-desktop-none {
        display: none !important;
    }
    .fd-mobile,
    .bd-mobile {
        display: none !important;
    }
    .bd-desktop {
        display: block !important;
    }
    .fd-desktop {
        display: flex !important;
    }
}

/*-------------------------------*/

/*       Hamburger-Cross         */

/*-------------------------------*/

.hamburger {
    width: 25px;
    height: 25px;
    position: relative;
    top: -3px;
}

.logo-div {
    width: 3em;
    height: 3em;
    text-align: center;
    align-self: center;
}

.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
    border-radius: 2em;
    background-color: #fff;
    width: 100%;
    height: 4px;
    left: 0;
    position: absolute;
}

.hamburger:focus,
.hamburger:active {
    outline: none;
}

.hamburger.is-closed .hamb-top {
    top: 4px;
}

.hamburger.is-closed .hamb-middle {
    top: 13px;
}

.hamburger.is-closed .hamb-bottom {
    top: 22px;
}

.hamburger.is-open .hamb-top {
    -webkit-transform: rotate(45deg);
}

.hamburger.is-open .hamb-middle {
    display: none;
}

.hamburger.is-open .hamb-bottom {
    -webkit-transform: rotate(-45deg);
}

.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
    -webkit-transition: all 0.5s ease;
    margin-top: -1px;
    top: 60%;
}

/*----------------------------------------*/

/*             search-landing             */

/*----------------------------------------*/

#service-search-input::placeholder {
    color: white;
}

#service-search-input:focus {
    border: none;
}

#service-search-input:focus::placeholder {
    color: transparent;
}

.suggested-search {
    position: absolute;
    right: 0;
    top: 2.5em;
    z-index: 100;
    background: rgb(255, 255, 255, 0.1);
    color: white;
    min-width: 2em;
    max-height: 8em;
    overflow-y: auto;
}

.suggest-item {
    padding: 0.5em;
    border-top: 1px solid #c1c1c1;
}

.suggest-item:hover {
    cursor: pointer;
    color: #7e7e7e;
}

/*------------------------------*/

/*             Titr             */

/*------------------------------*/
@media only screen and (min-width: 970px) {
    .main-title {
        font-size: 35px;
    }
    .responsive-title {
        font-size: 32px;
    }
}
@media only screen and (max-width: 970px) {
    .main-title {
        font-size: 45px;
    }
    .responsive-title {
        font-size: 35px;
    }
}

.titr-desktop {
    font-size: 180%;
}

.titr-mobile {
    position: relative;
    z-index: 300;
    font-size: 180%;
}

.back-triangle {
    position: absolute;
    top: -10px;
    left: 0;
    width: 3.4em;
    height: 3.4em;
    z-index: 3;
}
.titr {
    font-size: 25px;
}

.rectangular-object {
    width: 45px;
    height: 8px;
    border-radius: 7px;
}

.circle-object {
    width: 8px;
    height: 8px;
    border-radius: 7px;
}

.rectangular-object {
    width:45px;
    height:8px;
    border-radius:7px;
}

.circular-object {
    width: 8px;
    height: 8px;
    border-radius:7px;
}

.divider-parent-object,
.divider-child-object {
    height:4px;
    border-radius:7px;
}

.divider-parent-object {
    width:90%;
}

.divider-child-object {
    width: 8px;
}

/*--------------------------------*/

/*             why us             */

/*--------------------------------*/

.why-us-icon {
    position: relative;
    width: 4em;
    margin: auto;
    height: auto;
}

.why-us-icon>*:first-child {
    position: relative;
    width: 100%;
    opacity: 1;
    transition: 0.3s;
}

.why-us-item:hover .why-us-icon>*:first-child {
    opacity: 0;
}

.why-us-icon>*:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: 0.3s;
}

.why-us-item:hover .why-us-icon>*:nth-child(2) {
    opacity: 1;
}

.why-us-icon-back-hover {
    position: absolute;
    width: 60%;
    top: 50%;
    left: 50%;
    opacity: 0;
    transition: 0.3s;
}

.why-us-item:hover .why-us-icon-back-hover {
    opacity: 0.1;
}

.why-us-item {
    overflow: hidden;
    transition: 0.3s;
}

.why-us-item:hover {
    box-shadow: 0px 0px 10px #cccccc;
}

/*--------------------------------*/

/*             footer             */

/*--------------------------------*/

.social-network-footer {
    width: 2.5em;
    height: auto;
    padding: 0.3em;
    border-radius: 50%;
    cursor: pointer;
}

/*-----------------------------------------*/

/*             carousel styles             */

/*-----------------------------------------*/

.carousel-indicators>i:not(.active) {
    color: #cccccc;
}

.carousel-indicators>i.active {
    color: #1da1f3;
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px !important;
    height: 12px !important;
}
.owl-theme .owl-dots .owl-dot:not(.active) span {
    background-color: #cccccc;
}
.owl-theme .owl-dots .owl-dot.active  span {
    background-color: #ed0d6e !important;
}

/*-----------------------------------*/

/*             scroll up             */

/*-----------------------------------*/

#scroll-up {
    width: 45px;
    height: 45px;
    margin: auto 10px;
    border-radius: 50%;
    z-index: 5;
    box-shadow: 0px 3px 6px #00000029;
}

/* desktop styles */
@media screen and (min-width: 768px) {
    #scroll-up {
        background-color: #1da1f3;
        color:  #FFFFFF;
    }
}
/* mobile styles */
@media screen and (max-width: 768px) {
    #scroll-up {
        background-color:  #FFFFFF;
        color: #1da1f3;
    }
}

/*--------------------------------------*/

/*             panel styles             */

/*--------------------------------------*/

.dashboard-avatar {
    width: 3em;
    height: 3em;
}

.client-selected-side-menu-item {
    color: white;
    background-color: #1da1f3;
}

.locked {
    background-color: transparent;
    pointer-events: none;
    border-bottom: 1px solid rgb(0, 0, 0, 0.3);
}

.unlocked {
    background-color: white;
}

/** tabels **/
tr.back-light-gray {
    border-bottom: 1px solid #cccccc;
}

tr.back-light-gray-pointer {
    border-bottom: 1px solid #cccccc;
    cursor: pointer;
    transition: 0.3s;
}

tr.back-light-gray-pointer:hover {
    background-color: white;
}

/*---------------------------------*/

/*             loading             */

/*---------------------------------*/

#loading {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.2);
    display: none;
}

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


/*              new flow styles                            */


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

input[type="number"] {
    -moz-appearance: textfield;
}

.tick {
    width: 2em;
    height: 2em;
}

.tick>div {
    width: 1.5em;
    height: 1.5em;
}

.step-circle {
    border-radius: 50%;
    height: 20px;
    width: 20px;
}

.step-tag {
    position: absolute;
    transform: translateX(50%);
}

label input[type="checkbox"]:checked~.choice,
label input[type="radio"]:checked~.choice {
    color: #ed0d6e;
}

label input[type="checkbox"]:disabled~.choice,
label input[type="radio"]:disabled~.choice {
    color: var(--color-gray);
}

label input[type="checkbox"]:checked~.tick>div,
label input[type="radio"]:checked~.tick>div {
    background-color: #ed0d6e;
}
input[name="orderTime"]:checked~label {
    background-color: #ed0d6e !important;
    color: white !important;
}

input[name="orderTime"]:disabled~label {
    opacity: 0.5;
}

.city-select {
    width: 100%;
}

.fa-angle-down {
    transition: 0.3s;
    transform: rotate(0deg);
}

.fa-angle-down.open {
  transform: rotate(180deg);
}
.drawer {
  height: 100vh;
  z-index: 99;
  overflow-y: auto;
  overflow-x: hidden;
  display: block;
  transition: width 300ms;
  width: 0px;
  position: fixed;
  right: 0;
  top: 0;
}

.drawer-open {
  /* width: 80vw !important; */
  overflow-x: hidden;
  width: 300px !important;
}


/* for mobile */

@media only screen and (max-width: 768px) {
    .box-container2 {
        width: 100%;
        height: 100%;
        background-color: white;
        position: relative;
    }
    .top-tag {
        border-radius: 0px 0px 10px 10px;
        text-align: center;
        padding: 1em;
    }
    .mobile-box {
        min-height: 95vh;
    }
    .questions-box{
        max-height: 65vh;
        overflow-y: auto;
    }
    .navigator-container {
        position: fixed;
        bottom: 0px;
        left: 0px;
        width: 100%;
    }
    .step-tag {
        top: -1.3rem;
    }
}

/* for desktop */

@media not screen and (max-width: 768px) {
    .box-container2 {
        width: 480px;
        border-radius: 20px;
        background-color: white;
        position: relative;
    }
    .mobile-box {
        position: relative;
        min-height: 30em;
    }
    .questions-box{
        max-height: 17em;
        overflow-y: auto;
    }
    .navigator-container {
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
    }
    .top-tag {
        display: none;
    }
    .step-tag {
        top: -0.5rem;
    }
    
}


/* landing - homeca in number  */

@media not screen and (max-width: 768px) {
    .border-left-light-white-desktop {
        border-left: 1px solid rgb(255, 255, 255 , 0.1) !important;
    }
}

@media only screen and (max-width: 768px){
    .border-left-light-white-mobile{
        border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    .border-top-mobile {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}
