:root{
    --primary: #0183cf;
    --secondary: #272727;
    --light: #f8f8f8;
    --dark: #202020;
    --dark-light:#f4f4f4;
    --sky-blue:#c5ddeb;
    --sky-blue-light:#e0eff8;
    --dark-box-shadow-color:#303030;
    --light-box-shadow-color:#dddddd;
    /* --bs-light-rgb:248,248,248 !important; */
    --bs-light-rgb:255,255,255 !important;
    --bs-dark-rgb:32,32,32  !important;
    --bs-primary-rgb:1,131,207 !important;


    --description-opacity:0.8;
}   

@font-face {
    font-family: fccBold;
    src: url('/content/fonts/Custom-Bold.woff2');
}
@font-face {
    font-family: vazirMedium;
    src: url('/content/fonts/Vazir-Bold.woff');
}
@font-face {
    font-family: vazirLight;
    src: url('/content/fonts/Vazir-Light.woff');
}
*{
    font-family: 'vazirLight';
    z-index: 1;
    position: inherit;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'fccBold';
}
body{
    font-size: 14px;
}
img{
    max-width: 100%;
}

/* For Test */
body>header{
    width: 100%;
}
.page-content{
    width: 100%;
}
.page-content>div{
    width: 100%;
    /* min-height: 350px; */
}
span{
    font-family: inherit;
    white-space: nowrap;
}

body>header{    
    background: var(--primary);
    /* background: url(/content/images/backgrounds/back-pattern2.svg),
                linear-gradient(120deg, var(--sky-blue) 40%, var(--sky-blue-light) 100%); */
    background: linear-gradient(120deg, var(--sky-blue) 40%, var(--sky-blue-light) 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
}
header>.header-title>h3{
    text-align: center;
    font-size: 1.25rem;
}
.bottom-waves-background{
    background: url(../images/backgrounds/bg-bottom.png);
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-position: center bottom -2px;
    background-repeat: no-repeat;
    background-color: rgb(var(--bs-dark-rgb));
    border-radius: 0;
}
.top-bar{
    width: 100%;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-bar a.logo{
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.top-bar h1{
    font-size: 0.75rem;
    color: var(--dark);
}
.top-bar img.logo{
    width: 150px;
    max-height: 150px;
    object-fit: contain;
}
.top-bar>.top-bar-menu{
    display: flex;
    justify-content: center;
}
@media (min-width: 768px) {
    body>header{    
        padding: 2rem 0rem 5rem 0rem;
    }
    .top-bar,
    .top-bar>.top-bar-menu{
        gap: 6rem;
    }
    .top-bar ul.sub-menu{
        position: absolute;
    }
    .top-bar>.show-menu{
        display: none;
    }
    .top-bar>.top-bar-menu>.menu-header{
        display: none;
    }
}
@media (max-width: 768px) {
    .top-bar,
    .top-bar>.top-bar-menu{
        gap: 0rem;
    }
    .top-bar>.show-menu{
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-grow: 1;
    }
    .top-bar>.show-menu>button{
        padding: 0.5rem 1rem;
        background-color: transparent;
        color: var(--dark);
        border: none;
    }
    .top-bar>.top-bar-menu{
        animation: fadeIn 0.1s;
    }
    .top-bar>.top-bar-menu:not(.show){
        display: none !important;
    }
    .top-bar>.top-bar-menu.show{
        position: absolute;
        width: 90%;
        top: 1rem;
        /* height: 250px; */
        flex-direction: column-reverse;
        background-color: var(--light);
        color: var(--dark);
        z-index: 200;
        border-radius: 1rem;
        padding-top: 1rem;
        box-shadow: var(--light-box-shadow-color) 0 10px 10px -5px;
    }
    .top-bar>.top-bar-menu>.menu-header{
        position: relative;
        padding-bottom: 0.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .top-bar>.top-bar-menu>.menu-header>img{
        max-height: 25px;
        padding-right: 1rem;
    }
    .top-bar>.top-bar-menu .menu-header>button.close-menu{
        display: block;
        align-self: flex-end;
        position: relative;
        padding: 0.25rem 1rem;
        background-color: transparent;
        border: none;
        color: var(--dark) !important;
    }
    .top-bar>.top-bar-menu>a{
        position: relative;
        background-color: transparent !important;
        color: var(--dark) !important;
    }
    .top-bar>.top-bar-menu>ul{
        position: relative;
        flex-direction: column;
        gap: 0.5rem;
        padding-bottom: 0.5rem;
        align-items: flex-start !important;
        padding-right: 0.5rem;
    }
    .top-bar>.top-bar-menu>ul>li{
        text-align: right;
    }
    .top-bar>.top-bar-menu>ul a{
        color: var(--dark) !important;
    }
}
.top-bar>.top-bar-menu>ul{
    display: flex;
    list-style-type: none;
    align-items: center;
    margin: 0;
}
.top-bar>.top-bar-menu>ul a,
.top-bar>.top-bar-menu>ul button{
    padding: 0.5rem 1rem;
    text-decoration: none;
    white-space: nowrap;
    font-family: 'vazirMedium';
    background-color: transparent;
    color: var(--dark);
    border: none;
}
.top-bar>.top-bar-menu>ul a.active,
.top-bar>.top-bar-menu>ul button.active{
    color: var(--primary) !important;
}
.top-bar ul.sub-menu{
    background-color: var(--light);
    margin-top: 0rem;
    list-style-type: none;
    border-radius: 0.5rem;
}
.top-bar ul.sub-menu:not(.show){
    display: none;
}
body[dir='rtl'] .top-bar ul.sub-menu{
    padding: 0.5rem 0rem 0.5rem 1rem;
}

.top-bar .sub-menu>*{
    position: relative;
}

.top-bar>a:not(.logo),
.top-bar>.top-bar-menu>a{
    font-family: 'vazirMedium';
    white-space: nowrap;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    background-color: var(--primary);
    color:var(--light);
    border-radius: 9999px;
}
header>.header{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
header>.header>*{
    max-width: 350px;
    width: 100%;
}
.header>.images{
    position: relative;
    min-height: 350px;
    overflow: hidden;
}
.header>.images>.image-header{
    width: 100%;
    position: absolute;
    top: 0;
}
.bubble-background{
    position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: unset;
  max-height: unset;
  -webkit-animation: rotate-center 100s linear infinite both;
  animation: rotate-center 100s linear infinite both;
}
.header>.header-content>*{
    color: var(--light);
}

.page-content>div{
    padding: 3rem 1rem ;
    position: relative;
}
.section>.section-row>.header{
    text-align: center;
}
.section>.section-row>.header>p{
    opacity: var(--description-opacity);
}
.section-body h2,
.section-body h3,
.section-body h4,
.section-body h5{
    font-family: 'vazirMedium';
}

.customers-logo{
    display: flex;
    gap: 1rem;
    overflow-x: auto;
}
.customers-logo img{
    height: 60px;
    opacity: 0.7;
    transition: all 0.1s linear;
}
.customers-logo img:hover{
    opacity: 1;
}

/* Footer */
body>footer{
    width: 100%;
}
footer>.footer-top-background{
    background: url(/content/images/backgrounds/bg-top.png);
    background-repeat: no-repeat;
    width: 100%;
    min-height: 150px;
    object-fit: cover;
}
footer>.row{
    display: flex;
    margin: 0;
    padding-bottom: 1rem;
}
footer>.row img.logo{
    width: 150px;
}
footer>.row>div>div,
footer>.row>div>ul{
    padding: 1rem 0rem;
    list-style-type: none;
    text-align: justify;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
footer>.row>div p{
    margin: 0;
}
footer>.row>div h2{
    font-size: 1.2rem;
}
footer>.row>div a{
    display: block;
    text-decoration: none;
    color: var(--light);
}
footer>.row>div a>i{
    padding-left: 0;
    transition: all 0.2s linear;
}
footer>.row>div a:hover>i{
    padding-left: 0.25rem;
    font-size: 1rem;
}

footer>.row>div ul>li{
    display: flex;
    gap: 0.5rem;
}
footer .certificate{
    display: contents;
}
footer .certificate>img{
    width: 100px;
    height: auto;
    padding: 0.5rem;
    background-color: white;
    border-radius: 1rem;
    transition: all 0.2s linear;
    object-fit: cover;
}
footer .certificate:hover>img{
    scale: 1.05;
}
footer .copyright{
    text-align: center;
    font-size: 0.75rem;
    opacity: .8;
}

/* Login Page */
.login-title {
    padding: 1rem 0.5rem 0rem;
    display: inline-flex;
    gap: 0.25rem;
    align-items: center;
}
.login-title:before {
    width:4px;
    height:0.9rem;
    border-radius:9999px;
    background-color:var(--bs-gray-600);
    content:' ';
}
.login-signup-card {
    width: 700px !important;
    max-width: 90%;
    min-width: 200px;
    min-height: 250px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 !important;
    border-radius: 1rem;
    background-color: var(--secondary);
}
.login-signup-card>div{
    padding: 0.5rem;
}
.login-signup-card>div:first-child{
    flex-grow: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.login-signup-card>div:last-child{
    flex-grow: 0;
    background-color: var(--light);
    border-radius: 1rem;
}
.login-signup-card>div>img.logo{
    max-width: 250px;
}
.login-signup-card>div>h1{
    font-size: 1.5rem;
    color: var(--light);
}
.login-signup-card form{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
}
.login-signup-card form>div.form-group{
    width: 100%;
}
.login-signup-card form label{
    font-family: 'vazirMedium';
}
.login-signup-card form input{
    background-color: transparent;
    border-radius: 0 !important;
    outline: none !important;
    font-size: 1rem;
}
@media (max-width: 768px){
    .login-signup-card>div:last-child{
        width: 100% !important;
    }
    .login-signup-card form{
        justify-content: center;
        align-items: center;
    }
}
.login-signup-card .additional-links{
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 0.75rem 1rem 0rem;
}
.login-signup-card .additional-links a,
.login-signup-card .resend-code{
    text-decoration: none;
    color: var(--dark);
    font-size: 0.9rem;
    padding: 0.25rem;
}
.login-signup-card .additional-links a>i{
    padding-left: 0.25rem;
    transition: all 0.2s linear;
}
.login-signup-card .additional-links a:hover>i{
    padding-left: .75rem;
}
.login-signup-card .resend-code {
    display: inline-flex;
    gap: 5px;
    align-items: center;
}


/* Sizes */
.vh-100{
    height: 100vh;
}

/* Forms */
input{
    padding: 0.25rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid;
    font-family: 'vazirLight';
}
button[type='submit']{
    padding: 0.5rem 1.5rem;
}
.group-inputs{
    display: flex;
}
.group-inputs>*{
    border: none;
    border-radius: 0;
    outline: none;
}
.group-inputs>*:first-child{
    border-top-right-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
}
.group-inputs>*:last-child{
    border-top-left-radius: 0.75rem;
    border-bottom-left-radius: 0.75rem;
}
 form .form-row{
    display: flex;
  }
  form .form-row .input-data{
    width: 100%;
    height: 40px;
    position: relative;
  }
  form .form-row .textarea{
    height: 70px;
  }
  .input-data input,
  .textarea textarea{
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    font-size: 17px;
    border-bottom: 2px solid rgba(0,0,0, 0.12);
  }
  .input-data input:focus ~ label, .textarea textarea:focus ~ label,
  .input-data input:valid ~ label, .textarea textarea:valid ~ label{
    transform: translateY(-20px);
    font-size: 14px;
    color: #3498db;
  }
  .textarea textarea{
    resize: none;
    padding-top: 10px;
  }
  .input-data label{
    position: absolute;
    pointer-events: none;
    bottom: 10px;
    transition: all 0.3s ease;
  }
  .textarea label{
    width: 100%;
    bottom: 40px;
    background: #fff;
  }
  .input-data .underline{
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
  }
  .input-data .underline:before{
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    background: #3498db;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  .input-data input:focus ~ .underline:before,
  .input-data input:valid ~ .underline:before,
  .textarea textarea:focus ~ .underline:before,
  .textarea textarea:valid ~ .underline:before{
    transform: scale(1);
  }
  .submit-btn .input-data{
    overflow: hidden;
    height: 45px!important;
    width: 25%!important;
  }
  .submit-btn .input-data .inner{
    height: 100%;
    width: 300%;
    position: absolute;
    left: -100%;
    background: -webkit-linear-gradient(right, #56d8e4, #9f01ea, #56d8e4, #9f01ea);
    transition: all 0.4s;
  }
  .submit-btn .input-data:hover .inner{
    left: 0;
  }
  .submit-btn .input-data input{
    background: none;
    border: none;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    z-index: 2;
  }
  @media (max-width: 700px) {
    .container .text{
      font-size: 30px;
    }
    .container form{
      padding: 10px 0 0 0;
    }
    .container form .form-row{
      display: block;
    }
    .submit-btn .input-data{
      width: 40%!important;
    }
  }


/* Buttons */
.button{
    padding: 0.5rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-family: var(--swaper-buttons-font);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.button-primary{
    border: 2px solid var(--primary);
    color: var(--primary);
}
.button-primary:hover{
    background-color: var(--primary);
    color: var(--light);
}
.button-dark{
    border: 2px solid var(--dark);
    color: var(--dark);
}
.button-dark:hover{
    background-color: var(--dark);
    color: var(--light);
}

/* Image Icons */
.img-icon-24{
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.img-icon-32{
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.img-icon-64{
    width: 64px;
    height: 64px;
    object-fit: contain;
}

/* Utilities */
hr.seprator{
    width: 90%;
    margin: auto;
}
.validation-message{
    color:#f80000;
    padding:5px 20px;
    font-size:0.9rem;
}

/* Backgrounds */
.background-pattern-1 {
    z-index: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.1;
    background: url(/content/images/backgrounds/back-pattern1.svg);
}


/* Animations */
.fadeIn{
    animation: fadeIn 0.5s ease-in; 
}

.lang-list >a{
    text-decoration:none;
    transition: all ease-in-out 0.1s;
}
.lang-list > a:hover {
    opacity:1;
}
.lang-list > * {
    color: var(--dark-light);
    opacity: 0.8;
}

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @-webkit-keyframes rotate-center {
        0% {
            -webkit-transform: rotate(0);
            transform: rotate(0);
        }

        100% {
            -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
        }
    }

    @keyframes rotate-center {
        0% {
            -webkit-transform: rotate(0);
            transform: rotate(0);
        }

        100% {
            -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
        }
    }