* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DINNextLTArabic";
    font-size: 15px;
    background: #fdfdfd;
    text-align: right;
    direction: rtl;
    min-height: 100vh;
}

body.show-sidebar {
    overflow: hidden;
}

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

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

p {
    margin: 0;
}

body::-webkit-scrollbar-track {
    background: #f9f9f9;
}

body::-webkit-scrollbar-thumb {
    background: #47b6ba;
}

body::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

.scroll {
    padding-left: 15px;
}

.scroll::-webkit-scrollbar-thumb {
    background: #9ec8ca;
    border-radius: 10px;
}

.scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    border-radius: 10px;
}

.btn-primary {
    color: #fff !important;
    background-color: #47b6ba;
    border-color: #47b6ba;
}

.btn-primary:hover,
.btn-primary:active {
    color: #fff !important;
    background-color: #358f92 !important;
    border-color: #358f92 !important;
}

.btn-outline-primary {
    color: #47b6ba;
    border-color: #47b6ba;
}

.btn-outline-primary:hover,
.btn-outline-primary:active {
    color: #fff !important;
    background-color: #358f92 !important;
    border-color: #358f92 !important;
}

.btn-info {
    color: #fff;
    background-color: #d9b564;
    border-color: #d9b564;
}

.btn-info:hover,
.btn-info:active,
.btn-info:focus {
    color: #fff !important;
    background-color: #af924e !important;
    border-color: #af924e !important;
    box-shadow: none !important;
}

.btn-secondary {
    color: #fff;
    background-color: #999999;
    border-color: #999999;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
    color: #fff;
    background-color: #838383;
    border-color: #838383;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1240px;
    }
}

::selection {
    color: #fff;
    background: #47b6ba;
}

.no-focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.form-control:focus {
    border: 1px solid #47b6ba !important;
    box-shadow: none;
}

main {
    min-height: 50vh;
}

/* checkbox and radio style */

.checkbox,
.radio {
    margin-bottom: 6px;
}
.checkbox.inline,
.radio.inline {
    display: inline-block;
    vertical-align: top;
    margin-left: 18px;
}
.checkbox.inline:last-child,
.radio.inline:last-child {
    margin-left: 0;
}
.checkbox label,
.radio label {
    display: block;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    font-size: 14px;
}
.checkbox input[type="checkbox"],
.radio input[type="checkbox"],
.checkbox input[type="radio"],
.radio input[type="radio"] {
    position: absolute;
    top: 0;
    right: 0;
    visibility: hidden;
}
.checkbox .custom-checkbox,
.radio .custom-checkbox,
.checkbox .custom-radio,
.radio .custom-radio {
    display: inline-block;
    vertical-align: top;
    margin: 0 0 0 6px;
    width: 17px;
    height: 17px;
    background: #fff;
    border: 1px solid #47b6ba;
    position: relative;
}

.radio .custom-radio,
.checkbox .custom-radio {
    width: 15px;
    height: 15px;
}

.checkbox .custom-checkbox {
    border-radius: 2px;
    background: #47b6ba;
    transition: box-shadow 180ms ease;
    box-shadow: inset 0 0 0 12px #fff;
    top: 5px;
}

.checkbox .custom-checkbox,
.radio .custom-checkbox {
    border: 1px solid #b7b5b5;
    border-radius: 4px;
}

.checkbox .icon-check {
    width: 9px;
    height: 9px;
    background-size: cover;
    position: absolute;
    top: 3px;
    right: 3px;
    transform: scale(0);
    transition: all 180ms ease;
}
.checkbox input[type="checkbox"]:checked + .custom-checkbox {
    border-color: #47b6ba;
    box-shadow: none;
}

.checkbox input[type="checkbox"]:checked ~ .check-label {
    color: #47b6ba;
}

.checkbox input[type="checkbox"]:checked + .custom-checkbox .icon-check {
    transform: scale(1);
}
.radio .custom-radio {
    border-radius: 50%;
    background: #47b6ba;
    box-shadow: inset 0 0 0 12px #fff;
    transition: all 180ms ease;
    top: 2px;
}
.radio input[type="radio"]:checked + .custom-radio {
    border-color: #47b6ba;
    background: #47b6ba;
    box-shadow: inset 0 0 0 2px #fff;
}
.icon-check {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20baseProfile%3D%22tiny%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2216%22%20height%3D%2216%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M13.483%201.992l-7.186%207.066-3.778-3.715-2.518%202.475%205.037%204.954%201.259%201.237%209.704-9.541-2.518-2.476z%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
}
.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* #end checkbox and radio style */

/* header style */

header {
    padding: 5px 0;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    height: 75px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

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

header .header-wrapper .header-right {
    display: flex;
    align-items: center;
}

header .header-wrapper .header-right .logo-wrapper {
    align-self: center;
}

header .header-wrapper .header-right .logo-wrapper img {
    width: 70px;
}

header .header-wrapper .nav {
    margin-right: 40px;
}

header .header-wrapper .nav ul {
    display: flex;

    position: relative;
}

header .header-wrapper .nav > ul > li {
    margin: 0 8px;
    padding: 26px 0;
}

header .header-wrapper .nav ul li a {
    transition: 0.2s;
    color: #4b6d6e;
    font-weight: 500;
    z-index: 3;
}

header .header-wrapper .nav ul li.active > a {
    color: #6fc9d9;
}

header .header-wrapper .nav ul .list-link .mega-menu li.active a {
    color: #6fc9d9;
}

header .header-wrapper .nav ul li a:hover {
    color: #6fc9d9;
}

header .header-wrapper .nav ul li:first-child {
    margin-right: 0;
}

header .header-wrapper .nav ul li:last-child {
    margin-left: 0;
}

/* mega menu */
.mega-menu {
    display: none;
    min-width: 200px;
    max-width: 550px;
    position: absolute;
    top: 100%;
    z-index: 5;
    background: #fff;
    padding: 15px;
}

@media (min-width: 992px) {
    header .header-wrapper .nav ul li:hover > .mega-menu {
        display: flex;
    }
}

header .header-wrapper .nav ul li .hudu-meage-menu .mega-menu-head {
    font-size: 18px;
    color: #333333;
    font-weight: 500;
    margin-bottom: 20px;
}

header .header-wrapper .nav ul li .hudu-meage-menu .page-insed {
    width: 40%;
}

header .header-wrapper .nav ul li .hudu-meage-menu .page-insed ul {
    display: flex;
    flex-direction: column;
}

header .header-wrapper .nav ul li .hudu-meage-menu .page-insed ul li {
    margin-right: 0;
}

header .header-wrapper .nav ul li .hudu-meage-menu .page-insed ul li a {
    color: #333333;
    font-weight: 500;
    padding: 5px 0 10px;
    display: flex;
    border-bottom: 1px solid #f9f9f9;
}

header
    .header-wrapper
    .nav
    ul
    li
    .hudu-meage-menu
    .page-insed
    ul
    li:last-child
    a {
    border-bottom: 0;
}

header .header-wrapper .nav ul li .hudu-meage-menu .page-insed ul li a:hover {
    color: #73d4d8;
}

header .header-wrapper .nav ul li .hudu-meage-menu .last-article {
    margin-right: 10px;
    width: 60%;
}

header .header-wrapper .nav ul li .hudu-meage-menu .last-article ul {
    display: flex;
    flex-direction: column;
}

header .header-wrapper .nav ul li .hudu-meage-menu .last-article ul li {
    margin-right: 0 !important;
}

header .header-wrapper li .hudu-meage-menu .last-article ul li .article-box {
    display: flex;
    border-bottom: 1px solid #f9f9f9;
    padding: 10px 0;
}

header
    .header-wrapper
    li
    .hudu-meage-menu
    .last-article
    ul
    li
    .article-box
    .article-img {
    width: 60px;
    height: 60px;
}

header
    .header-wrapper
    li
    .hudu-meage-menu
    .last-article
    ul
    li
    .article-box
    .article-img
    img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

header
    .header-wrapper
    li
    .hudu-meage-menu
    .last-article
    ul
    li
    .article-box
    .article-name {
    display: flex;
    flex-direction: column;
    margin-right: 10px;
}

header
    .header-wrapper
    li
    .hudu-meage-menu
    .last-article
    ul
    li
    .article-box
    .article-name
    a {
    color: #333333;
}

header
    .header-wrapper
    li
    .hudu-meage-menu
    .last-article
    ul
    li
    .article-box
    .article-name
    a:hover {
    color: #6fc9d9;
}

header
    .header-wrapper
    li
    .hudu-meage-menu
    .last-article
    ul
    li
    .article-box
    .article-info {
    color: #a2a2a2;
    font-size: 12px;
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
}

header .header-wrapper li .mega-menu-list {
    width: 100%;
}

header .header-wrapper li .mega-menu-list ul {
    display: flex;
    flex-direction: column;
}

header .header-wrapper li .mega-menu-list ul li a {
    padding: 5px 0 10px;
    display: flex;
    border-bottom: 1px solid #f9f9f9;
    color: #333333;
}

header .header-wrapper li .mega-menu-list ul li:last-child a {
    border-bottom: 0;
}

/* header-links */
.header-links {
    display: flex;
    align-items: center;
}

.header-links > .header-links-item {
    /* margin-right: 20px; */
}

.header-links .header-links-item .icon {
    font-size: 20px;
}

.header-links .header-links-item .icon.icon-search {
    font-size: 17px;
}

.header-links .header-links-item .icon:before {
    color: #4b6d6e;
}

.header-links .header-links-item a.btn {
    background: #f5f5f5;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-links .search {
    position: relative;
}

.header-links .search-circle {
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header-links .search-circle.show-form-search {
    background: #47b6ba;
}

.header-links .search-circle.show-form-search i:before {
    color: #fff;
}

.header-links .search form {
    position: absolute;
    right: 0;
    width: 200px;
    background: #fff;
    display: flex;
    justify-content: center;
    top: 200%;
    transform: translateY(-50%);
    padding: 4px;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
}

.header-links .search form.show-form-search {
    top: 200%;
    transform: translateY(-50%);
    visibility: visible;
    opacity: 1;
    right: 0;
    z-index: 2;
}

.header-links .search form div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-links .search form div button {
    height: 30px;
    width: 37px;
    position: absolute;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #47b6ba;
    border: 0;
    padding: 0 10px;
    border-radius: 5px;
}

.header-links .search form div button .icon {
    font-size: 15px !important;
}

.header-links .search form div button .icon:before {
    color: #fff;
}

.header-links .search form div button:hover {
    background: #339296;
}

.header-links .search form div input {
    padding-left: 45px;
    height: 30px;
    border-radius: 5px;
    box-shadow: none;
    font-size: 14px;
}

.header-links .dropdown-menu {
    border: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    max-width: 400px !important;
    min-width: 280px !important;
    right: auto;
    top: 10px !important;
    left: 0;
    text-align: right;
    border-radius: 8px;
    max-height: 340px;
    overflow-y: auto;
}

.header-links .dropdown-menu::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.header-links .dropdown-menu::-webkit-scrollbar-track {
    background: #f9f9f9;
}

.header-links .dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(71, 182, 186, 0.5);
}

.header-links .dropdown-menu .dropdown-item {
    white-space: normal;
    padding: 0 10px;
    margin-bottom: 15px;
}

.header-links .dropdown-menu .dropdown-item:focus,
.header-links .dropdown-menu .dropdown-item:hover {
    background: transparent;
}

/* notification */

.header-links .dropdown.show .btn {
    background: #47b6ba;
}

.header-links .dropdown.show .btn .icon:before {
    color: #fff;
}

.header-links .notification .dropdown-item .notification-box {
    background: #f5f5f5;
    border-radius: 5px;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.header-links .notification .dropdown-item.no-active .notification-box:after {
    content: "";
    position: absolute;
    left: -40px;
    top: 18px;
    width: 100px;
    height: 6px;
    background: #47b6ba;
    transform: rotate(-45deg);
}

.header-links .notification .dropdown-item .notification-box p {
    color: #47b6ba;
    font-weight: 700;
    font-size: 14px;
}

.header-links .notification .dropdown-item .notification-box span {
    color: #141414;
    font-size: 13px;
    margin-top: 10px;
    display: inline-block;
}

/* message */

.header-links .message-box {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 5px;
    padding: 10px;
    position: relative;
}

.header-links .message-box .message-img {
    width: 40px;
    height: 40px;
}

.header-links .message-box .message-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}

.header-links .message-box .message-content {
    margin: 0 10px;
    display: flex;
    flex-direction: column;
}

.header-links .message-box .message-content p {
    color: #141414;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 160px;
}

.header-links .message-box .message-content span {
    color: #061263;
    font-size: 12px;
}

.header-links .message-box .message-info {
    background: #e0d119;
    border-radius: 50%;
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 10px;
    top: 14px;
}

.header-links .message-box .message-info span {
    font-size: 12px;
}

/* create account */
.create-account {
    margin-right: 15px;
}

.create-account .create-account-btn {
    background: #d9b564;
    border-radius: 20px;
    color: #fff;
    border: none;
    height: 40px;
    min-width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    transition: 0.3s;
    font-size: 14px;
}

.create-account .create-account-btn:hover {
    background: #be9f56;
}

/* toggle-sidebar */
.toggle-sidebar {
    cursor: pointer;
    margin: 9px 0;
    width: 20px;
    height: 20px;
    position: relative;
    display: none;
    margin: 8px 0;
    margin-left: 20px;
}

.toggle-sidebar span {
    display: flex;
    width: 100%;
    height: 2px;
    border-radius: 3px;
    margin: 5px 0 0;
    background: #333333;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 1;
}

.toggle-sidebar span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.toggle-sidebar span:nth-child(2) {
    top: 18px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.toggle-sidebar span:nth-child(3) {
    top: 36px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.toggle-sidebar.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -3px;
    left: 8px;
}

.toggle-sidebar.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.toggle-sidebar.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 39px;
    left: 8px;
}

.sub-nav-toggler {
    display: none;
}

.nav .create-account {
    display: none;
}

/* header responsive */

@media screen and (min-width: 992px) and (max-width: 1199px) {
    header .header-wrapper .nav ul {
        flex-wrap: wrap;
    }
    header .header-wrapper .nav > ul > li {
        padding: 5px 0;
    }
}

@media screen and (max-width: 991px) {
    header .header-wrapper .toggle-sidebar {
        display: block;
    }

    header .header-wrapper .nav {
        position: absolute;
        top: 75px;
        right: -200px;
        background: #fff;
        width: 200px;
        height: 100vh;
        overflow-y: scroll;
        z-index: 10001;
        margin-right: 0;
        transition: 0.3s;
    }

    header .header-wrapper .nav.show-sidebar {
        right: 0;
    }

    header .header-wrapper .nav > ul {
        flex-direction: column;
        width: 100%;
    }

    header .header-wrapper .nav > ul > li {
        margin: 0;
        padding: 10px;
        width: 100%;
    }

    header .header-wrapper .nav > ul > li a {
        position: relative;
        display: flex;
    }
    .sub-nav-toggler {
        display: block;
        position: absolute;
        left: 4px;
        top: 4px;
        background: transparent;
        border: none;
        width: 20px;
        height: 20px;
        background: #47b6ba;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 2px;
        outline: none;
    }

    .sub-nav-toggler .icon {
        font-size: 8px;
        display: inline-block;
        transform: rotate(-90deg);
    }

    .sub-nav-toggler .icon:before {
        color: #fff;
    }

    .mega-menu {
        position: relative;
        top: 10px;
        display: none;
        flex-direction: column;
        min-width: 100%;
        max-width: 100%;
    }

    .mega-menu.show {
        display: flex;
        padding-top: 0;
    }

    header .header-wrapper .nav ul li .hudu-meage-menu .page-insed {
        width: 100%;
    }

    header .header-wrapper .nav ul li .hudu-meage-menu .last-article {
        width: 100%;
        margin-right: 0;
    }

    header .header-wrapper .nav ul li .hudu-meage-menu .mega-menu-head {
        font-size: 14px;
        margin-bottom: 5px;
        font-weight: bold;
    }

    header
        .header-wrapper
        .nav
        ul
        li
        .hudu-meage-menu
        .last-article
        .mega-menu-head {
        margin-top: 20px;
    }

    header .header-wrapper .nav ul li .hudu-meage-menu .page-insed ul li a {
        padding: 5px 0;
        font-size: 13px;
    }

    header
        .header-wrapper
        li
        .hudu-meage-menu
        .last-article
        ul
        li
        .article-box {
        flex-direction: column;
    }

    header
        .header-wrapper
        li
        .hudu-meage-menu
        .last-article
        ul
        li
        .article-box
        .article-name {
        margin-right: 0;
    }

    header
        .header-wrapper
        li
        .hudu-meage-menu
        .last-article
        ul
        li
        .article-box
        .article-name
        a {
        font-size: 12px;
        margin-top: 5px;
    }

    header
        .header-wrapper
        li
        .hudu-meage-menu
        .last-article
        ul
        li
        .article-box
        .article-img {
        width: 100%;
    }

    header
        .header-wrapper
        li
        .hudu-meage-menu
        .last-article
        ul
        li
        .article-box
        .article-img
        img {
        width: 100%;
    }

    header
        .header-wrapper
        li
        .hudu-meage-menu
        .last-article
        ul
        li
        .article-box
        .article-info
        span {
        font-size: 11px;
    }

    header .header-wrapper li .mega-menu-list ul li a {
        font-size: 13px;
    }

    .header-links .dropdown-menu {
        right: auto;
        left: 0;
        min-width: 280px !important;
        max-width: 280px !important;
    }

    .header-links .message-box .message-content p {
        width: 150px;
    }

    .header-links .message-box {
        padding: 10px 5px;
    }

    .header-links .message-box .message-img {
        width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 576px) {
    .header-left .create-account {
        display: none;
    }

    .header-links > .header-links-item {
        margin-right: 10px;
    }

    .header-links .dropdown-menu {
        min-width: 240px !important;
        max-width: 240px !important;
    }

    .header-links .message-box .message-content p {
        width: 118px;
    }

    .header-links .search {
        position: static;
    }

    .header-links .search form {
        width: 100%;
        visibility: visible !important;
        opacity: 1 !important;
        top: -100%;
        transition: none;
        z-index: 99;
    }

    .header-links .search form.show-form-search.show-form-search {
        top: 71px;
        left: 0;
        transform: none;
        padding: 10px;
    }

    .header-links .search form div {
        width: 95%;
    }

    .nav .create-account {
        display: block;
        margin-right: 0 !important;
        margin-top: 10px !important;
    }
}

/* main-section */

.main-section {
    min-height: 120vh;
    background: url(../images/main-section-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    /* display: flex;
    align-items: center; */
    padding-top: 130px;
    padding-bottom: 80px;
}

.main-section:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #2b5555, #306c82);
    opacity: 0.8;
    z-index: -1;
}

.main-section .main-section-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.main-section .main-section-logo {
    position: relative;
    width: 50px;
    margin-bottom: 20px;
}

.main-section .main-section-logo img {
    filter: brightness(500);
    -webkit-filter: brightness(500);
    -moz-filter: brightness(500);
    -o-filter: brightness(500);
}

.main-section .main-section-logo:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    border-radius: 50%;
    bottom: -15px;
    right: 0;
    background: #d9b564;
    filter: blur(2px);
}

.main-section h1 {
    font-size: 45px;
    color: #73d4d8;
    font-weight: 500;
    margin-bottom: 20px;
}

.main-section h2 {
    font-size: 16px;
    color: #fff;
    max-width: 400px;
    margin-bottom: 40px;
    font-weight: normal;
    line-height: 1.6;
    color: #d4e7e8;
}

.main-section .main-section-services {
    display: flex;
    align-items: center;
}

.main-section .main-section-services .main-section-services-box {
    width: 150px;
    height: 170px;
    position: relative;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    border-radius: 6px;
    overflow: hidden;
}

.main-section .main-section-services .main-section-services-box:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(75, 109, 110, 0.56) 20%,
        rgba(75, 109, 110, 0.4) 40%,
        rgba(160, 178, 179, 0.35) 80%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
}

.main-section .main-section-services .main-section-services-box img {
    width: 100%;
    height: 100%;
}

.main-section .main-section-services .main-section-services-box p {
    position: absolute;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    text-align: center;
    z-index: 2;
    padding: 10px;
}

.main-section .main-section-wrapper .main-section-foot {
    color: #d9b564;
    margin-top: 15px;
    font-size: 17px;
}

/* main section point */
.main-section .main-section-point {
    position: absolute;
    left: 0;
    top: 15%;
}

.main-section .main-section-point img {
    width: 60px;
}

.main-section-call {
    background: url(../images/call-bg.svg);
    background-repeat: no-repeat;
    width: 220px;
    height: 255px;
    background-size: cover;
    position: absolute;
    left: 0;
    bottom: 8%;
}

.main-section-call a {
    position: absolute;
    left: 35%;
    top: 55%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transform: translate(-50%, -50%);
    border-radius: 50px;
}

.main-section-call a .icon {
    font-size: 30px;
}

.main-section-shape.custom-shape-divider-bottom-1601316766 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.main-section-shape.custom-shape-divider-bottom-1601316766 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 143px;
    transform: rotateY(180deg);
}

.main-section-shape.custom-shape-divider-bottom-1601316766 .shape-fill {
    fill: #fdfdfd;
}

@media screen and (max-width: 1024px) {
    .main-section {
        min-height: 100vh;
    }
}

@media screen and (max-width: 576px) {
    .main-section {
        min-height: 120vh;
    }

    .main-section h1 {
        font-size: 25px;
    }

    .main-section h2 {
        max-width: 100%;
    }

    .main-section .main-section-services {
        flex-wrap: wrap;
    }

    .main-section .main-section-services .main-section-services-box {
        margin-bottom: 15px;
    }

    .main-section .main-section-services .main-section-services-box {
        width: 100px;
        height: 150px;
    }

    .main-section .main-section-services .main-section-services-box p {
        font-size: 20px;
    }

    .main-section-call {
        bottom: 15%;
        width: 100px;
        height: 118px;
    }

    .main-section-call a .icon {
        font-size: 16px;
    }

    .main-section-call a {
        width: 50px;
        height: 50px;
    }

    .main-section .main-section-point {
        display: none;
    }
}

/* our-services-section */

.our-services-section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 50px;
}

.section-header h4 {
    color: #47b6ba;
    font-weight: 500;
    font-size: 35px;
    position: relative;
    text-align: center;
}

.section-header h4:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    border-radius: 50%;
    bottom: -19px;
    right: calc(50% - 25px);
    transform: translateY(-50%);
    background: #d9b564;
    filter: blur(1px);
}

.section-header p {
    font-size: 17px;
    margin-top: 25px;
    color: #999999;
    max-width: 500px;
    text-align: center;
}

.our-services-bx {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.our-services-bx:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #204e4f;
    opacity: 0.5;
    z-index: 1;
}

.our-services-bx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-services-bx p {
    position: absolute;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.our-services-slider.slick-initialized .slick-slide {
    padding-left: 20px;
    outline: none;
}

.our-services-slider .slick-list {
    padding-left: 100px;
}

.our-services-shap {
    position: absolute;
}

.our-services-shap img {
    width: 28px;
}

.our-services-shap-1 {
    top: 10%;
    right: 5%;
}

.our-services-shap-2 {
    top: 22%;
    left: 5%;
}

.our-services-shap-3 {
    top: 10%;
    left: 8%;
}

@media (max-width: 576px) {
    .our-services-shap {
        display: none;
    }
}

/* doctor landing section */

.doctor-landing-section {
    background-image: url("../images/doctor-landing-section-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    position: relative;
    padding: 120px 0 250px;
}

.doctor-landing-section:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #2b5555, #306c82);
    opacity: 0.8;
    z-index: -1;
}

.doctor-landing-section .section-header p {
    color: #d4e7e8;
}

.doctor-landing-bx {
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.doctor-landing-bx .doctor-landing-bx-img {
    position: relative;
    width: 100%;
}

.doctor-landing-bx .doctor-landing-bx-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
}

.doctor-landing-bx .doctor-landing-bx-img span {
    color: #fff;
    display: flex;
    background: #47b6ba;
    border-radius: 6px 0 6px 0;
    position: absolute;
    bottom: 0;
    padding: 4px 10px;
    font-size: 12px;
}

.doctor-landing-bx .doctor-name {
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    margin-top: 15px;
}

.doctor-landing-bx .course-number {
    color: #fff;
    margin-top: 10px;
    font-size: 13px;
}

.doctor-landing-slider.slick-initialized .slick-slide {
    padding-left: 20px;
    outline: none;
}

/* doctor landing wave style */
.doctor-landing-top-wave .custom-shape-divider-top-1601365340 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.doctor-landing-top-wave .custom-shape-divider-top-1601365340 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.doctor-landing-top-wave .custom-shape-divider-top-1601365340 .shape-fill {
    fill: #fdfdfd;
}

.doctor-landing-bottom-wave .custom-shape-divider-bottom-1601366356 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.doctor-landing-bottom-wave .custom-shape-divider-bottom-1601366356 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.doctor-landing-bottom-wave
    .custom-shape-divider-bottom-1601366356
    .shape-fill {
    fill: #fdfdfd;
}

.doctor-landing-section .doctor-landing-shape-1 {
    position: absolute;
    top: 20%;
    right: 8%;
}

.doctor-landing-section .doctor-landing-shape-1 img {
    width: 80px;
}

.doctor-landing-section .doctor-landing-shape-2 {
    position: absolute;
    bottom: 20%;
    right: 8%;
}

.doctor-landing-section .doctor-landing-shape-2 img {
    width: 60px;
}

@media (max-width: 991px) {
    .doctor-landing-section .doctor-landing-shape-1,
    .doctor-landing-section .doctor-landing-shape-2 {
        display: none;
    }
}

@media (max-width: 576px) {
    .doctor-landing-slider.slick-initialized .slick-slide {
        padding-left: 0 !important;
    }
}

/* landing scale section */

.landing-scale-section {
    padding-bottom: 100px;
    position: relative;
}

.landing-scale-bx {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-self: center;
    align-items: center;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.landing-scale-slider .landing-scale-bx:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #2b5555, #306c82);
    opacity: 0.62;
    z-index: 1;
}

.landing-scale-slider .landing-scale-bx img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
}

.landing-scale-slider .landing-scale-bx .landing-scale-bx-content {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.landing-scale-slider .landing-scale-bx p {
    font-size: 25px;
    color: #fff;
}

.landing-scale-slider .landing-scale-bx span {
    color: #73d4d8;
    display: inline-block;
    font-size: 15px;
    padding-top: 5px;
}

.landing-scale-slider.slick-initialized .slick-slide {
    padding-left: 20px;
    outline: none;
}

.landing-scale-slider .slick-list {
    padding-left: 20px;
}

.landing-scale-section .landing-scale-section-shape {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.landing-scale-section .landing-scale-section-shape img {
    width: 150px;
}

@media (max-width: 991px) {
    .landing-scale-section .landing-scale-section-shape {
        display: none;
    }
}

/* our articles section */

.our-articles-section {
    position: relative;
    padding-bottom: 100px;
}

.our-articles-box {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
    margin-bottom: 15px;
}

.our-articles-slider.slick-initialized .slick-slide {
    padding-left: 20px;
    outline: none;
}

.our-articles-slider .slick-list {
    padding-left: 20px;
}

.our-articles-box .our-articles-box-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.48);
    position: relative;
}

.our-articles-box .our-articles-box-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.our-articles-box .our-articles-box-img span {
    color: #fff;
    display: flex;
    background: #47b6ba;
    border-radius: 0 6px 0 6px;
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px 10px;
    font-size: 12px;
}

.our-articles-box .our-articles-box-content {
    padding: 20px 15px;
}

.our-articles-box .our-articles-box-content .our-articles-box-head {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
}

.our-articles-box
    .our-articles-box-content
    .our-articles-box-head
    .our-articles-name {
    color: #162635;
    font-weight: bold;
    font-size: 17px;
    /* white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 90%; */
    margin-bottom: 0;
    padding-bottom: 8px;
}

.our-articles-box .our-articles-box-content .our-articles-box-head span {
    color: #b5b5b5;
    font-size: 13px;
}

.our-articles-box .our-articles-box-content .our-articles-box-dist p {
    color: #27323e;
}

.our-articles-box .our-articles-box-content .our-articles-box-foot {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
}

.our-articles-box
    .our-articles-box-content
    .our-articles-box-foot
    .our-articles-statis {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.our-articles-box
    .our-articles-box-content
    .our-articles-box-foot
    .our-articles-statis
    span {
    padding-right: 8px;
    font-size: 14px;
    color: #4b6d6e;
    display: inline-block;
}

.our-articles-box .our-articles-box-content .our-articles-box-foot .icon {
    font-size: 18px;
}

.our-articles-box
    .our-articles-box-content
    .our-articles-box-foot
    .icon.icon-eyeOn {
    font-size: 15px;
}

.our-articles-box
    .our-articles-box-content
    .our-articles-box-foot
    .icon.icon-dislike {
    position: relative;
    top: 2px;
}

.our-articles-box
    .our-articles-box-content
    .our-articles-box-foot
    .icon:before {
    color: #bbbbbb;
}

/* our articles shap  */
.our-articles-shap {
    position: absolute;
}

.our-articles-shap-1 {
    top: 0;
    right: 0;
    z-index: -1;
}

.our-articles-shap-1 img {
    width: 150px;
}

.our-articles-shap-2 {
    top: 5%;
    right: 18%;
    z-index: -1;
}

.our-articles-shap-2 img {
    width: 25px;
}

.our-articles-shap-3 {
    top: 2%;
    left: 15%;
    z-index: -1;
}

.our-articles-shap-3 img {
    width: 20px;
}

/* training section */
.training-section {
    background-image: url("../images/training-section-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    position: relative;
    padding: 120px 0 250px;
}

.training-section:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #2b5555, #306c82);
    opacity: 0.8;
    z-index: -1;
}

.training-section .section-header p {
    color: #d4e7e8;
}

.training-section-wrapper {
    max-width: 80%;
    margin: auto;
}

.training-section-wrapper .training-section-box {
    height: 170px;
    background: #fff;
    border-radius: 10px;
    position: relative;
}

.training-section-wrapper .training-section-box .training-section-img {
    width: 360px;
    height: 100%;
    margin-right: auto;
    display: flex;
    position: absolute;
    left: 0;
    z-index: 1;
}

.training-section-wrapper .training-section-box .training-section-inner {
    z-index: 2;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.training-section-wrapper .training-section-box .training-section-inner p {
    color: #d9b564;
    font-weight: 500;
    font-size: 35px;
    display: inline-block;
}

.training-section-wrapper
    .training-section-box
    .training-section-inner
    .training-show-all
    a
    img {
    width: 22px;
}

.training-section-wrapper
    .training-section-box
    .training-section-inner
    .training-show-all
    a
    span {
    font-size: 18px;
    color: #47b6ba;
    padding-right: 5px;
    transition: 0.3s;
}

.training-section-wrapper
    .training-section-box
    .training-section-inner
    .training-show-all
    a:hover
    span {
    color: #d9b564;
}

.training-section-wrapper
    .training-section-box
    .training-section-inner
    .training-show-all
    a:hover
    span {
    color: #27868a;
}

.training-section .training-section-shape {
    position: absolute;
}

.training-section .training-section-shape-1 {
    top: 30%;
    right: 5%;
}

.training-section .training-section-shape-1 img {
    width: 80px;
}

.training-section .training-section-shape-2 {
    bottom: 20%;
    left: 5%;
}

.training-section .training-section-shape-2 img {
    width: 20px;
}

@media (max-width: 1024px) {
    .training-section-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .training-section-wrapper .training-section-box {
        margin-bottom: 30px;
    }

    .training-section-shape {
        display: none;
    }
}

@media (max-width: 576px) {
    .training-section {
        padding: 200px 0;
    }

    .training-section-wrapper .training-section-box {
        height: 150px;
    }

    .training-section-wrapper .training-section-box .training-section-img {
        width: 200px;
    }

    .training-section-wrapper .training-section-box .training-section-inner p {
        font-size: 30px;
    }
}

/* statistics section */
.statistics-section {
    padding: 100px 0 0;
    position: relative;
}

.statistics-section-heade {
    align-items: flex-start;
    padding-bottom: 30px;
}

.statistics-section-heade p {
    max-width: 400px;
}

.statistics-section-heade h4,
.statistics-section-heade p {
    text-align: right !important;
}

.statistics-section-heade h4:after {
    left: 1%;
    right: unset;
}

.statistics-section-heade h4:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    border-radius: 50%;
    top: -4px;
    right: 1%;
    background: #d9b564;
    filter: blur(1px);
}

.statistics-section-dist {
    margin-bottom: 30px;
}

.statistics-section-dist .statistics-section-dist-inner {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.statistics-section-dist .statistics-section-dist-inner p {
    color: #47b6ba;
    font-weight: bold;
    margin-right: 10px;
    font-size: 20px;
}

.statistics-section-dist .statistics-section-dist-inner span {
    color: #999999;
    margin-right: 10px;
}

.statistics-section-video a {
    max-width: 80%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: auto;
    position: relative;
    border-radius: 8px;
}

.statistics-section-video a img {
    border-radius: 8px;
}

.statistics-section-video a .icon-open-video {
    display: flex;
    place-content: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.statistics-section-shap {
    position: absolute;
}

.statistics-section-shap img {
    width: 22px;
}

.statistics-section-shap-1 {
    top: 2%;
    right: 5%;
}

.statistics-section-shap-2 {
    bottom: 15%;
    left: 5%;
}

.statistics-section-shap-3 {
    bottom: 20%;
    left: 8%;
}

@media (max-width: 991px) {
    .statistics-section-video a {
        max-width: 100%;
        justify-content: center;
        margin-right: 0;
    }

    .statistics-section-shap {
        display: none;
    }
}

@media (max-width: 576px) {
    .statistics-section-heade h4:after {
        display: none;
    }

    .statistics-section-video a .icon-open-video img {
        width: 40px;
    }
}

/* Contact us */

.contact-us-section {
    padding-bottom: 100px;
    padding-top: 150px;
}

.contact-us-section .contact-us-section-form {
    max-width: 80%;
    margin: 0 auto;
}

.contact-us-section .contact-us-section-form .section-header.contact-us-header {
    margin-bottom: 0;
}

.contact-us-section
    .contact-us-section-form
    .section-header.contact-us-header
    h4:after {
    right: auto;
    left: 1%;
}

.contact-us-section .contact-us-section-form .form-control {
    border-radius: 20px;
    border: 1px solid #cccccc;
}

.contact-us-section .contact-us-section-form input.form-control {
    height: 45px;
}

.contact-us-section .contact-us-section-form .form-control::placeholder {
    font-size: 14px;
    color: #aaaaaa;
}

.contact-us-section .contact-us-section-form textarea.form-control {
    height: 200px;
    resize: none;
}

.contact-us-section .contact-us-section-form .send-message {
    border-radius: 20px;
    height: 45px;
}

@media (max-width: 576px) {
    .contact-us-section
        .contact-us-section-form
        .section-header.contact-us-header
        h4:after {
        display: none;
    }
}

footer {
    padding-top: 120px;
    padding-bottom: 20px;
    background: linear-gradient(to right, #2b5555, #306c82);
    position: relative;
    margin-top: 80px;
}

.footer-col-1 {
    padding-left: 70px;
}

footer .footer-col .footer-logo {
    margin-bottom: 30px;
}

footer .footer-col .footer-logo img {
    width: 180px;
}

.footer-col-about h4 {
    color: #fdfcfc;
    margin-bottom: 20px;
}

.footer-col-about p {
    color: #fdfcfc;
    font-size: 15px;
    line-height: 1.8;
}

.footer-col-social {
    margin-top: 30px;
    display: flex;
}

.footer-col-social p {
    color: #fdfcfc;
}

.footer-col-social ul {
    display: flex;
}

.footer-col-social ul li {
    margin-right: 10px;
}

.footer-col-social ul li a {
    transition: 0.3s;
    display: inline-block;
}

.footer-col-social ul li a:hover {
    transform: translateY(-2px);
}

.footer-col {
    padding-bottom: 20px;
}

.footer-col .footer-col-head {
    margin-bottom: 30px;
}

.footer-col .footer-col-head h4 {
    font-weight: bold;
    font-size: 18px;
    color: #fdfcfc;
    position: relative;
}

.footer-col .footer-col-head h4:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    border-radius: 50%;
    bottom: -15px;
    right: 1%;
    transform: translateY(-50%);
    background: #d9b564;
    filter: blur(1px);
}

.footer-col-list ul li {
    margin-bottom: 15px;
}

.footer-col-list ul li a {
    color: #fdfcfc;
}

.footer-col-list ul li a:hover {
    color: #47b6ba;
}

.footer-col-list span {
    color: #fdfcfc;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #d4e7e8;
}

.copyright p {
    color: #fdfcfc;
}

.footer-top-wave .custom-shape-divider-top-1601395245 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-top-wave .custom-shape-divider-top-1601395245 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 86px;
}

.footer-top-wave .custom-shape-divider-top-1601395245 .shape-fill {
    fill: #fdfdfd;
}

@media (max-width: 576px) {
    .footer-col-1 {
        padding-left: 0;
    }

    footer .footer-col .footer-logo {
        text-align: center;
    }
}

/* modal style */

/* creat account */
.custom-modal .modal-body {
    padding: 30px;
}

.custom-modal .modal-head {
    text-align: center;
    margin-bottom: 40px;
}

.custom-modal .modal-head h4 {
    color: #4b6d6e;
    font-weight: bold;
    font-size: 22px;
    position: relative;
    display: inline-block;
}

.custom-modal .modal-head h4:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    border-radius: 50%;
    bottom: -15px;
    right: calc(50% - 25px);
    transform: translateY(-50%);
    background: #d9b564;
    filter: blur(1px);
}

.custom-modal .modal-inner {
    margin-top: 20px;
}

.custom-form {
    position: relative;
}

.custom-form input.form-control {
    height: 40px;
    border-radius: 5px;
    padding-right: 50px;
}

.custom-form .form-control:focus {
    box-shadow: none;
}

.custom-form .form-control::placeholder {
    color: #777777;
}

/* custom form */
.custom-form-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-form-icon:after {
    content: "";
    width: 1px;
    height: 50%;
    background: #d4d4d4;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    left: 0;
}

.custom-form-icon .icon {
    font-size: 18px;
}

.custom-form-icon .icon.icon-email {
    font-size: 14px;
}

.custom-form-icon .icon:before {
    color: #47b6ba;
}

.custom-form.password-field input {
    padding-left: 40px;
}

/* hide show password */
.custom-modal .show-hide-pass-btn {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.custom-modal .show-hide-pass-btn .icon:before {
    color: #d4d4d4;
}

.custom-modal .show-hide-pass-btn .icon.icon-eyeOn {
    font-size: 12px;
}

/* btn modal style */
.custom-modal .btn-modal {
    height: 45px;
}

/* modal info  */
.custom-modal .modal-info {
    margin-top: 20px;
}

.custom-modal .modal-info p {
    color: #4b6d6e;
}

/* modal link  */
.custom-modal .modal-link {
    color: #47b6ba;
}

.custom-modal .modal-link:hover {
    color: #2b8386;
}

/* modal forget password link  */
.custom-modal .forgot-password {
    color: #4b6d6e;
}

.custom-modal .forgot-password:hover {
    color: #2b8386;
}

.account-verif-inner {
    color: #999999;
    margin: 20px 0;
    text-align: center;
}

.code-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.code-wrapper .code-input {
    margin-right: 10px;
    width: 50px;
    height: 40px;
    text-align: center;
}

@media (max-width: 576px) {
    .code-wrapper .code-input {
        width: 40px;
    }
}

/***** End langePage style ******/

/***** start About us page style ******/

/* page header style */

.page-wrapper {
    padding-top: 75px;
}

.page-header {
    position: relative;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.page-header:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #2b5555, #306c82);
    opacity: 0.8;
    z-index: -1;
}

.page-header.about-header {
    background: url("../images/aboutus-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header.faq-header {
    background: url("../images/faq-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header.articles-header {
    background: url("../images/articles-page-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.page-header.service-details-header {
    background: url("../images/service-details-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.page-header.test-details-header {
    background: url("../images/test-details-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.page-header.about-houdo-header {
    background: url("../images/about-houdo-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 10%;
}

.page-header h1 {
    font-size: 40px;
    color: #fff;
    text-align: center;
    position: relative;
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 30px;
    }
}

.page-header h1:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    border-radius: 50%;
    bottom: -15px;
    right: calc(50% - 25px);
    transform: translateY(-50%);
    background: #d9b564;
    filter: blur(1px);
}

.page-header-wav-bottom .custom-shape-divider-bottom-1601407349 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.page-header-wav-bottom .custom-shape-divider-bottom-1601407349 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 106px;
}

.page-header-wav-bottom .custom-shape-divider-bottom-1601407349 .shape-fill {
    fill: #ffffff;
}

.page-content {
    margin-top: 50px;
}

/* about us page */
.about-wrapper {
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
}

.about-wrapper p {
    margin-bottom: 20px;
    color: #999999;
    font-size: 17px;
}

/* faq page */

.search-box {
    padding: 25px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.26);
    border-radius: 8px;
}

.search-box .search-box-input {
    position: relative;
}

.search-box .search-box-input .icon-search:before {
    color: #47b6ba;
}

.search-box .search-box-input .icon-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.search-box .search-box-input .input-search {
    height: 40px;
    padding-right: 40px;
    border-radius: 20px;
    border: 1px solid #47b6ba;
}

.search-box .search-box-input .btn-search {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    border-radius: 20px !important;
}

.faq-accordion {
    margin-top: 40px;
}

.faq-accordion .accordion .card {
    border: none;
    margin-bottom: 20px;
}

.faq-accordion .accordion .card-header {
    padding: 0;
    background: #d4e7e8;
    border-bottom: none;
    border-radius: 10px !important;
}

.faq-accordion .accordion .btn-link {
    display: block;
    text-align: right;
    width: 100%;
    height: 100%;
    padding: 20px;
    padding-left: 50px;
    position: relative;
    color: #4b6d6e;
    text-decoration: none;
}

.faq-accordion .accordion .btn-link .icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    transition: transform ease-in-out 0.2s;
}

.faq-accordion .accordion .btn-link .icon:before {
    color: #4b6d6e;
}

.faq-accordion .accordion .card-body {
    background: #f5f5f5;
    border-radius: 10px;
    margin-top: 10px;
    color: #4b6d6e;
    line-height: 2;
}

.faq-accordion .accordion .btn-link:not(.collapsed) {
    background: #73d4d8;
    color: #ffffff;
}

.faq-accordion .accordion .btn-link:not(.collapsed) .icon {
    transform: rotate(-90deg) translate(50%, 50%);
}

.faq-accordion .accordion .btn-link:not(.collapsed) .icon:before {
    color: #fff;
}

/* articles page */

.articles-box-search {
    margin-bottom: 35px;
}

.articles-box-search .search-box-input {
    position: relative;
}

.articles-box-search .search-box-input button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.articles-box-search .search-box-input .icon {
    font-size: 17px;
}

.articles-box-search .search-box-input .icon:before {
    color: #47b6ba;
}

.articles-box-search .search-box-input .input-search {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
    border: none;
    border-radius: 20px;
    height: 38px;
    padding-right: 50px;
}

.articles-box-search .search-box-input .input-search::placeholder {
    color: #4d4f5c;
    font-size: 13px;
}

.articles-box-search .search-box-input .input-search:focus {
    border: none !important;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.11);
}

.article-filter {
    background: #fff;
    padding: 25px 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
}

.article-flt-head {
    color: #4b6d6e;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 20px;
}

.checkbox-box {
    margin-bottom: 10px;
}

.article-filter .publish-date-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.article-filter .publish-date-filter label {
    color: #4b6d6e;
}

.article-filter .publish-date-filter .date-input {
    width: 100px;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    padding-bottom: 5px;
    padding-left: 20px;
    font-size: 13px;
}

.article-filter .publish-date-filter img {
    position: absolute;
    bottom: 8px;
    left: 5px;
}

.datepicker-dropdown {
    z-index: 100 !important;
}

.article-column .our-articles-box {
    border-radius: 0;
    margin-bottom: 30px;
    overflow: hidden;
}

.article-column .our-articles-box .our-articles-box-img {
    overflow: hidden;
}

.article-column .our-articles-box .our-articles-box-img img {
    border-radius: 0;
    transition: 0.3s;
}

.article-column .our-articles-box:hover .our-articles-box-img img {
    transform: scale(1.05);
}

.article-column .our-articles-box .our-articles-box-img {
    height: 300px;
    border-radius: 0;
}

.article-column .our-articles-box .our-articles-box-img span {
    border-radius: 0 0 0 6px;
}

/* articles details page */

.article_dts-wrapper .article_dts-img {
    height: 465px;
    width: 100%;
    border-radius: 10px;
}

.article_dts-wrapper .article_dts-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.article_dts-info {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.article_dts-info p {
    color: #4b6d6e;
    font-weight: bold;
    margin-left: 50px;
    line-height: 2;
}

.article_dts-info .our-articles-box-foot {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
}

.article_dts-info .our-articles-box-foot .our-articles-statis {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.article_dts-info .our-articles-box-foot .our-articles-statis span {
    padding-right: 8px;
    font-size: 14px;
    color: #4b6d6e;
    display: inline-block;
}

.article_dts-info .our-articles-box-foot .icon {
    font-size: 18px;
}

.article_dts-info .our-articles-box-foot .icon.icon-eyeOn {
    font-size: 15px;
}

.article_dts-info .our-articles-box-foot .icon.icon-dislike {
    position: relative;
    top: 2px;
}

.article_dts-info .our-articles-box-foot .icon:before {
    color: #bbbbbb;
}

.article_dts-wrapper .article_dts-content {
    padding: 20px 50px;
    line-height: 1.8;
    color: #8e8e8e;
}

.article_dts-wrapper .article_dts-content p {
    margin-bottom: 10px;
}

.articles-content-img {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}

.articles-content-img img {
    max-width: 50%;
    margin-left: 30px;
}

.article_dts-wrapper .article_dts-content h4 {
    font-weight: 500;
    color: #4b6d6e;
    margin-bottom: 15px;
    font-size: 17px;
}

.article_dts-wrapper .article_dts-content ul {
    margin-bottom: 20px;
}

.article_dts-wrapper .article_dts-content ul li {
    position: relative;
    padding-right: 20px;
}

.article_dts-wrapper .article_dts-content ul li:after {
    content: "";
    position: absolute;
    top: 12px;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #47b6ba;
}

/* article details review */
.article_dts-review {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
}

.article_dts-review h3 {
    color: #4b6d6e;
    font-size: 20px;
    margin-bottom: 40px;
}

.article_dts-review .article_dts-review-btns {
    display: flex;
}

.article_dts-review .article_dts-review-btns .review-box {
    text-align: center;
    margin-left: 50px;
}

.article_dts-review .article_dts-review-btns .review-box:last-child {
    margin-left: 0;
}

.article_dts-review .article_dts-review-btns .review-box button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.article_dts-review .article_dts-review-btns .review-box button:hover {
    transform: scale(0.92);
}

.article_dts-review .article_dts-review-btns .review-box p {
    text-align: center;
    margin-top: 15px;
    font-size: 20px;
}

.article_dts-review .article_dts-review-btns .bad-article button {
    border: 1px solid #ef3d3d !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.article_dts-review .article_dts-review-btns .bad-article button .icon {
    font-size: 25px;
    position: relative;
    top: 4px;
}

.article_dts-review .article_dts-review-btns .bad-article button .icon:before {
    color: #ef3d3d;
}

.article_dts-review .article_dts-review-btns .bad-article p {
    color: #ef3d3d;
}

.article_dts-review .article_dts-review-btns .good-article button {
    border: 1px solid #18c139 !important;
}

.article_dts-review .article_dts-review-btns .good-article button .icon {
    font-size: 25px;
}

.article_dts-review .article_dts-review-btns .good-article button .icon:before {
    color: #18c139;
}

.article_dts-review .article_dts-review-btns .good-article p {
    color: #18c139;
}

@media (max-width: 576px) {
    .articles-content-img {
        flex-direction: column;
    }
    .articles-content-img img {
        max-width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
    }

    .article_dts-wrapper .article_dts-content {
        padding: 20px !important;
    }

    .article_dts-info {
        flex-direction: column;
    }

    .article_dts-info .our-articles-box-foot .our-articles-statis {
        margin-top: 15px;
    }

    .article_dts-info .our-articles-box-foot .our-articles-statis:first-child {
        margin-right: 0;
    }
}

/* about us page */
/* about_us-wrapper */

.about_us-section {
    padding-top: 20px;
    position: relative;
    margin-bottom: 50px;
}

.about_us-section .about_us-info {
    max-width: 80%;
    margin: auto;
    margin-top: 50px;
}

.about_us-heading {
    margin-bottom: 30px;
}

.about_us-heading h2 {
    color: #47b6ba;
    font-weight: 500;
    font-size: 35px;
    position: relative;
}

.about_us-heading h2:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    border-radius: 50%;
    bottom: -15px;
    right: 0;
    transform: translateY(-50%);
    background: #d9b564;
    filter: blur(1px);
}

.about_us-section .about_us-info p {
    font-size: 17px;
    color: #707070;
}

.about_us-section .about_us-img {
    max-width: 80%;
    margin-right: auto;
}

.about_us-section .about_us-img img {
    width: 350px;
}

.about_us-shape {
    position: absolute;
}

.about_us-shape {
    position: absolute;
}

.about_us-shape-1 {
    top: 0;
    right: 5%;
}

.about_us-shape-1 img {
    width: 24px;
}

.about_us-shape-2 {
    top: 14%;
    right: 3%;
}

.about_us-shape-2 img {
    width: 24px;
}

@media (max-width: 991px) {
    .about_us-section .about_us-img {
        margin: 80px auto 30px !important;
        display: flex;
        justify-content: center;
    }

    .about_us-shape {
        display: none;
    }
}

/* vision-section */

.vision-section {
    min-height: 90vh;
    background: url(../images/vision-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin-bottom: 50px;
    padding: 100px 0 0;
}

.vision-section-shape {
    position: absolute;
    bottom: 20%;
    right: 0;
    width: 100%;
}

.vision-content {
    max-width: 60%;
    margin: auto;
    z-index: 2;
    position: relative;
}

.vision-content .about_us-heading h2 {
    color: #fff !important;
}

.vision-content-info {
    color: #fff;
    line-height: 1.8;
    font-size: 17px;
}

.vision-section-top-wav .custom-shape-divider-top-1601467630 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.vision-section-top-wav .custom-shape-divider-top-1601467630 svg {
    position: relative;
    display: block;
    width: calc(107% + 1.3px);
    height: 95px;
}

.vision-section-top-wav .custom-shape-divider-top-1601467630 .shape-fill {
    fill: #fdfdfd;
}

.vision-section-bottom-wav .custom-shape-divider-bottom-1601467667 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.vision-section-bottom-wav .custom-shape-divider-bottom-1601467667 svg {
    position: relative;
    display: block;
    width: calc(107% + 1.3px);
    height: 95px;
}

.vision-section-bottom-wav .custom-shape-divider-bottom-1601467667 .shape-fill {
    fill: #fdfdfd;
}

@media (max-width: 1024px) {
    .vision-section {
        min-height: 600px;
    }
}

@media (max-width: 576px) {
    .vision-section-shape {
        display: none;
    }

    .vision-content {
        max-width: 100%;
        padding: 50px 20px;
    }
}

/* mission section */

.mission-section {
    padding: 30px 0;
}

.mission-section .about_us-heading h2:after {
    display: none;
}

.mission-section-content {
    max-width: 600px;
    min-height: 300px;
    margin: 50px auto;
    text-align: center;
    background: url(../images/mission-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    padding: 50px;
    /* border: 4px solid #4B6D6E; */
    background-position: center;
    position: relative;
}

.mission-section-content span {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.mission-section-content:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    background: #4b6d6e;
    border-radius: 10px;
    height: 4px;
}

.mission-section-content:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 85%;
    background: #4b6d6e;
    border-radius: 10px;
    height: 4px;
}

.mission-section-content span:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 40%;
    background: #4b6d6e;
    border-radius: 10px;
}

.mission-section-content span:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4px;
    height: 40%;
    background: #4b6d6e;
    border-radius: 10px;
}

.q-mark-right {
    position: absolute;
    bottom: -10px;
    right: 0;
    transform: rotate(180deg);
}

.q-mark-left {
    position: absolute;
    top: -20px;
    left: 0;
}

.mission-section-text {
    text-align: center;
    color: #707070;
    font-size: 17px;
}

@media (max-width: 576px) {
    .mission-section {
        margin: 0 20px;
    }

    .mission-section-content {
        max-width: 100%;
        padding: 30px;
    }

    .mission-section-content:before {
        width: 50%;
    }
    .mission-section-content:after {
        width: 50%;
    }
}

/* ourvalues section */

.ourvalues-section {
    background: url("../images/ourvalues-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 450px;
    position: relative;
    margin: 50px 0;
    padding-top: 100px;
    z-index: 1;
}

.ourvalues-section:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #2b5555, #306c82);
    opacity: 0.8;
    z-index: -1;
}

.ourvalues-section .about_us-heading {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ourvalues-section .about_us-heading h2 {
    color: #fff;
}

.ourvalues-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ourvalues-content ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.ourvalues-content ul li {
    color: #fff;
    font-size: 20px;
    margin-left: 50px;
    color: #fff;
    font-weight: bold;
    position: relative;
    margin-bottom: 10px;
}

.ourvalues-content ul li:last-child {
    margin-left: 0;
}

.ourvalues-content ul li:after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    right: -20px;
    top: 12px;
    background: url(../images/ourvalues-point.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.ourvalues-content ul li:first-child:after {
    display: none;
}

.ourvalues-section-top-wav .custom-shape-divider-top-1601473193 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.ourvalues-section-top-wav .custom-shape-divider-top-1601473193 svg {
    position: relative;
    display: block;
    width: calc(106% + 1.3px);
    height: 138px;
}

.ourvalues-section-top-wav .custom-shape-divider-top-1601473193 .shape-fill {
    fill: #fdfdfd;
}

.ourvalues-section-bottom-wav .custom-shape-divider-bottom-1601473274 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.ourvalues-section-bottom-wav .custom-shape-divider-bottom-1601473274 svg {
    position: relative;
    display: block;
    width: calc(106% + 1.3px);
    height: 138px;
}

.ourvalues-section-bottom-wav
    .custom-shape-divider-bottom-1601473274
    .shape-fill {
    fill: #ffffff;
}

@media (max-width: 576px) {
    .ourvalues-section {
        min-height: 600px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }
}

/* ourgoals section */

.ourgoals-section {
    margin: 20px 0;
    position: relative;
}

.ourgoals-section .ourgoals-info {
    max-width: 80%;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 20px;
}

.ourgoals-section .ourgoals-info-inner p {
    color: #555555;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 15px;
}

.ourgoals-section .ourgoals-info-inner ol {
    margin-right: 14px;
}

.ourgoals-section .ourgoals-info-inner ol li {
    color: #555555;
    font-size: 16px;
    margin-bottom: 10px;
}

.ourgoals-section .ourgoals-info-img {
    max-width: 80%;
    margin-right: auto;
}

.ourgoals-section .ourgoals-info-img img {
    width: 400px;
}

.ourgoals-section .ourgoals-shape {
    position: absolute;
}

.ourgoals-section .ourgoals-shape-1 {
    bottom: 0;
    left: 40%;
}

.ourgoals-section .ourgoals-shape-1 img {
    width: 30px;
}

.ourgoals-section .ourgoals-shape-2 {
    top: 0;
    left: 5%;
}

.ourgoals-section .ourgoals-shape-2 img {
    width: 45px;
}

@media (max-width: 991px) {
    .ourgoals-section .ourgoals-shape {
        display: none;
    }

    .ourgoals-section .ourgoals-info-img {
        margin: 80px auto 30px !important;
        display: flex;
        justify-content: center;
    }
}

/* ourservices section */

.ourservices-section {
    margin-top: 80px;
}

.ourservices-section .about_us-heading {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ourservices-content {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 10px;
    margin-top: 50px;
}

.ourservices-box {
    text-align: center;
    margin-bottom: 50px;
}

.ourservices-box .ourservices-box-img {
    border: 3px solid #cdd8d8;
    border-radius: 47% 53% 63% 37% / 70% 59% 41% 30%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    transition: 0.3s;
}

.ourservices-box:nth-child(2n + 1) .ourservices-box-img {
    border-radius: 47% 53% 29% 71% / 55% 61% 39% 45%;
}

.ourservices-box .ourservices-box-img .icon {
    font-size: 50px;
    transition: 0.3s;
}

.ourservices-box .ourservices-box-img .icon:before {
    color: #47b6ba;
}

.ourservices-box:hover .ourservices-box-img {
    background: none;
    border-color: #47b6ba;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(71, 182, 186, 0.5);
}

.ourservices-box:hover .ourservices-box-img .icon:before {
    color: #fff;
}

.ourservices-box p {
    margin-top: 15px;
    color: #4b6d6e;
    font-weight: 500;
    font-size: 16px;
}

@media (max-width: 991px) {
    .ourservices-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .ourservices-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* payment page */
.payment-wrapper {
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-height: 50vh;
    padding: 20px;
}

.payment-form {
    min-height: 550px;
    position: relative;
}

.payment-bg {
    position: absolute;
    left: 0;
    top: 0;
}

.payment-card {
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.payment-card-head {
    color: #666666;
    font-size: 15px;
    margin-bottom: 20px;
}

.payment-card .nav-tabs {
    border: none;
    padding: 0 20px;
    width: 100%;
}

.payment-card .nav-tabs li {
    margin-bottom: 5px;
    padding-left: 12px;
    padding-bottom: 9px;
}

.payment-card .nav-tabs .nav-link {
    display: flex;
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    padding: 10px 20px;
    background: #f2f2f2;
}

.payment-card .nav-tabs .nav-link.active {
    border: none;
    background: #47b6ba;
}

.payment-card .nav-tabs .nav-link .icon {
    font-size: 10px;
}

.payment-card .nav-tabs .nav-link .icon:before {
    color: #b3b3b3;
}

.payment-card .nav-tabs .nav-link.active .icon::before {
    color: #fff;
}

.payment-card-inner {
    background: #fff;
    border-radius: 20px;
    margin-top: 20px;
    min-height: 200px;
    padding: 15px 20px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.payment-card-inner .tab-content-head {
    color: #333333;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 25px;
}

.payment-card-inner .icon-payment:before {
    color: #333333;
}

.payment-card-inner .cardinput {
    display: flex;
    flex-direction: column;
}

.payment-card-inner .card-type {
    margin-right: 0;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.payment-card-inner label {
    color: #666666;
    font-size: 13px;
}

.payment-card-inner input {
    border: none;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 5px;
    font-size: 18px;
    color: #333333;
}

.payment-card-inner .card-type-wrapper {
    margin: auto;
    margin-bottom: 0;
}

.payment-card-inner .card-row {
    margin-bottom: 20px;
}

.payment-card-inner input:focus {
    outline: none;
}

.payment-card-inner .pay-btn {
    display: flex;
    margin-right: 10px;
}

.payment-card-inner .pay-btn .btn {
    width: 100%;
    border-radius: 30px;
    background: #47b6ba;
    font-size: 15px;
    color: #fff;
    height: 40px;
}

@media (max-width: 576px) {
    .payment-bg {
        display: none;
    }

    .payment-card .nav-tabs {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .payment-card-inner .card-type {
        justify-content: flex-end;
    }

    .payment-card-inner .cardinput {
        margin-bottom: 15px;
    }

    .payment-card .nav-tabs li {
        width: 100%;
    }

    .payment-card .nav-tabs .nav-link {
        display: flex;
        justify-content: center;
    }

    .payment-card-inner .card-type {
        margin-bottom: 0;
        margin-top: 20px;
    }
}

/* training-programs page */

.traning_prg-search {
    display: flex;
}

.traning_prg-search .search-box-input {
    flex: 1;
    margin-left: 20px;
}

.traning_prg-search .search-box-check {
    align-self: center;
}

.traning_prg-search .search-box-check .checkbox.inline {
    margin-bottom: 0;
}

.traning_prg-search .search-box-check .check-label {
    color: #999999;
    font-size: 15px;
}

.traning_prg-box-wrapper {
    max-height: 850px;
    margin-bottom: 100px;
    overflow-y: auto;
    margin-top: 50px;
}

/* traning prg box */
.traning_prg-box {
    margin-bottom: 30px;
    transition: 0.3s;
}

.traning_prg-box .traning_prg-img {
    height: 320px;
    width: 100%;
    border-radius: 6px;
    position: relative;
}

.traning_prg-box .traning_prg-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.traning_prg-box .traning_prg-img .traning_prg-place {
    color: #fff;
    display: flex;
    background: #47b6ba;
    border-radius: 0 6px 0 6px;
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px 10px;
    font-size: 12px;
    z-index: 2;
}

.traning_prg-content {
    padding: 10px;
}

.traning_prg-content .traning_prg-info {
    display: flex;
    justify-content: space-between;
}

.traning_prg-content .traning_prg-info a {
    color: #4b6d6e;
    font-weight: bold;
    font-size: 18px;
    margin-left: 15px;
    flex: 1;
}

.traning_prg-content .traning_prg-info p {
    color: #47b6ba;
    font-weight: bold;
    font-size: 17px;
}

.traning_prg-content .traning_prg-disc {
    margin-top: 10px;
    color: #4b6d6e;
    font-size: 13px;
}

.traning_prg-content .traning_prg-disc span {
    margin: 0 3px;
}

.traning_prg-box .traning_prg-img .traning_prg-overlay {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.traning_prg-box .traning_prg-overlay .traning_prg-overlay-content {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    position: absolute;
    top: 50%;
    right: 5%;
    width: 90%;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    height: 90%;
    transition: 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.traning_prg-box:hover .traning_prg-img .traning_prg-overlay {
    opacity: 1;
    visibility: visible;
}

.traning_prg-box:hover
    .traning_prg-img
    .traning_prg-overlay
    .traning_prg-overlay-content {
    top: 5%;
}

.traning_prg-name {
    background: #f8f8f8;
    padding: 8px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.traning_prg-name .user-img {
    width: 33px;
    height: 33px;
    object-fit: cover;
    border-radius: 50%;
    object-position: top;
}

.traning_prg-name p {
    color: #47b6ba;
    margin-right: 10px;
    align-self: center;
    font-size: 16px;
}

.traning_prg-box
    .traning_prg-overlay
    .traning_prg-overlay-content
    .traning_prg-data {
    margin-top: 10px;
}

.traning_prg-box
    .traning_prg-overlay
    .traning_prg-overlay-content
    .traning_prg-data
    p {
    color: #918f90;
    line-height: 1.7;
    font-size: 13px;
    height: 137px;
    overflow: hidden;
}

a.pur-course {
    color: #fff;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    border-radius: 20px;
    margin-top: auto;
    transition: 0.3s;
}

.pur-course img {
    width: 19px;
}

.pur-course span {
    padding-right: 5px;
}

@media (max-width: 576px) {
    .traning_prg-search {
        flex-direction: column;
    }
    .traning_prg-search .search-box-input {
        margin-left: 0;
    }
    .traning_prg-search .search-box-check {
        margin-top: 25px;
    }
}

/* training programs details no register */

.traningpro_nor-course {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
}

.plyr__poster {
    background-size: cover;
}

.traningpro_nor-video-course .plyr--video {
    height: 250px;
    border-radius: 8px;
}

.traningpro_nor-video-course-info .pur-course {
    width: 70%;
    margin: 20px auto;
    height: 45px;
    border-radius: 50px;
}

.traningpro_nor-video-course-info {
    padding: 0 10px;
}

.traningpro_nor-video-course-info .traning_prg-content .traning_prg-info h4 {
    color: #4b6d6e;
    font-weight: bold;
    font-size: 18px;
    margin-left: 25px;
    flex: 1;
}

.traningpro_nor-video-course-info .traning_prg-name {
    margin-top: 15px;
}

.course-box {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.course-head {
    color: #4b6d6e;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.course-description p {
    color: #999999;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* course-content */
.course-content-list {
    margin-top: 20px;
}

.course-content-list li {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

.course-content-list .lesson-number {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #47b6ba;
    padding-bottom: 4px;
}

.course-content-list .lesson-name {
    color: #444444;
    font-size: 14px;
    margin-right: 10px;
}

.lesson-time {
    display: inline-block;
    margin-right: 20px;
    color: #47b6ba;
    font-size: 13px;
}

.lesson-play {
    position: absolute;
    left: 20px;
    top: 2px;
}

.lesson-play .icon {
    font-size: 22px;
}

.lesson-play .icon:before {
    color: #47b6ba;
}

@media (max-width: 576px) {
    .course-content-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .course-content-list .lesson-number {
        align-self: flex-start;
    }

    .course-content-list .lesson-name {
        margin: 10px 0;
    }

    .lesson-play {
        top: unset;
        bottom: 0;
    }

    .lesson-time {
        margin-right: 0;
    }
}

/* training programs details register */

.traningpro_det_reg-video-box {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 30px;
}

.traningpro_det_reg-video-box .traningpro_det_reg-video {
    height: 500px;
}

.traningpro_det_reg-video-box .course-name {
    color: #47b6ba;
    font-weight: bold;
    font-size: 18px;
    padding: 20px 15px 25px;
}

.course-disc {
    padding: 20px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

.course-disc .traning_prg-content {
    padding: 0;
    margin-bottom: 20px;
}

.course-disc .traning_prg-content .traning_prg-info h4 {
    color: #4b6d6e;
    font-weight: bold;
    font-size: 18px;
    margin-left: 25px;
    flex: 1;
}

.course-level-progress {
    margin-top: 25px;
}

.course-level-progress .level-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.course-level-progress .level-progress-info p {
    color: #4b6d6e;
}

.course-level-progress .level-progress-info span {
    color: #d9b564;
}

.course-level-progress .level-progress-bar {
    width: 100%;
    height: 10px;
    border-radius: 50px;
    background: #f5f5f5;
}

.course-level-progress .level-progress-bar .bar {
    display: block;
    height: 100%;
    background: #d9b564;
    border-radius: 50px;
}

/* traningpro detls offline wrapper */

.traningpro_detls_offline-box {
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.traningpro_detls_offline-box .traningpro_detls-img {
    height: 400px;
    width: 100%;
    border-radius: 10px;
}

.traningpro_detls_offline-box .traningpro_detls-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.traningpro_detls_offline-inner {
    padding: 15px;
}

.traningpro_detls_offline-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.traningpro_detls_offline-info p {
    color: #4b6d6e;
    font-weight: bold;
    font-size: 15px;
    margin-left: 30px;
    width: 70%;
    flex-wrap: wrap;
    line-height: 2;
}

.traningpro_detls_offline-info .course-price {
    color: #47b6ba;
    font-weight: bold;
    font-size: 25px;
}

.traningpro_detls_offline-disc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #dddddd;
}

.traningpro_detls_offline-disc .course-offline-disc-name {
    display: flex;
}

.traningpro_detls_offline-disc .course-offline-disc-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    object-position: top;
}

.traningpro_detls_offline-disc .course-offline-disc-name p {
    color: #4b6d6e;
    font-size: 18px;
    margin-right: 15px;
    align-self: center;
}

.traningpro_detls_offline-disc .course-offline-disc-date {
    display: flex;
    align-self: center;
    align-items: center;
}

.traningpro_detls_offline-disc .course-offline-disc-date .icon {
    font-size: 22px;
}

.traningpro_detls_offline-disc .course-offline-disc-date .icon:before {
    color: #47b6ba;
}

.traningpro_detls_offline-disc .course-offline-disc-date p {
    margin-right: 10px;
    color: #4b6d6e;
}

.traningpro_detls_offline-disc .course-offline-disc-date span {
    color: #4b6d6e;
    display: inline-block;
    margin-right: 5px;
}

.traningpro_detls_offline-inner .pur-course {
    width: 20%;
    margin-right: auto;
    margin-top: 25px;
}

@media (max-width: 991px) {
    .traningpro_detls_offline-inner .pur-course {
        width: 200px;
    }
}

@media (max-width: 576px) {
    .traningpro_detls_offline-box .traningpro_detls-img {
        height: 200px;
    }
    .traningpro_detls_offline-info {
        flex-direction: column;
    }

    .traningpro_detls_offline-info p {
        width: 100%;
        margin-left: 0;
    }

    .traningpro_detls_offline-info .course-price {
        margin: 20px 0;
    }

    .traningpro_detls_offline-disc {
        flex-direction: column;
        align-items: flex-start;
    }

    .traningpro_detls_offline-disc .course-offline-disc-date {
        margin-right: 55px;
        margin-top: 10px;
        align-self: flex-start;
    }

    .traningpro_detls_offline-inner .pur-course {
        width: 100%;
    }
}

/* service details page */

.service-details-info h5 {
    color: #01aaa1;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}

.service-details-info p {
    color: #04151f;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-info {
    margin-top: 40px;
}

.contact-info h6 {
    color: #01aaa1;
    font-weight: 500;
    font-size: 16px;
}

.contact-info .contact-info-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
}

.contact-info .contact-info-inner .contact-info-disc {
    display: flex;
    align-items: center;
}

.contact-info .contact-info-inner .contact-info-disc .icon {
    font-size: 18px;
    margin-left: 8px;
}

.contact-info .contact-info-inner .contact-info-disc .icon:before {
    color: #47b6ba;
}

.contact-info .contact-info-inner .contact-info-disc address {
    margin-bottom: 0;
    margin-top: 22px;
    color: #555555;
}

.contact-info .contact-info-inner .contact-info-disc a {
    color: #555555;
    font-size: 15px;
}

@media (max-width: 1024px) {
    .contact-info .contact-info-inner {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact-info .contact-info-inner .contact-info-disc {
        margin-top: 8px;
    }

    .contact-info .contact-info-inner .contact-info-disc address {
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    .service-details-img {
        display: flex;
        margin-bottom: 50px;
    }

    .service-details-img img {
        max-width: 65%;
        margin: auto;
    }
}

@media (max-width: 576px) {
    .service-details-img img {
        max-width: 80%;
    }
}

/* advisor page */

.advisor-inner {
    max-height: 750px;
    margin-bottom: 100px;
    overflow-y: auto;
}

.advisor-inner .doctor-name,
.advisor-inner .course-number {
    color: #4b6d6e;
}

.advisor-inner .doctor-landing-bx {
    margin-bottom: 30px;
}

.advisor-inner .doctor-landing-bx .doctor-landing-bx-img {
    overflow: hidden;
    border-radius: 6px;
}

.advisor-inner .doctor-landing-bx .doctor-landing-bx-img img {
    transition: 0.5s;
}

.advisor-inner .doctor-landing-bx .doctor-landing-bx-img:hover img {
    transform: scale(1.1) rotate(3deg);
}

/* advisor details page */

/* advisor info box section */
.advisor-info-box {
    display: flex;
    background: #f3f5f5;
    overflow: hidden;
    border-radius: 8px;
}

.advisor-info-box .advisor-info-img {
    height: 100%;
    width: 25%;
    position: relative;
}

.advisor-info-box .advisor-info-img span {
    color: #fff;
    display: flex;
    background: #47b6ba;
    border-radius: 6px 0 6px 0;
    position: absolute;
    bottom: 0;
    padding: 4px 10px;
    font-size: 12px;
}

.advisor-info-box .advisor-info-img img {
    width: 100%;
    min-height: 300px;
    object-fit: cover;
    border-radius: 0 5px 5px 0;
}

.advisor-info-inner {
    width: 75%;
}

.advisor-info-box .advisor-info-inner .advisor-info-head {
    background: #47b6ba;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    border-radius: 5px 0 0 5px;
    position: relative;
}

.advisor-info-box .advisor-info-inner .advisor-info-head h5 {
    color: #fff;
    margin-bottom: 0;
}

.advisor-info-box .advisor-info-inner .advisor-info-head span {
    display: inline-block;
    padding: 0 5px;
    color: #b5f4f6;
}

.advisor-info-box .advisor-info-inner .advisor-info-head p {
    color: #b5f4f6;
}

.advisor-info-box
    .advisor-info-inner
    .advisor-info-head
    .advisor-info-head-shap {
    position: absolute;
}

.advisor-info-box
    .advisor-info-inner
    .advisor-info-head
    .advisor-info-head-shap-1 {
    top: 6px;
    left: 15%;
}

.advisor-info-box
    .advisor-info-inner
    .advisor-info-head
    .advisor-info-head-shap-1
    img {
    width: 35px;
}

.advisor-info-box
    .advisor-info-inner
    .advisor-info-head
    .advisor-info-head-shap-2 {
    top: 30px;
    left: 13%;
    transform: rotate(45deg);
}

.advisor-info-box
    .advisor-info-inner
    .advisor-info-head
    .advisor-info-head-shap-2
    img {
    width: 35px;
}

.advisor-info-box
    .advisor-info-inner
    .advisor-info-head
    .advisor-info-head-logo {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.advisor-info-box
    .advisor-info-inner
    .advisor-info-head
    .advisor-info-head-logo
    img {
    width: 85px;
}

.advisor-info-box .advisor-info-inner .advisor-info-text {
    padding: 15px;
}

.advisor-info-box .advisor-info-inner .advisor-info-text span {
    color: #4b6d6e;
    font-weight: bold;
    display: inline-block;
    font-size: 17px;
    margin-bottom: 10px;
}

.advisor-info-box .advisor-info-inner .advisor-info-text p {
    margin-right: 15px;
    line-height: 1.7;
    color: #4b6d6e;
}

/* detention consultation section */
.detention-consultation {
    margin-top: 60px;
}

.detention-consultation-box {
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 6px;
    margin-bottom: 20px;
}

.detention-consultation-box .detention-consultation-img {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.detention-consultation-box .detention-consultation-img:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #2b5555, #306c82);
    opacity: 0.8;
}

.detention-consultation-box .detention-consultation-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.detention-consultation-box:hover .detention-consultation-img img {
    transform: scale(1.1);
}

.detention-consultation-box .detention-consultation-img p {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: bold;
    font-size: 25px;
    padding: 20px 40px;
    text-align: center;
    z-index: 2;
    width: 100%;
}

.detention-consultation-box .detention-consultation-info {
    padding: 15px;
}

.detention-consultation-box .detention-consultation-info .consultation-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.detention-consultation-box .detention-consultation-info .consultation-price p {
    color: #4b6d6e;
    font-weight: bold;
    font-size: 18px;
}

.detention-consultation-box
    .detention-consultation-info
    .consultation-price
    .detention-btn {
    padding: 5px 15px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    font-size: 13px;
}

.detention-consultation-box .detention-consultation-info .consultation-text p {
    color: #4b6d6e;
    line-height: 1.6;
}

.detention-consultation-shape {
    position: absolute;
    left: 0;
    top: 40%;
    z-index: -1;
}

.detention-consultation-shape img {
    width: 200px;
}

/* my articles section */
.my-articles {
    margin-top: 60px;
    position: relative;
}

/* my videos section */

.my-videos {
    position: relative;
    margin-top: 60px;
    padding-bottom: 60px;
}

.my-videos-box {
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 20px;
}

.my-videos-box-video {
    position: relative;
    height: 210px;
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
}

.my-videos-box-video a {
    max-width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: auto;
    position: relative;
}

.my-videos-box-video a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.my-videos-box-video a:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #2b5555, #306c82);
    opacity: 0.8;
    z-index: 1;
}

.my-videos-box-video .icon-open-video {
    display: flex;
    place-content: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.my-videos-box-video .icon-open-video .icon {
    font-size: 40px;
}

.my-videos-box-video .icon-open-video .icon:before {
    color: rgba(255, 255, 255, 0.7);
}

.my-videos-box-info {
    background: #f5f5f5;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

.my-videos-box-info p {
    color: #4b6d6e;
    font-weight: bold;
    font-size: 16px;
    margin-left: 30px;
}

.my-videos-shape {
    position: absolute;
    z-index: -1;
}

.my-videos-shape-1 {
    top: 0;
    right: 20%;
}

.my-videos-shape-1 img {
    width: 20px;
}

.my-videos-shape-2 {
    top: 5%;
    left: 5%;
}

.my-videos-shape-2 img {
    width: 80px;
}

.my-videos-shape-3 {
    top: 0;
    left: 0;
}

.my-videos-shape-3 img {
    width: 155px;
}

/* customer reviews section*/

.customer-reviews {
    margin-bottom: 40px;
}

.customer-reviews-box {
    background: #f3f5f5;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 18px rgba(75, 109, 110, 0.16);
}

.customer-reviews-box:after,
.customer-reviews-box:before {
    content: "";
    position: absolute;
    background: url(../images/customer-reviews-shape.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.customer-reviews-box:after {
    bottom: 6%;
    right: 4%;
    width: 26px;
    height: 54px;
}

.customer-reviews-box:before {
    top: 5%;
    left: 2%;
    width: 23px;
    height: 46px;
    transform: rotate(90deg);
}

.customer-reviews-box-inner {
    max-width: 80%;
    margin: auto;
}

.customer-reviews-box .customer-reviews-text {
    color: #4b6d6e;
    font-weight: 500;
    font-size: 15px;
    text-align: center;
    position: relative;
}

.customer-reviews-box .customer-reviews-text:after,
.customer-reviews-box .customer-reviews-text:before {
    content: "";
    background: url("../images/q-mark-small.svg");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 15px;
    height: 15px;
}

.customer-reviews-box .customer-reviews-text:after {
    top: 0;
    right: -50px;
}

.customer-reviews-box .customer-reviews-text:before {
    bottom: 0;
    left: -50px;
    transform: rotate(180deg);
}

.customer-reviews-box .customer-reviews-name {
    display: flex;
    justify-content: flex-end;
    color: #d9b564;
    margin-top: 20px;
}

.customer-reviews-slider .slick-slide {
    margin: 0 30px;
    outline: none;
}

@media (max-width: 991px) {
    .advisor-info-head-shap,
    .our-articles-shap,
    .my-videos-shape,
    .detention-consultation-shape {
        display: none;
    }
    .advisor-info-box .advisor-info-img {
        width: 35%;
    }
    .advisor-info-inner {
        width: 65%;
    }
}

@media (max-width: 576px) {
    .advisor-info-box {
        flex-direction: column;
    }
    .advisor-info-box .advisor-info-img {
        width: 100%;
    }

    .advisor-info-box .advisor-info-img img {
        height: 250px;
    }

    .advisor-info-box .advisor-info-inner .advisor-info-head {
        flex-direction: column;
    }

    .advisor-info-inner {
        width: 100%;
    }

    .advisor-details-wrapper .section-header h4 {
        font-size: 25px;
    }

    .detention-consultation-box .detention-consultation-img p {
        font-size: 20px;
    }

    .customer-reviews-box-inner {
        max-width: 100%;
    }

    .customer-reviews-box:after,
    .customer-reviews-box:before {
        display: none;
    }

    .customer-reviews-box .customer-reviews-text {
        padding: 0 15px;
    }

    .customer-reviews-box .customer-reviews-text:after {
        right: -10px;
    }

    .customer-reviews-box .customer-reviews-text:before {
        left: -15px;
    }
}

/* make appointment page */

.make-appointment-header {
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 10px;
    margin-bottom: 30px;
}

.make-appointment-header .make-appointment-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 450px;
}

.make-appointment-header .make-appointment-img:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #2b5555, #306c82);
    opacity: 0.8;
}

.make-appointment-header .make-appointment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.make-appointment-header .make-appointment-img p {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: bold;
    font-size: 35px;
    padding: 20px 100px;
    text-align: center;
    z-index: 2;
    width: 100%;
}

.make-appointment-header .make-appointment-info {
    padding: 20px;
}

.make-appointment-header .make-appointment-info .appointment-price p {
    color: #4b6d6e;
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 10px;
}

.make-appointment-header .make-appointment-info .appointment-text p {
    color: #4b6d6e;
    line-height: 1.7;
    font-size: 16px;
}

@media (max-width: 576px) {
    .make-appointment-header .make-appointment-img p {
        padding: 20px;
    }
}

.advisor-rating-form label {
    color: #47b6ba;
    padding-bottom: 5px;
}

.advisor-rating-form .form-control::placeholder {
    font-size: 13px;
}

.btn-container-row {
    display: flex;
    justify-content: space-between;
}

.btn-container-row button:nth-child(2) {
    margin-top: 0;
    margin-right: 10px;
}

/* test details page */

.test-details-box {
    display: flex;
    background: #f2f2f2;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.test-details-box .test-details-box-img {
    width: 50%;
    height: 500px;
    box-shadow: -20px 13px 38px rgba(0, 0, 0, 0.15);
    position: relative;
}

.test-details-box .test-details-box-img:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #204e4f;
    opacity: 0.5;
}

.test-details-box .test-details-box-img p {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    padding: 20px 40px;
    text-align: center;
    z-index: 2;
    width: 100%;
}

.test-details-box .test-details-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.test-details-box .test-details-box-info {
    width: 50%;
    padding: 30px;
}

.test-details-box .test-details-box-info h5 {
    color: #01aaa1;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.test-details-box .test-details-box-info .test-details-box-disc {
    color: #04151f;
    line-height: 1.9;
    font-size: 14px;
}

.test-details-box .test-details-box-info .starting-test {
    color: #4b6d6e;
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    align-items: center;
}

.test-details-box .test-details-box-info .starting-test .starting-test-btn {
    display: flex;
}

.test-details-box
    .test-details-box-info
    .starting-test
    .starting-test-btn
    > span:nth-child(1) {
    display: inline-block;
    margin-left: 10px;
    transition: 0.3s;
}

.test-details-box
    .test-details-box-info
    .starting-test
    .starting-test-btn
    .span-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #d9b564;
    display: flex;
    justify-content: center;
    align-items: center;
}

.test-details-box
    .test-details-box-info
    .starting-test
    .starting-test-btn
    .span-icon
    .icon {
    font-size: 12px;
}

.test-details-box
    .test-details-box-info
    .starting-test
    .starting-test-btn:hover
    span:nth-child(1) {
    color: #01aaa1;
}

@media (max-width: 991px) {
    .test-details-box {
        display: block;
    }

    .test-details-box .test-details-box-img,
    .test-details-box .test-details-box-info {
        width: 100%;
    }
}

/* test details questions */

.test-questions-content .page-content {
    margin-top: 0 !important;
}

.test-questions-content footer {
    margin-top: 0 !important;
    padding-top: 40px;
}

.test-questions-content footer .footer-top-wave {
    display: none !important;
}

.test-questions-wrapper {
    background: url("../images/test-details-img-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 50vh;
    position: relative;
    z-index: 1;
}

.test-questions-wrapper:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #2b5555, #306c82);
    opacity: 0.7;
    top: 0;
    right: 0;
    z-index: -1;
}

.test-questions-inner {
    display: flex;
    min-height: 500px;
    padding: 50px 0;
}

.test-questions-inner .questions-bar {
    width: 50px;
    background: #efefef;
    border-radius: 30px;
    min-height: 500px;
    overflow: hidden;
    position: relative;
}

.test-questions-inner .questions-bar span {
    display: flex;
    background: #5fc458;
    width: 100%;
    border-radius: 30px;
    position: absolute;
    bottom: 0;
}

.test-questions-inner .questions-box {
    margin-right: 30px;
    background: #fff;
    border-radius: 8px;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.test-questions-inner .questions-box .questions-box-head {
    background: #47b6ba;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    height: 70px;
}

.test-questions-inner .questions-box .questions-box-head .questions-number {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

.test-questions-inner .questions-box .questions-box-head .questions-scale {
    color: #fff;
    font-weight: bold;
}

.test-questions-inner .questions-box .questions-box-head .questions-point {
    color: #fff;
}

.test-questions-inner .questions-box .questions-box-head .questions-point span {
    display: inline-block;
    font-weight: bold;
    font-size: 18px;
}

.test-questions-inner .questions-box .questions-box-name {
    padding: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    height: 70px;
}

.test-questions-inner .questions-box .questions-box-name label {
    color: #555555;
    margin-bottom: 0;
}

.test-questions-inner .questions-box .questions-box-name p {
    color: #47b6ba;
    padding-right: 5px;
}

.test-questions-inner .questions-box .questions-box-answers {
    padding: 20px;
    padding-bottom: 40px;
}

.test-questions-inner .questions-box .questions-box-answers .answers-box {
    background: #fdfcfc;
    padding: 10px 15px 13px;

    display: flex;
    align-items: center;
    border-radius: 5px;
    position: relative;
    margin-bottom: 15px;
}

.test-questions-inner .questions-box .questions-box-answers .answers-box input {
    appearance: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    outline: none;
    border-radius: 5px;
    border: 1px solid #cccccc;
}

.test-questions-inner .questions-box .questions-box-answers .answers-box label {
    color: #4b6d6e;
    z-index: 1;
    margin-bottom: 0;
    font-size: 14px;
    position: relative;
    pointer-events: none;
}

.test-questions-inner
    .questions-box
    .questions-box-answers
    .answers-box
    input:checked {
    background: #d9b564;
    border-color: #d9b564;
}
.test-questions-inner
    .questions-box
    .questions-box-answers
    .answers-box
    input:checked
    ~ label {
    color: #fff;
}

.test-questions-inner .questions-box .questions-box-btn {
    padding: 20px;
    background: #d4e7e8;
    display: flex;
}

.questions-btn {
    color: #fff;
    font-size: 14px;
    width: 150px;
    border-radius: 20px;
    margin-left: 15px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.test-questions-inner .questions-box .questions-box-btn .next-question {
    background: #47b6ba;
}
.test-questions-inner .questions-box .questions-box-btn .next-question:hover {
    color: #fff;
    background: #32898c;
}

.test-questions-inner .questions-box .questions-box-btn .end-test {
    background: #999999;
}

.test-questions-inner .questions-box .questions-box-btn .end-test:hover {
    color: #fff;
    background: #7b7b7b;
}

.end-test-wrapper {
    text-align: center;
}

.end-test-wrapper img {
    max-width: 60%;
    margin: auto;
}

.end-test-wrapper h5 {
    color: #47b6ba;
    font-weight: bold;
    margin: 20px 0;
}

.end-test-wrapper p {
    color: #999999;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 576px) {
    .test-questions-inner .questions-bar {
        width: 30px;
    }

    .test-questions-inner .questions-box {
        margin-right: 15px;
    }

    .test-questions-inner .questions-box .questions-box-head {
        flex-direction: column;
        height: auto;
    }

    .test-questions-inner .questions-box .questions-box-head > span {
        margin-bottom: 10px;
    }

    .test-questions-inner .questions-box .questions-box-name {
        height: auto;
        flex-direction: column;
    }

    .test-questions-inner .questions-box .questions-box-name label {
        margin-bottom: 10px;
    }

    .test-questions-inner .questions-box .questions-box-btn {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .test-questions-inner .questions-box .questions-box-btn .questions-btn {
        margin-bottom: 15px;
        margin-left: 0;
        width: 100%;
    }
}

/* about houdo page */

.about-houdo-inner p {
    text-align: center;
    color: #999999;
    line-height: 1.8;
    font-size: 18px;
}

/* profile personal data page */

main.profile {
    min-height: 80vh;
}

.profile .page-content {
    margin-top: 0;
    position: relative;
    padding-bottom: 20px;
}

/* profile sidbar */
.profile-sidbar {
    width: 250px;
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    overflow-y: auto;
    background-color: #fff;
    color: #4b6d6e;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-left: 1px solid #f5f5f5;
}

.profile-sidbar .profile-sidbar-head {
    padding: 20px;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid #f5f5f5;
}

.profile-sidbar .profile-sidbar-head .profile-head-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #47b6ba;
    color: #fff;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.profile-sidbar .profile-sidbar-head .profile-head-circle span {
    position: relative;
    top: -13px;
}

.profile-sidbar .profile-sidbar-head .profile-head-name {
    font-size: 18px;
    text-align: center;
    margin-top: 10px;
    color: #141414;
}

.profile-sidbar .profile-sidbar-head .profile-head-date {
    color: #777777;
}

.profile-sidbar .profile-sidbar-list {
    padding: 20px 0;
}

.profile-sidbar .profile-sidbar-list li .sidbar-link {
    padding: 10px 20px;
    display: flex;
    color: #689495;
    transition: 0.3s;
}

.profile-sidbar .profile-sidbar-list li .sidbar-link:hover {
    color: #47b6ba;
}

.profile-sidbar .profile-sidbar-list li .sidbar-link .icon {
    font-size: 18px;
    width: 18px;
    height: 18px;
    align-self: center;
}

.profile-sidbar .profile-sidbar-list li .sidbar-link .icon:before {
    color: #4b6d6e;
}

.profile-sidbar .profile-sidbar-list li .sidbar-link span {
    padding-right: 15px;
}

.profile-sidbar .profile-sidbar-list li.active .sidbar-link {
    background: #47b6ba;
    color: #fff;
}

.profile-sidbar .profile-sidbar-list li.active .sidbar-link .icon:before {
    color: #fff;
}

/* profile content */
.profile-content {
    margin-right: 250px;
    padding-top: 0;
}

.account-details-wrapper {
    padding-top: 100px;
}

.account-details-form {
    max-width: 50%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
    padding: 50px;
}

.account-details-form .section-header h4 {
    font-size: 22px;
    color: #4b6d6e;
    font-weight: bold;
}

.account-details-form form {
    width: 100%;
}

.custom-form-text-area .custom-form-icon {
    top: 12px;
    transform: translateY(0);
    transform-origin: top;
    align-items: flex-start;
    height: 39px;
}

.custom-form-text-area .custom-form-icon:after {
    top: 0;
    transform: translateY(0);
}

.custom-form-text-area textarea {
    padding-right: 50px;
}

.account-btn {
    width: 200px;
    margin: 25px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
    .profile-content {
        padding-top: 0;
    }
    .account-details-form {
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .profile-sidbar {
        width: 90%;
        margin: 50px auto 20px;
        position: unset;
        height: auto;
        top: unset;
        right: unset;
        overflow: auto;
        border: none;
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    }
    .profile-content {
        margin-right: 0;
        padding-top: 0;
    }

    .account-details-form {
        padding: 25px 15px;
        max-width: 100%;
    }
}

/* profile my courses page */
.profile .traning_prg-box-wrapper {
    padding-top: 0;
    margin-top: 50px;
}

/* profile advisory page */
.profile .consultation-price span {
    color: #4b6d6e;
}

/* profile my advisor */

.profile-my-advisor-wrapper {
    padding-top: 40px;
}

.profile-my-advisor-wrapper .doctor-info {
    background: #fff;
    padding: 6px 10px;
    border-radius: 5px;
}

.profile-my-advisor-wrapper .doctor-info img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-my-advisor-wrapper .doctor-info span {
    display: inline-block;
    margin-right: 5px;
    color: #47b6ba;
    font-size: 18px;
}

@media (max-width: 1024px) {
    .profile-my-advisor-wrapper
        .detention-consultation-box
        .detention-consultation-img
        p {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .profile-my-advisor-wrapper
        .detention-consultation-box
        .detention-consultation-info
        .consultation-price {
        flex-direction: column;
    }

    .profile-my-advisor-wrapper
        .detention-consultation-box
        .detention-consultation-info
        .consultation-price
        p {
        margin-bottom: 13px;
    }
}

/* account modal */

.account-wrapper {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-column-gap: 10px;
}

.account-wrapper div {
    max-width: 80%;
}

.account-wrapper div p:nth-child(1) {
    color: #47b6ba;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

.account-wrapper div p:nth-child(2) {
    color: #141414;
    font-size: 16px;
}

.register-first.account-wrapper div p:nth-child(1) {
    color: #141414;
}

/* our videos page */
.current-video-box {
    height: 500px;
}

/* photo gallery page */
.photo-gallery-grid {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 250px);
    grid-template-areas:
        "img2 img1 img1"
        "img2 img4 img3"
        "img5 img5 img3";
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .photo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
        grid-template-areas:
            "img1 img1"
            "img3 img2"
            "img4 img5";
    }
}

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

.photo-gallery-grid .photo-gallery-img:nth-child(1) {
    grid-area: img1;
}

.photo-gallery-grid .photo-gallery-img:nth-child(2) {
    grid-area: img2;
}

.photo-gallery-grid .photo-gallery-img:nth-child(3) {
    grid-area: img3;
}

.photo-gallery-grid .photo-gallery-img:nth-child(4) {
    grid-area: img4;
}

.photo-gallery-grid .photo-gallery-img:nth-child(5) {
    grid-area: img5;
}

/*----------------------------------------
Preloader page
----------------------------------------*/
#loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background-color: #ffffff;
}
#loading-center-page {
    width: 100%;
    height: 100%;
    position: relative;
}
#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 150px;
    width: 150px;
    margin-top: -75px;
    margin-left: -75px;
}

.loader {
    width: 56px;
    height: 56px;
    border: 2px solid #47b6ba;
    opacity: 0.7;
    border-radius: 50%;
    position: relative;
    animation: loader-rotate 1s ease-in-out infinite;
    top: 50%;
    margin: -28px auto 0 auto;
}
.loader:after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #47b6ba;
    position: absolute;
    top: -6px;
    left: 50%;
    margin-left: -5px;
}

@keyframes loader-rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}



.main-banner-wrapper {
    height: 500px;
    width: 100%;
    position: relative;
}

.main-banner-wrapper video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    object-fit: cover;
    box-shadow: 0;
}

    /* Ghassan Style */

video, object, embed {
    max-width: 100%;
    height: auto;
}

video {

    margin-top: 10px;
    margin-bottom: 10px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;

    -moz-box-shadow: 4px 4px 5px #000;
    -webkit-box-shadow: 4px 4px 5px #000;
    box-shadow: 4px 4px 5px #000;
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=.2);
}

.ghLead{
    word-spacing: 0.1rem;
    line-height: 2rem;
    text-align: justify;
}

.questions-btn a {
    color: #FFF !important;
    background: #999999 !important;
    border: 0 !important;
    outline: none !important;
}

.questions-btn:hover ,
.questions-btn:active,
.questions-btn:focus
{
    color: #FFF;
    background: #999999 !important;
    border: none !important;
}

.questions-btn a:focus {
    border: 0 !important;;
    outline: none !important;
    box-shadow: none
}
.xdsoft_datetimepicker {
    width: 80%;
    height: 280px;
    z-index: 9 !important;
}

.xdsoft_datetimepicker .xdsoft_datepicker {
    width: 88% !important;
}

.xdsoft_datetimepicker .xdsoft_calendar table {
    width: 100% !important;
    height: 230px !important;
}
.xdsoft_datetimepicker .xdsoft_timepicker {
   /* margin-top: 44px !important;*/
    width: 10% !important;
}
@media (max-width: 768px) {
    .xdsoft_datetimepicker .xdsoft_datepicker {
        width: 85% !important;
    }
}

@media (max-width: 576px) {
    .xdsoft_datetimepicker {
        height: auto;
    }

    .xdsoft_datetimepicker .xdsoft_datepicker {
        width: 95% !important;
    }

    .xdsoft_datetimepicker .xdsoft_timepicker {

        width: 95% !important;
        margin: 20px 10px !important;
    }

    .datetimepicker-wrapper {
        flex-direction: column;


    }

    .add_reservation {
        width: 100% !important;
        margin-top: 10px !important;;
    }
}
.datetimepicker-wrapper {
    display: flex;
    justify-content: center;

}
.add_reservation{
    margin: 0 15px;
    /*height: 50px;*/
    /*width: 95%;*/
    border: none;
    margin-bottom: 10px;
}
.datetimepicker-wrapper-right {
    width: 16%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.swal-modal .swal-text{
    font-size: 16px;
    font-weight: bold;
}

.vistor-number {
    margin-top: 20px;
}

.vistor-number p {
    color: #FFF;
    font-size: 18px;
}

.vistor-number span {
    color: #FFF;
    font-weight: bold;
}
