body {
    font-family: "Roboto", sans-serif;
    direction: ltr;
    text-align: left;
}

span, div {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

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

button:focus {
    outline: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.center_absolute {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
}

.center_relative {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
}

.gray-btn {
    color: #000;
    background-color: #e8e8e9;
    padding: 10px 30px;
    border-radius: 5px;
}

.gray-btn:hover {
    text-decoration: none;
    color: #000;
    background-color: #dddddd;
}

.primary-btn {
    background-color: #085ff8;
    border: 1px solid #085ff8;
    border-radius: 12px;
    padding: 12px 40px;
    text-decoration: none;
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s;
}

.primary-btn:hover {
    background-color: #2d78fb;
    text-decoration: none;
}

.secondary-btn {
    background-color: #fff;
    border: 1px solid #085ff8;
    border-radius: 12px;
    padding: 12px 40px;
    text-decoration: none;
    color: #085ff8;
    text-decoration: none;
    transition: all 0.3s;
}

.secondary-btn:hover {
    background-color: #085ff8;
    color: #fff;
    text-decoration: none;
}

.purple-btn {
    text-align: center;
    color: #000;
    background-color: #ded4f3;
    padding: 10px 30px;
    border-radius: 5px;
}

.purple-btn:hover {
    text-decoration: none;
    color: #000;
    background-color: #c9bae7;
}

.center-btn-box {
    margin: 40px 0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-btn-box .gray-btn {
    margin: 0px 20px;
}

.center-btn-box .purple-btn {
    margin: 0px 20px;
}

.mycontainer {
    position: relative;
    width: 100%;
    height: 100%;
}

.mycontainer2 {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-container {
    padding-top: 30px;
    padding-bottom: 30px;
}

.page-builder-content {
    padding: 50px 0px;
    direction: ltr;
    line-height: 200%;
}

.page-builder-content h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-builder-content h2 {
    font-size: 26px;
    font-weight: 600;
}

.page-builder-content h3 {
    font-size: 23px;
    font-weight: 600;
}

.page-builder-content h4 {
    font-size: 20px;
    font-weight: 600;
}

.page-builder-content header {
    margin-bottom: 20px;
}

.n-w-input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #dedede;
    padding: 7px 10px;
    margin-bottom: 20px;
}

.select2 {
    width: 100% !important;
}

.n-textarea {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #dedede;
    padding: 7px 10px;
    margin-bottom: 20px;
    min-height: 156px;
}

.n-breadcrumb {
    font-size: 16px;
    font-weight: 500;
}

.header_content {
    background-image: url("../img/contentbg.jpg");
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

@media screen and (max-width: 800px) {
    .header_content {
        height: 250px;
    }
}

@media screen and (max-width: 520px) {
    .header_content {
        height: 140px;
    }
}

@media screen and (max-width: 400px) {
    .header_content {
        height: 120px;
    }
}

.content-container {
    padding-bottom: 50px;
}

.page-content {
    min-height: 30vh;
}

.c-title {
    position: relative;
    padding-left: 12px;
}

.c-title::before {
    content: '';
    width: 2px;
    height: 70%;
    position: absolute;
    left: 0px;
    top: 15%;
    background-color: #fde405;
}

.hide-label label {
    display: none;
}

.c-checkbox {
    margin-bottom: 12px;
}

.page-content .select2 .select2-selection {
    background-color: #e5f4ff;
    border: none;
    padding: 7px;
    font-size: 15px;
    border-radius: 12px;
    height: auto;
}

.page-content .select2-dropdown {
    background-color: #e5f4ff;
    border-color: #b8e1ff;
    font-size: 14px;
}

.page-content .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    margin-right: 10px;
}

.c-input {
    background-color: #e5f4ff;
    font-size: 15px;
    border-radius: 12px;
    border: none;
    padding: 25px 15px;
}

.c-input::placeholder {
    color: #444;
}

.anim-btn {
    position: relative;
    overflow: hidden;
}

.anim-btn::before {
    content: '';
    position: absolute;
    top: 0px;
    left: -50px;
    width: 35px;
    height: 500%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    animation: btn-anim 4.5s linear infinite;
}

@keyframes btn-anim {
    0% {
        left: -70px;
        opacity: 1;
    }
    10% {
        left: 100%;
        opacity: 1;
    }
    11% {
        left: 100%;
        opacity: 0;
    }
    12% {
        left: -70px;
        opacity: 0;
    }
    13% {
        opacity: 1;
    }
    100% {
        left: -70px;
    }
}

.btn-primary {
    background-color: #085ff8;
}

.register-btn {
    border-radius: 30px;
    padding: 5px 15px;
    width: 140px;
    text-align: center;
    margin-bottom: 5px;
}

.sidebar-dark {
    background-color: #82bce9;
    background-image: none;
}

.c_next_arrow {
    left: -30px;
}

.c_next_arrow span {
    transition: all 0.3s;
    position: absolute;
    top: 50%;
    width: 0px;
    left: 12px;
    height: 1px;
    background-color: #085ff8;
}

.c_next_arrow:before {
    transition: all 0.3s;
    content: '';
    position: absolute;
    top: 50%;
    width: 16px;
    left: 12px;
    height: 1px;
    background-color: #085ff8;
    transform: rotate(45deg);
    transform-origin: 0% 0%;
}

.c_next_arrow:after {
    transition: all 0.3s;
    content: '';
    position: absolute;
    top: 50%;
    left: 12px;
    width: 16px;
    height: 1px;
    background-color: #085ff8;
    transform: rotate(-45deg);
    transform-origin: 0% 0%;
}

.c_next_arrow:hover span {
    left: 7px;
    width: 25px;
}

.c_next_arrow:hover:before {
    left: 7px;
    width: 13px;
}

.c_next_arrow:hover:after {
    left: 7px;
    width: 13px;
}

.c_prev_arrow {
    right: -30px;
}

.c_prev_arrow span {
    transition: all 0.2s;
    position: absolute;
    top: 50%;
    height: 1px;
    background-color: #085ff8;
    width: 0px;
    right: 12px;
}

.c_prev_arrow:before {
    transition: all 0.2s;
    content: '';
    position: absolute;
    top: 50%;
    width: 16px;
    right: 12px;
    height: 1px;
    background-color: #085ff8;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

.c_prev_arrow:after {
    transition: all 0.2s;
    content: '';
    position: absolute;
    top: 50%;
    width: 16px;
    right: 12px;
    height: 1px;
    background-color: #085ff8;
    transform: rotate(-45deg);
    transform-origin: 100% 100%;
}

.c_prev_arrow:hover span {
    right: 7px;
    width: 25px;
}

.c_prev_arrow:hover:before {
    right: 7px;
    width: 13px;
}

.c_prev_arrow:hover:after {
    right: 7px;
    width: 13px;
}

.c_slider_arrow {
    z-index: 1;
    cursor: pointer;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    width: 40px;
    height: 40px;
}

@media screen and (max-width: 768px) {
    .c_slider_arrow {
        transform: scale(0.7) translateY(-20px);
    }
}

.login_form_box {
    min-height: 550px;
    padding: 3rem;
}

@media screen and (max-width: 768px) {
    .login_form_box {
        padding: 20px;
    }
}

.g-recaptcha {
    margin-top: 10px;
    margin-bottom: 10px;
    transform: scale(0.77);
    transform-origin: 0 0;
}

.cookie-banner {
    width: 100%;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff0db;
    color: #555;
}

.cookie-close {
    height: 20px;
    border: none;
    color: #000;
    border-radius: 2px;
    cursor: pointer;
}

.checkout_label {
    color: #555;
    font-size: 15px;
    font-weight: 400;
    margin-top: 15px;
}

.checkout_title {
    color: #111;
    font-size: 17px;
    font-weight: 500;
}

h1 {
    font-size: 30px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.33;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
}

h3 {
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
}

h4 {
    font-size: 15px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
}

h5 {
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
}

h6 {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
}

p {
    font-size: 16px;
    line-height: 180%;
}

.main-navbar {
    padding: 0px;
    padding: 22px 0px;
    background-color: #82bce9;
    justify-content: space-between;
}

@media screen and (max-width: 991px) {
    .main-navbar {
        justify-content: flex-end;
        padding: 15px 0px;
    }
}

.main-navbar .navbar-brand {
    display: flex;
    align-items: center;
    height: 80px;
    position: absolute;
    top: 0px;
    left: 0px;
}

.main-navbar .navbar-collapse {
    margin-left: 150px;
}

@media screen and (max-width: 991px) {
    .main-navbar .navbar-collapse {
        margin-left: 10px;
        margin-top: 30px;
    }
}

.main-navbar .logo-img {
    width: 170px;
    height: 60px;
    background-image: url(../img/logo.png);
}

@media screen and (max-width: 991px) {
    .main-navbar .logo-img {
        width: 130px;
        margin-top: 10px;
    }
}

.main-navbar .logo-text {
    margin-right: 10px;
    font-size: 11px;
    line-height: 200%;
    color: #e31c40;
}

.main-navbar .logo-text span {
    font-size: 23px;
    font-weight: 500;
    display: block;
}

.main-navbar .navbar-collapse {
    max-height: 510px;
    justify-content: space-between;
}

@media screen and (max-width: 991px) {
    .main-navbar .navbar-collapse {
        overflow-y: auto;
    }
}

.main-navbar .menu-items {
    margin-bottom: 0px;
    padding-left: 5px;
    list-style: none;
}

.main-navbar .menu-items li {
    padding: 3px 10px;
    display: inline-block;
}

.main-navbar .menu-items li:last-child {
    border-left: none;
}

@media screen and (max-width: 991px) {
    .main-navbar .menu-items li {
        display: block;
        border: none;
    }
}

.main-navbar .nav-link {
    color: #777;
    font-size: 17px;
    font-weight: 400;
    padding: 3px 0px;
    color: #fff;
    position: relative;
}

@media screen and (max-width: 991px) {
    .main-navbar .nav-link {
        font-size: 14px;
        padding: 15px 5px;
        display: flex;
        align-items: center;
    }
}

.main-navbar .nav-link::before {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: 0px;
    left: 0px;
    transform: scale(0.01);
    transition: all .5s;
}

@media screen and (max-width: 768px) {
    .main-navbar .nav-link::before {
        display: none;
    }
}

.main-navbar .nav-link:hover::before {
    transform: scale(1);
}

.main-navbar .search-form {
    background-color: #e31c40;
    border-radius: 100px;
    position: absolute;
    left: 20px;
}

@media screen and (max-width: 991px) {
    .main-navbar .search-form {
        position: static;
        padding-right: 10px;
    }
}

.main-navbar .search-form .search-btn {
    width: 40px;
    height: 40px;
    background-image: url(../img/lenz.png);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center;
}

.main-navbar .search-form .search-input {
    height: 34px;
    width: 150px;
    display: none;
    border-radius: 0px 100px 100px 0px;
    background-size: 50%;
    outline: none;
}

@media screen and (max-width: 991px) {
    .main-navbar .search-form .search-input {
        display: block;
        width: calc(100% - 50px);
    }
}

.main-navbar .search-form .search-input :focus {
    outline: none;
}

.main-navbar .search-form:hover .search-input {
    display: block;
}

.main-navbar .dropdown-menu {
    right: 0px;
    left: auto;
    direction: rtl;
    text-align: right;
}

.main-navbar .dropdown-menu a {
    padding: 5px 10px;
}

@media screen and (max-width: 991px) {
    .main-navbar .dropdown-menu {
        position: static;
        float: none;
    }
}

.navbar-toggler {
    margin-top: 6px;
    padding: 10px 10px;
    height: 50px;
    width: 50px;
    border: none;
}

@media screen and (max-width: 991px) {
    .navbar-toggler {
        margin-right: 10px;
    }
}

.navbar-toggler .icon-bar {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 1px;
    margin-bottom: 7px;
}

.navbar-toggler .icon-bar {
    transition: all .3s;
    background-color: #fff;
}

.navbar-toggler .icon-bar1 {
    display: block;
    transform: rotate(-45deg);
    transform-origin: 87% 200%;
}

.navbar-toggler .icon-bar2 {
    display: none;
}

.navbar-toggler .icon-bar3 {
    display: block;
    transform: rotate(45deg);
    transform-origin: 55% 100%;
}

.collapsed .icon-bar {
    transform: none !important;
    display: block;
}

.login-nav {
    display: flex;
    padding-right: 20px;
}

@media screen and (max-width: 991px) {
    .login-nav {
        flex-direction: column;
    }
}

.login-nav__sub-menu {
    position: absolute;
    width: 180px;
    top: 34px;
    right: 0px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: visibility 0s, transform .2s, opacity 0.2s linear;
}

.login-nav__sub-menu-tri {
    position: absolute;
    top: 1px;
    right: 50px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #fff transparent;
}

@media screen and (max-width: 991px) {
    .login-nav__sub-menu-tri {
        right: 30px;
    }
}

.login-nav__sub-menu-tri2 {
    position: absolute;
    top: 0px;
    right: 50px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #82bce9 transparent;
}

@media screen and (max-width: 991px) {
    .login-nav__sub-menu-tri2 {
        right: 30px;
    }
}

.login-nav__sub-menu-content {
    margin-top: 10px;
    border: 1px solid #82bce9;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}

.login-nav__sub-menu-item {
    color: #085ff8;
    display: block;
    padding: 15px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(184, 225, 255, 0.5);
}

.login-nav__sub-menu-item:hover {
    color: #fff;
    background-color: #085ff8;
}

.login-nav__avatar {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 100px;
    margin-right: 10px;
    border: 1px solid #085ff8;
}

.login-nav__link {
    width: 110px;
    z-index: 100;
    position: relative;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 5px 20px 5px 5px;
    border-radius: 50px 50px 50px 50px;
    font-size: 16px;
    font-weight: 700;
    margin-left: 5px;
    background-color: #085ff8;
    color: #fff;
    justify-content: center;
}

.login-nav__link:first-child {
    border-radius: 50px 50px 50px 50px;
}

@media screen and (max-width: 991px) {
    .login-nav__link:first-child {
        border-bottom: none;
        border-radius: 20px 20px 20px 20px;
    }
}

@media screen and (max-width: 991px) {
    .login-nav__link {
        text-align: center;
        font-size: 12px;
        padding: 7px 10px;
        border-radius: 20px 20px 20px 20px;
        margin-bottom: 5px;
    }
}

.login-nav__link:hover {
    background-color: #fff;
    color: #085ff8;
}

.login-nav__link:hover .login-nav__sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.login-nav .login-single-link {
    width: auto;
    border-radius: 40px 40px 40px 40px;
}

.premium-btn {
    color: #fff !important;
    background-color: #f3ba00;
}

.premium-btn .login-nav__avatar {
    border: 1px solid #f3ba00;
}

.premium-btn:hover {
    background-color: #fff !important;
    color: #f3ba00 !important;
}

.hi {
    display: inline-block;
    width: 22px;
    height: 22px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px;
    transition: all .2s;
}

.hi-login {
    background-image: url(../img/icons/login.svg);
}

.hi-register {
    background-image: url(../img/icons/register.svg);
}

.login-nav__link:hover .hi-login {
    background-image: url(../img/icons/login-b.svg);
}

.login-nav__link:hover .hi-register {
    background-image: url(../img/icons/register-b.svg);
}

.dropdown-menu {
    border: 1px solid #82bce9;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
    padding: 0px;
    margin-top: -3px;
}

.dropdown-item {
    font-size: 16px;
    font-weight: 500;
    color: #085ff8;
    display: block;
    padding: 15px 15px !important;
    text-align: center;
    border-bottom: 1px solid rgba(184, 225, 255, 0.5);
}

.dropdown-item:hover {
    color: #fff;
    text-decoration: none;
    background-color: #085ff8;
}

.dropdown:hover > .dropdown-menu {
    display: block;
}

.footer {
    background-color: #01223b;
    padding-top: 50px;
    padding-bottom: 30px;
    color: #fff;
    font-weight: 300;
    font-size: 15px;
    line-height: 200%;
}

.footer a {
    color: #fff;
}

.footer__title {
    color: #addbff;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
}

.footer__cr-box {
    padding: 0px 50px;
    margin-top: 30px;
}

@media screen and (max-width: 768px) {
    .footer__cr-box {
        padding: 0px 15px;
    }
}

.footer__cr {
    border-top: 1px solid rgba(253, 228, 5, 0.2);
    padding-top: 25px;
    text-align: center;
    color: #82bce9;
    font-size: 12px;
}

.footer__logo {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 110px;
    height: 110px;
    background-image: url(../img/logo.png);
    background-position: center;
    background-color: #81bce9;
    border-radius: 300px;
    background-size: 70%;
}

.footer__text-box {
    margin-top: 20px;
}

.footer .footer-btn {
    padding: 8px 18px;
    background-color: #085ff8;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    margin-top: 10px;
    display: inline-block;
}

.footer__social-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #b8e1ff;
    border-radius: 50px;
    padding: 6px 11px;
    font-size: 23px;
    color: #fff;
    width: 40px;
    height: 40px;
}

.footer__social-link:hover {
    color: #fff;
}

.home-container {
    max-width: 1250px;
    padding: 0px 30px;
}

.home-banner {
    background-image: url(../img/home-banner.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 450px;
}

@media screen and (max-width: 768px) {
    .home-banner {
        height: 40vh;
    }
}

.search-tabs {
    width: 100%;
    margin-top: 50px;
    border: 1px solid #b8e1ff;
    border-radius: 12px;
    background: transparent;
    outline: none;
    opacity: 0;
    /* Tabs container */
    /* Tab element */
    /* Tab anchor */
    /* Disabled tab */
    /* Active state tab anchor */
    /* Tab panel */
    /* Accordion anchor */
    /* Active accordion anchor */
    /* Disabled accordion button */
    /* Buttons */
    /* Info bar */
}

.search-tabs:focus {
    outline: none;
}

@media screen and (max-width: 768px) {
    .search-tabs {
        border: none;
        margin-top: 0px;
        margin-bottom: 50px;
    }
}

.search-tabs .r-tabs {
    position: relative;
    background-color: #82bce9;
    border-top: 1px solid #82bce9;
    border-right: 1px solid #82bce9;
    border-left: 1px solid #82bce9;
    border-bottom: 4px solid #82bce9;
    border-radius: 11px;
}

@media screen and (max-width: 768px) {
    .search-tabs .r-tabs {
        background-color: transparent;
    }
}

.search-tabs .r-tabs .r-tabs-nav .r-tabs-tab {
    position: relative;
    border-radius: 11px;
}

.search-tabs .r-tabs .r-tabs-nav .r-tabs-anchor {
    display: inline-flex;
    align-items: center;
    padding: 16px 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}

@media screen and (max-width: 1160px) {
    .search-tabs .r-tabs .r-tabs-nav .r-tabs-anchor {
        font-size: 13px;
        padding: 16px 6px;
    }
}

.search-tabs .r-tabs .r-tabs-nav .r-tabs-state-disabled {
    opacity: 0.5;
}

.search-tabs .r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
    color: #000;
    background-color: white;
    border-top-right-radius: 11px;
    border-top-left-radius: 11px;
}

.search-tabs .r-tabs .r-tabs-panel {
    background-color: white;
    border-bottom: 4px solid white;
    border-bottom-right-radius: 11px;
    border-bottom-left-radius: 11px;
    min-height: 250px;
}

.search-tabs .r-tabs .r-tabs-accordion-title .r-tabs-anchor {
    display: block;
    padding: 10px;
    background-color: #82bce9;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    border-top-right-radius: 11px;
    border-top-left-radius: 11px;
}

@media screen and (max-width: 991px) {
    .search-tabs .r-tabs .r-tabs-accordion-title .r-tabs-anchor {
        border-radius: 11px;
        margin-top: 5px;
    }
}

@media screen and (max-width: 991px) {
    .search-tabs .r-tabs-accordion-title.r-tabs-state-active {
        background-color: #82bce9;
        border-top-right-radius: 11px;
        border-top-left-radius: 11px;
    }
}

@media screen and (max-width: 991px) {
    .search-tabs .r-tabs-panel.r-tabs-state-active {
        background-color: #82bce9;
    }
}

.search-tabs .r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
    background-color: #fff;
    color: #82bce9;
}

@media screen and (max-width: 991px) {
    .search-tabs .r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
        color: #fff;
        background-color: transparent;
    }
}

.search-tabs .r-tabs .r-tabs-accordion-title.r-tabs-state-disabled {
    opacity: 0.5;
}

.search-tabs button {
    display: inline-block;
    margin-top: 10px;
    margin-right: 10px;
    padding: 10px 20px;
    line-height: 100%;
    color: #fff;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    border: 0;
    border-radius: 11px;
    background-color: #82bce9;
    box-shadow: 0px 3px 0px 0px #82bce9;
    cursor: pointer;
}

.search-tabs .info {
    display: inline-block;
    margin-top: 10px;
    margin-right: 10px;
    padding: 10px 20px;
    width: 300px;
    line-height: 100%;
    font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
    font-size: 14px;
    color: #82bce9;
    border: 2px solid #82bce9;
    border-radius: 11px;
    background-color: #fff;
    cursor: pointer;
}

.ci {
    display: inline-block;
    width: 21px;
    height: 21px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px;
    transition: all .2s;
}

.ci-lab {
    background-image: url(../img/icons/lab-w.svg);
}

.ci-job {
    background-image: url(../img/icons/job-w.svg);
}

.ci-dentist {
    background-image: url(../img/icons/dentist-w.svg);
}

.ci-clinic {
    background-image: url(../img/icons/clinic-w.svg);
}

.ci-rdh {
    background-image: url(../img/icons/rdh-w.svg);
}

.ci-company {
    background-image: url(../img/icons/company-w.svg);
}

.tab-item:hover {
    color: #000;
}

.tab-item:hover .r-tabs-anchor {
    transition: all .2s;
    color: #000 !important;
}

.tab-item:hover .ci-lab {
    background-image: url(../img/icons/lab.svg);
}

@media screen and (max-width: 768px) {
    .tab-item:hover .ci-lab {
        background-image: url(../img/icons/lab-w.svg);
    }
}

.tab-item:hover .ci-job {
    background-image: url(../img/icons/job.svg);
}

@media screen and (max-width: 768px) {
    .tab-item:hover .ci-job {
        background-image: url(../img/icons/job-w.svg);
    }
}

.tab-item:hover .ci-dentist {
    background-image: url(../img/icons/dentist.svg);
}

@media screen and (max-width: 768px) {
    .tab-item:hover .ci-dentist {
        background-image: url(../img/icons/dentist-w.svg);
    }
}

.tab-item:hover .ci-clinic {
    background-image: url(../img/icons/clinic.svg);
}

.tab-item:hover .ci-rdh {
    background-image: url(../img/icons/rdh.svg);
}

@media screen and (max-width: 768px) {
    .tab-item:hover .ci-clinic {
        background-image: url(../img/icons/clinic-w.svg);
    }

    .tab-item:hover .ci-rdh {
        background-image: url(../img/icons/rdh-w.svg);
    }
}

.tab-item:hover .ci-company {
    background-image: url(../img/icons/company.svg);
}

@media screen and (max-width: 768px) {
    .tab-item:hover .ci-company {
        background-image: url(../img/icons/company-w.svg);
    }
}

.r-tabs-state-active .ci-lab {
    background-image: url(../img/icons/lab.svg);
}

.r-tabs-state-active .ci-job {
    background-image: url(../img/icons/job.svg);
}

.r-tabs-state-active .ci-dentist {
    background-image: url(../img/icons/dentist.svg);
}

.r-tabs-state-active .ci-clinic {
    background-image: url(../img/icons/clinic.svg);
}
.r-tabs-state-active .ci-rdh {
    background-image: url(../img/icons/rdh.svg);
}

.r-tabs-state-active .ci-company {
    background-image: url(../img/icons/company.svg);
}

.active-tab {
    font-weight: bold !important;
    background-color: #fff;
}

.search_box {
    border: none !important;
    background-color: transparent;
    margin: 0px;
    padding: 0px;
}

.custom-select {
    border: 1px solid #DFF1FF;
    border-radius: 12px;
    color: #01223b;
    background-color: #DFF1FF;
    height: auto;
    line-height: 2;
}

.tab-content {
    padding: 20px 15px !important;
}

.home-btn-wrapper {
    text-align: center;
    width: 100%;
    margin: auto;
    margin-top: 20px;
}

.home-title {
    color: #01223b;
    margin: 40px 0px;
    margin-bottom: 20px;
}

.home-search-btn {
    display: block;
    text-align: center;
    padding: 10px 20px;
}

.content-row {
    padding: 20px 0px;
}

.gray-row {
    width: 100%;
    background-color: rgba(229, 244, 255, 0.6);
}

.tabs-box {
    position: relative;
}

.tab-hover {
    position: absolute;
    width: 150px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    top: 0px;
    left: -151px;
    border-radius: 12px 12px 0px 0px;
}

.home-slider__item {
    padding: 90px 15px 15px 15px;
}

.partner-slider__item {
    padding: 15px 30px;
    padding-bottom: 40px;
}

.partner-slider .partner-logo-box {
    border: 1px solid #b8e1ff;
    border-radius: 12px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 12px 15px rgba(0, 0, 0, 0.1);
}

.partner-slider .partner-logo {
    width: 100%;
    display: block;
    padding-bottom: 70%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all .4s;
    background-image: url(../img/logo-gray.png);
}

.partner-slider .partner-logo-box:hover .partner-logo {
    transform: scale(1.07);
}

.partner-title {
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
}

.partner-title::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -10px;
    left: 0px;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
}

.r-tabs-accordion-title {
    position: relative;
}

.r-tabs-accordion-title::before {
    content: "\f107";
    font-family: 'Font Awesome 5 Free';
    color: #fff;
    position: absolute;
    top: 11px;
    right: 18px;
    font-weight: 900;
}

.r-tabs-accordion-title.r-tabs-state-active {
    position: relative;
}

.r-tabs-accordion-title.r-tabs-state-active::before {
    content: "\f104";
}

.search-box {
    width: 100%;
    border: 1px solid #b8e1ff;
    border-radius: 12px;
    margin: 40px 0px;
    padding: 20px 20px;
}

.search-box__title {
    color: #01223b;
}

.search-box__btn {
    margin: 23px 0px;
    padding-left: 50px;
    padding-right: 50px;
}

.user-col {
    margin-top: 60px;
    margin-bottom: 30px;
}

.company-card {
    background-color: #fff;
    border: 1px solid #e5f4ff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 12px 15px rgba(0, 0, 0, 0.1);
}

.company-card__logo {
    border: 1px solid #c6e6ff;
    width: 160px;
    height: 160px;
    border-radius: 300px;
    margin-top: -90px;
    background: #fff;
    margin: auto;
    margin-top: -80px;
    overflow: hidden;
}

.company-card__logo-img {
    background-image: url(../img/default-avatar.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    border-radius: 300px;
    border: 10px solid #fff;
}

.company-card__content {
    padding: 20px;
    font-size: 14px;
}

.company-card__title {
    font-size: 18px;
    font-weight: bold;
    color: #01223b;
    min-height: 54px;
}

.company-card__address {
    font-size: 14px;
    margin-bottom: 10px;
    color: #01223b;
    font-weight: 400;
}

.company-card__info {
    margin-bottom: 30px;
}

.company-card__btn {
    padding: 10px 10px;
    font-size: 16px;
    width: 100%;
    display: inline-block;
    text-align: center;
}

.clc-detail-cover-img {
    background-image: url(../img/avatar/cover.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 300px;
}

.clc-detail {
    border: 1px solid #b8e1ff;
    border-radius: 40px 40px 0 0;
    margin-top: -30px;
    background-color: #fff;
}

.clc-detail-header {
    color: #01223b;
    border-bottom: 1px solid #b8e1ff;
}

.clc-detail-header__title-box {
    padding: 0px 30px;
}

.clc-detail-header__logo {
    width: 150px;
    height: 150px;
    margin-top: -75px;
    border: 1px solid #b8e1ff;
    border-radius: 200px;
    background-color: #fff;
    overflow: hidden;
}

.clc-detail-header__logo-img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.clc-detail-header__title {
    margin-top: 15px;
    font-size: 30px;
    font-weight: bold;
}

.contact-info {
    font-size: 16px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding: 20px 0;
}

.contact-info__item {
    line-height: 180%;
}

@media screen and (max-width: 991px) {
    .contact-info {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .contact-info {
        margin-left: 30px;
    }
}

.content-box {
    padding: 30px;
    color: #01223b;
}

.content-box__title {
    font-weight: bold;
    margin-top: 30px;
}

.content-box__social-link {
    display: inline-block;
    background-color: #085ff8;
    border-radius: 50px;
    padding: 7px 13px;
    font-size: 23px;
    color: #fff;
    width: 45px;
    height: 45px;
}

.content-box__social-link:hover {
    color: #fff;
}

.instagram {
    background: radial-gradient(circle at 30% 107%, #fdc597 0%, #fdc597 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.facebook {
    background: #395694;
}

.linkedin {
    background: #0271ae;
}

.twitter {
    background: #00acee;
}

.map-box {
    width: 100%;
    padding-bottom: 100%;
    background-color: #ccc;
}

.job-card {
    margin-bottom: 20px;
}

.job-card__inner {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-between;
    border: 1px solid #b8e1ff;
    border-radius: 12px;
}

@media screen and (max-width: 576px) {
    .job-card__inner {
        flex-direction: column;
    }
}

.job-card__title {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.job-card__title:hover {
    color: #000;
}

.job-card__text {
    font-size: 14px;
    color: #777;
}

.job-card__address {
    font-size: 15px;
    color: #777;
}

.job-card__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding: 20px;
}

.job-card__actions {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    color: #fff;
}

@media screen and (max-width: 576px) {
    .job-card__actions {
        width: 100%;
        flex-direction: row;
    }
}

.job-card__btn {
    text-align: center;
    height: 50%;
    padding: 15px;
    color: #fff;
    font-size: 14px;
}

@media screen and (max-width: 576px) {
    .job-card__btn {
        width: 50%;
        padding: 15px 3px;
        font-size: 13px;
    }
}

.green_btn {
    background-color: #085ff8;
    border: 1px solid #085ff8;
    border-radius: 0 12px 0 0;
    transition: all 0.3s;
}

.green_btn:hover {
    color: #085ff8;
    background-color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 576px) {
    .green_btn {
        border-radius: 0 0 0 12px;
    }
}

.blue_btn {
    background-color: #91CEFB;
    border: 1px solid #91CEFB;
    border-radius: 0 0 12px 0;
    transition: all 0.3s;
}

.blue_btn:hover {
    color: #91CEFB;
    background-color: #fff;
    text-decoration: none;
}

.sidebar-content {
    padding: 20px;
    background-color: #E0EEF9;
    color: #01223b;
}

.gallery-box {
    margin: 0px;
    padding: 0px;
    margin-bottom: 30px;
}

.gallery-box li {
    border: 1px solid transparent;
    float: left;
    height: 230px;
    margin: 0 -1px -1px 0;
    overflow: hidden;
    width: calc(100% / 4);
    padding: 10px;
    overflow: hidden;
    position: relative;
}

@media screen and (max-width: 991px) {
    .gallery-box li {
        width: calc(100% / 2);
        height: 130px;
    }
}

.gallery-box li img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: zoom-in;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
}

.gallery-img-container {
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid #b8e1ff;
    overflow: hidden;
}

.sidebar-filter {
    border: 1px solid #b8e1ff;
    border-radius: 12px;
    width: 100%;
    padding: 30px;
}

@media screen and (max-width: 768px) {
    .sidebar-filter {
        margin-bottom: 15px;
    }
}

.job-item {
    color: #01223b;
    border: 1px solid #b8e1ff;
    border-radius: 12px;
    width: 100%;
    display: table;
    padding: 15px;
    line-height: 180%;
    margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
    .job-item {
        line-height: 140%;
    }
}

.job-item__logo {
    width: 200px;
    height: 140px;
    background-color: #fff;
    padding: 15px;
    margin-right: 40px;
    position: relative;
    display: table-cell;
}

@media screen and (max-width: 991px) {
    .job-item__logo {
        width: 120px;
    }
}

@media screen and (max-width: 576px) {
    .job-item__logo {
        display: none;
    }
}

.job-item__logo-img {
    background-image: url(../img/brand1.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: calc(100% - 40px);
    height: 100%;
    position: absolute;
    top: 0px;
}

.job-item__content {
    display: table-cell;
}

.job-item__title {
    display: inline-block;
    margin: 10px 10px 10px 0;
}

.job-item__type {
    display: inline;
    font-size: 15px;
    color: #777;
}

.job-item__company-name {
    display: inline-block;
    margin-right: 10px;
}

.job-item__city {
    display: inline;
    font-size: 15px;
    color: #777;
}

.job-item__date {
    font-size: 15px;
    color: #777;
}

@media screen and (max-width: 991px) {
    .job-item__date {
        margin-bottom: 15px;
    }
}

.job-item__actions {
    width: 150px;
    height: 100%;
    position: relative;
    display: table-cell;
}

@media screen and (max-width: 991px) {
    .job-item__actions {
        display: none;
    }
}

.job-item__actions-box {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
}

.job-item__btn {
    width: 100%;
    text-align: center;
    padding: 2px 9px;
    margin-bottom: 5px;
}

@media screen and (max-width: 991px) {
    .job-item__btn {
        padding: 5px 12px;
    }
}

.job-item__actions-box-tablet {
    display: none;
}

@media screen and (max-width: 991px) {
    .job-item__actions-box-tablet {
        display: block;
    }
}

.job-detail-container {
    padding-top: 40px;
}

.job-detail {
    border: 1px solid #b8e1ff;
    color: #01223b;
    border-radius: 12px;
}

.job-detail__sub-title {
    font-size: 18px;
}

.job-detail__header {
    border-bottom: 1px solid #b8e1ff;
    padding: 20px 30px;
}

.apply-box {
    border: 1px solid #b8e1ff;
    border-radius: 12px;
    padding: 15px 10px;
    margin: 20px;
    background-color: #F1F9FC;
}

.apply-box__btn {
    padding: 16px 16px;
    font-size: 25px;
    font-weight: bold;
    width: 100%;
    text-align: center;
    display: inline-block;
}

.company-info {
    margin-bottom: 20px;
}

.company-info__logo {
    padding: 10px 0;
    width: 250px;
    height: 85px;
}

.company-info__logo-img {
    background-image: url(../img/brand1.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    width: 100%;
    height: 100%;
}

.company-info__content {
    margin-bottom: 30px;
    font-size: 14px;
}

.company-info__title {
    font-size: 18px;
    font-weight: bold;
    color: #01223b;
}

.company-info__address {
    font-size: 14px;
    margin-bottom: 10px;
    color: #01223b;
    font-weight: 400;
}

.company-info__btn {
    text-align: center;
    padding: 6px 10px;
    font-size: 14px;
}

.web-design-page {
    background-color: #fdf9f4;
    color: #01223b;
}

.web-top {
    width: 100%;
    height: calc(100vh - 80px);
    background-image: url(../img/web/top-bg.jpg);
    background-color: #ecddd0;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width: 991px) {
    .web-top {
        height: auto;
        background-image: none;
        background-position: bottom;
        background-size: contain;
    }
}

.web-top__content-box {
    padding: 0px 10px;
    margin-left: 10%;
}

@media screen and (max-width: 991px) {
    .web-top__content-box {
        width: 100%;
        padding: 70px 15px;
        margin-left: 0%;
    }
}

.web-top__title {
    font-size: 36px;
    font-weight: 500;
    line-height: 150%;
}

@media screen and (max-width: 991px) {
    .web-top__title {
        font-size: 24px;
    }
}

.web-top__subtitle {
    height: 70px;
    font-size: 70px;
    font-weight: 700;
    line-height: 100%;
    color: #085ff8;
    margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
    .web-top__subtitle {
        font-size: 40px;
        height: 40px;
    }
}

.web-top__par {
    font-size: 20px;
    max-width: 350px;
    margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
    .web-top__par {
        font-size: 18px;
    }
}

.bor-btn {
    border: 1px solid #01223b;
    cursor: pointer;
    padding: 8px 15px;
    position: relative;
    overflow: hidden;
    color: #01223b;
}

.bor-btn:hover {
    color: #fff;
    background-color: #01223b;
}

.web-card {
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
}

.web-card__image {
    width: 60%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 991px) {
    .web-card__image {
        width: 100%;
        height: 200px;
    }
}

.web-card__content-box {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: -30px;
}

@media screen and (max-width: 991px) {
    .web-card__content-box {
        width: 100%;
        margin-left: 0px;
        margin-top: -30px;
    }
}

.web-card__title {
    padding: 10px 20px;
    font-size: 24px;
    color: #fff;
    display: inline-flex;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

@media screen and (max-width: 991px) {
    .web-card__title {
        margin-left: 20px;
    }
}

.web-card__text {
    padding: 15px 20px;
    overflow: hidden;
    z-index: 9;
    line-height: 160%;
    position: relative;
    font-size: 16px;
}

@media screen and (max-width: 991px) {
    .web-card__text {
        margin-top: -30px;
        padding-top: 45px;
    }
}

@media screen and (max-width: 991px) {
    .web-card {
        flex-direction: column;
    }
}

.web-pic {
    position: absolute;
    top: 0px;
    left: -100%;
    width: 100%;
    height: 100%;
}

.text-text {
    position: relative;
}

.title-parde {
    background-color: #085ff8;
}

.text-parde {
    background-color: #fff;
}

.web-pic1 {
    background-size: cover;
    background-image: url(../img/web/design2.jpg);
}

.web-pic1:hover {
    background-image: url(../img/web/design.jpg);
}

.web-pic2 {
    background-size: cover;
    background-image: url(../img/web/dynamic.jpg);
}

.web-pic3 {
    background-size: cover;
    background-image: url(../img/web/reliable.jpg);
}

.web-pic1-parde1 {
    background-color: #085ff8;
}

.web-pic1-parde2 {
    background-color: #fde405;
}

.web-pic2-parde1 {
    background-color: #085ff8;
}

.web-pic2-parde2 {
    background-color: #fde405;
}

.web-pic3-parde1 {
    background-color: #085ff8;
}

.web-pic3-parde2 {
    background-color: #fde405;
}

.web-grow {
    width: 100%;
    height: 450px;
    background-image: url(../img/web/grow-bg.jpg);
    background-size: cover;
    position: relative;
}

.web-grow__parde {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(1, 34, 59, 0.75);
}

.web-grow__text-box {
    text-align: center;
    padding: 0px 15px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.web-grow__title {
    letter-spacing: 20px;
    color: #fff;
    font-weight: 200;
    font-size: 46px;
}

@media screen and (max-width: 991px) {
    .web-grow__title {
        font-size: 24px;
    }
}

.web-grow__text {
    color: #fff;
    font-weight: 200;
    margin-top: 15px;
    font-size: 24px;
    letter-spacing: 2px;
}

@media screen and (max-width: 991px) {
    .web-grow__text {
        font-size: 16px;
    }
}

.letter {
    display: inline-block;
    opacity: 0;
}

.web-cart-res {
    max-width: 400px;
    margin: auto;
    flex-direction: column;
}

.web-cart-res .web-card__image {
    width: 100%;
    height: 300px;
}

@media screen and (max-width: 991px) {
    .web-cart-res .web-card__image {
        height: 200px;
    }
}

.web-cart-res .web-card__content-box {
    width: 100%;
    margin-left: 0px;
    margin-top: -30px;
}

.web-cart-res .web-card__title {
    margin-left: 20px;
}

.web-cart-res .web-card__text {
    margin-top: -30px;
    padding-top: 45px;
}

.web-res {
    background-color: #5dbad8;
}

.web-res .container-fluid {
    padding: 0px;
}

.web-res .row {
    margin-right: 0;
}

.web-res__image {
    background-image: url(../img/web/responsive.jpg);
    width: 100%;
    padding-bottom: 65%;
    background-position: left center;
}

.web-res__text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 30px;
}

.web-res__title {
    font-size: 28px;
    line-height: 180%;
    font-weight: 600;
}

.web-res__text {
    font-size: 16px;
    line-height: 160%;
    max-width: 400px;
}

.web-contact {
    padding-top: 120px;
    padding-bottom: 120px;
    text-align: center;
}

.web-contact__title {
    font-size: 32px;
    font-weight: 300;
}

.web-contact__title span {
    font-weight: 600;
}

.web-contact__subtitle {
    font-size: 30px;
    color: #085ff8;
    margin-top: 20px;
}

.web-contact__info {
    margin-top: 40px;
    font-size: 18px;
}

.fp-tableCell {
    display: block;
}

@media screen and (max-width: 991px) {
    .fp-tableCell {
        height: auto !important;
    }
}

.web-section {
    background-size: cover;
    position: relative;
}

@media screen and (max-width: 991px) {
    .web-section {
        height: auto !important;
    }
}

.web-section .middle-content {
    height: calc(100% - 81px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width: 991px) {
    .web-section .middle-content {
        height: auto;
    }
}

.web-section__content {
    padding: 0px 70px;
}

@media screen and (max-width: 991px) {
    .web-section__content {
        padding: 30px 0px;
    }
}

.web-section__title {
    transition: all 1s;
    transition-delay: .5s;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 7px;
}

@media screen and (max-width: 991px) {
    .web-section__title {
        font-size: 22px;
    }
}

.web-section__text {
    font-size: 20px;
    transition: all 1s;
    transition-delay: .7s;
    line-height: 160%;
    font-weight: 300;
    text-align: justify;
    margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
    .web-section__text {
        font-size: 18px;
    }
}

.web-section__cta {
    transition: all 1s;
    transition-delay: .9s;
}

@media screen and (max-width: 991px) {
    .web-section__cta {
        display: none;
    }
}

.web-section .container {
    height: 100%;
}

@media screen and (max-width: 991px) {
    .web-section .container {
        height: auto;
    }
}

.web-section .row {
    height: 100%;
}

@media screen and (max-width: 991px) {
    .web-section .row {
        height: auto;
    }
}

.web-section__form label {
    display: none;
}

.web-section__form textarea {
    height: 180px;
}

.web-link {
    display: inline-block;
    border: 1px solid #085ff8;
    font-weight: 400;
    font-size: 15px;
    padding: 6px 15px;
    text-transform: uppercase;
    color: #085ff8;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
}

.web-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #085ff8;
    transition: all .2s;
    z-index: -1;
}

.web-link:hover {
    color: #fff;
}

.web-link:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .2s;
}

.show-me {
    opacity: 0;
    transform: translate(0px, 100px);
}

.show-mex {
    opacity: 0;
    transform: translate(50px, 0px);
}

.dark-section .web-link {
    color: #fff;
    border: 1px solid #fff;
}

.dark-section .web-link:hover {
    color: #085ff8;
}

.dark-section .web-link::before {
    background-color: #fff;
}

.webdesign-page .section-1 {
    background-image: url(../img/webdesign/bg1.jpg);
}

@media screen and (max-width: 991px) {
    .webdesign-page .section-1 {
        background: none;
    }
}

.webdesign-page .section-2 {
    background-image: url(../img/webdesign/bg2.jpg);
}

@media screen and (max-width: 991px) {
    .webdesign-page .section-2 {
        background: none;
    }
}

.webdesign-page .section-3 {
    background-image: url(../img/webdesign/bg3.jpg);
}

@media screen and (max-width: 991px) {
    .webdesign-page .section-3 {
        background: none;
    }
}

.webdesign-page .section-4 {
    background-image: url(../img/webdesign/bg4.jpg);
}

@media screen and (max-width: 991px) {
    .webdesign-page .section-4 {
        background: none;
    }
}

.webdesign-page .section-6 {
    background-image: url(../img/webdesign/bg5.jpg);
}

@media screen and (max-width: 991px) {
    .webdesign-page .section-6 {
        background: none;
    }
}

.fp-menu {
    font-size: 14px;
    bottom: 70px;
    right: 0px;
    position: fixed;
    text-align: right;
    direction: rtl;
}

@media screen and (max-width: 991px) {
    .fp-menu {
        display: none;
    }
}

.fp-menu li {
    list-style: none;
}

.fp-menu a {
    font-weight: 300;
    opacity: .7;
    color: #000;
}

.fp-menu a:hover {
    opacity: 1;
}

.fp-menu .active a {
    font-weight: 500;
    opacity: 1 !important;
}

.fp-menu-dark a {
    color: #fff;
}

.pic-effect {
    transition: all .2s;
}

.zoom-effect {
    transition: all .2s;
}

.dark-bg::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.dark-section {
    color: #fff;
}

.dark-section a {
    color: #fff;
}

.dark-section .web-section__cta-link {
    color: #fff;
    border: 1px solid #fff;
}

.dark-section .web-section__cta-link:hover {
    background-color: #fff;
    color: #000;
}

@media screen and (max-width: 991px) {
    .dark-section {
        color: #000;
    }
}

.section-5 {
    background-color: #eee;
}

#plan-card1 {
    transition-delay: .5s;
}

#plan-card2 {
    transition-delay: .7s;
}

#plan-card3 {
    transition-delay: .9s;
}

.plan-card {
    width: 100%;
    transition: all 1s;
    min-height: 100px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 20px 40px #D9E0E3;
    overflow: hidden;
    text-align: center;
    position: relative;
}

@media screen and (max-width: 991px) {
    .plan-card {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

.plan-card .recomended {
    position: absolute;
    top: 33px;
    left: -53px;
    background-color: #ffe77b;
    padding: 2px 0px;
    width: 200px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #9b4b00;
    transform: rotate(-45deg);
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
}

.plan-card__header {
    background-color: #085ff8;
    color: #fff;
    text-align: center;
    padding: 10px 10px;
    font-weight: 500;
    font-size: 22px;
}

.plan-card__price {
    border-bottom: 1px solid #f3f3f3;
    padding: 10px 7px;
    color: #085ff8;
    font-weight: 500;
    font-size: 20px;
}

.plan-card__price span {
    font-size: 14px;
    font-weight: 400;
}

.plan-card__item {
    border-bottom: 1px solid #f3f3f3;
    padding: 5px 7px;
}

.plan-card__btn-box {
    padding: 10px 0px;
}

.plan-card__btn {
    display: inline-block;
    background-color: #085ff8;
    padding: 3px 10px;
    border-radius: 20px;
    color: #fff;
}

.plan-card__btn:hover {
    background-color: rgba(8, 95, 248, 0.8);
    color: #fff;
}

.more-prices-box {
    padding: 40px 15px;
}

.more-prices-title {
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    padding-top: 50px;
}

.prices-title {
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 0px;
    display: none;
}

@media screen and (max-width: 991px) {
    .prices-title {
        display: block;
    }
}

.section1-img-res {
    width: 100%;
}

.section1-img-res img {
    width: 100%;
}

#page-cover-w {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    top: 0px;
    left: 0px;
    display: none;
}

@media screen and (max-width: 991px) {
    #page-cover-w {
        display: block;
    }
}

.section-img-res {
    display: none;
}

@media screen and (max-width: 991px) {
    .section-img-res {
        display: block;
    }
}

.form-send-btn {
    background-color: #085ff8;
    border-radius: 30px;
    padding: 15px 30px;
    color: #fff;
    font-weight: 500;
}

.form-send-btn:hover {
    color: #fff;
    background-color: rgba(8, 95, 248, 0.8);
}

.fp-tableCell {
    display: block;
}

@media screen and (max-width: 991px) {
    .fp-tableCell {
        height: auto !important;
    }
}

.dm-section {
    background-size: cover;
    position: relative;
}

@media screen and (max-width: 991px) {
    .dm-section {
        height: auto !important;
    }
}

.dm-section .middle-content {
    height: calc(100% - 81px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width: 991px) {
    .dm-section .middle-content {
        height: auto;
    }
}

.dm-section__content {
    padding: 0px 70px;
}

@media screen and (max-width: 991px) {
    .dm-section__content {
        padding: 30px 0px;
    }
}

.dm-section__title {
    transition: all 1s;
    transition-delay: .5s;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 7px;
}

@media screen and (max-width: 991px) {
    .dm-section__title {
        font-size: 22px;
    }
}

.dm-section__text {
    font-size: 20px;
    transition: all 1s;
    transition-delay: .7s;
    line-height: 160%;
    font-weight: 300;
    text-align: justify;
    margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
    .dm-section__text {
        font-size: 18px;
    }
}

.dm-section__cta {
    transition: all 1s;
    transition-delay: .9s;
}

@media screen and (max-width: 991px) {
    .dm-section__cta {
        display: none;
    }
}

.dm-section .container {
    height: 100%;
}

@media screen and (max-width: 991px) {
    .dm-section .container {
        height: auto;
    }
}

.dm-section .row {
    height: 100%;
}

@media screen and (max-width: 991px) {
    .dm-section .row {
        height: auto;
    }
}

.dm-section__form label {
    display: none;
}

.dm-section__form textarea {
    height: 180px;
}

.dm-link {
    display: inline-block;
    border: 1px solid #085ff8;
    font-weight: 400;
    font-size: 15px;
    padding: 6px 15px;
    text-transform: uppercase;
    color: #085ff8;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
}

.dm-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #085ff8;
    transition: all .2s;
    z-index: -1;
}

.dm-link:hover {
    color: #fff;
}

.dm-link:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .2s;
}

.show-me {
    opacity: 0;
    transform: translate(0px, 100px);
}

.show-mex {
    opacity: 0;
    transform: translate(50px, 0px);
}

.dark-section .dm-link {
    color: #fff;
    border: 1px solid #fff;
}

.dark-section .dm-link:hover {
    color: #085ff8;
}

.dark-section .dm-link::before {
    background-color: #fff;
}

.dm-page .section-1 {
    background-image: url(../img/dm/bg1.jpg);
}

@media screen and (max-width: 991px) {
    .dm-page .section-1 {
        background: none;
    }
}

.dm-page .section-2 {
    background-image: url(../img/dm/bg2.jpg);
}

@media screen and (max-width: 991px) {
    .dm-page .section-2 {
        background: none;
    }
}

.dm-page .section-3 {
    background-image: url(../img/dm/bg3.jpg);
}

@media screen and (max-width: 991px) {
    .dm-page .section-3 {
        background: none;
    }
}

.dm-page .section-4 {
    background-image: url(../img/dm/bg4.jpg);
}

@media screen and (max-width: 991px) {
    .dm-page .section-4 {
        background: none;
    }
}

.dm-page .section-6 {
    background-image: url(../img/dm/bg5.jpg);
}

@media screen and (max-width: 991px) {
    .dm-page .section-6 {
        background: none;
    }
}

.fp-menu {
    font-size: 14px;
    bottom: 70px;
    right: 0px;
    position: fixed;
    text-align: right;
    direction: rtl;
}

@media screen and (max-width: 991px) {
    .fp-menu {
        display: none;
    }
}

.fp-menu li {
    list-style: none;
}

.fp-menu a {
    font-weight: 300;
    opacity: .7;
    color: #000;
}

.fp-menu a:hover {
    opacity: 1;
}

.fp-menu .active a {
    font-weight: 500;
    opacity: 1 !important;
}

.fp-menu-dark a {
    color: #fff;
}

.pic-effect {
    transition: all .2s;
}

.zoom-effect {
    transition: all .2s;
}

.dark-bg::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.dark-section {
    color: #fff;
}

.dark-section a {
    color: #fff;
}

.dark-section .dm-section__cta-link {
    color: #fff;
    border: 1px solid #fff;
}

.dark-section .dm-section__cta-link:hover {
    background-color: #fff;
    color: #000;
}

@media screen and (max-width: 991px) {
    .dark-section {
        color: #000;
    }
}

.section-5 {
    background-color: #eee;
}

#plan-card1 {
    transition-delay: .5s;
}

#plan-card2 {
    transition-delay: .7s;
}

#plan-card3 {
    transition-delay: .9s;
}

.plan-card {
    width: 100%;
    transition: all 1s;
    min-height: 100px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 20px 40px #D9E0E3;
    overflow: hidden;
    text-align: center;
    position: relative;
}

@media screen and (max-width: 991px) {
    .plan-card {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

.plan-card .recomended {
    position: absolute;
    top: 33px;
    left: -53px;
    background-color: #ffe77b;
    padding: 2px 0px;
    width: 200px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #9b4b00;
    transform: rotate(-45deg);
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
}

.plan-card__header {
    background-color: #085ff8;
    color: #fff;
    text-align: center;
    padding: 10px 10px;
    font-weight: 500;
    font-size: 22px;
}

.plan-card__price {
    border-bottom: 1px solid #f3f3f3;
    padding: 10px 7px;
    color: #085ff8;
    font-weight: 500;
    font-size: 20px;
}

.plan-card__price span {
    font-size: 14px;
    font-weight: 400;
}

.plan-card__item {
    border-bottom: 1px solid #f3f3f3;
    padding: 5px 7px;
}

.plan-card__btn-box {
    padding: 10px 0px;
}

.plan-card__btn {
    display: inline-block;
    background-color: #085ff8;
    padding: 3px 10px;
    border-radius: 20px;
    color: #fff;
}

.plan-card__btn:hover {
    background-color: rgba(8, 95, 248, 0.8);
    color: #fff;
}

.more-prices-box {
    padding: 40px 15px;
}

.more-prices-title {
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    padding-top: 50px;
}

.prices-title {
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 0px;
    display: none;
}

@media screen and (max-width: 991px) {
    .prices-title {
        display: block;
    }
}

.section1-img-res {
    width: 100%;
}

.section1-img-res img {
    width: 100%;
}

#page-cover-w {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    top: 0px;
    left: 0px;
    display: none;
}

@media screen and (max-width: 991px) {
    #page-cover-w {
        display: block;
    }
}

.section-img-res {
    display: none;
}

@media screen and (max-width: 991px) {
    .section-img-res {
        display: block;
    }
}

.form-send-btn {
    background-color: #085ff8;
    border-radius: 30px;
    padding: 15px 30px;
    color: #fff;
    font-weight: 500;
}

.form-send-btn:hover {
    color: #fff;
    background-color: rgba(8, 95, 248, 0.8);
}
#error-page{
    width: 600px;
    margin: 50px auto;
    text-align: center;
}

#error-page h1{
    font-size: 150px;
    
}
