@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.woff2') format('woff2'), url('../fonts/Gotham-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.woff2') format('woff2'), url('../fonts/Gotham-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.woff2') format('woff2'), url('../fonts/Gotham-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Light.woff2') format('woff2'), url('../fonts/Gotham-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Thin.woff2') format('woff2'), url('../fonts/Gotham-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Black.woff2') format('woff2'), url('../fonts/Gotham-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

img {
    max-width: 100%
}

body {
    overflow-x: hidden;
    font-family: 'Gotham';
    color: #575b5e;
    font-weight: normal;
    font-size: 18px;
}

a {
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    color: #333;
    display: inline-block;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #3e3f46;
}

@media screen and (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

.btn {
    padding: 19px 15px;
    color: #697981;
    text-transform: uppercase;
    font-size: 18px;
    background: none;
    min-width: 160px;
    font-weight: 500;
    line-height: 25px;
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
    overflow: hidden;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    -webkit-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    border-radius: 5px;
}

.btn:hover {
    color: #fff;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -2;
    background: #fff;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}

.btn:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 0;
    z-index: -1;
    background: #f5d242;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}

.btn:hover:after {
    max-width: 100%;
}

.btn.yellow-btn,
.btn.yellow-btn:hover {
    color: #fff;
}

.btn.yellow-btn:before {
    background: #f5d242;
}

.btn.yellow-btn:after {
    background: #3e3f46;
}

.btn.black-btn {
    color: #fff;
}

.btn.black-btn:before {
    background: #3e3f46;
}

.btn.black-btn:after {
    background: #f5d242;
}

.btn+.btn {
    margin-left: 20px;
}

.gray-btn {
    border-color: #e1e1e1;
    color: #575b5e;
}

.gray-btn:hover {
    border-color: #f5d242;
}

.btn.gray-btn:before {
    background: #fff;
}

.btn.gray-btn:after {
    background: #f5d242;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1052;
    -webkit-transition: all ease-in-out 0.6s;
    -moz-transition: all ease-in-out 0.6s;
    -ms-transition: all ease-in-out 0.6s;
    -o-transition: all ease-in-out 0.6s;
    transition: all ease-in-out 0.6s;
    padding: 15px 0;
}

.site-header.sticky {
    position: fixed;
    padding: 7px 0;
    background-color: rgba(255, 255, 255, 1);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.navbar {
    padding: 0 150px;
    position: relative;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.site-header.sticky-1:not(.sticky) nav.navbar {
    -webkit-transform: translateY(-300px);
    -moz-transform: translateY(-300px);
    -ms-transform: translateY(-300px);
    -o-transform: translateY(-300px);
    transform: translateY(-300px);
}

.header-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
}

.navbar .navbar-brand {
    color: #fff;
    padding: 0;
    width: 170px;
}

.navbar .nav-item>a {
    color: #3e3f46;
    text-transform: capitalize;
    font-size: 18px;
    vertical-align: middle;
    padding: 0;
    line-height: 27px;
    font-weight: 500;
    position: relative;
}

.navbar .nav-item>a:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    margin-left: -10px;
    width: 20px;
    height: 2px;
    background: #f5d242;
    max-width: 0;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}

.navbar .nav-item {
    margin-left: 50px;
}

.navbar .nav-item:first-child {
    margin-left: 0;
}

.navbar .nav-item>a:hover,
.navbar .nav-item.active>a {
    color: #f5d242;
}

.navbar .nav-item>a:hover:before,
.navbar .nav-item.active>a:before {
    max-width: 20px;
}

.right-option {
    margin-left: 50px;
    white-space: nowrap;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.right-option .btn {
    min-width: 160px;
    padding: 20px 15px;
    margin-left: 40px;
}

.right-option .language {
    background: none;
    border: none;
    background-image: url(../images/select-arrow.png);
    background-repeat: no-repeat;
    background-position: right center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 0;
    padding-right: 20px;
    text-transform: uppercase;
    font-weight: 500;
    color: #3e3f46;
    font-size: 18px;
    line-height: 27px;
}

.right-option .language:focus {
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.right-option .select2-container {
    width: 48px !important;
}

.right-option .select2-container--default .select2-selection--single {
    background-color: transparent;
    border: none;
    height: auto;
    background-position: right center;
}

.right-option .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    padding-right: 20px;
    text-transform: uppercase;
    font-weight: 500;
    color: #3e3f46;
    font-size: 18px;
    line-height: 27px;
}

.right-option .notification-block {
    display: inline-block;
    margin-left: 20px;
    position: relative;
}

.right-option .notification-block .notification-link {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.right-option .notification-block .notification-link svg {
    width: 30px;
    height: 30px;
}

.right-option .notification-block .notification-link .latest-count {
    background: #f5d242;
    width: 22px;
    height: 22px;
    border-radius: 100%;
    color: #fff;
    font-size: 12px;
    position: absolute;
    top: -5px;
    right: -10px;
    line-height: 22px;
    text-align: center;
}

.right-option .user-menu {
    position: relative;
    margin-left: 35px;
}

.right-option .user-menu .logged-user {
    background: none;
    border: none;
    font-size: 24px;
    padding: 0 30px 0 0;
    background-image: url("../images/select-arrow.png");
    background-repeat: no-repeat;
    background-position: right center;
    cursor: pointer;
}

.right-option .user-menu .logged-user img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 100%;
    margin-right: 10px;
}

.right-option .dropdown-menu {
    min-width: 250px;
    left: auto;
    right: 0;
    margin-top: 15px;
    border: 1px solid #ebebeb;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.right-option .dropdown-menu:before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    background: #fff;
    width: 16px;
    height: 16px;
    border-top: 1px solid #ebebeb;
    border-left: 1px solid #ebebeb;
    box-shadow: -5px -5px 5px 0px rgba(0, 0, 0, 0.05);
    transform: rotate(45deg);
}

.right-option .dropdown-item {
    font-size: 16px;
    line-height: 24px;
    white-space: normal;
    padding: 7px 25px;
}

.right-option .dropdown-item:focus,
.right-option .dropdown-item:hover {
    background-color: transparent;
    color: #f5d242;
}

.logged-in {
    padding-top: 120px;
    background: #f9f9f9;
}

.logged-in .site-header {
    background-color: rgba(255, 255, 255, 1);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.logged-in .site-header .navbar-nav {
    margin-left: 40px;
    margin-right: auto;
}

.featured-search {
    padding-left: 150px;
    background-image: url("../images/search-bg.png");
    background-repeat: no-repeat;
    background-position: left 20px;
    padding-bottom: 100px;
    padding-right: 15px;
    min-height: 800px;
}

.featured-search .search-form {
    padding-top: 290px;
    padding-bottom: 0;
    z-index: 4;
}

.featured-search .search-form h2 {
    font-size: 48px;
    font-weight: 700;
    text-transform: capitalize;
}

.featured-search .search-form p {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 0;
}

.featured-search .search-form form {
    margin-top: 50px;
}

.search-form .select-box {
    margin-right: 15px;
    /* width: calc(25% - 15px); */
    flex: 1 1 auto;
    margin-bottom: 15px;
    /* max-width: 250px; */
    position: relative;
}

.search-form .select-box:last-child {
    /* margin-right: 0px; */
}

.search-form .btn {
    margin-bottom: 15px;
    /* width: calc(25% - 15px); */
    flex: 1 1 auto;
    margin-right: 15px;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #e1e1e1;
    height: 65px;
    background-color: #fff;
    background-image: url("../images/select-arrow.png");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 65px;
    padding-left: 10px;
}

.select2-container--default .select2-selection--single:focus {
    outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

.select2-container--default .select2-search {
    display: none;
}

.select2-dropdown {
    border-color: #e1e1e1;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: #3e3f46;
    color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #f5d242;
}

.featured-search .right-img {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    width: 900px;
}

button:focus,
a:focus,
.form-control:focus {
    outline: none;
    box-shadow: none;
}

.search-form form .form-group {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    margin-bottom: 0;
    margin-top: 55px;
    align-items: flex-end;
    position: relative;
}

.search-form form .form-group+.form-group {
    margin-top: 20px;
}

.search-form form .form-control {
    border-color: #e1e1e1;
    height: auto;
    padding: 18px 15px;
    margin-right: 10px;
}

.search-form form .form-group label {
    font-weight: 500;
    color: #3e3f46;
    font-size: 18px;
    width: 100%;
}

.search-form form .form-group label.error {
    font-size: 13px;
    color: #ff0000;
    position: absolute;
    top: 100%;
    left: 0;
}

.search-form form input[type="button"] {
    cursor: pointer;
    color: #444;
    font-size: 18px;
}

.availability-popup {
    width: 600px;
    position: absolute;
    top: 100%;
    right: 0;
    margin-left: 0;
    padding: 15px 10px;
    border-radius: 10px;
    border: 1px solid #ebebeb;
    background: #fff;
    z-index: 8;
    box-shadow: 0 5px 15px 5px rgba(0, 0, 0, 0.2);
    height: 430px;
    margin-top: 5px;
    display: none;
}

.availability-popup .bootstrap-datetimepicker-widget {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    width: 320px;
}

.availability-popup .date-selection,
.availability-popup .length-selection {
    padding: 0 15px;
}

.availability-popup .bootstrap-datetimepicker-widget .datepicker table td {
    padding: 10px 5px !important;
}

.availability-popup .bootstrap-datetimepicker-widget .datepicker table th {
    padding: 10px 5px !important;
}

.availability-popup .hours-selection {
    width: 100px;
}

.availability-popup .hours-selection .inner-block {
    height: 275px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
}

.availability-popup .hours-selection .radio-selection {
    position: relative;
    margin-bottom: 15px;
    line-height: 1;
}

.availability-popup .hours-selection .radio-selection input[type="radio"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.availability-popup .hours-selection .radio-selection input[type="radio"]+label {
    color: #3e3f46 !important;
    font-size: 14px;
    cursor: pointer;
    padding: 3px 5px;
    border-radius: 3px;
    text-align: center;
    margin: 0;
}

.availability-popup .hours-selection .radio-selection input[type="radio"]:checked+label {
    color: #fff !important;
    background: #f4d142;
}

.availability-popup h4 {
    font-size: 16px;
    margin: 10px 0 15px;
}

.availability-popup .length-selection {
    width: 155px;
}

.availability-popup .length-selection .inner-block {
    height: 275px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
}

.availability-popup .length-selection .radio-selection {
    position: relative;
    margin-bottom: 10px;
    line-height: 1;
}

.availability-popup .length-selection .radio-selection input[type="radio"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.availability-popup .length-selection .radio-selection input[type="radio"]+label {
    color: #3e3f46 !important;
    font-size: 14px;
    cursor: pointer;
    padding: 3px 5px;
    border-radius: 3px;
    text-align: center;
    margin: 0;
}

.availability-popup .length-selection .radio-selection input[type="radio"]:checked+label {
    color: #fff !important;
    background: #f4d142;
}

.selected-info {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 10px 15px 0;
    border-top: 1px solid #ebebeb;
    margin-top: 10px;
}

.selected-info .btn {
    padding: 12px 15px;
    font-size: 16px;
    min-width: 120px;
}

.selected-info .btn:focus,
.selected-info .selected-date:focus {
    outline: none;
    box-shadow: none;
}

.selected-info .selected-date {
    border: none;
    width: 100%;
    padding: 0 20px;
    text-align: right;
    background-color: transparent;
}

.search-form form input[type="button"] {
    cursor: pointer;
    color: #444;
    font-size: 18px;
}

.availability-popup {
    width: 600px;
    position: absolute;
    top: 100%;
    left: 0;
    margin-left: 0;
    padding: 15px 10px;
    border-radius: 10px;
    border: 1px solid #ebebeb;
    background: #fff;
    z-index: 8;
    box-shadow: 0 5px 15px 5px rgba(0, 0, 0, 0.2);
    height: 430px;
    margin-top: 5px;
    display: none;
}

.availability-popup .bootstrap-datetimepicker-widget {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    width: 320px;
}

.availability-popup .date-selection,
.availability-popup .length-selection {
    padding: 0 15px;
}

.availability-popup .bootstrap-datetimepicker-widget .datepicker table td {
    padding: 10px 5px !important;
}

.availability-popup .bootstrap-datetimepicker-widget .datepicker table th {
    padding: 10px 5px !important;
}

.availability-popup .hours-selection {
    width: 100px;
}

.availability-popup .hours-selection .inner-block {
    height: 275px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
}

.availability-popup .hours-selection .radio-selection {
    position: relative;
    margin-bottom: 15px;
    line-height: 1;
}

.availability-popup .hours-selection .radio-selection input[type="radio"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.availability-popup .hours-selection .radio-selection input[type="radio"]+label {
    color: #3e3f46 !important;
    font-size: 14px;
    cursor: pointer;
    padding: 3px 5px;
    border-radius: 3px;
    text-align: center;
    margin: 0;
}

.availability-popup .hours-selection .radio-selection input[type="radio"]:checked+label {
    color: #fff !important;
    background: #f4d142;
}

.availability-popup h4 {
    font-size: 16px;
    margin: 10px 0 15px;
}

.availability-popup .length-selection {
    width: 155px;
}

.availability-popup .length-selection .inner-block {
    height: 275px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
}

.availability-popup .length-selection .radio-selection {
    position: relative;
    margin-bottom: 10px;
    line-height: 1;
}

.availability-popup .length-selection .radio-selection input[type="radio"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.availability-popup .length-selection .radio-selection input[type="radio"]+label {
    color: #3e3f46 !important;
    font-size: 14px;
    cursor: pointer;
    padding: 3px 5px;
    border-radius: 3px;
    text-align: center;
    margin: 0;
}

.availability-popup .length-selection .radio-selection input[type="radio"]:checked+label {
    color: #fff !important;
    background: #f4d142;
}

.availability-popup1 {
    width: 600px;
    position: absolute;
    top: 100%;
    right: 0;
    margin-left: 0;
    padding: 15px 10px;
    border-radius: 10px;
    border: 1px solid #ebebeb;
    background: #fff;
    z-index: 8;
    box-shadow: 0 5px 15px 5px rgba(0, 0, 0, 0.2);
    height: 280px;
    margin-top: 5px;
    display: none;
}

.availability-popup1 .bootstrap-datetimepicker-widget {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    width: 320px;
}

.availability-popup1 .date-selection,
.availability-popup1 .length-selection {
    padding: 0 15px;
}

.availability-popup1 .bootstrap-datetimepicker-widget .datepicker table td {
    padding: 10px 5px !important;
}

.availability-popup1 .bootstrap-datetimepicker-widget .datepicker table th {
    padding: 10px 5px !important;
}

.availability-popup1 .hours-selection {
    width: 100px;
}

.availability-popup1 .hours-selection .inner-block {
    height: 275px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
}

.availability-popup1 .hours-selection .radio-selection {
    position: relative;
    margin-bottom: 15px;
    line-height: 1;
}

.availability-popup1 .hours-selection .radio-selection input[type="radio"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.availability-popup1 .hours-selection .radio-selection input[type="radio"]+label {
    color: #3e3f46 !important;
    font-size: 14px;
    cursor: pointer;
    padding: 3px 5px;
    border-radius: 3px;
    text-align: center;
    margin: 0;
}

.availability-popup1 .hours-selection .radio-selection input[type="radio"]:checked+label {
    color: #fff !important;
    background: #f4d142;
}

.availability-popup1 h4 {
    font-size: 16px;
    margin: 10px 0 15px;
}

.availability-popup1 .length-selection {
    width: 155px;
}

.availability-popup1 .length-selection .inner-block {
    height: 275px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
}

.availability-popup1 .length-selection .radio-selection {
    position: relative;
    margin-bottom: 10px;
    line-height: 1;
}

.availability-popup1 .length-selection .radio-selection input[type="radio"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.availability-popup1 .length-selection .radio-selection input[type="radio"]+label {
    color: #3e3f46 !important;
    font-size: 14px;
    cursor: pointer;
    padding: 3px 5px;
    border-radius: 3px;
    text-align: center;
    margin: 0;
}

.availability-popup1 .length-selection .radio-selection input[type="radio"]:checked+label {
    color: #fff !important;
    background: #f4d142;
}

.selected-info {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 10px 15px 0;
    border-top: 1px solid #ebebeb;
    margin-top: 10px;
}

.selected-info .btn {
    padding: 12px 15px;
    font-size: 16px;
    min-width: 120px;
}

.selected-info .btn:focus,
.selected-info .selected-date:focus {
    outline: none;
    box-shadow: none;
}

.selected-info .selected-date {
    border: none;
    width: 100%;
    padding: 0 20px;
    text-align: right;
    background-color: transparent;
}

.play-btn {
    font-size: 50px;
    color: #f5d242;
    width: 88px;
    height: 88px;
    border-radius: 100%;
    background: #fff;
    line-height: 88px;
    position: absolute;
    bottom: 50px;
    left: 160px;
    text-align: center;
    z-index: 3;
    -webkit-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
}

.play-btn:hover,
.play-btn:focus {
    color: #f5d242;
}

.play-btn:after {
    content: '';
    width: 120px;
    height: 120px;
    position: absolute;
    top: -16px;
    left: -16px;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #fff;
    -webkit-animation-name: pulse;
    animation-duration: 1.5s;
    animation-delay: 300ms;
    animation-iteration-count: infinite;
    animation-name: pulse;
    z-index: -1;
    -webkit-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
}

.play-btn:before {
    content: '';
    width: 152px;
    height: 152px;
    position: absolute;
    top: -32px;
    left: -32px;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #fff;
    -webkit-animation-name: pulse;
    animation-duration: 1.5s;
    animation-delay: 300ms;
    animation-iteration-count: infinite;
    animation-name: pulse;
    z-index: -1;
    -webkit-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
}

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.featured-search svg {
    position: relative;
    top: -2px;
}

.modal-backdrop {
    z-index: 1053;
}

.modal {
    z-index: 1054;
}

.modal-body .close {
    position: absolute;
    top: -10px;
    right: -10px;
    opacity: 1;
    background: #f5d242;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 30px;
    text-align: center;
    border-radius: 50%;
}

.modal-body {
    position: relative;
}

.video-modal .modal-body {
    padding: 0;
}

.video-modal .modal-body .close:hover {
    opacity: 1;
    color: #fff;
}

.video-modal .modal-body iframe {
    vertical-align: bottom;
}

.h1 {
    font-size: 36px;
    color: #3e3f46;
    font-weight: bold;
}

.tutors-section {
    display: block;
    width: 100%;
    max-width: 1560px;
    margin-left: auto;
    padding-right: 15px;
}

.block-header {
    font-size: 20px;
    padding-right: 30px;
}

.block-header .h1 {
    margin-bottom: 30px;
}

.block-header .btn {
    margin-top: 30px;
}

.tutors-section {
    padding-top: 60px;
}

.tutors-section .block-header {
    margin-top: 30px;
}


/* #tutors-slider {
    margin-right: -15px;
} */

#tutors-slider .slick-slide {
    padding-left: 15px;
    padding-right: 15px;
    float: none;
    height: auto;
}

#tutors-slider .slick-slide>div {
    height: 100%;
}

.tutors-section .item {
    border: 1px solid #e1e1e1;
    padding: 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.06);
    font-size: 16px;
    background: #fff;
    height: 100%;
}

.tutors-section #tutors-slider .slick-track {
    display: -ms-flexbox;
    display: flex;
}

.tutors-section .item .tutor-info {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.tutors-section .tutor-pics {
    width: 105px;
    height: 105px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    overflow: hidden;
}

.tutors-section .tutor-pics img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.tutors-section .item .tutor-info .online-available {
    position: absolute;
    top: 10px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #96c45e;
    border: 2px solid #fff;
    z-index: 1;
}

.tutors-section .item .tutor-info .offline-available {
    position: absolute;
    top: 10px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #ebebeb;
    border: 2px solid #fff;
    z-index: 1;
}

.tutors-section .item .tutor-info .tutor-name-rating {
    padding-left: 15px;
}

.tutors-section .item .tutor-info h3 {
    font-size: 20px;
}

.rating {
    color: #ffba00;
    font-size: 14px;
}

.rating i:not(:last-child) {
    margin-right: 5px;
}

.tutors-section .item .qualification {
    margin-bottom: 15px;
}

.tutors-section .item strong {
    color: #3e3f46;
    font-weight: 500;
}

.tutors-section .item .subject .subject-block {
    display: inline-block;
    width: 100%;
    padding-top: 10px;
}

.tutors-section .item .subject .subject-block span {
    display: inline-block;
    padding: 5px;
    margin-right: 3px;
    margin-bottom: 3px;
    border: 1px solid #e1e1e1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.about-section {
    padding: 80px 0;
    font-size: 20px;
}

.about-section .h1 {
    margin-bottom: 30px;
}

.about-section span {
    font-style: italic;
    font-weight: 700;
    margin-bottom: 30px;
    display: block;
}

.about-section .btn {
    margin-top: 50px;
}

.about-section .small-play-btn {
    font-size: 16px;
    background: #3e3f46;
    color: #fff;
    width: 54px;
    height: 54px;
    border-radius: 100%;
    line-height: 46px;
    text-align: center;
    border: 4px solid #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    float: right;
    margin-top: -100px;
    margin-right: 80px;
}

.st-process-section {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    padding: 0 15px 80px;
}

.st-process-section .h1 {
    margin-bottom: 80px;
}

.st-process-section .process-blocks {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

.st-process-section .process-blocks .block {
    width: 20%;
    padding: 0 40px;
}

.st-process-section .process-blocks.three-col .block {
    width: 33.33%;
}

.st-process-section .process-blocks .block .card-box {
    display: inline-block;
    width: 100%;
}

.st-process-section .process-blocks .block .card-icon {
    display: inline-block;
    width: 160px;
    height: 160px;
    line-height: 160px;
    position: relative;
    font-size: 60px;
    background: #fff;
    -webkit-box-shadow: 23px 23px 65px 15px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 23px 23px 65px 15px rgba(0, 0, 0, 0.06);
    box-shadow: 23px 23px 65px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #ebebeb;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    z-index: 1;
}

.st-process-section .process-blocks .block .card-icon i {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
}

.st-process-section .process-blocks .block .card-box {
    position: relative;
}

.st-process-section .process-blocks .block .card-box:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 155px;
    height: 135px;
    background-image: url("../images/dot-img.png");
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.st-process-section .process-blocks .block .card-box:after {
    content: '';
    position: absolute;
    top: 40px;
    right: -40px;
    width: 70px;
    height: 30px;
    background-image: url("../images/next-process.png");
    background-repeat: no-repeat;
    background-position: center center;
}

.st-process-section .process-blocks .block:nth-child(even) .card-box:after {
    background-image: url("../images/next-process-2.png");
    top: 120px;
}

.st-process-section .process-blocks .block:last-child .card-box:after {
    content: none;
}

.st-process-section .process-blocks .block h4 {
    font-size: 22px;
    color: #575b5e;
    min-height: 52px;
    margin-bottom: 20px;
    margin-top: 80px;
}

.st-process-section .process-blocks.three-col .block h4 {
    min-height: inherit;
}

.course-category {
    padding: 0 0 60px;
}

.course-category .popular-courses {
    padding: 60px 15px 60px 0;
    display: block;
    width: 100%;
    max-width: 1560px;
    margin-left: auto;
}

.course-category .popular-courses .item {
    padding: 0 15px;
}

.course-category .popular-courses .inner-block {
    background-color: #fff;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #ebebeb;
    padding: 20px;
    height: 100%;
    text-align: center;
}

.popular-courses .category-icon {
    display: inline-block;
    position: relative;
    width: 100%;
}

.popular-courses .category-icon svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.popular-courses .category-icon svg.yello-heart {
    margin-left: -55px
}

.popular-courses .category-icon i {
    font-size: 45px;
    z-index: 1;
    position: relative;
    line-height: 112px;
}

.popular-courses .category-icon .icon {
    width: 140px;
    height: 128px;
    background-image: url("../images/category-icon/heart-icon.svg");
    background-repeat: no-repeat;
    background-size: 140px 138px;
    line-height: 108px;
    display: inline-block;
    vertical-align: bottom;
    text-align: center;
    position: relative;
    z-index: 1;
}

.popular-courses .category-icon .icon img {
    width: 50px;
    display: inherit;
}

.popular-courses h4 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 0;
}

#category-slider {
    width: 100%;
}

.course-category {
    background-image: url("../images/dot-panel.png");
    background-repeat: no-repeat;
    background-position: -175px top;
}

.course-category .popular-courses .btn {
    margin-top: 60px;
}

.course-category .popular-courses .text-block {
    text-align: left;
    background-image: url("../images/map-2.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-color: #f5d242;
    height: 100%;
    border-radius: 5px 0 0 5px;
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    padding: 20px 20px 50px;
}

.course-category .slick-prev {
    width: 75px;
    padding: 0;
    border: none;
    -webkit-box-shadow: 8px 8px 16px 10px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 8px 8px 16px 10px rgba(0, 0, 0, 0.08);
    box-shadow: 8px 8px 16px 10px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    background: #fff;
    margin-top: 0;
    font-size: 0;
    position: absolute;
    bottom: 10px;
    right: -110px;
    z-index: 1;
    cursor: pointer;
}

.course-category .slick-prev:after {
    content: '\f177';
    font-family: "Font Awesome 5 Pro";
    color: #575b5e;
    opacity: 0.31;
    font-size: 20px;
    line-height: 38px;
}

.course-category .slick-prev:hover:after {
    opacity: 1;
}

.course-category .slick-next {
    width: 75px;
    margin-left: 30px;
    padding: 0;
    border: none;
    -webkit-box-shadow: 8px 8px 16px 10px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 8px 8px 16px 10px rgba(0, 0, 0, 0.08);
    box-shadow: 8px 8px 16px 10px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    background: #fff;
    margin-top: 0;
    font-size: 0;
    position: absolute;
    bottom: 10px;
    right: -195px;
    z-index: 1;
    cursor: pointer;
}

.course-category .slick-next:after {
    content: '\f178';
    font-family: "Font Awesome 5 Pro";
    color: #575b5e;
    opacity: 0.31;
    font-size: 20px;
    line-height: 38px;
}

.course-category .slick-next:hover:after {
    opacity: 1;
}

.why-aner {
    background: #404141;
    background-image: url("../images/svg-bg.png");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: auto 246px;
    color: #3e3f46;
    padding: 60px 0 30px;
}

.why-aner .h1 {
    color: #fff;
    margin-bottom: 60px;
}

.why-aner h4 {
    color: #3e3f46;
    font-size: 22px;
    font-weight: 500;
}

.why-aner .why-block {
    line-height: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    text-align: left;
}

.why-aner .why-block:nth-child(odd) {
    text-align: right;
}

.why-aner .inner-block {
    background-color: #fff;
    border-radius: 30px;
    height: 100%;
    width: 100%;
    display: flex;
    padding: 35px;
    align-items: center;
    border-bottom: 5px solid #f5d242;
}

.why-aner .inner-block .icon img {
    width: 60px;
    height: 60px;
}

.why-aner .inner-block .icon {
    background-image: url("../images/polygon-2.svg");
    background-repeat: no-repeat;
    background-position: center left;
    min-width: 130px;
    padding: 40px 0;
    text-align: center;
}

.why-aner .why-block .block-details {
    padding-left: 30px;
}

.why-aner .why-block:nth-child(odd) .inner-block {
    flex-direction: row-reverse;
}

.why-aner .why-block:nth-child(odd) .inner-block .block-details {
    padding-left: 0;
    padding-right: 30px;
}

.why-aner .why-block:nth-child(odd) .inner-block .icon {
    background-image: url("../images/polygon-3.svg");
    background-position: center right;
}

.container-testi {
    max-width: 1400px;
}

.testimonial-sec {
    padding: 130px 0 250px;
}

.testimonial-sec .slide-bg {
    width: 640px;
    float: left;
    position: relative;
    z-index: 1;
    min-height: 600px;
}

.testimonial-thumb {
    width: 45%;
    float: right;
}

.testimonial-sec .slide-bg .polygon {
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial-sec .slide-bg .quote-icon {
    text-align: center;
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    font-family: Arial, "sans-serif";
    font-size: 150px;
    line-height: 0;
    padding-top: 70px;
    color: #fff;
    position: relative;
    z-index: 1;
    padding-right: 100px;
    margin-top: 30px;
}

.testimonial-sec .slide-view {
    padding: 90px 150px 30px 70px;
    color: #fff;
    position: relative;
    line-height: 30px;
}

.testimonial-sec .slide-view .client-img {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 125px;
    height: 125px;
    border-radius: 100%;
    overflow: hidden;
}

.testimonial-sec .slide-view .client-img img {
    object-fit: cover;
    object-position: top center;
    width: 100%;
    height: 100%;
}

.testimonial-sec .slide-view .client-info {
    margin-top: 60px;
}

.testimonial-sec .slide-view .client-info h5 {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
}

.testimonial-sec .slide-view .client-info h6 {
    font-size: 18px;
    font-weight: normal;
    color: #fff;
}

.testimonial-thumb h2 {
    margin-bottom: 25px;
}

.testimonial-thumb {
    font-size: 20px;
    line-height: 30px;
}

.testimonial-thumb .testimonial-slider-nav {
    margin-top: 50px;
    height: 380px;
    width: 100%;
    position: relative;
}

.testimonial-slider-nav .slick-list {
    height: 100%;
    overflow: inherit;
}

.testimonial-slider-nav .slick-track {
    width: 100% !important;
}

.testimonial-slider-nav .slick-slide:nth-child(1) {
    position: absolute;
    top: 35px;
    left: 0;
    width: 104px !important;
    height: 104px !important;
}

.testimonial-slider-nav .slick-slide:nth-child(1) .client-img img {
    width: 104px;
    height: 104px;
    border-radius: 100%;
    object-fit: cover;
}

.testimonial-slider-nav .slick-slide:nth-child(2) {
    position: absolute;
    top: 10px;
    left: 35%;
    width: 92px !important;
    height: 92px !important;
}

.testimonial-slider-nav .slick-slide:nth-child(2) .client-img img {
    width: 92px;
    height: 92px;
    border-radius: 100%;
    object-fit: cover;
}

.testimonial-slider-nav .slick-slide:nth-child(3) {
    position: absolute;
    top: 0;
    right: 0;
    width: 81px !important;
    height: 81px !important;
}

.testimonial-slider-nav .slick-slide:nth-child(3) .client-img img {
    width: 81px;
    height: 81px;
    border-radius: 100%;
    object-fit: cover;
}

.testimonial-slider-nav .slick-slide:nth-child(4) {
    position: absolute;
    top: 100px;
    right: 100px;
    width: 112px !important;
    height: 112px !important;
}

.testimonial-slider-nav .slick-slide:nth-child(4) .client-img img {
    width: 112px;
    height: 112px;
    border-radius: 100%;
    object-fit: cover;
}

.testimonial-slider-nav .slick-slide:nth-child(5) {
    position: absolute;
    top: 150px;
    left: 115px;
    width: 112px !important;
    height: 112px !important;
}

.testimonial-slider-nav .slick-slide:nth-child(5) .client-img img {
    width: 112px;
    height: 112px;
    border-radius: 100%;
    object-fit: cover;
}

.testimonial-slider-nav .slick-slide:nth-child(6) {
    position: absolute;
    top: 240px;
    left: -30px;
    width: 92px !important;
    height: 92px !important;
}

.testimonial-slider-nav .slick-slide:nth-child(6) .client-img img {
    width: 92px;
    height: 92px;
    border-radius: 100%;
    object-fit: cover;
}

.testimonial-slider-nav .slick-slide:nth-child(7) {
    position: absolute;
    top: 280px;
    left: 248px;
    width: 92px !important;
    height: 92px !important;
}

.testimonial-slider-nav .slick-slide:nth-child(7) .client-img img {
    width: 92px;
    height: 92px;
    border-radius: 100%;
    object-fit: cover;
}

.testimonial-slider-nav .slick-slide:nth-child(8) {
    position: absolute;
    top: 260px;
    right: 0;
    width: 92px !important;
    height: 92px !important;
}

.testimonial-slider-nav .slick-slide:nth-child(8) .client-img img {
    width: 92px;
    height: 92px;
    border-radius: 100%;
    object-fit: cover;
}

.site-footer {
    background-color: #404141;
    color: #fff;
    padding-top: 30px;
    position: relative;
    font-size: 16px;
}

.site-footer a {
    color: #fff;
}

.site-footer a:hover {
    color: #f5d242;
}

.site-footer h4 {
    color: #fff;
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 15px;
}

.newsletter .form-field {
    position: relative;
    width: 100%;
}

.newsletter .form-field .form-control {
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    color: #404141;
    background-color: #fff;
    padding: 12px 15px;
    height: auto;
}

.newsletter .form-field .submit-btn {
    background-color: #f5d242;
    color: #404141;
    border-radius: 0 5px 5px 0;
    border: none;
    font-weight: bold;
    font-size: 18px;
    min-width: 60px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
}

.newsletter .form-field .form-control::-webkit-input-placeholder {
    color: #404141;
    opacity: 1;
}

.newsletter .form-field .form-control::-moz-placeholder {
    color: #404141;
    opacity: 1;
}

.newsletter .form-field .form-control:-ms-input-placeholder {
    color: #404141;
    opacity: 1;
}

.newsletter .form-field .form-control:-moz-placeholder {
    color: #404141;
    opacity: 1;
}

.contact-info span {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    font-weight: 500;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.contact-info span a {
    font-weight: normal;
}

.footer-links {
    margin-top: 60px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
}

.footer-links ul {
    margin: 0;
}

.footer-links li.list-inline-item {
    margin: 0 35px;
}

.footer-links li.list-inline-item:last-child {
    margin-right: 0;
}

.footer-links li.list-inline-item:first-child {
    margin-left: 0;
}

.site-footer .copyright {
    padding: 30px 0;
}

.site-footer .copyright p {
    margin: 0;
}

.site-footer .social-links {
    position: absolute;
    top: -70px;
    left: -15px;
    background-color: #f5d242;
    padding: 35px 20px;
    border-radius: 0 5px 5px 0;
    text-align: right;
    width: 33.33%;
}

.site-footer .social-links ul {
    margin: 0;
    font-size: 17px;
}

.site-footer .social-links ul .list-inline-item:not(:last-child) {
    margin-right: 20px;
}

.site-footer .social-links a:hover {
    color: #404141;
}

.inner-banner {
    display: inline-block;
    width: 100%;
    position: relative;
}

.inner-banner .banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
}

.inner-banner .banner-content h2 {
    margin-bottom: 0;
    color: #fff;
    font-size: 56px;
    line-height: 68px;
    text-shadow: 3px 3px rgba(0, 0, 0, 0.25);
}

.what-aner {
    padding: 100px 0;
}

.what-aner .h1 {
    margin: 20px 0;
}

.what-aner p {
    margin-top: 15px;
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    line-height: 30px;
}

.what-aner .container {
    max-width: 1530px;
    margin-left: 0;
}

.what-aner-img {
    position: relative;
    padding-right: 75px;
}

.what-aner-img .figure {
    width: 100%;
    display: inline-block;
    vertical-align: bottom;
    position: relative;
}

.what-aner-img img {
    width: 100%;
}

.what-aner-img .round-shape {
    width: 314px;
    height: 314px;
    border-radius: 100%;
    display: inline-block;
    background: rgba(245, 210, 66, 0.7);
    position: absolute;
    top: -140px;
    left: -80px;
    z-index: 1;
}

.what-aner-img .round-shape:after {
    content: '';
    width: 200px;
    height: 200px;
    border-radius: 100%;
    display: inline-block;
    opacity: 0.7;
    background: rgba(245, 210, 66, 0.7);
    position: absolute;
    top: -35px;
    left: 40px;
}

.what-aner-img .figure:after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 122px;
    height: 122px;
    background: #fff;
    border-top: 40px solid #f5d242;
    border-right: 40px solid #f5d242;
}

.infinite-spinning {
    -webkit-animation: infinite-spinning 5s infinite;
    -moz-animation: infinite-spinning 5s infinite;
    -o-animation: infinite-spinning 5s infinite;
    animation: infinite-spinning 5s infinite;
}

@keyframes infinite-spinning {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.our-team {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    padding: 60px 0 250px;
    font-size: 20px;
}

.our-team .h1 {
    margin-bottom: 30px;
}

.our-team .top-sec {
    margin-bottom: 20px;
}

.our-team .top-sec p {
    max-width: 800px;
    margin: 0 auto;
}

.our-team .team-block {
    padding-top: 80px;
    position: relative;
    margin-top: 60px;
    transition: all 0.4s;
}

.team-block .team-img {
    width: 282px;
    height: 270px;
    margin: 0 auto;
    -webkit-clip-path: url(#svgEllipsePath);
    clip-path: url(#svgEllipsePath);
    transition: all 0.4s;
}

.team-block .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.team-block .team-details {
    position: absolute;
    top: 0;
    left: 15px;
    text-align: left;
    transition: all 0.4s;
    z-index: 1;
}

.team-block .team-details strong {
    font-weight: 500;
}

.team-block:hover .team-img {
    background: #f5d242;
    transform: scale(1.15);
}

.team-block:hover .team-img img {
    opacity: 0.15;
}

.team-block:hover .team-details {
    top: auto;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
}

.contact-sec {
    display: inline-block;
    vertical-align: bottom;
    width: 100%;
    padding: 55px 0;
}

.contact-sec .inner-block {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    overflow: hidden;
    padding: 0 15px;
    z-index: 1;
    position: relative;
}

.contact-sec .inner-block:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 210px;
    background-color: #f5d242;
}

.contact-sec .form-block {
    padding: 30px 65px 40px;
    font-size: 20px;
    line-height: 30px;
}

.contact-form {
    margin-top: 15px;
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
}

.contact-form .form-group {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
}

.contact-form .form-control {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    padding: 18px 15px;
    font-size: 18px;
    height: auto;
}

.contact-form textarea.form-control {
    resize: none;
    height: 145px;
}

.contact-address-block {
    padding: 95px 0;
}

.contact-address-block .contact-address {
    background: #404141;
    color: #fff;
    height: 100%;
    padding: 80px 35px 35px;
    position: relative;
}

.contact-address-block .contact-address:before {
    content: '';
    position: absolute;
    top: -32px;
    left: -32px;
    width: 64px;
    height: 64px;
    background: #f5d242;
}

.contact-address-block .contact-address h3 {
    font-weight: bold;
    color: #fff;
}

.contact-address-block .contact-address ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-address-block .contact-address ul li {
    margin-top: 45px;
    padding-left: 70px;
    position: relative;
    min-height: 50px;
}

.contact-address-block .contact-address p {
    margin: 0;
}

.contact-address-block .email {
    word-break: break-all;
}

.contact-address-block .contact-address .icon {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-clip-path: url(#svgEllipseYellow);
    clip-path: url(#svgEllipseYellow);
    background: #f5d242;
    padding-left: 5px;
    width: 52px;
    height: 50px;
    line-height: 50px;
}

.contact-address-block .contact-address .icon img {
    width: 28px;
    height: 28px;
    -webkit-filter: grayscale(1) invert(1);
    filter: grayscale(1) invert(1);
}

.shape-sec {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    padding: 60px 0 150px;
    font-size: 20px;
}

.shape-sec .h1 {
    margin-bottom: 30px;
}

.shape-sec .top-sec {
    margin-bottom: 20px;
}

.shape-sec .top-sec p {
    margin: 0 auto;
}

.shape-sec .shape-block {
    padding-top: 80px;
    position: relative;
    transition: all 0.4s;
}

.shape-sec .block-details {
    width: 345px;
    height: 330px;
    margin: 0 auto;
    -webkit-clip-path: url(#svgEllipsePath);
    clip-path: url(#svgEllipsePath);
    transition: all 0.4s;
    background-color: rgba(241, 241, 241, 0.4);
    padding: 80px 15px 30px;
    font-size: 18px;
}

.shape-sec .block-details:hover {
    background-color: #f5d242;
}

.shape-sec .shape-block .icon {
    display: inline-block;
}

.shape-sec .shape-block .icon img {
    width: 35px;
    height: 35px;
}

.shape-sec .block-details h4 {
    font-size: 20px;
    color: #575b5e;
    display: inline-block;
    width: 100%;
    margin: 35px 0 15px;
}

.p-60-0 {
    padding: 60px 0;
}

.p-60-0-150 {
    padding: 60px 0 150px;
}

.p-160-0-250 {
    padding: 160px 0 250px;
}

.p-100-0-250 {
    padding: 100px 0 250px;
}

.p-150-0-60 {
    padding: 150px 0 60px;
}

.full-maxwidth {
    max-width: 100% !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.content-img-sec {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    font-size: 20px;
    line-height: 30px;
}

.content-img-sec .content-block {
    padding-left: 60px;
    padding-top: 30px;
}

.content-img-sec .flex-row-reverse .content-block {
    padding-left: 15px;
    padding-right: 60px;
    padding-top: 30px;
}

.content-img-sec .h1 {
    margin-bottom: 30px;
}

.content-img-sec p {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    margin-bottom: 30px;
}

.content-img-sec p:last-child {
    margin-bottom: 0;
}

.content-img-sec .img-block .figure {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    width: 100%;
}

.content-img-sec .img-block .figure:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.3);
    border-radius: 100%;
}

.polygon-bg {
    position: absolute;
    bottom: -70px;
    left: 15px;
    height: 560px;
    width: 535px;
    background-image: url("../images/polygon-bg-1.svg");
    background-repeat: no-repeat;
    z-index: -1;
}

.polygon-bg-2 {
    position: absolute;
    bottom: 0;
    left: 15px;
    height: 560px;
    width: 535px;
    background-image: url("../images/polygon-bg-2.svg");
    background-repeat: no-repeat;
    z-index: -1;
}

.polygon-bg-3 {
    position: absolute;
    bottom: 0;
    left: 15px;
    height: 560px;
    width: 535px;
    background-image: url("../images/polygon-bg-1.svg");
    background-repeat: no-repeat;
    z-index: -1;
}

.course-category.subject-page {
    position: relative;
    background: none;
}

.course-category.subject-page:before {
    content: '';
    background-image: url("../images/shape-bg.svg");
    background-repeat: no-repeat;
    background-position: top right;
    width: 700px;
    height: 635px;
    position: absolute;
    top: 50px;
    right: -160px;
}

.course-category.subject-page .popular-courses {
    padding-right: 0;
    padding-bottom: 0;
}

.subject-page .item {
    margin-bottom: 30px;
}

.f-28 {
    font-size: 28px;
    font-weight: 300;
}

.inner-search.search-form .select-box {
    max-width: 33.33%;
}

.tutor-list {
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.tutor-list:before {
    content: '';
    background-image: url("../images/shape-bg.svg");
    background-repeat: no-repeat;
    background-position: top right;
    width: 700px;
    height: 635px;
    position: absolute;
    top: 0;
    right: -160px;
}

.tutor-block {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
}

.tutor-block .inner-block {
    background: #fff;
    border: 1px solid #e1e1e1;
    padding: 20px;
}

.tutor-block .tutor-block-left {
    width: 100%;
    min-width: 250px;
    max-width: 250px;
    text-align: center;
    padding-right: 20px;
    padding-top: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.tutor-block .tutor-details {
    width: 100%;
    padding-right: 20px;
    position: relative;
}

.tutor-block .tutor-block-right {
    min-width: 185px;
    width: 100%;
    max-width: 185px;
    border-left: 2px dotted rgba(62, 63, 70, 0.4);
    padding-left: 20px;
    position: relative;
}

.clip-shape {
    position: absolute;
}

.tutor-block .tutor-pics {
    width: 200px;
    height: 200px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.tutor-block .tutor-pics img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.tutor-block h3 {
    font-size: 22px;
    padding-right: 240px;
}

.tutor-block .qualification {
    margin-bottom: 5px;
    margin-top: 5px;
    padding-right: 240px;
}

.tutor-block strong {
    color: #3e3f46;
    font-weight: 500;
}

.tutor-block .subject .subject-block {
    display: inline-block;
    width: 100%;
    padding-top: 10px;
}

.tutor-block .subject .subject-block span {
    display: inline-block;
    padding: 5px;
    margin-right: 15px;
    margin-bottom: 15px;
    border: 1px solid #e1e1e1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.tutor-block .experience {
    font-size: 18px;
    color: #575b5e;
    font-weight: 500;
    margin-bottom: 20px;
}

.tutor-block .experience strong {
    font-size: 22px;
    color: #3e3f46;
}

.tutor-block .rating .total-review {
    display: block;
    line-height: normal;
    color: #575b5e;
    font-size: 16px;
}

.tutor-block .btn {
    min-width: unset;
    font-size: 16px;
    padding: 19px 5px;
    width: auto;
    margin-top: 60px;
    border: 1px solid #e1e1e1;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 20px;
}

.tutor-block .tutor-details p {
    margin-bottom: 0;
}

.pagination {
    margin-top: 30px;
    text-align: right;
    display: inline-block;
    width: 100%;
}

.pagination a {
    width: 75px;
    padding: 0;
    text-align: center;
    border: none;
    -webkit-box-shadow: 8px 8px 16px 0 rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 8px 8px 16px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 8px 8px 16px 0 rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    background: #fff;
    cursor: pointer;
    font-size: 30px;
    line-height: 38px;
    transition: all 0.4s;
}

.pagination a+a {
    margin-left: 30px;
}

.pagination a i {
    opacity: 0.31;
    transition: all 0.2s;
    color: #575b5e;
}

.pagination a:hover {
    color: #f5d242;
}

.pagination a:hover i {
    opacity: 1;
    color: #f5d242;
}

ul.pagination {
    margin-top: 30px;
    text-align: right;
    display: inline-block;
    width: 100%;
}

ul.pagination a {
    width: 75px;
    padding: 0;
    text-align: center;
    border: none;
    -webkit-box-shadow: 8px 8px 16px 0 rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 8px 8px 16px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 8px 8px 16px 0 rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    background: #fff;
    cursor: pointer;
    font-size: 30px;
    line-height: 38px;
    transition: all 0.4s;
}

ul.pagination a+a {
    margin-left: 30px;
}

ul.pagination a i {
    opacity: 0.31;
    transition: all 0.2s;
    color: #575b5e;
}

ul.pagination a:hover {
    color: #f5d242;
}

ul.pagination a:hover i {
    opacity: 1;
    color: #f5d242;
}


/*account login css*/

.signin-option {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.login_type_form .aner-logo {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 3px solid #f5d242;
}

.login_type_form .aner-logo img {
    max-width: 120px;
}

.login_type_form {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    width: 100%;
    max-width: 460px;
    -webkit-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
}

.login_type_form .h1 {
    margin-bottom: 0;
    text-align: center;
    font-size: 30px;
    background: #f5d242;
    color: #fff;
    padding: 20px;
}

.login_type_form .choose-option {
    padding: 30px;
}

.radio-btn {
    position: relative;
}

.radio-btn input {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
}

.radio-btn .btn {
    width: 100%;
}

.radio-btn+.radio-btn {
    margin-top: 15px;
}

.radio-btn input[type="radio"]+.btn:hover {
    color: #697981;
}

.radio-btn input[type="radio"]+.btn:hover:after {
    max-width: 0;
}

.radio-btn input[type="radio"]:checked+.btn {
    color: #fff;
}

.radio-btn input[type="radio"]:checked+.btn:after {
    max-width: 100%;
}

.account-login {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background-image: url("../images/login-bg.svg");
    background-repeat: no-repeat;
    background-position: bottom center;
    z-index: 1;
    padding: 0 15px;
}

.account-login:before {
    content: '';
    width: 460px;
    height: 414px;
    position: fixed;
    top: 65px;
    left: 50%;
    margin-left: 95px;
    background-image: url("../images/shape-bg.svg");
    background-repeat: no-repeat;
    background-position: center center;
    z-index: -1;
}

.account-login .navbar-brand img {
    max-height: 85px;
}

.account-login .navbar-brand {
    padding: 20px 0;
}

.account-box {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 800px;
    margin: 20px auto 0;
    border: 1px solid #ebebeb;
    -webkit-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    position: relative;
    z-index: 2;
    margin-bottom: 105px;
}

.account-box:before,
.account-box:after {
    content: '';
    position: absolute;
    background: #f4f4f4;
    z-index: -1;
    border: 1px solid #ebebeb;
    border-top-width: 0;
    height: 10px;
    border-radius: 0 0 7px 7px;
}

.account-box:before {
    left: 10px;
    right: 10px;
    bottom: -10px;
    border-top-width: 1px;
}

.account-box:after {
    left: 20px;
    right: 20px;
    bottom: -20px;
    z-index: -2;
}

.account-box nav {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 30px;
}

.account-box .nav-tabs {
    border-bottom: none;
}

.account-box .nav-tabs .nav-link {
    border: none;
    width: 33.33%;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #575b5e;
    padding: 0;
    text-transform: uppercase;
}

.account-box .nav-tabs .nav-link:after {
    content: '';
    width: 40px;
    height: 3px;
    background: #fff;
    display: block;
    margin: 7px auto 0;
}

.account-box .nav-tabs .nav-link.active {
    color: #f5d242;
}

.account-box .nav-tabs .nav-link.active:after {
    background: #f5d242;
}

.account-box .tab-content {
    width: 100%;
}

.box-title {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #f5d242;
    padding: 0;
    margin-bottom: 50px;
    position: relative;
}

.box-title:after {
    content: '';
    width: 40px;
    height: 3px;
    background: #f5d242;
    display: block;
    margin: 7px auto 0;
}

.box-description {
    margin-bottom: 40px;
    padding: 0 30px;
}

.account-box .box-title {
    margin-bottom: 30px;
}

.account-box .form-control {
    border-color: #ebebeb;
    font-size: 16px;
    height: auto;
    padding: 15px 10px;
    line-height: 33px;
    transition: all 0.3s;
}

.account-box .form-control:focus,
.account-box .select2-container--default .select2-selection--single:focus {
    border-color: #f5d242;
    -webkit-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
}

.account-box .form-group {
    margin-bottom: 15px;
    position: relative;
}

.account-box label,
.account-box .form-group label {
    font-weight: 500;
}

.account-login .account-box .form-group select~label.error {
    position: absolute;
    bottom: -20px;
    left: 0;
}

.account-box .select2-container {
    width: 100% !important;
}

.account-box .select2-container--default .select2-selection--single {
    background-position: right 10px center;
    border-color: #ebebeb;
    transition: all 0.3s;
}

.account-box .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 10px;
    padding-right: 25px;
    font-size: 16px;
}

.account-box .mobile-number {
    padding-left: 125px;
}

.account-box .mobile-number select.form-control,
.account-box .mobile-number span.select2 {
    width: 95px !important;
    position: absolute;
    top: 0;
    left: 0;
}

.account-box .form-control.datepicker {
    background-image: url("../images/calendar.svg");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px 20px;
    padding-right: 35px;
}

.account-box .date1 #ui-datepicker-div {
    top: 100% !important;
    left: 0 !important;
    position: absolute !important;
}

.account-box .date2 #ui-datepicker-div {
    top: 100% !important;
    left: 0 !important;
    position: absolute !important;
}

.account-box .date3 #ui-datepicker-div {
    top: 100% !important;
    left: 0 !important;
    position: absolute !important;
}

.account-box legend {
    font-size: 20px;
    font-weight: 500;
    margin: 15px 0 25px;
}

.account-box .form-check {
    padding-left: 35px;
    line-height: 24px;
}

.account-box .form-check-input {
    margin: 0;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
}

.account-box .form-check-label {
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    min-height: 24px;
}

.account-box .form-check-label a {
    color: #1994f0;
}

.account-box .form-check-label a:hover {
    color: #f4d142;
}

.account-box .form-check-input+.form-check-label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border: 1px solid #ebebeb;
    background: #fff;
    border-radius: 5px;
}

.account-box .form-check-input:checked+.form-check-label:before {
    background: #f4d142;
    border-color: #f4d142;
    content: '\f00c';
    font-family: "Font Awesome 5 Pro";
    color: #fff;
}

.account-box .form-submit {
    margin-top: 25px;
    margin-bottom: 30px;
}

.account-box .form-submit .btn {
    min-width: 180px;
    margin-right: -65px;
}

.account-box .form-submit .forgot-link {
    float: left;
    line-height: 65px;
    color: #1994f0;
    font-style: italic;
    text-decoration: underline;
}

.account-box .form-submit .forgot-link:hover {
    color: #f4d142;
}

.twitter-btn {
    background: #50abf1;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 33px;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid #50abf1;
    transition: all 0.3s;
}

.twitter-btn:hover {
    color: #50abf1;
    background: #fff;
}

.twitter-btn i {
    font-size: 22px;
    vertical-align: middle;
    margin-right: 3px;
}

.account-box .more-option {
    text-align: center;
    position: relative;
}

.account-box .more-option .or {
    position: absolute;
    left: 125px;
    top: 0;
    font-size: 20px;
    text-transform: uppercase;
    width: 65px;
    height: 65px;
    border: 1px solid #ebebeb;
    line-height: 63px;
}

.account-box .more-option .or:before {
    content: '';
    border-top: 1px solid #ebebeb;
    width: 125px;
    position: absolute;
    top: 50%;
    left: -125px;
    margin-top: -0.5px;
}

.account-box .form-bottom {
    margin-top: 0;
}

.account-box .form-bottom a {
    color: #1994f0;
    font-style: italic;
    text-decoration: underline;
}

.account-box .form-bottom a:hover {
    color: #f4d142;
}

.account-box .h1 {
    margin: 10px 0 60px;
    text-transform: uppercase;
}

.account-box.login-page {
    max-width: 680px;
}

.account-box.login-page .more-option .or {
    left: 60px;
}

.account-box.login-page .more-option .or:before {
    width: 60px;
    left: -60px;
}

.account-box .select-btn input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.account-box .select-btn .radio-btn {
    border: 1px solid #ebebeb;
    padding: 5px 20px 5px 55px;
    font-size: 24px;
    font-weight: bold;
    color: #404141;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}

.account-box .select-btn .radio-btn span {
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: #575b5e;
}

.account-box .select-btn .radio-btn:before {
    content: '';
    width: 20px;
    height: 20px;
    border: 3px solid #ebebeb;
    border-radius: 100%;
    position: absolute;
    top: 30px;
    left: 20px;
}

.account-box .select-btn input:checked+.radio-btn:before {
    border: 5px solid #f5d242;
}

.account-box .select-btn input:checked+.radio-btn {
    background-color: rgba(245, 210, 66, 0.2);
    border-color: #f5d242;
}

.for-student:not(.show),
.for-graduate:not(.show) {
    display: none;
}

.signup-step {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 50px 0;
    padding: 0;
    list-style: none;
}

.signup-step li {
    width: 25%;
    background: #f3f3f3;
    font-weight: 500;
    font-size: 19px;
    text-align: center;
    padding: 0 15px;
    line-height: 70px;
}

.signup-step li:first-child {
    border-radius: 5px 0 0 5px;
}

.signup-step li:last-child {
    border-radius: 0 5px 5px 0;
}

.signup-step li.current {
    border-radius: 5px;
    background-color: #f4d242;
    color: #fff;
    padding: 0 15px;
    line-height: 90px;
}

.signup-step li i {
    font-size: 30px;
    vertical-align: middle;
    color: #7ebc59;
    display: none;
}

.signup-step li.completed i {
    display: inline-block;
}

.signup-step li.completed {
    border-bottom: 2px solid #f5d242;
}


/* logged-in page css */

.subscription-page {
    padding-bottom: 160px;
}

.subscription-page .page-title .h1 {
    margin: 50px 0;
}

.subscription-page .inner-block {
    border: 1px solid #ebebeb;
    background: #fff;
    -webkit-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    border-radius: 10px;
    padding: 30px;
}

.subscription-page h3 {
    font-size: 28px;
    position: relative;
    margin-bottom: 25px;
    font-weight: 700;
}

.subscription-page h3:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #f5d242;
    margin-top: 10px;
}

.subscription-page .form-group {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    margin-bottom: 30px;
}

.subscription-page .form-group:last-child {
    margin-bottom: 0;
}

.subscription-page .form-group.select-level {
    margin-bottom: 45px;
}

.subscription-page .form-group {
    position: relative;
}

.subscription-page .form-group input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.subscription-page .form-group input[type="radio"]+label {
    font-weight: 700;
    padding: 20px 20px 20px 60px;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    font-size: 24px;
    margin: 0;
    line-height: 30px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.subscription-page .form-group input[type="radio"]:checked+label {
    background-color: rgba(245, 210, 66, 0.2);
    border-color: #f5d242;
}

.subscription-page .form-group input[type="radio"]+label:after {
    content: '';
    position: absolute;
    top: 22px;
    left: 20px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 3px solid #ebebeb;
    background: #fff;
    transition: all 0.3s;
}

.subscription-page .form-group input[type="radio"]:checked+label:after {
    border-width: 5px;
    border-color: #f5d242;
}

.subscription-page .form-group input[type="radio"]+label .plan-detail {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    font-weight: normal;
    font-size: 16px;
}

.subscription-page .form-group input[type="radio"]+label .plan-price {
    float: right;
    font-size: 20px;
}

.subscription-page .form-group input[type="radio"]+label .plan-price small {
    font-size: 16px;
}

.subscription-page .selected-level {
    font-size: 16px;
    margin-bottom: 40px;
}

.subscription-page .total-price {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    border-top: 1px solid #ebebeb;
    padding: 15px 0;
}

.subscription-page .total-price table {
    width: 100%;
}

.subscription-page .total-price table tr td {
    padding: 7px 0;
    text-align: left;
    vertical-align: top;
}

.subscription-page .total-price table tr td.price {
    text-align: right;
    text-transform: uppercase;
    white-space: nowrap;
    padding-left: 10px;
}

.subscription-page .total-price table tbody tr:last-child td {
    padding-bottom: 20px;
}

.subscription-page .total-price table tfoot tr td {
    font-weight: 700;
    font-size: 24px;
    border-top: 1px solid #ebebeb;
    padding: 20px 0;
}

.discount-sec {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: relative;
    margin-bottom: 50px;
}

.discount-sec .form-control {
    width: 100%;
    line-height: 33px;
    padding: 15px 125px 15px 10px;
    height: auto;
    font-size: 18px;
}

.discount-sec .form-control:focus {
    border-color: #f5d242;
}

.discount-sec .btn {
    border-radius: 0 5px 5px 0;
    min-width: 120px;
    position: absolute;
    top: 0;
    right: 0;
}

.subscribe-btn {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    margin-bottom: 20px;
}

.subscribe-btn .btn {
    width: 100%;
}

.banner-search-top {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-box-shadow: 23px 23px 65px 15px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 23px 23px 65px 15px rgba(0, 0, 0, 0.06);
    box-shadow: 23px 23px 65px 15px rgba(0, 0, 0, 0.06);
}

.banner-search-top .page-title {
    padding-top: 80px;
    padding-bottom: 80px;
}

.banner-search-top .page-title .h1 {
    color: #fff;
    margin: 0;
    line-height: 1;
    text-shadow: 3px 3px rgba(0, 0, 0, 0.25);
}

.banner-search-top .banner-search {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    padding: 50px 0;
    background-color: rgba(0, 0, 0, 0.7);
}

.banner-search-top .search-form {
    width: 100%;
    display: inline-block;
    vertical-align: bottom;
    padding: 0 15px;
}

.banner-search-top .search-form form .form-group {
    margin-top: 0;
}

.banner-search-top .search-form form .form-group label {
    color: #fff;
}

.tutor-block .tutor-details .chat-with {
    background-color: #404141;
    width: 65px;
    height: 65px;
    border-radius: 4px;
    background-image: url("../images/tutor-chat.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    position: absolute;
    right: 100px;
    margin-left: 5px;
    top: 0;
}

.tutor-block .tutor-details .tutor-contact {
    position: absolute;
    right: 20px;
    top: 0;
}

.tutor-block .tutor-details .tutor-contact .chat-with {
    position: relative;
    right: auto;
    top: auto;
}

.tutor-block .tutor-details .tutor-contact .call-with {
    position: relative;
    right: auto;
    top: auto;
}

.tutor-block .tutor-details .tutor-contact .request-with {
    position: relative;
    right: auto;
    top: auto;
}

.tutor-block .tutor-details .chat-with:hover {
    background-color: #f5d242;
}

.tutor-block .tutor-details .call-with {
    background-color: #f5d242;
    width: 65px;
    height: 65px;
    border-radius: 4px;
    background-image: url("../images/phone-call-white.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    position: absolute;
    right: 180px;
    top: 0;
}

.tutor-block .tutor-details .call-with:hover {
    background-color: #3e3f46;
}

.tutor-block .tutor-details .request-with {
    background-color: #f5d242;
    width: 65px;
    height: 65px;
    border-radius: 4px;
    background-image: url("../images/user.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    position: absolute;
    right: 20px;
    top: 0;
    margin-left: 5px;
}

.tutor-block .tutor-details .request-with:hover {
    background-color: #3e3f46;
}

.navbar-nav .nav-item .new_request {
    position: absolute;
    top: -3px;
    right: -7px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #f5d242;
    border: 2px solid #fff;
    z-index: 1;
}

.tutor-block .tutor-details .call-with:hover {
    background-color: #3e3f46;
}

.tutor-block .online-available {
    position: absolute;
    top: 50%;
    left: 20px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #96c45e;
    border: 2px solid #fff;
    margin-top: -85px;
    z-index: 1;
}

.tutor-block .offline-available {
    position: absolute;
    top: 50%;
    left: 20px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #ebebeb;
    border: 2px solid #fff;
    margin-top: -85px;
    z-index: 1;
}

.tutor-single-page {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
}

.tutor-single-page .tutor-top-info {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    background: #fff;
    padding: 40px 0;
    -webkit-box-shadow: 23px 23px 65px 15px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 23px 23px 65px 15px rgba(0, 0, 0, 0.06);
    box-shadow: 23px 23px 65px 15px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid #e1e1e1;
}

.tutor-single-page .tutor-block .inner-block {
    border: none;
    padding: 0;
}

.tutor-single-page .tutor-block .tutor-details {
    padding-right: 0;
}

.tutor-single-page .tutor-block .rating {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    margin-top: 20px;
}

.tutor-single-page .tutor-block .rating i {
    font-size: 20px;
}

.tutor-single-page .tutor-block .rating i:not(:last-child) {
    margin-right: 10px;
}

.tutor-single-page .tutor-block .rating .total-review {
    margin-top: 10px;
}

.tutor-single-page .tutor-block .button-block .btn {
    max-width: 220px;
    font-size: 18px;
    width: 100%;
    position: relative;
    left: auto;
    right: auto;
}

.tutor-single-page .tutor-block .button-block .btn+.btn {
    margin-left: 25px;
}

.tutor-single-page .tutor-block .experience {
    margin-bottom: 5px;
    margin-top: 5px;
    padding-right: 70px;
    font-size: 16px;
    font-weight: normal;
}

.tutor-single-page .tutor-block .experience strong {
    font-size: 16px;
}

.tutor-single-page .tutor-block .about-tutor {
    font-size: 18px;
    margin-top: 10px;
    font-style: italic;
}

.verified {
    width: 30px;
    height: 30px;
    background-image: url("../images/shield.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.tutor-single-page .tutor-block .online-available,
.tutor-single-page .tutor-block .offline-available {
    margin-top: -120px;
}

.tutor-single-page .tutor-block .online-available,
.tutor-single-page .tutor-block .offline-available {
    margin-top: -120px;
}

.tutor-full-information {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    font-size: 16px;
    line-height: 30px;
}

.tutor-full-information h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.tutor-full-information h3:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #f5d242;
    margin-top: 10px;
}

.tutor-full-information p {
    margin-bottom: 25px;
}

.tutor-full-information p:last-child {
    margin-bottom: 0;
}

.tutor-full-information .about-tutor-full h3 {
    margin-top: 0;
}

.notes-tutor ul {
    list-style: none;
    padding: 0;
    margin: 0 -15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.notes-tutor ul li {
    width: 33.33%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.notes-tutor ul li .notes-inner {
    display: inline-block;
    padding: 12px 12px 12px 105px;
    width: 100%;
    background: #efefef;
    font-size: 18px;
    height: 100px;
    line-height: 26px;
    border-radius: 5px;
    position: relative;
}

.notes-tutor ul li .notes-inner .date {
    display: block;
    font-size: 16px;
}

.notes-tutor ul li.type.pdf .notes-inner {
    background-image: url("../images/pdf.svg");
    background-position: 12px 12px;
    background-repeat: no-repeat;
    background-size: 75px;
}

.notes-tutor ul li.type.pdf .notes-inner .notes-delete {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.tutor-full-information .qualification-tutor h3 {
    margin-top: 15px;
}

.tutor-full-information .table-responsive-sm {
    border: 1px solid #e1e1e1;
    background: #fff;
    border-radius: 10px;
}

.tutor-full-information .table {
    margin-bottom: 0;
}

.tutor-full-information .table th {
    border-top: none;
    width: 33.33%;
    padding: 20px 30px;
    font-size: 22px;
    font-weight: 500;
    border-right: 1px solid #e1e1e1;
}

.tutor-full-information .table td {
    width: 33.33%;
    padding: 20px 30px;
    border-top: 1px solid #e1e1e1;
    border-right: 1px solid #e1e1e1;
}

.tutor-full-information .table th:last-child,
.tutor-full-information .table td:last-child {
    border-right: none;
}

.review-tutor {
    display: inline-block;
    width: 100%;
}

.review-tutor .review-list {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    border: 1px solid #e1e1e1;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
}

.review-tutor .review-list .review-list-block {
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 3px dotted #e1e1e1;
}

.review-tutor .review-list .review-list-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.review-tutor .review-list .review-list-block .reviewer-icon {
    width: 115px;
    min-width: 115px;
    height: 111px;
    -webkit-clip-path: url(#svgEllipsePathreview);
    clip-path: url(#svgEllipsePathreview);
    transition: all 0.4s;
    margin-right: 30px;
}

.review-tutor .review-list .review-list-block .reviewer-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.review-tutor .review-list .review-list-block h4 {
    font-size: 22px;
    color: #575b5e;
}

.review-tutor .review-list .review-list-block .reviewer-description {
    margin-top: 10px;
}

.tutor-full-information .tutors-section .tutor-pics {
    -webkit-clip-path: url(#heart-path2);
    clip-path: url(#heart-path2);
}

.tutor-full-information .tutors-section .item .tutor-info h3 {
    margin: 0;
}

.tutor-full-information .tutors-section .item .tutor-info h3:after {
    content: none;
}

.tutor-full-information .tutors-section .item .qualification {
    margin-bottom: 0;
}

#notesPdfModal .modal-dialog {
    max-width: 1200px;
}

body.modal-open {
    padding: 0 !important;
}

.modal .close {
    font-size: 40px;
    opacity: 1;
    color: #232121;
}

.modal .close:not(:disabled):not(.disabled):focus,
.modal .close:not(:disabled):not(.disabled):hover {
    opacity: 1;
}

.modal .pdf-name {
    width: 100%;
    font-size: 18px;
    margin: 0;
    color: #575b5e;
    font-weight: normal;
}

.without-banner-page {
    padding-bottom: 160px;
}

.without-banner-page .page-title .h1 {
    margin: 50px 0;
}

.without-banner-page .inner-block {
    border: 1px solid #ebebeb;
    background: #fff;
    -webkit-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    border-radius: 10px;
    padding: 30px;
}

.without-banner-page h3 {
    font-size: 28px;
    position: relative;
    margin-bottom: 30px;
    font-weight: 700;
}

.without-banner-page h3:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #f5d242;
    margin-top: 10px;
}

.without-banner-page h4 {
    font-size: 24px;
    color: #575b5e;
    margin: 15px 0 25px;
}

.without-banner-page .left-block {
    padding-right: 0;
}

.without-banner-page .right-block {
    padding-left: 60px;
}

.personal-detail-block {
    margin-bottom: 25px;
}

.personal-detail-block label {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 7px;
}

.personal-detail-block p {
    margin-bottom: 0;
}

.parent-detail-block {
    margin-bottom: 25px;
}

.parent-detail-block label {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 7px;
}

.parent-detail-block p {
    margin-bottom: 0;
    width: 100%;
    background-color: rgba(245, 210, 66, 0.2);
    padding: 15px 10px;
    line-height: 35px;
    white-space: nowrap;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.profile-img {
    width: 264px;
    height: 264px;
    transition: all 0.4s;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    overflow: hidden;
}

.profile-img.edit-img.student {
    margin-left: 0;
    margin-bottom: 30px;
}

.profile-img.edit-img.student {
    margin-left: 0;
    margin-bottom: 30px;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.profile-name {
    display: inline-block;
    width: 100%;
    max-width: 264px;
    text-align: center;
    margin-top: 15px;
    font-size: 20px;
    font-weight: 500;
}

.two-button {
    display: -ms-flexbox;
    display: flex;
    margin: 15px 0;
}

.two-button .btn {
    width: 50%;
}

.two-button .btn+.btn {
    margin-left: 30px;
}

.dashboard .submit-btn-block {
    margin: 15px 0;
}

.dashboard .submit-btn-block .btn+.btn {
    margin-left: 40px;
}

.dashboard .form-control {
    border-color: #ebebeb;
    font-size: 18px;
    height: auto;
    padding: 15px 10px;
    line-height: 33px;
    transition: all 0.3s;
}

.dashboard textarea.form-control {
    height: 200px;
    resize: none;
}

.dashboard .form-control:focus,
.dashboard .select2-container--default .select2-selection--single:focus {
    border-color: #f5d242;
    -webkit-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
}

.dashboard .form-group {
    margin-bottom: 30px;
    position: relative;
}

.dashboard .select2-container {
    width: 100% !important;
}

.dashboard .select2-container--default .select2-selection--single {
    background-position: right 10px center;
    border-color: #ebebeb;
    transition: all 0.3s;
}

.dashboard .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 10px;
    padding-right: 25px;
}

.dashboard .mobile-number {
    padding-left: 125px;
}

.dashboard .mobile-number select.form-control,
.dashboard .mobile-number span.select2 {
    width: 95px !important;
    position: absolute;
    top: 0;
    left: 0;
}

.dashboard .form-control.datepicker {
    background-image: url("../images/calendar.svg");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px 20px;
    padding-right: 35px;
}

.dashboard .date1 #ui-datepicker-div {
    top: 100% !important;
    left: 0 !important;
}

.dashboard legend {
    font-size: 20px;
    font-weight: 500;
    margin: 15px 0 25px;
}

.dashboard .form-check {
    padding-left: 45px;
}

.dashboard .form-check-input {
    margin: 0;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
}

.dashboard .form-check-label {
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    min-height: 34px;
}

.dashboard .form-check-label a {
    color: #1994f0;
}

.dashboard .form-check-label a:hover {
    color: #f4d142;
}

.dashboard .form-check-input+.form-check-label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border: 1px solid #ebebeb;
    background: #fff;
    border-radius: 5px;
}

.dashboard .form-check-input:checked+.form-check-label:before {
    background: #f4d142;
    border-color: #f4d142;
    content: '\f00c';
    font-family: "Font Awesome 5 Pro";
    color: #fff;
}

.dashboard .form-group input[type="file"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.dashboard .form-group .file-upload-btn {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background-color: #f3f3f3;
    border-radius: 5px;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    background-image: url("../images/upload.svg");
    background-size: 35px 35px;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}

.dashboard .form-group .upload-details {
    display: inline-block;
    vertical-align: middle;
    padding-left: 15px;
    line-height: 32px;
}

.dashboard .form-group .upload-details p {
    margin: 0;
}

.dashboard .form-group .upload-details strong {
    font-size: 20px;
    font-weight: 500;
}

label.error {
    font-size: 13px;
    color: #ff0000;
    margin: 0;
    margin-top: 3px;
    font-weight: normal !important;
}

.dashboard .form-group h4 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    color: #575b5e;
}

.add-more a {
    color: #575b5e;
}

.btn.default-btn:before {
    background: #e3e3e3;
}

.request-table {
    border-radius: 10px;
    border: 1px solid #ebebeb;
    width: 100%;
    -webkit-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
}

.request-table .table {
    margin-bottom: 0;
    background: #fff;
    border-radius: 10px;
}

.request-table .table thead th {
    border: none;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 20px;
    height: 80px;
    vertical-align: middle;
    background: #f3f3f3;
    color: #575b5e;
}

.request-table .table thead th a {
    color: #575b5e;
}

.request-table .table tbody td {
    height: 80px;
    padding: 10px 20px;
    font-size: 18px;
    vertical-align: middle;
}

.request-table .table tbody tr:first-child td {
    border-top: none;
}

.request-table .table tbody td.action {
    text-align: right;
    font-size: 20px;
}

.request-table .table tbody td.action a i {
    line-height: 34px;
}

.request-table .table tbody td.action a+a {
    margin-left: 15px;
}

.request-table .table tbody td.action .accept {
    width: 34px;
    height: 34px;
    line-height: 34px;
    padding: 0;
    text-align: center;
    background: #f4d142;
    color: #fff;
    border-radius: 5px;
}

.request-table .table tbody td.action .accept:hover {
    background: #404141;
}

.request-table .table tbody td.action .cancel {
    width: 34px;
    height: 34px;
    line-height: 34px;
    padding: 0;
    text-align: center;
    background: #404141;
    color: #fff;
    border-radius: 5px;
}

.request-table .table tbody td.action .cancel:hover {
    background: #f4d142;
}

.booking-table {
    border-radius: 0 0 10px 10px;
    border: 1px solid #ebebeb;
    border-top: none;
    width: 100%;
}

.booking-table .table {
    margin-bottom: 0;
    background: #fff;
    border-radius: 0 0 10px 10px;
}

.booking-table .table thead th {
    border: none;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 20px;
    height: 80px;
    vertical-align: middle;
    background: #f3f3f3;
    color: #575b5e;
}

.booking-table .table thead th a {
    color: #575b5e;
}

.booking-table .table tbody td {
    height: 80px;
    padding: 10px 20px;
    font-size: 18px;
    vertical-align: middle;
}

.booking-table .table tbody tr:first-child td {
    border-top: none;
}

.booking-table .table tbody td.action {
    text-align: right;
    font-size: 20px;
}

.booking-table .table tbody td.action .start {
    width: auto;
    height: 34px;
    line-height: 34px;
    padding: 0 15px;
    text-align: center;
    background: rgba(244, 209, 66, 0.5);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 5px;
}

.booking-table .table tbody td.action .start:hover {
    background: rgba(244, 209, 66, 1);
}

.booking-table .table tbody td.action .start.active {
    background: rgba(244, 209, 66, 1);
}

.table-search {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    -webkit-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
}

.table-search .form-control {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    padding: 15px 40px 15px 10px;
    line-height: 35px;
    height: auto;
    font-size: 18px;
    cursor: pointer;
}

.table-search .search-btn {
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    background: none;
    color: #575b5e;
    border: none;
    font-size: 24px;
}

.booking-tab {
    padding: 0;
    margin: 0;
    list-style: none;
}

.booking-tab li {
    display: inline;
    font-size: 24px;
    font-weight: 500;
}

.booking-tab li:not(:first-child) {
    margin-left: 50px;
}

.booking-tab li a {
    color: #3e3f46;
    border-bottom: 3px solid transparent;
    padding-bottom: 40px;
}

.booking-tab li a.active {
    border-bottom: 3px solid #f4d142;
}

.booking-toolbar {
    background: #fff;
    align-items: center;
    padding: 0 10px;
    border-radius: 10px 10px 0 0;
    border-top: 1px solid #ebebeb;
    border-left: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
}

.booking-toolbar .booking-tab {
    margin-top: 40px;
}

.message-box {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    overflow: hidden;
}

.message-box .messanger-list {
    width: 40%;
    border-right: 1px solid #ebebeb;
}

.message-box .messanger-message {
    width: 60%;
}

.message-box .messanger-message.personal {
    width: 100%;
}

.message-box .mCustomScrollBox {
    width: 100%;
}

.message-box .messanger-list .message-search {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    -webkit-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    padding: 0;
    height: 80px;
    background: #fff;
}

.message-box .messanger-list .message-search .form-control {
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 20px 10px 20px 60px;
    line-height: 38px;
    height: auto;
    font-size: 18px;
}

.message-box .messanger-list .message-search .search-btn {
    position: absolute;
    top: 0;
    left: 25px;
    bottom: 0;
    background: none;
    color: #575b5e;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.message-box .messanger-list ul {
    padding: 0;
    margin: 0;
    height: 620px;
    list-style: none;
    overflow-x: hidden;
    overflow-y: auto;
}

.message-box .messanger-list ul li {
    border-top: 1px solid #ebebeb;
}

.message-box .messanger-list ul li a {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 25px 30px;
}

.message-box .messanger-list ul li.active a,
.message-box .messanger-list ul li a.active {
    background: #ebebeb;
}

.message-box .messanger-list ul li .messenger-img {
    min-width: 70px;
    position: relative;
}

.message-box .messanger-list ul li .messenger-img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    object-position: top center;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.message-box .messanger-list ul li .messanger-user-details {
    width: 100%;
    position: relative;
    padding-left: 20px;
}

.message-box .messanger-list ul li .messanger-user-details h4 {
    font-size: 18px;
    font-weight: 500;
    color: #575b5e;
    margin-bottom: 5px;
    text-transform: capitalize;
    padding-right: 70px;
    margin-top: 0;
}

.message-box .messanger-list ul li .messanger-user-details p {
    margin: 0;
    font-size: 16px;
    color: #575b5e;
}

.message-box .messanger-list ul li .messanger-user-details .last-message-time {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    color: #575b5e;
    text-transform: capitalize;
}

.unread-count {
    position: absolute;
    right: 0;
    bottom: -5px;
    background: #f5d242;
    width: 26px;
    height: 26px;
    line-height: 26px;
    border-radius: 100%;
    text-align: center;
    font-size: 10px;
    color: #fff;
}

.message-box .current-messanger {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 8px 30px;
    height: 80px;
    -webkit-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    background: #fff;
    border-bottom: 1px solid #ebebeb;
}

.message-box .current-messanger .messenger-img {
    min-width: 60px;
}

.message-box .current-messanger .messenger-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: top center;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.message-box .current-messanger .messanger-user-details {
    padding-left: 25px;
}

.message-box .current-messanger .messanger-user-details h4 {
    font-size: 22px;
    color: #575b5e;
    margin: 0;
}

.message-box .message-typing {
    height: 80px;
    padding: 0 30px;
    width: 100%;
}

.message-box .message-typing {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    -webkit-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    padding: 5px 0;
    height: 80px;
    border-top: 1px solid #ebebeb;
}

.message-box .message-typing .form-control {
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 20px 60px 20px 0px;
    line-height: 38px;
    height: 70px;
    font-size: 16px;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.message-box .message-typing .form-control:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.message-box .message-typing .emojionearea.form-control {
    padding: 0;
}

.message-box .message-typing .send-btn {
    position: absolute;
    top: 50%;
    right: 25px;
    margin-top: -25px;
    background: #f5d242;
    border-radius: 100%;
    border: none;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    cursor: pointer;
    padding: 0;
}

.message-box .message-typing .emojionearea-button {
    position: absolute;
    top: 25px;
    left: 5px;
}

.message-box .message-typing .emojionearea-editor {
    height: auto;
    min-height: inherit;
    padding: 15px 80px 15px 35px;
    line-height: 22px;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    word-break: break-all;
    max-height: 70px;
    width: 100%;
}

.message-box .message-typing .emojionearea,
.message-box .message-typing .emojionearea.focused {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.message-box .message-typing .emojionearea-picker {
    right: 0 !important;
    width: 100%;
}

.message-box .message-typing .emojionearea .emojionearea-picker .emojionearea-wrapper {
    width: 100%;
}

.message-box .chat-block {
    height: 540px;
    padding: 15px 0;
    background: #f3f3f3;
    overflow-x: hidden;
    overflow-y: auto;
}

.chat-block .recived-block {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 15px 20px 20px;
    align-items: flex-start;
    position: relative;
}

.chat-block .recived-block .sent-img {
    min-width: 50px;
    margin-right: 15px;
}

.chat-block .recived-block .sent-img img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.chat-block .recived-block .sent-time {
    display: block;
    font-size: 13px;
    margin-top: 0px;
    position: absolute;
    bottom: 0;
    left: 105px;
}

.chat-block .recived-block .sent-message {
    width: 100%;
    background: #fff;
    font-size: 16px;
    line-height: 22px;
    border-radius: 4px;
    padding: 10px 15px;
    margin-left: 20px;
    position: relative;
    word-break: break-all;
}

.chat-block .recived-block .sent-message:before {
    content: '';
    width: 25px;
    height: 40px;
    background-image: url("../images/recived-arrow.svg");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: top right;
    position: absolute;
    top: 0;
    left: -25px;
}

.chat-block .recived-block .sent-message p {
    margin: 0;
}

.chat-block .sent-block {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 15px 20px 20px;
    align-items: flex-start;
    flex-direction: row-reverse;
    position: relative;
}

.chat-block .sent-block .sent-img {
    min-width: 50px;
    margin-left: 15px;
}

.chat-block .sent-block .sent-img img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.chat-block .sent-block .sent-time {
    display: block;
    font-size: 13px;
    margin-top: 0;
    position: absolute;
    bottom: 0;
    right: 105px;
}

.chat-block .sent-block .sent-message {
    width: 100%;
    background: #e4e4e4;
    font-size: 16px;
    line-height: 22px;
    border-radius: 4px;
    padding: 10px 15px;
    margin-right: 20px;
    position: relative;
    word-break: break-all;
}

.chat-block .sent-block .sent-message:before {
    content: '';
    width: 25px;
    height: 40px;
    background-image: url("../images/send-arrow.svg");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: top right;
    position: absolute;
    top: 0;
    right: -20px;
}

.chat-block .sent-block .sent-message p {
    margin: 0;
}


/*.message-box.student .messanger-list {
    width: 100%;
}*/


/*.message-box.student .messanger-list ul {
    height: auto;
}*/

.message-box.student .chat-user-info {
    min-width: 360px;
    max-width: 360px;
    padding: 30px 25px;
    text-align: center;
}


/*.message-box.student .messanger-message {
    width: 100%;
}*/

.message-box.student .chat-user-info .user-img {
    display: inline-block;
    vertical-align: bottom;
    position: relative;
}

.message-box.student .chat-user-info .user-img img {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    object-fit: cover;
}


/*.message-box.student .messanger-list {
    width: 100%;
}*/


/*.message-box.student .messanger-list ul {
    height: auto;
}*/

.message-box.student .chat-user-info {
    min-width: 360px;
    max-width: 360px;
    padding: 30px 25px;
    text-align: center;
    border-right: 1px solid #ebebeb;
}


/*.message-box.student .messanger-message {
    width: 100%;
}*/

.message-box.student .chat-user-info .user-img {
    display: inline-block;
    vertical-align: bottom;
    position: relative;
}

.message-box.student .chat-user-info .user-img img {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    object-fit: cover;
}

.message-box .online {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #96c45e;
    border: 2px solid #fff;
    z-index: 1;
}

.message-box .offline {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #ebebeb;
    border: 2px solid #fff;
    z-index: 1;
}

.message-box.student .chat-user-info .user-details {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
}

.message-box.student .chat-user-info .user-details h4 {
    font-weight: 500;
    font-size: 22px;
    color: #3e3f46;
    margin: 15px 0;
}

.message-box.student .chat-user-info .user-details p {
    font-size: 16px;
    margin-bottom: 15px;
}

.message-box.student .chat-user-info .user-details .rating {
    margin-bottom: 40px;
}

.message-box.student .chat-user-info .user-details .rating .total-review {
    display: inline-block;
    width: 100%;
    color: #575b5e;
    font-size: 16px;
    margin-top: 5px;
}

.message-box.student .chat-user-info .btn {
    width: 100%;
}

.message-box.student .chat-user-info .btn+.btn {
    margin-left: 0;
    margin-top: 20px;
}

.message-box.student .chat-block {
    height: 680px;
}

.message-box.student .messanger-list .online,
.message-box.student .messanger-list .offline {
    width: 12px;
    height: 12px;
    bottom: 0;
    right: 10px;
}

.notification {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
}

.notification .notification-block {
    background: #fff;
    border: 1px solid #ebebeb;
    -webkit-box-shadow: 0 0 15px 5px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 15px 5px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 15px 5px rgba(34, 31, 31, 0.06);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 15px;
    font-size: 20px;
}

.notification .notification-block:not(:last-child) {
    margin-bottom: 30px;
}

.notification .notification-block .notification-img {
    min-width: 75px;
    margin-right: 15px;
}

.notification .notification-block .notification-img img {
    width: 75px;
    height: 75px;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    object-fit: cover;
}

.notification .notification-block .notification-details {
    width: 100%;
    line-height: 30px;
}

.notification .notification-block .notification-details p {
    margin: 0;
}

.notification .notification-block .notification-details .notification-time {
    font-size: 14px;
}

.notification .notification-block .notification-details a {
    font-weight: bold;
}

.dashboard .qualification-details {
    margin-top: 30px;
}

.dashboard .qualification-details .certificate-img {
    max-width: 200px;
}

.subject-table {
    border: 1px solid #ebebeb;
    border-radius: 10px;
    margin-top: 10px;
}

.subject-table .table {
    margin: 0;
}

.subject-table .table thead th {
    border-top: none;
    border-bottom: none;
    border-right: 1px solid #ebebeb;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 25px;
}

.subject-table .table thead th:last-child {
    border-right: none;
}

.subject-table .table tbody td {
    font-size: 16px;
    padding: 10px 25px;
    border-right: 1px solid #ebebeb;
}

.subject-table .table tbody td:last-child {
    border-right: none;
}

.dashboard .button-block {
    margin: 15px 0;
}

.dashboard .button-block .btn {
    max-width: 340px;
    width: 100%;
}

p.email {
    word-break: break-all;
}

.text-excrept {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 30px;
    position: relative;
}

.text-excrept a {
    position: absolute;
    right: 0;
    top: 0;
    color: #575b5e;
}

.profile-img.edit-img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    position: relative;
    background-color: #f5d242;
}

.profile-img.edit-img>img {
    opacity: 0.25;
}

.profile-img.edit-img .profile-pics-edit input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
}

.profile-img.edit-img .profile-pics-edit input[type="file"]+label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    cursor: pointer;
}

.profile-img.edit-img .profile-pics-edit input[type="file"]+label i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: #575b5e;
}

.dashboard nav .nav-tabs {
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 30px;
}

.dashboard nav .nav-tabs .nav-item {
    width: 24.33%;
    border: none;
    font-size: 24px;
    font-weight: 500;
    padding: 0;
    position: relative;
    background-color: transparent;
    color: #3e3f46;
}

.dashboard nav .nav-tabs .nav-item:after {
    content: '';
    width: 200px;
    height: 3px;
    background-color: transparent;
    display: block;
    margin-top: 10px;
}

.dashboard nav .nav-tabs .nav-item.active:after {
    background-color: #f5d242;
}

.certificate-upload .certificate-img {
    max-width: 150px;
    margin-right: 20px;
}

.total-time {
    width: 264px;
    height: 264px;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    border: 10px solid #f5d242;
    text-align: center;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.total-time p {
    margin: 0;
    font-size: 40px;
    font-weight: bold;
    color: #3e3f46;
}

.total-time p span {
    display: block;
    font-size: 18px;
    color: #575b5e;
    font-weight: normal;
}

.payment-request-message {
    font-size: 18px;
    margin: 0;
}

.payment-request-message strong {
    font-weight: 500;
    font-size: 20px;
}

.payment-request-btn {
    text-align: right;
}

.payment-request-btn .btn {
    max-width: 220px;
    width: 100%;
}

.payment-request-btn .btn {
    max-width: 220px;
    width: 100%;
}

.dashboard nav.payment-tabs {
    border-top: 1px solid #ebebeb;
    margin-top: 15px;
}

.dashboard nav.payment-tabs .nav-tabs .nav-item {
    width: auto;
    margin-right: 40px;
    padding: 20px 10px;
    border-bottom: 3px solid transparent;
}

.dashboard nav.payment-tabs .nav-tabs .nav-item:last-child {
    margin-right: 0;
}

.dashboard nav.payment-tabs .nav-tabs .nav-item:after {
    content: none;
}

.dashboard nav.payment-tabs .nav-tabs .nav-item.active {
    border-bottom-color: #f5d242;
}

.payment-block {
    margin-bottom: 30px;
}

.payment-block .payment-inner-block {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 100%;
    -webkit-box-shadow: 0 0 15px 5px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 15px 5px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 15px 5px rgba(34, 31, 31, 0.06);
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #ebebeb;
    padding: 25px;
}

.payment-block .payment-inner-block h4 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 500;
    color: #575b5e;
}

.payment-block .payment-inner-block p {
    margin: 0;
}

.payment-block .payment-inner-block .session-details {
    width: 60%;
    padding-right: 20px;
}

.payment-block .payment-inner-block .session-time {
    width: 40%;
    text-align: right;
    font-size: 30px;
    font-weight: bold;
    color: #3e3f46;
}

.payment-history-block {
    margin-bottom: 30px;
}

.payment-history-block .payment-inner-block {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 100%;
    -webkit-box-shadow: 0 0 15px 5px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 15px 5px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 15px 5px rgba(34, 31, 31, 0.06);
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #ebebeb;
    padding: 25px;
}

.payment-history-block .payment-inner-block h4 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 500;
    color: #575b5e;
}

.payment-history-block .payment-inner-block p {
    margin: 0;
}

.payment-history-block .payment-inner-block .session-details {
    width: 35%;
}

.payment-history-block .session-payment-status span.pending {
    background: #404141;
    padding: 5px 10px;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    min-width: 120px;
    text-align: center;
}

.payment-history-block .session-payment-status span.paid {
    background: #f4d142;
    padding: 5px 10px;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    min-width: 120px;
    text-align: center;
}

.payment-history-block .payment-inner-block .session-time {
    width: 45%;
    padding: 0 15px;
}

.payment-history-block .session-payment-status {
    width: 20%;
    text-align: right;
}

.recommendations-table {
    border-radius: 10px;
    border: 1px solid #ebebeb;
    width: 100%;
    -webkit-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
}

.recommendations-table .table {
    margin-bottom: 0;
    background: #fff;
    border-radius: 10px;
}

.recommendations-table .table thead th {
    border: none;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 20px;
    height: 80px;
    vertical-align: middle;
    background: #f3f3f3;
    color: #575b5e;
}

.recommendations-table .table thead th a {
    color: #575b5e;
}

.recommendations-table .table tbody td {
    height: 80px;
    padding: 10px 20px;
    font-size: 18px;
    vertical-align: middle;
}

.recommendations-table .table tbody tr:first-child td {
    border-top: none;
}

.recommendations-table .table tbody td.action {
    text-align: right;
    font-size: 20px;
}

.recommendations-table .table tbody td.action .action-btn {
    width: auto;
    height: 34px;
    line-height: 34px;
    padding: 0 15px;
    text-align: center;
    background: #f4d142;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 5px;
    min-width: 90px;
    display: inline-block;
}

.recommendations-table .table tbody td.action .action-btn.bad {
    background: #404141;
}

.recommendations-table .table tbody td.long-text {
    width: 50%;
}

.availability-table {
    border-radius: 10px;
    border: 1px solid #ebebeb;
    width: 100%;
    -webkit-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
}

.availability-table .table {
    margin-bottom: 0;
    background: #fff;
    border-radius: 10px;
}

.availability-table .table thead th {
    border: none;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 20px;
    height: 80px;
    vertical-align: middle;
    background: #f3f3f3;
    color: #575b5e;
    width: 25%;
}

.availability-table .table thead th a {
    color: #575b5e;
}

.availability-table .table tbody td {
    height: 80px;
    padding: 10px 20px;
    font-size: 18px;
    vertical-align: middle;
    width: 25%;
}

.availability-table .table tbody tr:first-child td {
    border-top: none;
}

.availability-table .table tbody td.action {
    text-align: left;
    font-size: 20px;
}

.availability-table .table tbody td.action .action-btn {
    width: auto;
    height: 34px;
    line-height: 34px;
    padding: 0 15px;
    text-align: center;
    background: rgba(244, 209, 66, 0.5);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 5px;
    min-width: 120px;
    display: inline-block;
}

.availability-table .table tbody td.action .action-btn.available {
    background: rgba(244, 209, 66, 1);
}

.availability-table .table tbody td.add-btn {
    padding: 50px 20px;
    text-align: right;
}

.dashboard .notes-tutor {
    margin-bottom: 100px;
}

.dashboard .notes-update {
    margin-top: 30px;
}

#requestLessonDate .bootstrap-datetimepicker-widget .datepicker .datepicker-months table thead th.picker-switch {
    cursor: pointer !important;
    pointer-events: none;
}

.modal .bootstrap-datetimepicker-widget {
    box-shadow: none !important;
    border-radius: 0 !important;
    width: 100%;
}

.modal .modal-title {
    background: #f3f3f3;
    color: #3e3f46;
    padding: 15px 25px;
    font-size: 36px;
    font-weight: bold;
}

.modal .availabile-date {
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    height: 460px;
    overflow-x: hidden;
    overflow-y: auto;
}

.modal .availabile-date .date {
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 10px;
}

.modal .availabile-date ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal .availabile-date ul li {
    padding: 10px 0;
    font-size: 16px;
    display: inline-block;
    width: 100%;
    line-height: 34px;
}

.modal .availabile-date ul li label {
    float: right;
}

.modal .availabile-date ul li a {
    width: auto;
    height: 34px;
    line-height: 34px;
    padding: 0 15px;
    text-align: center;
    background: rgba(244, 209, 66, 0.5);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 5px;
    min-width: 120px;
    display: inline-block;
    float: right;
}

.modal .availabile-date ul li a.available {
    background: rgba(244, 209, 66, 1);
}

.modal-footer {
    padding: 25px 15px;
}

.modal-footer a {
    font-size: 20px;
    font-weight: 500;
}

.modal-footer a i {
    margin-left: 5px;
    font-size: 16px;
}

.lession-request {
    padding: 30px 0 15px;
}

.lession-request .form-group {
    margin-bottom: 25px;
    width: 100%;
}

.lession-request .select2-container {
    width: 100% !important;
}

.lession-request .submit-btn-block {
    margin-top: 200px;
}

.lession-request .submit-btn-block .btn {
    width: 100%;
}

.modal-dialog.modal-650 {
    max-width: 650px;
}

.modal-open2 {
    overflow: hidden;
}

.modal-open2 .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-open3 {
    overflow: hidden;
}

.modal-open3 .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.without-banner-page .inner-block.p-15 {
    padding: 0 15px;
}

.download-btn {
    width: 35px;
    height: 35px;
    background-image: url("../images/download.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 30px;
}

.video-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    overflow: hidden;
}

.video-list .video-search {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    -webkit-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    -moz-box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    box-shadow: 0 0 65px 15px rgba(34, 31, 31, 0.06);
    padding: 0;
    height: 80px;
    background: #fff;
}

.video-list .video-search .form-control {
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 20px 10px 20px 70px;
    line-height: 38px;
    height: auto;
    font-size: 18px;
}

.video-list .video-search .search-btn {
    position: absolute;
    top: 0;
    left: 30px;
    bottom: 0;
    background: none;
    color: #575b5e;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.video-list ul {
    list-style: none;
    margin: 0;
    padding: 15px;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.video-list ul li {
    padding: 15px;
    width: 50%;
}

.video-list ul li .inner-video-block {
    background: #f3f3f3;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
}

.video-list ul li .inner-video-block .video-img {
    min-width: 100px;
    width: 100px;
}

.video-list ul li .inner-video-block .video-img img {
    height: 100%;
    object-fit: cover;
}

.video-list ul li .inner-video-block .video-details {
    width: 100%;
    padding: 20px 0 20px 20px;
}

.video-list ul li .inner-video-block .video-details p {
    margin: 0 0 10px;
}

.video-list ul li .inner-video-block .video-details p:last-child {
    margin: 0;
}

.video-list ul li .inner-video-block .video-details strong {
    font-weight: 500;
    font-size: 18px;
}

.video-list ul li .inner-video-block .download-link {
    min-width: 100px;
    text-align: center;
    margin: auto;
}

.plan-block {
    margin-top: 30px;
}

.inner-plan-box {
    background: rgba(246, 212, 76, 1);
    background: -moz-linear-gradient(45deg, rgba(246, 212, 76, 1) 0%, rgba(246, 212, 76, 1) 39%, rgba(247, 221, 118, 1) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(246, 212, 76, 1)), color-stop(39%, rgba(246, 212, 76, 1)), color-stop(100%, rgba(247, 221, 118, 1)));
    background: -webkit-linear-gradient(45deg, rgba(246, 212, 76, 1) 0%, rgba(246, 212, 76, 1) 39%, rgba(247, 221, 118, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(246, 212, 76, 1) 0%, rgba(246, 212, 76, 1) 39%, rgba(247, 221, 118, 1) 100%);
    background: -ms-linear-gradient(45deg, rgba(246, 212, 76, 1) 0%, rgba(246, 212, 76, 1) 39%, rgba(247, 221, 118, 1) 100%);
    background: linear-gradient(45deg, rgba(246, 212, 76, 1) 0%, rgba(246, 212, 76, 1) 39%, rgba(247, 221, 118, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f6d44c', endColorstr='#f7dd76', GradientType=1);
    color: #fff;
    padding: 20px 30px;
    border-radius: 5px;
    font-size: 16px;
}

.inner-plan-box .calendar-icon {
    display: inline-block;
    width: 100%;
    text-align: right;
    padding-right: 10px;
}

.inner-plan-box .calendar-icon img {
    width: 100px;
}

.inner-plan-box h4 {
    margin-top: 10px;
    margin-bottom: 0;
    color: #fff;
}

.inner-plan-box p {
    margin: 0;
}

.h-line {
    height: 1px;
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    padding: 0 15px;
    line-height: 1;
    position: relative;
    margin-top: 15px;
}

.h-line:after {
    content: '';
    border-bottom: 1px solid #ebebeb;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    height: 1px;
    vertical-align: bottom;
    line-height: 1;
}

.kids-details+.kids-details {
    margin-top: 30px;
}

.discount {
    color: lightgreen;
    margin-bottom: 5px;
    display: none;
}


/*  language ar  */

.header-inner:lang(ar) {
    flex-direction: row-reverse;
}

.navbar-brand:lang(ar) {
    margin-right: 0;
    margin-left: 1rem;
}

.navbar-expand-xl .navbar-collapse.justify-content-end:lang(ar) {
    justify-content: flex-start !important;
}

.navbar-expand-xl .navbar-nav:lang(ar) {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.navbar .nav-item:first-child:lang(ar) {
    margin-left: 50px;
}

.right-option:lang(ar) {
    margin-left: 0;
    margin-right: 50px;
    flex-direction: row-reverse;
}

.right-option .btn:lang(ar) {
    margin-left: 0;
    margin-right: 40px;
}

.search-form form .form-group:lang(ar) {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.search-form .select-box:lang(ar) {
    margin-right: 0;
    margin-left: 15px;
}

.select2-dropdown {
    z-index: 1051;
}

.dashboard select.form-control~label {
    position: absolute;
    top: 100%;
    left: 0;
}


/*  update css*/

.availability-option .availability-table .table thead th,
.availability-option .availability-table .table tbody td {
    text-align: center;
    padding: 10px;
    height: auto;
    width: 80px;
    border: 1px solid #ebebeb;
    color: #212529;
}

.availability-option .availability-table .table thead th:first-child,
.availability-option .availability-table .table tbody td:first-child {
    width: 160px;
    text-align: left;
}

.availability-option .availability-table .table tbody td img {
    margin-right: 3px;
}

.availability-option .availability-table .table .check-avability {
    position: relative;
}

.availability-option .availability-table .table .check-avability input[type="checkbox"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.availability-option .availability-table .table .check-avability input[type="checkbox"]~label {
    margin: 0;
}

.availability-option .availability-table .table .check-avability input[type="checkbox"]:disabled:checked~label {
    width: 16px;
    height: 8px;
    border-left: 2px solid #00842a;
    border-bottom: 2px solid #00842a;
    transform: rotate(-45deg);
}

.availability-option .availability-table .table .check-avability input[type="checkbox"]:not(:disabled)~label {
    width: 24px;
    height: 24px;
    border: 1px solid #bfbfbf;
    position: relative;
    border-radius: 4px;
}

.availability-option .availability-table .table .check-avability input[type="checkbox"]:not(:disabled):checked~label:before {
    content: '';
    width: 16px;
    height: 8px;
    border-left: 2px solid #00842a;
    border-bottom: 2px solid #00842a;
    transform: rotate(-45deg);
    position: absolute;
    top: 5px;
    left: 3px;
}

.availability-popup {
    width: 480px;
    height: 340px;
}

.availability-popup h4 {
    font-weight: normal;
    margin: 0 0 15px;
}

.search-form form .form-group .availability-popup label {
    font-size: 16px;
    color: #444;
}

.time-day {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.time-day span {
    width: 33.33%;
    text-align: center;
    position: relative;
}

.time-day span input[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.time-day span input[type="checkbox"]~label {
    border: 1px solid #ddd;
    padding: 5px 10px;
    font-weight: normal;
    font-size: 16px;
    margin: 0;
    cursor: pointer;
    border-radius: 5px;
    line-height: 30px;
}

.time-day span input[type="checkbox"]~label img {
    margin-right: 5px;
}

.time-day span input[type="checkbox"]:checked~label {
    border-color: #f5d242;
    background-color: rgba(245, 210, 66, .2);
}

.week-day {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.week-day span {
    width: 14.28%;
    text-align: center;
    position: relative;
}

.week-day span input[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.week-day span input[type="checkbox"]~label {
    border: 1px solid #ddd;
    padding: 5px 10px;
    font-weight: normal;
    font-size: 16px;
    margin: 0;
    cursor: pointer;
    border-radius: 5px;
    line-height: 30px;
}

.week-day span input[type="checkbox"]:checked~label {
    border-color: #f5d242;
    background-color: rgba(245, 210, 66, .2);
}

.availability-popup .btn {
    padding: 12px 15px;
    font-size: 16px;
    min-width: 120px;
}

.lession-request .submit-btn-block {
    margin-top: 30px;
}

@media screen and (max-width: 767px) {
    .time-day span input[type="checkbox"]~label,
    .week-day span input[type="checkbox"]~label {
        padding: 5px;
        line-height: 24px;
    }
    .search-form form .form-group .availability-popup label {
        font-size: 13px;
    }
    .time-day span input[type="checkbox"]~label img {
        width: 20px;
        margin-right: 3px;
    }
}

div.dataTables_wrapper div.dataTables_paginate {
    margin-bottom: 15px !important;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 15px;
}

div.dataTables_paginate ul.pagination li.previous {
    margin-left: 0;
}

div.dataTables_paginate ul.pagination li.previous a {
    font-weight: normal;
}

div.dataTables_paginate ul.pagination li.next a {
    font-weight: normal;
}

div.dataTables_paginate ul.pagination li {
    margin-left: 15px;
}

div.dataTables_paginate ul.pagination a {
    width: auto;
    padding: 3px 20px;
    font-size: 16px;
    border-radius: 5px;
    border-radius: 5px;
    font-weight: 700;
}

div.dataTables_wrapper div.dataTables_info {
    padding-left: 15px;
}

.booking-table .dataTables_wrapper {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
}
