@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");

/* Body General Styles  */
:root {
    font-size: 17px;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

a {
    outline: none;
}

body,
input,
select,
textarea {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
}

body {
    margin: 0px;
    padding: 0;
}

.container {
    width: 1400px;
    margin: 0 auto;
}

.container-sm {
    width: 1180px;
    margin: 0 auto;
}

body,
.body-color {
    color: #393a3b;
}

.d-block {
    display: block;
}

.d-inline {
    display: inline;
}

.d-none {
    display: none;
}

.d-inline-block,
ul.d-inline-block li,
ol.d-inline-block li {
    display: inline-block;
}

div.d-inline-block {
    line-height: 0.7;
}

ul.d-inline-block li,
ol.d-inline-block li {
    margin: 0.5rem 0.8rem;
}

.align-baseline {
    vertical-align: baseline;
}

.align-top {
    vertical-align: top;
}

.align-middle {
    vertical-align: middle;
}

.align-bottom {
    vertical-align: bottom;
}

.align-text-top {
    vertical-align: text-top;
}

.align-text-bottom {
    vertical-align: text-bottom;
}

.position-relative {
    position: relative;
}

.position-absoulte,
.position-absolute {
    position: absolute;
}

.absolute-t-r {
    top: 10px;
    right: 20px;
}

.high-zindex {
    z-index: 100;
}

.absolute-center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.absolute-t-l-20 {
    left: 50%;
    top: 50%;
    transform: translate(-75%, -80%);
}

.absolute-bottom {
    left: 50%;
    bottom: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-weight: 300;
}

h1,
.h1 {
    font-size: 2.3rem;
}

h2,
.h2 {
    font-size: 1.8rem;
}

h3,
.h3 {
    font-size: 1.4rem;
}

h4,
.h4 {
    font-size: 1.2rem;
}

h5,
.h5 {
    font-size: 1.1rem;
}

h6,
.h6 {
    font-size: 1rem;
}

.font-small {
    font-size: 0.9rem;
}

.font-small-2 {
    font-size: 0.8rem;
}

.font-small-3 {
    font-size: 0.7rem;
}

.font-large {
    font-size: 3rem;
}

.font-extra-large {
    font-size: 4.5rem;
}

.font-1-1 {
    font-size: 1.1rem;
}

.font-1-2 {
    font-size: 1.2rem;
}

.font-1-3 {
    font-size: 1.3rem;
}

.font-075 {
    font-size: 0.75rem;
}

.text-uppercase {
    text-transform: uppercase;
}

.font-weight-lighter {
    font-weight: 100;
}

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

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

.font-weight-bold {
    font-weight: 600;
}

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

.font-italic {
    font-style: italic;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Colors */

.text-primary {
    color: #ed6625;
}

.text-secondary {
    color: #343c40;
}

.text-blue {
    color: #7395AE;
}

.text-orange {
    color: #ed6625;
}

.text-gray {
    color: #53565a !important;
}

.text-black {
    color: rgba(0, 0, 0, 1);
}

.text-gray-100 {
    color: rgba(36, 37, 38, 1);
}

.text-gray-90 {
    color: rgba(36, 37, 38, 0.9);
}

.text-gray-80 {
    color: rgba(36, 37, 38, 0.8);
}

.text-gray-70 {
    color: rgba(36, 37, 38, 0.7);
}

.text-gray-60 {
    color: rgba(36, 37, 38, 0.6);
}

.text-gray-50 {
    color: rgba(36, 37, 38, 0.5);
}

.text-gray-40 {
    color: rgba(36, 37, 38, 0.4);
}

.text-gray-30 {
    color: rgba(36, 37, 38, 0.3);
}

.text-gray-20 {
    color: rgba(36, 37, 38, 0.2);
}

.text-gray-10 {
    color: rgba(36, 37, 38, 0.1);
}

.text-white {
    color: rgba(255, 255, 255, 1);
}

.text-blue-drk {
    color: #557A95;
}

.bg-primary {
    background-color: #557A95;
}

.bg-secondary {
    background-color: #48d597;
}

.bg-orange {
    background-color: #ed6625;
}

.bg-success {
    background-color: #28a745;
}

.bg-danger {
    background-color: #dc3545;
}

.bg-warning {
    background-color: #ffc107;
}

.bg-info {
    background-color: #17a2b8;
}

.bg-light {
    background-color: #f4f7fa;
}

.bg-dark {
    background-color: #343a40;
}

.bg-transparent {
    background-color: transparent;
}

.bg-black {
    background-color: rgba(0, 0, 0, 1);
}

.bg-black-30 {
    background-color: rgba(0, 0, 0, 0.3);
}

.bg-black-40 {
    background-color: rgba(0, 0, 0, 0.4);
}

.bg-black-50 {
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-gray-100 {
    background-color: rgba(36, 37, 38, 1);
}

.bg-gray-90 {
    background-color: rgba(36, 37, 38, 0.9);
}

.bg-gray-80 {
    background-color: rgba(36, 37, 38, 0.8);
}

.bg-gray-70 {
    background-color: rgba(36, 37, 38, 0.7);
}

.bg-gray-60 {
    background-color: rgba(36, 37, 38, 0.6);
}

.bg-gray-50 {
    background-color: rgba(36, 37, 38, 0.5);
}

.bg-gray-40 {
    background-color: rgba(36, 37, 38, 0.4);
}

.bg-gray-30 {
    background-color: rgba(36, 37, 38, 0.3);
}

.bg-gray-20 {
    background-color: rgba(36, 37, 38, 0.2);
}

.bg-gray-10 {
    background-color: rgba(36, 37, 38, 0.1);
}

.bg-gray-5 {
    background-color: rgba(36, 37, 38, 0.05);
}

.bg-gray-3 {
    background-color: rgba(36, 37, 38, 0.03);
}

.bg-white {
    background-color: rgba(255, 255, 255, 1) !important;
}

.bg-white-40 {
    background-color: rgba(255, 255, 255, 0.4);
}

.bg-d-gray {
    background-color: #292929;
}

.bg-red-75 {
    background-color: rgba(255, 0, 0, 0.75);
}

.bg-green-75 {
    background-color: rgba(76, 175, 80, 0.75);
}

.bg-yellow-75 {
    background-color: rgba(255, 235, 59, 0.75);
}

.bg-gray-blue {
    background-color: #ebf4fb;
}

.bg-gray-blue-2 {
    background-color: #f1f5f8;
}

.bg-gray-blue-drk {
    background-color: #f1f5f8;
}

.bg-light-blue-2 {
    background-color: #40c5ff;
}

.bg-cream {
    background-color: #f1efe8;
}

.bg-white {
    background-color: rgba(255, 255, 255);
}

.bg-white-30 {
    background-color: rgba(255, 255, 255, 0.3);
}

.bg-white-50 {
    background-color: rgba(255, 255, 255, 0.5);
}

.bg-white-60 {
    background-color: rgba(255, 255, 255, 0.6);
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
    text-align: center;
}

.bg-green {
    background-color: #3eb43e !important;
}

.bg-blue {
    background-color: #7395AE !important;
}

.bg-red {
    background-color: #fa3e3e !important;
}

.bg-light-blue {
    background-color: #e8f5fa;
}

.bg-facebook {
    background-color: #3b5998;
}

.bg-instagram {
    background-color: #8134af;
}

.bg-linkedin {
    background-color: #0077b5;
}

.bg-twitter {
    background-color: #55acee;
}

.bg-pinterest {
    background-color: #cb2027;
}

.bg-msg {
    background-color: #7d7d7d;
}

.bg-sms {
    background-color: #ffbd00;
}

.bg-share {
    background-color: #95d03a;
}

input:read-only,
input:disabled {
    background-color: #f0f2f5 !important;
}

.home-search {
    position: relative;
}

.home-search input[type="text"] {
    height: 60px;
    border-radius: 50rem;
    padding: 0 1.8rem;
}

.home-search button {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: #ed6625;
    border-radius: 50%;
    height: 51px;
    width: 51px;
    border: none;
    outline: none;
}

.height-before-after {
    height: 120px;
    overflow: hidden;
}

.share-page-static {
    width: 221px;
}

.word-wrap {
    word-wrap: break-word;
}

.grad-blue {
    background: linear-gradient(-150deg, #00c1b6 0, #136eb5 97%);
}

.col-hvr-white:hover {
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

figure {
    margin: 0;
    padding: 0;
}

figure.list-1 {
    height: 280px;
}

figure.list-2 {
    height: 250px;
}

figure.list-3 {
    height: 220px;
}

figure.list-1,
.figure.list-2,
.figure.list-3 {
    width: 100%;
    position: relative;
    overflow: hidden;
}

figure.list-1 img,
.figure.list-2 img,
.figure.list-3 img {
    width: auto;
    height: 100%;
    max-width: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

figure.list-1 img:hover,
.figure.list-2 img:hover,
.figure.list-3 img:hover,
.social-links .icon:hover {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

/* Links */

a {
    color: #212529;
    text-decoration: none;
}

.text-blue a,
a.text-blue,
.anchor-color-text a {
    color: #7395AE !important;
}

.text-blue-drk a,
a.text-blue-drk {
    color: #5585bf !important;
}

a:hover {
    color: #5585bf !important;
}

.no-underline,
.no-underline a {
    text-decoration: none;
}

/* Buttons */
.border-dark-gray {
    border: 1px solid #d0d0d0;
}

.bio-textarea {
    height: 100px;
    min-height: 100px;
    resize: none;
}

.post-detail-comment-height {
    max-height: 500px;
    overflow-y: scroll;
}

.button,
button,
input[type="submit"],
input[type="reset"],
.cursor-pointer {
    cursor: pointer;
}

.btn {
    display: inline-block;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 2.5px solid transparent;
    padding: 0.7rem 2rem;
    line-height: 1;
    border-radius: 50rem;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-orange {
    border-color: #ed6625;
}

.btn-primary {
    background-color: #557A95;
    border-color: #557A95;
}

.btn-fill-primary {
    background-color: #557A95;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: transparent;
    color: #000 !important;
    border-color: #557A95;
}

.btn-fill-primary:hover {
    background-color: #fff;
    color: #000 !important;
}

.btn-gray {
    border-color: #212529;
}

.btn-width-200 {
    min-width: 200px;
}

.btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 0.3rem;
}

.btn-sm {
    padding: 0.5rem;
    font-size: 0.8rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn:focus {
    outline: none;
}

.emojibox {
    position: absolute;
    z-index: 500;
    right: 0;
}

.emoji-icon {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 18px;
}

/* Forms */
input[type="date"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: none;
    width: 100%;
    border-radius: 6px;
    font-size: 1rem;
    color: #212529;
}

input:focus,
textarea:focus {
    border: 1px solid #7395AE !important;
}

input:focus,
textarea:focus,
select:focus {
    outline-offset: 0px !important;
    outline: none !important;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea {
    min-height: 250px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border: 1px solid #33c3f0;
    outline: 0;
}

.input-label,
.color-darkgoldenrod {
    color: darkgoldenrod;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

fieldset {
    padding: 0;
    border-width: 0;
}

input[type="checkbox"] {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0;
    vertical-align: middle;
}

input[type="checkbox"].sidebar-check {
    width: 20px;
    height: 20px;
    margin-right: 0.3rem;
}

.check-fliter {
    margin-bottom: 0.3rem;
}

input[type="radio"] {
    display: inline-block;
    width: 17px;
    height: 17px;
    vertical-align: middle;
    margin: 0;
}

/* Lists */

ul.no-list-style {
    list-style: none;
}

ul {
    list-style: circle inside;
}

ol {
    list-style: decimal inside;
}

ol,
ul {
    padding-left: 0;
    margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin: 1.5rem 0 1.5rem 3rem;
}

li {
    margin-bottom: 1rem;
}

.no-list-style li:last-child {
    margin-bottom: 0;
}

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

ul.list-style li,
.static-content ul li {
    position: relative;
    padding-left: 1rem;
    list-style: none;
}

ul.list-style.d-arrow li {
    padding-left: 1.2rem;
}

ul.list-style.l-arrow li {
    padding-left: 1.7rem;
}

.main-container-right ul li {
    list-style: none;
    padding-left: 20px;
    position: relative;
}

.main-container-right ul li::maker {
    content: none;
}

.main-container-right {
    width: 75%;
    margin-left: 25%;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 95px;
}

.main-container-right img {
    max-width: 100%;
}

ul.list-style li::before,
.main-container-right ul li::before,
.static-content ul li::before {
    content: "\2022";
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translate(0, -50%);
    color: #5a5ad1;
}

ul.list-style.square li::before {
    content: "";
    background-color: #5a5ad1;
    width: 4px;
    height: 5px;
}

ul.list-style.arrow li::before {
    content: "\009B";
    transform: translate(0, -65%);
}

ul.list-style.d-arrow li::before {
    content: "\00BB";
}

ul.list-style.l-arrow li::before {
    content: "\2192";
    transform: translate(0, -51%);
}

ul.nu-list-style {
    margin: 0;
    padding: 0;
    counter-reset: li;
    list-style: none;
    *list-style: decimal;
    margin-bottom: 4em;
}

.nu-list-style li {
    position: relative;
    display: block;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    margin: 0 0 0.9rem 0;
    background: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.nu-list-style li:before {
    content: counter(li);
    counter-increment: li;
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translate(0, -50%);
    background: #87ceeb;
    width: 44px;
    height: 44px;
    border: 5px solid #fff;
    text-align: center;
    -moz-border-radius: 2em;
    border-radius: 50%;
    color: #fff;
}

/* Tables */

th,
td {
    padding: 12px 15px;
    text-align: left;
}

th:first-child,
td:first-child {
    padding-left: 0;
}

th:last-child,
td:last-child {
    padding-right: 0;
}

/* Input Margin Spacing */

input,
textarea,
select,
fieldset,
button,
.button {
    margin-bottom: 0.3rem;
}

.invalid-feedback {
    margin: 8px 0 10px 0;
}

input.is-invalid,
textarea.is-invalid,
select.is-invalid,
fieldset.is-invalid,
.is-invalid .Password__strength-meter {
    margin-bottom: 0;
}

/* Tables */

table {
    width: 100%;
    border-collapse: collapse;
}

.table-style {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0px 40px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0px 40px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 0px 40px 0px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0 0px 40px 0px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0 0px 40px 0px rgba(0, 0, 0, 0.15);
}

.table-style th {
    color: #fff;
    background-color: #6c7ae0;
}

.table-head th {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.table-style .column1 {
    width: 33%;
    padding-left: 2.3rem !important;
}

.table-style .column2 {
    width: 13%;
}

.table-style .column3 {
    width: 22%;
}

.table-style .column4 {
    width: 19%;
}

.table-style .column5 {
    width: 13%;
}

.table-style td {
    color: #808080;
}

.table-body td {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.table-style .table-body tr:nth-child(even) {
    background-color: #f8f6ff;
}

/* Padding */

.p-02 {
    padding: 0.2rem;
}

.p-02-0 {
    padding: 0.2rem 0rem;
}

.p-0-02 {
    padding: 0rem 0.2rem;
}

.pt-02 {
    padding-top: 0.2rem;
}

.pb-02 {
    padding-bottom: 0.2rem;
}

.pl-02 {
    padding-left: 0.2rem;
}

.pr-02 {
    padding-right: 0.2rem;
}

.p-05 {
    padding: 0.5rem;
}

.p-05-0 {
    padding: 0.5rem 0rem;
}

.p-0-05 {
    padding: 0rem 0.5rem;
}

.pt-05 {
    padding-top: 0.5rem;
}

.pb-05 {
    padding-bottom: 0.5rem;
}

.pl-05 {
    padding-left: 0.5rem;
}

.pr-05 {
    padding-right: 0.5rem;
}

.p-07 {
    padding: 0.7rem;
}

.p-07-0 {
    padding: 0.7rem 0rem;
}

.p-0-07 {
    padding: 0rem 0.7rem;
}

.pt-07 {
    padding-top: 0.7rem;
}

.pb-07 {
    padding-bottom: 0.7rem;
}

.pl-07 {
    padding-left: 0.7rem;
}

.pr-07 {
    padding-right: 0.7rem;
}

.p-1 {
    padding: 1rem;
}

.p-1-0 {
    padding: 1rem 0;
}

.p-0-1 {
    padding: 0 1rem;
}

.pt-1 {
    padding-top: 1rem !important;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pl-1 {
    padding-left: 1rem;
}

.pr-1 {
    padding-right: 1rem;
}

.p-1-5 {
    padding: 1.5rem;
}

.pl-1-5 {
    padding-left: 1.5rem;
}

.pr-1-5 {
    padding-right: 1.5rem;
}

.p-2 {
    padding: 2rem;
}

.p-2-0 {
    padding: 2rem 0;
}

.p-0-2 {
    padding: 0 2rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pl-2 {
    padding-left: 2rem;
}

.pr-2 {
    padding-right: 2rem;
}

.p-3 {
    padding: 3rem;
}

.p-3-0 {
    padding: 3rem 0;
}

.p-0-3 {
    padding: 0rem 3rem;
}

.pt-3 {
    padding-top: 3rem;
}

.pb-3 {
    padding-bottom: 3rem;
}

.pl-3 {
    padding-left: 3rem;
}

.pr-3 {
    padding-right: 3rem;
}

.p-4 {
    padding: 4rem;
}

.p-4-0 {
    padding: 4rem 0;
}

.p-0-4 {
    padding: 0rem 4rem;
}

.pt-4 {
    padding-top: 4rem;
}

.pb-4 {
    padding-bottom: 4rem;
}

.pl-4 {
    padding-left: 4rem;
}

.pr-4 {
    padding-right: 4rem;
}

.p-5 {
    padding: 5rem;
}

.p-5-0 {
    padding: 5rem 0;
}

.p-0-5 {
    padding: 0rem 5rem;
}

.pt-5 {
    padding-top: 5rem;
}

.pb-5 {
    padding-bottom: 5rem;
}

.pl-5 {
    padding-left: 5rem;
}

.pr-5 {
    padding-right: 5rem;
}

.p-8 {
    padding: 8rem;
}

.p-8-0 {
    padding: 8rem 0;
}

.p-0-8 {
    padding: 0rem 8rem;
}

.pt-8 {
    padding-top: 8rem;
}

.pb-8 {
    padding-bottom: 8rem;
}

.pl-8 {
    padding-left: 8rem;
}

.pr-8 {
    padding-right: 8rem;
}

.p-10-0 {
    padding: 12rem 0;
}

.pt-12 {
    padding-top: 12rem;
}

.pb-15 {
    padding-bottom: 15rem;
}

.no-p {
    padding: 0 !important;
}

.no-t-p {
    padding-top: 0;
}

.no-b-p {
    padding-bottom: 0 !important;
}

.no-l-p {
    padding-left: 0;
}

.no-r-p {
    padding-right: 0;
}

.no-p-x {
    padding-left: 0;
    padding-right: 0;
}

.no-p-y {
    padding-top: 0;
    padding-bottom: 0;
}

.p-08-02-0 {
    padding: 0.8rem 0.2rem 0rem;
}

.verified-icon {
    height: 15px;
    width: 15px;
}

/*  Margins */

.m-03 {
    margin: 0.3rem;
}

.m-03-0 {
    margin: 0.3rem 0rem;
}

.m-0-03 {
    margin: 0rem 0.3rem;
}

.mt-03 {
    margin-top: 0.3rem;
}

.mb-03 {
    margin-bottom: 0.3rem;
}

.ml-03 {
    margin-left: 0.3rem;
}

.mr-03 {
    margin-right: 0.3rem;
}

.m-05 {
    margin: 0.5rem;
}

.m-05-0 {
    margin: 0.5rem 0rem;
}

.m-0-05 {
    margin: 0rem 0.5rem;
}

.mt-05 {
    margin-top: 0.5rem;
}

.mb-05 {
    margin-bottom: 0.5rem;
}

.ml-05 {
    margin-left: 0.5rem;
}

.mr-05 {
    margin-right: 0.5rem;
}

.m-07 {
    margin: 0.7rem;
}

.m-07-0 {
    margin: 0.7rem 0rem;
}

.m-0-07 {
    margin: 0rem 0.7rem;
}

.mt-07 {
    margin-top: 0.7rem;
}

.mb-07 {
    margin-bottom: 0.7rem;
}

.ml-07 {
    margin-left: 0.7rem;
}

.mr-07 {
    margin-right: 0.7rem;
}

.m-1 {
    margin: 1rem;
}

.m-1-0 {
    margin: 1rem 0;
}

.m-0-1 {
    margin: 0 1rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.ml-1 {
    margin-left: 1rem;
}

.mr-1 {
    margin-right: 1rem;
}

.m-1-5 {
    margin: 1rem;
}

.m-1-5-0 {
    margin: 1rem 0;
}

.m-0-1-5 {
    margin: 0 1rem;
}

.mt-1-5 {
    margin-top: 1rem;
}

.mb-1-5 {
    margin-bottom: 1rem;
}

.ml-1-5 {
    margin-left: 1rem;
}

.mr-1-5 {
    margin-right: 1rem;
}

.m-2 {
    margin: 2rem;
}

.m-2-0 {
    margin: 2rem 0;
}

.m-0-2 {
    margin: 0 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.ml-2 {
    margin-left: 2rem;
}

.mr-2 {
    margin-right: 2rem;
}

.mr-2p {
    margin-right: 2%;
}

.m-3 {
    margin: 3rem;
}

.m-3-0 {
    margin: 3rem 0;
}

.m-0-3 {
    margin: 0rem 3rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.ml-3 {
    margin-left: 3rem;
}

.mr-3 {
    margin-right: 3rem;
}

.m-4 {
    margin: 4rem;
}

.m-4-0 {
    margin: 4rem 0;
}

.m-0-4 {
    margin: 0rem 4rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.ml-4 {
    margin-left: 4rem;
}

.mr-4 {
    margin-right: 4rem;
}

.m-5 {
    margin: 5rem;
}

.m-5-0 {
    margin: 5rem 0;
}

.m-0-5 {
    margin: 0rem 5rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.ml-5 {
    margin-left: 5rem;
}

.mr-5 {
    margin-right: 5rem;
}

.ml-5-per {
    margin-left: 5%;
}

.m-08-0 {
    margin: 0.8rem 0rem;
}

.ml-30-per {
    margin-left: 30%;
}

.no-m {
    margin: 0;
}

.no-m-t {
    margin-top: 0;
}

.no-m-b,
.mb-0 {
    margin-bottom: 0;
}

.no-m-l {
    margin-left: 0 !important;
}

.no-m-r {
    margin-right: 0 !important;
}

.no-m-y {
    margin-top: 0;
    margin-bottom: 0;
}

.no-m-x {
    margin-left: 0;
    margin-right: 0;
}

.m-auto {
    margin-left: auto;
    margin-right: auto;
}

.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

.d-i-b-m {
    margin-right: -5px;
}

.m-left-30-per {
    margin-left: 30%;
}

.m-left-5-per {
    margin-left: 5%;
}

/*  opacity */

.opacity-06 {
    opacity: 0.6;
}

/* Utilities */

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.float-none {
    float: none;
}

.overflow-hidden {
    overflow: hidden;
}

.u-full-width {
    width: 100%;
}

.u-max-full-width {
    max-width: 100% !important;
}

.u-pull-right {
    float: right;
}

.u-pull-left {
    float: left;
}

/* Misc */
hr {
    margin-top: 3rem;
    margin-bottom: 3.5rem;
    border-width: 0;
    border-top: 1px solid #e1e1e1;
}

hr.sidebar {
    margin-top: 1.8rem;
    margin-bottom: 1.5rem;
}

/* Box Shadow */

.box-shadow {
    box-shadow: 0px 0px 20px 6px rgba(0, 0, 0, 0.1);
}

.box-shadow-05 {
    box-shadow: 0px 3px 8px 3px rgba(0, 0, 0, 0.05);
}

.box-shadow-lgt {
    box-shadow: 0px 0px 20px 6px rgba(0, 0, 0, 0.03);
}

.shadow-none {
    box-shadow: none !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Box Shadow */

.height100vh {
    height: 100vh;
}

.modal-cross {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 12px !important;
    z-index: 1000;
    cursor: pointer;
}

/* Cards */
/* Image Animation Card */
.img-animation-card {
    position: relative;
    background: #333;
    width: 400px;
    height: 75vh;
    padding: 2rem;
    color: #aaa;
    box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.2),
        0 0 1rem rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.img-animation-card .img-container {
    margin: -2rem -2rem 1rem -2rem;
}

.img-animation-card .line {
    opacity: 0;
    animation: LineFadeIn 0.8s 0.8s forwards ease-in;
}

.img-animation-card .img {
    opacity: 0;
    animation: ImageFadeIn 0.8s 1.4s forwards;
}

.img-animation-card .title {
    color: white;
    margin-top: 0;
    letter-spacing: 0.01em;
}

.img-animation-card .content {
    margin-top: -1rem;
    opacity: 0;
    animation: ContentFadeIn 0.8s 1.6s forwards;
}

.img-animation-card .svg {
    position: absolute;
    left: 0;
    top: 115px;
}

@keyframes LineFadeIn {
    0% {
        opacity: 0;
        d: path("M 0 300 Q 0 300 0 300 Q 0 300 0 300 C 0 300 0 300 0 300 Q 0 300 0 300 "
            );
        stroke: #fff;
    }

    50% {
        opacity: 1;
        d: path("M 0 300 Q 50 300 100 300 Q 250 300 350 300 C 350 300 500 300 650 300 Q 750 300 800 300"
            );
        stroke: #888bff;
    }

    100% {
        opacity: 1;
        d: path("M -2 100 Q 50 200 100 250 Q 250 400 350 300 C 400 250 550 150 650 300 Q 750 450 802 400"
            );
        stroke: #545581;
    }
}

@keyframes ContentFadeIn {
    0% {
        transform: translateY(-1rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes ImageFadeIn {
    0% {
        transform: translate(-0.5rem, -0.5rem) scale(1.05);
        opacity: 0;
        filter: blur(2px);
    }

    50% {
        opacity: 1;
        filter: blur(2px);
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
        filter: blur(0);
    }
}

/* Blog Card */
.date-box {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ccc;
    border: 4px solid;
    padding: 5px 10px;
}

.blog-card {
    padding: 30px;
    position: relative;
}

.date-box {
    opacity: 0;
    transform: scale(0.5);
    transition: 300ms ease-in-out;
}

.blog-card-background,
.card-background-layer {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-card-background {
    padding: 15px;
    background: white;
}

.card-background-wrapper {
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 60%);
    position: relative;
    overflow: hidden;
}

.card-background-main {
    height: 100%;
    position: relative;
    transition: 300ms ease-in-out;
    background-repeat: no-repeat;
    background-size: cover;
}

.card-background-layer {
    z-index: 0;
    opacity: 0;
    background: rgba(#333, 0.9);
    transition: 300ms ease-in-out;
}

.blog-card-head {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-info {
    z-index: 10;
    background: white;
    padding: 20px 15px;
}

.date-box:hover .date__box {
    opacity: 1;
    transform: scale(1);
}

.card__background--main {
    transform: scale(1.2) rotate(5deg);
}

.card__background--layer {
    opacity: 1;
}

.blog-card__info h5 {
    color: #ffb535;
}

a.icon-link {
    color: #363738;
    transition: 200ms ease-in-out;
}

a.icon-link i {
    color: #ffb535;
}

a.icon-link:hover {
    color: #ffb535;
    text-decoration: none;
}

i {
    padding: 0px 30px 0px 15px;
    margin-right: 10px;
    height: 50px;
    vertical-align: bottom;
    color: white;
    background: #ffb535;
    clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
}

.btn.btn-only-icon {
    width: 50px;
}

/* Borders */

.underline {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.underline::after {
    content: "";
    position: absolute;
    width: 173px;
    height: 5px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    background-color: #1758a8;
}

.underline::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 2px;
    left: 0%;
    transform: translate(0, 0%);
    background-color: #dedede;
}

.border {
    border: 1px solid;
}

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

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

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

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

.border-primary {
    border-color: #7395AE;
}

.border-secondary {
    border-color: #6c757d;
}

.border-success {
    border-color: #28a745;
}

.border-danger {
    border-color: #dc3545;
}

.border-warning {
    border-color: #ffc107;
}

.border-dark {
    border-color: #343a40;
}

.border-white {
    border-color: #fff;
}

.border-dark-gray {
    border-color: #b9b9b9;
}

.border-gray {
    border-color: #eeeeef;
}

.border-gray-2 {
    border-color: #bcbcbc;
}

.border-gray-dark {
    border-color: #c7cbce;
}

.border-blue {
    border-color: #1d9bd1;
}

.border-radius,
.border-radius-8 {
    border-radius: 8px;
}

.border-radius-5 {
    border-radius: 5px;
}

.border-radius-10 {
    border-radius: 10px;
}

.border-radius-50-per {
    border-radius: 50%;
}

.border-left-0 {
    border-left: none;
}

.border-right-0 {
    border-right: none;
}

.border-top-0 {
    border-top: none;
}

.border-bottom-0 {
    border-bottom: none;
}

.rounded-top {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.rounded-right {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.rounded-bottom {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.rounded-left {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

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

.rounded-pill {
    border-radius: 50rem;
}

.rounded-0 {
    border-radius: 0;
}

.rounded-sm {
    border-radius: 0.2rem;
}

.rounded-lg {
    border-radius: 0.3rem;
}

/* cols */
.col-5 {
    width: 5%;
}

.col-7 {
    width: 7%;
}

.col-8 {
    width: 8%;
}

.col-10 {
    width: 10%;
}

.col-15 {
    width: 15%;
}

.col-16 {
    width: 16.66%;
}

.col-20 {
    width: 20%;
}

.col-22 {
    width: 22%;
}

.col-25 {
    width: 25%;
}

.col-30 {
    width: 30%;
}

.col-33 {
    width: 33.33%;
}

.col-35 {
    width: 35%;
}

.col-40 {
    width: 40%;
}

.col-45 {
    width: 45%;
}

.col-50 {
    width: 50%;
}

.col-55 {
    width: 55%;
}

.col-49 {
    width: 49%;
}

.col-60 {
    width: 60%;
}

.col-65 {
    width: 65%;
}

.col-70 {
    width: 70%;
}

.col-75 {
    width: 75%;
}

.col-73 {
    width: 73%;
}

.col-80 {
    width: 80%;
}

.col-85 {
    width: 85%;
}

.col-90 {
    width: 90%;
}

.col-95 {
    width: 95%;
}

.col-100 {
    width: 100%;
}

.col-h-240 {
    min-height: 240px;
}

.col-h-190 {
    min-height: 190px;
}

.col-h-160 {
    min-height: 160px;
}

.col-420 {
    width: 420px;
}

.col-100-px {
    width: 100px;
}

.scroll-create-post {
    overflow-y: scroll;
}

.height-with-image {
    height: 300px;
}

.image-preview-box {
    height: 300px;
    display: flex;
}

.image-preview-box img {
    width: 100%;
    object-fit: contain;
    height: 100%;
}

/* Flex */
.d-i-b {
    display: inline-block;
}

.d-b {
    display: block;
}

.d-flex {
    display: flex;
}

.flex-dir-column {
    flex-direction: column;
}

.flex-dir-col-reverse {
    flex-direction: column-reverse;
}

.flex-dir-row {
    flex-direction: row;
}

.flex-dir-row-reverse {
    flex-direction: row-reverse;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-no-wrap {
    flex-wrap: nowrap;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-right {
    justify-content: flex-end;
}

.justify-content-f-start {
    justify-content: flex-start;
}

.justify-content-f-end {
    justify-content: flex-end;
}

.justify-content-space-around {
    justify-content: space-around;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-initial {
    align-items: initial;
}

.align-items-center {
    align-items: center;
}

.align-items-right {
    align-items: right;
}

.align-items-flex-start {
    align-items: flex-start;
}

.align-items-flex-end {
    align-items: flex-end;
}

.align-items-stretch {
    align-items: stretch;
}

.align-items-baseline {
    align-items: baseline;
}

.align-content-space-between {
    align-content: space-between;
}

.align-content-space-around {
    align-content: space-around;
}

.align-content-stretch {
    align-content: stretch;
}

.align-content-center {
    align-content: center;
}

.align-content-start {
    align-content: flex-start;
}

.align-content-end {
    align-content: flex-end;
}

.flex-1-1-0 {
    flex: 1 1 0%;
}

/* Image/Background-Image  */

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

img.cover {
    max-width: none;
    width: 100%;
    object-fit: contain;
    height: 100%;
}

.bg-fixed {
    background-attachment: fixed;
}

.bg-cover {
    background-size: cover;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.bg-style {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.bg-repeat {
    background-repeat: repeat;
    background-position: center;
}

.bg-position-top {
    background-position: top;
}

.bg-position-bottom {
    background-position: bottom;
}

.bg-position-center {
    background-position: center;
}

.proflie-image-weekly {
    overflow: hidden;
    height: 40px;
    display: flex;
    justify-content: center;
}

.proflie-image-weekly img {
    width: 100%;
    object-fit: cover;
}

/* text Shadwo */

.text-shadow-black {
    text-shadow: 2px 2px #000;
}

/* End text Shadwo */

/* Icons */

.icon {
    width: 30px;
    height: 30px;
}

.icon-small {
    width: 20px;
    height: 20px;
}

.w-17px {
    width: 17px;
}

.icon-smaller {
    width: 18px;
    height: 18px;
}

.icon-medium {
    width: 40px;
    height: 40px;
}

.icon-ex-small {
    width: 14px;
    height: 14px;
}

.icon-10 {
    width: 10px;
    height: 10px;
}

.icon-15 {
    width: 15px;
    height: 15px;
}

.fill-orange {
    fill: #ed6625;
}

.fill-white {
    fill: #fff;
}

.fill-black {
    fill: #000;
}

.fill-red {
    fill: red;
}

.icon-big {
    width: 90px;
    height: 90px;
}

.icon-large {
    width: 50px;
    height: 50px;
}

.icon-extra-large {
    width: 90px;
    height: 90px;
}

.fill-blue {
    fill: #7395AE;
}

.fill-gray {
    fill: #6e6e71;
}

/* End Icons */

/* Sstrt Rotate */

.rotate-45 {
    transform: rotate(45deg);
    /* Equal to rotateZ(45deg) */
}

.rotate-90 {
    transform: rotate(90deg);
    /* Equal to rotateZ(45deg) */
}

.rotate--90 {
    transform: rotate(-90deg);
    /* Equal to rotateZ(45deg) */
}

/* End Sstrt Rotate */

/* ---------------------- End General ------------------------------ */

/* ---------------------- Start Non General ------------------------------ */

.bg-main-banner-image {
    background-image: url("/images/main-banner-image.jpg");
}

.bg-main-banner-gradient {
    background-color: #ed6624;
    background-image: linear-gradient(135deg, #557A95 50%, #ed6624 100%);
}

.bg-placeholder-image {
    background-image: url("/images/search-desktop.png");
}

.bg-profle {
    background-image: url("/images/subtle-rombus.jpg");
}

.bg-bubble-pattern {
    background-image: url("double-bubble-outline.png");
}

.border-gray2-1 {
    border: 1px solid #dcdcdc;
}

.border-bottom-gray-1 {
    border-bottom: 1px solid #eeeeef;
}

.border-left-red-10 {
    border-left: 10px solid red;
}

.border-left-green-10 {
    border-left: 10px solid #4caf50;
}

.border-left-yellow-10 {
    border-left: 10px solid #ffeb3b;
}

.border-bottom-red-3 {
    border-bottom: 3px solid red;
}

.border-top-left-rad-16 {
    border-top-left-radius: 16px;
}

.border-bottom-left-rad-16 {
    border-bottom-left-radius: 16px;
}

.border-top-right-rad-16 {
    border-top-right-radius: 16px;
}

.border-bottom-right-rad-16 {
    border-bottom-right-radius: 16px;
}

.rounded-picture {
    overflow: hidden;
    border-radius: 50%;
    display: flex;
}

.rounded-picture.smal {
    width: 200px;
    height: 200px;
}

.rounded-picture img {
    object-fit: cover;
    width: 100%;
}

.object-fit-contain {
    object-fit: contain;
}

/* Header */
.main-search {
    margin-right: 1.5rem;
    width: 25px;
    height: 25px;
    display: inline-block;
    vertical-align: middle;
    background-image: url("/images/search-icon.svg");
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 6px;
}

.login-list {
    display: inline-block;
    vertical-align: middle;
}

.site-b img,
img .site-b {
    width: 160px;
}

/* Navigation */
.main-nav,
.login-list,
.policy-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav li,
.login-list li,
.policy-links li {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    margin-right: -4px;
}

.main-nav li a,
.login-list li a,
.policy-links li a {
    text-decoration: none;
    padding: 0 1rem;
    border-right: 1px solid #000;
}

.login-list li a {
    padding: 0 0.4rem;
}

.policy-links {
    margin-bottom: 1rem;
}

.policy-links li a {
    color: #1758a8;
    border-right: 1px solid #1758a8;
}

.main-nav li:first-child a,
.login-list li:first-child a,
.policy-links li:first-child a {
    padding-left: 0;
}

.main-nav li:last-child a,
.login-list li:last-child a,
.policy-links li:last-child a {
    border-right: 0;
    padding-right: 0;
}

.listing-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.listing-nav li {
    display: inline-block;
    margin: 0;
    position: relative;
    padding: 0 1.1rem;
}

.listing-nav li a {
    text-decoration: none;
    display: block;
}

.listing-nav li:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0%, -35%);
    width: 10px;
    height: 10px;
    background-image: url(/imagess/arrow-down.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* General Home Style */
.profile-search {
    width: 100%;
}

.profile-search button {
    background-color: #fff;
    border: none;
    height: 45px;
    padding: 10px 5px;
    cursor: pointer;
    position: absolute;
    border: 1px solid #dfdfdf;
    border-left: none;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px
}

.search-results-list {
    max-height: 180px;
    overflow-y: auto;
    overflow-x: hidden;
}

.logo {
    width: 160px;
    height: auto;
}

.logo-150 {
    width: 150px;
}

.logo-big {
    width: 220px;
    height: auto;
}

.logo-m {
    width: 230px;
}

.logo-symbol {
    width: 90px;
}

.font-beta {
    padding: 0 3px;
    position: absolute;
    right: 0;
    top: -9px;
    border: 1px solid #000;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 10px;
    background-color: #585858;
    color: #fff;
}

.main-banner {
    padding: 22rem 0 2rem;
}

.rating {
    margin-top: 0.3rem;
}

.rating .item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ed6625;
    margin-right: -2px;
    display: inline-block;
    vertical-align: middle;
}

.rating p {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.social-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-links li {
    width: 40px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 0;
}

.social-links li a {
    width: 30px;
    height: 30px;
    display: block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.social-links .icon-twitter,
.social-links .icon-instagram,
.social-links .icon-youtube {
    width: 40px;
    height: 40px;
}

a.facebook {
    fill: #3b5998;
}

a.twitter {
    fill: #00acee;
}

a.instagram {
    fill: #3f729b;
}

a.youtube {
    fill: #c4302b;
}

.f-logo {
    width: 250px;
}

.top-two-arrow {
    right: 0rem;
    top: 0;
}

/*---------------- Registration Page ---------------*/
.bg-moroccan-flower-dark {
    background-image: url("/images/moroccan-flower-dark.png");
}

.register-main .main-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -47%);
    width: 70%;
    margin: 4rem auto;
    background-color: #f9f9f9b0;
    border-radius: 15px;
    box-shadow: 0px 0px 20px 6px rgba(0, 0, 0, 0.05);
    padding: 4rem;
}

.box-shadow-hvr {
    transition: all 0.3s ease-in-out;
}

.box-shadow-hvr:hover {
    box-shadow: 0px 0px 20px 6px rgba(0, 0, 0, 0.07);
}

/*---------------- Listing Search Page ---------------*/

.listing-search {
    position: relative;
}

.listing-search input[type="text"] {
    width: 100%;
}

.listing-search button {
    position: absolute;
    right: 0;
    top: 0;
    height: 52px;
    border: none;
    background-color: #ed6625;
    padding: 0 15px;
    border-radius: 0px 4px 4px 0px;
    margin: 0;
    color: #fff;
}

.listing-search button .icon {
    fill: #fff;
}

.listing-search button:hover {
    background-color: #343c40;
    transition: all 0.2s ease-in-out;
}

.social-icon {
    width: 45px;
    height: 45px;
}

/*---------------- Profile Page ---------------*/

.create-post textarea {
    height: 150px;
    padding: 1rem;
    width: 100%;
}

.profile-s-image,
.profile-main-wrap {
    position: relative;
}

.profile-s-image .content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.profile-main-wrap .right-content {
    position: absolute;
    top: -200px;
    left: 0px;
}

/*---------------- Content Page ---------------*/

.panel-overlap-above {
    position: relative;
}

.panel-overlap-above .content {
    position: absolute;
    top: -100px;
    right: 50px;
}

/*---------------- Content Page ---------------*/

/*---------------- Dropdown Arrow Up ---------------*/

.drop-arrow-up {
    position: relative;
}

.drop-arrow-up:after {
    content: "";
    position: absolute;
    left: 50px;
    top: -15px;
    width: 30px;
    height: 16px;
    background-image: url("/images/arrow-up-full.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.drop-style-2 {
    background-color: #303030;
    padding: 1.5rem;
    border-radius: 4px;
}

.drop-style-2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.drop-style-2 ul li a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
}

.drop-style-2 ul li:last-child {
    margin: 0;
}

.drop-style-2 ul li a:hover {
    border-color: #fff;
    transition: all 0.2s ease-in-out;
}

/*---------------- Dropdown Arrow Up ---------------*/

/*---------------- Tags Style ---------------*/

.tags-general {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tags-general li {
    display: inline-block;
    margin: 0;
    margin-right: 0.5rem;
}

.tags-general li:last-child {
    margin-right: 0;
}

.tags-general li a,
.tags-general li span {
    cursor: pointer;
    display: block;
    text-decoration: none;
    padding: 0.7rem 1.7rem;
    border-radius: 7px;
    background-color: #ebebeb;
}

.tags-general li a:hover,
.tags-general li span:hover,
.tags-general li .active {
    color: #fff;
    background-color: #636363 !important;
}

.pill {
    color: #fff;
    padding: 6px 15px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
    position: absolute;
    right: 13px;
    bottom: 24px;
}

.business-form {
    position: relative;
}

.business-icon {
    width: 18px !important;
    height: 28px;
    margin-right: 15px;
    color: #585858;
}

.line-height-1-3 {
    line-height: 1.3;
}

/*---------------- Tags Style ---------------*/

/*---------------- Post Detail Style ---------------*/
.like-post svg {
    margin-bottom: 2px;
}

.like-post:hover,
.comment-post:hover,
.share-post:hover {
    background-color: #eeeeef;
    transition: all 0.2s ease-in-out;
}

.post-like-button.active {
    color: #357edd;
}

.post-like-button.active svg {
    fill: #357edd;
}

.profile-sec {
    height: 480px;
}

.profile-sec .profile-image,
.editor-profile .profile-image {
    position: relative;
    border-radius: 50%;
}

.profile-sec .profile-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-left: auto;
}

.editor-profile .profile-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-left: auto;
}

.profile-sec .profile-menu {
    position: absolute;
    width: 250px;
    border-radius: 5px;
    top: 110%;
    margin-left: 1rem;
    z-index: 2;
    background-color: #f9f9f9;
}

.profile-sec .profile-menu ul {
    margin: 0;
    list-style: none;
    position: relative;
}

.profile-sec .profile-menu ul:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 14px solid #f9f9f9;
    position: absolute;
    left: 10px;
    top: -14px;
}

.profile-sec .profile-menu li {
    margin: 0;
}

.profile-sec .profile-menu li a {
    text-decoration: none;
    margin: 0rem 1.5rem;
    padding: 1rem 0.2rem;
    border-bottom: 1px solid #ebebeb;
    display: block;
    color: #737373;
}

.profile-sec .profile-menu li:hover {
    background-color: #efefef;
}

.profile-sec .profile-menu li:last-child a {
    border: none;
}

.profile-sec .profile-menu li:first-child {
    border-left: 5px solid #00b4ff;
}

.blog-listing img {
    width: 100%;
}

.bussiness-type-icon {
    width: 50px;
    height: 50px;
}

.hooper {
    height: 130px !important;
}

.hooper-slide {
    height: 130px !important;
}

/*-------------------- Profile Main Panel ----------------------*/

.profile-upper-section {
    position: relative;
}

.cover-wrap {
    height: 150px;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}

.cover-wrap:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.business-page-main .cover-wrap {
    cursor: default;
}

.business-page-main .cover-wrap:hover {
    background-color: rgba(0, 0, 0, 0);
}

.cover-wrap .cover-edit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    width: 20px;
    height: 20px;
}

.cover-wrap:hover .cover-edit {
    display: block;
}

.profile-upper-section .profile-main-image {
    position: absolute;
    bottom: -20px;
    left: 2rem;
    width: 130px;
}

.profile-before-after {
    position: absolute;
    right: 0.7rem;
    top: 2rem;
}


.post-detail-comment-height {
    overflow: initial;
}

.post-comment-inside {
    max-height: 200px;
    overflow: scroll;
}

/*-------------------- Profile Main Panel ----------------------*/

/*-------------------- Profile Header Right ----------------------*/
.insipiration-height {
    max-height: 400px;
    overflow: scroll;
}

.head-menu-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.head-menu-links ul li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: -5px;
    height: 35px;
}

.dropdown-user-menu {
    top: 120%;
    right: 0;
    width: 230px;
    z-index: 1000;
}

.dropdown-post-action.dropdown-user-menu {
    top: 97%;
    right: 2%;
}

.post-share-card {
    z-index: 100;
    bottom: 60%;
    right: 0;
    width: 230px;
}

.post-detail-share .post-share-card {
    top: 120%;
    bottom: auto;
}

.dropdown-add-menu {
    right: 10%;
}

.head-menu-links .dropdown-user-menu li {
    display: block;
    height: auto;
    margin: auto;
}

.head-menu-links ul li.help {
    height: auto;
}

.head-menu-links ul li.profile img {
    width: 35px;
    height: 35px;
}

.head-menu-links ul li.note-msg {
    position: relative;
}

.head-menu-links ul li.note-msg span {
    position: absolute;
    display: inline-block;
    background-color: #ec6624;
    border-radius: 50%;
    color: #fff;
    padding: 1px 3px;
    text-align: center;
    top: 5px;
    right: 5px;
}

.post-action-btn button {
    background-color: transparent;
    border: none;
}

.two-column-post-item {
    width: 49%;
    margin-right: 2%;
}

.two-column-post-list .two-column-post-item:nth-child(2n + 2) {
    margin-right: 0;
}

/*-------------------- Profile Header Right ----------------------*/

.post-action-btn button:focus {
    outline: none;
}

/*-------------------- Profile Left Nav ----------------------*/

.profile-nav {
    width: 250px;
}

.profile-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-top: 1rem;
}

.profile-nav-list li {
    padding: 0.7rem 1rem;
    margin: 0 0 0.2rem;
    border-radius: 50px;
    position: relative;
}

.profile-nav-list li.active svg path {
    fill: #557A95;
}

.profile-nav-list li .menu-item-text {
    flex: 1 1 0%;
}

.profile-nav-list li:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.profile-nav-list li.active {
    background-color: #f1f5f8;
    color: #2d3748;
}

/*-------------------- Profile Left Nav ----------------------*/

/*-------------------- User Live Comment ----------------------*/

.comment-active {
    position: relative;
}

.comment-active span {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: green;
    bottom: 0;
    right: 0px;
}

/*-------------------- User Live Comment ----------------------*/
.col-round-50 {
    width: 50px;
    height: 50px;
    overflow: hidden;
}

.col-round-50 img {
    object-fit: contain;
    width: 100%;
}

.collab-user-image {
    margin-left: -10px;
}

.board-old-image {
    height: 200px;
    width: auto;
}

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

.bg-gray-dark {
    background-color: #393a3b;
}

.business-item .business-item-left {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #f1f5f8;
    overflow: hidden;
    width: 75px;
    height: 75px;
    display: flex;
}

.business-item .business-item-left img {
    width: 100%;
    object-fit: contain;
}

.business-list-msg .list-msg-left,
.business-list-msg .list-msg-right {
    display: inline-block;
    width: 120px;
    vertical-align: middle;
}

.business-list-msg .list-msg-left img,
.business-list-msg .list-msg-right img {
    width: 20px;
    margin-right: 0.2rem;
}

.user-profile-image-small {
    width: 45px;
    height: 40px;
}

.user-profile-image-small img {
    object-fit: cover;
}

.user-profile-image-small.rounded-picture {
    height: 45px;
}

.comments-pnl .rounded-picture {
    width: 35px;
    height: 35px;
}

.profile-image-wrap {
    background-color: #000;
    position: relative;
    width: 124px;
    height: 124px;
    display: flex;
}

.profile-image-wrap .edit-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    width: 20px;
    height: 20px;
}

.profile-image-wrap img {
    object-fit: contain;
    width: 100%;
}

.profile-image-wrap:hover img {
    opacity: 0.7;
    cursor: pointer;
}

.business-page-main .profile-image-wrap:hover img {
    cursor: default;
}

.business-page-main .profile-image-wrap:hover img {
    opacity: 1;
}

.profile-image-wrap:hover .edit-link {
    display: block;
}

.steps-list,
.cat-tag-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps-list li {
    display: inline-block;
    padding: 0 1.5rem 0.5rem 1.5rem;
    margin-right: -5px;
    border-bottom: 2px solid#eeeeef;
    margin-bottom: -1px;
}

.steps-list.border-gray-dark li {
    border-color: #c7cbce;
}

.steps-list li.active {
    color: #557A95;
    border-color: #557A95;
    position: relative;
}

.steps-list li.active:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #557A95;
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.cat-tag-list li {
    display: inline-block;
    padding: 0.3rem;
    background-color: #e0e4e7;
    border-radius: 5px;
    margin-bottom: 0.1rem;
    margin-right: 0rem;
    border: solid 2px #fff;
}

.cat-tag-list .cat-tag-list-item {
    display: inline-block;
    padding: 0.5rem;
    background-color: #e0e4e7;
    border-radius: 5px;
    margin-bottom: 0.1rem;
    margin-right: 0rem;
    border: solid 2px #fff;
}

.cat-tag-list li:hover {
    background-color: #fff;
    border: solid 2px #557A95;
}

.cat-tag-list li a {
    font-size: 0.8rem;
}

.cat-tag-list li.active {
    background-color: #ec6624;
    color: #fff;
}

.profile-search {
    position: relative;
}

.profile-search input {
    height: 45px;
    border: 1px solid #dfdfdf;
    width: 93%;
    border-right: none;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.profile-search span.icon-searrch {
    background-color: transparent;
    border: none;
    position: absolute;
    right: 12px;
    top: 12px;
}

.post-main-image {
    height: 400px;
    position: relative;
    text-align: center;
}

.post-main-image video {
    height: 100%;
}

.post-attachment-container {
    height: 250px;
    text-align: center;
    margin: 0 auto;
}

.post-attachment-container img, .post-attachment-container video {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.post-attachment-container .cross-button {
    position: absolute;
    z-index: 1000;
    left: 10px;
    top: 10px;
}

.create-post-container {
    position: relative;
    overflow: hidden;
}

.create-post-container .uploading-progress {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00000054;
    z-index: 100;
    text-align: center;
    padding-top: 25%;
    color: #fff;
}

.post-content-container {
    position: relative;
}

.word-wrap-break {
    word-wrap: break-word;
}

.post-content-container .post-add-fav {
    position: absolute;
    right: 0;
    top: 0.7rem;
    display: none;
}

.post-content-container:hover .post-add-fav {
    display: block;
}

.board-list-modal-item {
    border-bottom: 1px solid #efefef;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.business-image-main .business-cover-main,
.business-image-main {
    position: relative;
}

.business-image-main .business-cover-main .add-cover {
    position: absolute;
    right: 2rem;
    bottom: 1.5rem;
}

.business-profile-main {
    position: absolute;
    left: 6rem;
    bottom: -7rem;
}

.circle-medium {
    width: 185px;
    height: 185px;
}

.business-profile-main .profile-wrap {
    position: relative;
}

.business-profile-main .profile-wrap .add-profile {
    position: absolute;
    right: -4rem;
    bottom: 1rem;
}

.home-business-types a:hover {
    color: #fff !important;
    opacity: 0.8;
}



@media only screen and (max-width: 1400px) {
    .container {
        width: auto;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media only screen and (max-width: 1200px) {
    .container-sm {
        width: auto;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .home-business-types .item .content {
        width: 130px !important;
        height: 130px !important;
        margin: 0 auto;
    }

    .home-business-types .item svg.icon-extra-large {
        width: 64px;
        height: 64px;
    }

    .home-business-types .item {
        font-size: 0.9rem;
    }

    .login-main .col-55 .absolute-t-l-20, .password-reset-email .col-55 .absolute-t-l-20 {
        transform: translate(-50%, -50%);
    }

    .template-half-width .col-50 {
        width: 80%;
    }

    .main-index-file .col-60 {
        width: 100%;
        margin-left: 0;
    }

    .login-main .col-70.ml-2 {
        width: 100%;
    }
}

@media only screen and (max-width: 1100px) {
    .header-main-search .col-65, .header-main-search .col-35 {
        width: 50%;
    }
}

@media only screen and (max-width: 1070px) {
    footer .col-80 .col-60 .p-0-4 {
        padding: 0 1rem;
    }
}

@media only screen and (max-width: 1010px) {
    .home-business-types .item {
        padding: 0.5rem;
    }

    .profile-nav {
        width: 195px;
    }

    .menu-item-text {
        font-size: 0.8rem;
    }

    .help-layout .col-75 .col-50 {
        width: 100%;
    }

    .help-layout .col-75 .col-50 .mb-2 {
        margin-bottom: 0.7rem;
        margin-left: 0;
        margin-right: 0.7rem;
    }

    .help-layout .col-75, .help-layout .col-70 {
        padding-left: 1.5rem;
    }

}

@media only screen and (max-width: 950px) {
    .trending-listing .d-flex {
        display: block;
    }

    .trending-listing .d-flex .col-25 {
        display: inline-block;
        vertical-align: top;
        margin-right: -5px;
        width: 33.3%;
    }

    .trending-listing .d-flex .col-25 .p-1 {
        padding: 0.5rem;
    }

    .trending-listing .d-flex {
        display: flex;
    }

    .trending-listing .col-33, .blog-post .col-33 {
        width: 50%;
    }

    .trending-listing .col-33 .home-activity-listing, .blog-post .col-33 .home-activity-listing {
        padding: 0.5rem;
    }

    .trending-listing, .blog-post {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media only screen and (max-width: 940px) {
    .home-business-types {
        justify-content: center;
    }

    .home-business-types .item {
        width: 25%;
    }

    .home-business-types .item .content {
        width: 170px !important;
        height: 170px !important;
        margin: 0 auto;
        padding-top: 2.5rem !important;
    }
}

@media only screen and (min-width:2px) and (max-width:900px) {

    footer .col-80,
    footer .col-20 {
        width: 100%;
    }

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

    footer .d-flex.container {
        display: block;
    }

    h1, .h1 {
        font-size: 2rem;
    }

    h2, .h2 {
        font-size: 1.6rem;
    }

    h3, .h3 {
        font-size: 1.4rem;
    }

    h4, .h4 {
        font-size: 1.2rem;
    }

    h5, .h5 {
        font-size: 1rem;
    }

    .font-large {
        font-size: 2.5rem;
    }

    .font-extra-large {
        font-size: 3.5rem;
    }

    .font-1-1 {
        font-size: 1rem;
    }

    .font-1-2 {
        font-size: 1rem;
    }

    .font-1-3 {
        font-size: 1.1rem;
    }

    .home-share-panel .p-5 {
        padding: 2rem;
    }

    .profile-dash>.d-flex {
        display: block;
    }

    .profile-nav {
        width: 100%;
        padding-bottom: 0 !important;
    }

    .profile-dash>.d-flex .col-80 {
        width: 100%;
        padding-left: 0;
    }

    .profile-main-nav {
        display: none;
    }

    .profile-nav-logo {
        padding-top: 0 !important;
        padding-bottom: 0.7rem !important;
    }

    .profile-dash {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    footer .col-80 .col-60, footer .col-80 .col-40 {
        width: 100% !important;

    }

    footer .col-80.d-flex {
        display: block;
    }

    .help-layout .col-25 {
        font-size: 0.9rem;
    }

    .login-main .col-55 .absolute-t-l-20, .password-reset-email .col-55 .absolute-t-l-20 {
        width: 280px;
    }

    .login-main .col-55, .password-reset-email .col-55 {
        width: 45%;
    }

    .login-main .col-45, .password-reset-email .col-45 {
        width: 55%;
    }

    .user-profile .u-full-width.pb-2 {
        padding-left: 0;
        padding-right: 0;
    }

}

@media only screen and (min-width:2px) and (max-width:850px) {
    .blog-post .d-flex.blog-main-wrap {
        display: block;
    }

    .blog-post .d-flex .col-73 {
        width: 100%;
    }

    .blog-post .d-flex .col-22 {
        width: 50%;
        margin: 0 auto !important;
    }

    .hooper-slide {
        width: 25% !important;
    }

    .top-two-arrow {
        right: 2rem;
    }

    .about-main .col-33 {
        width: 50%;
    }

    .about-main .col-33 .p-1 {
        padding: 0.5rem;
    }
}

@media only screen and (min-width:2px) and (max-width:800px) {
    .p-3 {
        padding: 1.5rem;
    }

    .p-3-0 {
        padding: 1.5rem 0;
    }

    .p-0-3 {
        padding: 0rem 1.5rem;
    }

    .pt-3 {
        Padding-top: 1.5rem;
    }

    .pb-3 {
        Padding-bottom: 1.5rem;
    }

    .pl-3 {
        Padding-left: 1.5rem;
    }

    .pr-3 {
        Padding-right: 1.5rem;
    }

    .p-4 {
        padding: 2rem;
    }

    .p-4-0 {
        padding: 2rem 0;
    }

    .p-0-4 {
        padding: 0rem 2rem;
    }

    .pt-4 {
        Padding-top: 2rem;
    }

    .pb-4 {
        Padding-bottom: 2rem;
    }

    .pl-4 {
        Padding-left: 2rem;
    }

    .pr-4 {
        Padding-right: 2rem;
    }

    .p-5 {
        padding: 2.5rem;
    }

    .p-5-0 {
        padding: 2.5rem 0;
    }

    .p-0-5 {
        padding: 0rem 2.5rem;
    }

    .pt-5 {
        Padding-top: 2.5rem;
    }

    .pb-5 {
        Padding-bottom: 2.5rem;
    }

    .pl-5 {
        Padding-left: 2.5rem;
    }

    .pr-5 {
        Padding-right: 2.5rem;
    }

    .p-6 {
        padding: 4rem;
    }

    .p-6-0 {
        padding: 4rem 0;
    }

    .p-0-6 {
        padding: 0rem 4rem;
    }

    .pt-6 {
        Padding-top: 4rem;
    }

    .pb-6 {
        Padding-bottom: 4rem;
    }

    .pl-6 {
        Padding-left: 4rem;
    }

    .pr-6 {
        Padding-right: 4rem;
    }

    .topSupportTopics .col-50, .help-layout .col-25, .help-layout .col-75, .help-layout .col-70 {
        width: 100%;
    }

    .topSupportTopics .col-50 .mb-2 {
        margin-bottom: 0.7rem;
        margin-left: 0;
        margin-right: 0;
    }

    .help-layout .col-75, .help-layout .col-70 {
        padding-left: 1rem;
    }

    .blog-listing-items .col-75, .blog-listing-items .col-25, .blog-detail .col-75, .blog-detail .col-25 {
        width: 100%;
    }


}

@media only screen and (max-width: 750px) {
    .home-banner {
        background-position: 28%;
    }

    .home-business-types .item .content {
        width: 130px !important;
        height: 130px !important;
        padding-top: 1.5rem !important;
    }

    .template-half-width .col-50 {
        width: 100%;
    }
}

@media only screen and (max-width: 700px) {
    .profile-content .col-70 {
        margin-right: 1rem !important;
    }

    .profile-content .flex-1-1-0 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .topSupportArticles .col-50 {
        width: 100%;
    }

    .topSupportArticles .col-50 .mb-2 {
        margin-bottom: 0.7rem;
        margin-left: 0;
        margin-right: 0;
    }

    .login-main .col-55, .login-main .col-45, .password-reset-email .col-45, .password-reset-email .col-55 {
        width: 100%;
    }

    .login-main .col-55, .password-reset-email .col-55 {
        margin-top: 2rem;
    }

    .login-main .col-55 .col-45, .password-reset-email .col-55 .col-45 {
        width: 60%;
    }

    .login-main .col-55 .absolute-t-l-20, .password-reset-email .col-55 .absolute-t-l-20 {
        transform: translate(-30%, 0%);
    }

}

@media only screen and (max-width: 650px) {
    .main-container-right {
        padding-top: 0px;
    }

    .main-container-right {
        width: 100%;
        margin-left: 0;
    }

    .trending-listing .d-flex .col-25 {
        width: 50%;
    }

    :root {
        font-size: 15px;
    }

    .blog-post .d-flex.blog-main-wrap .col-30,
    .blog-post .d-flex.blog-main-wrap .col-70 {
        width: 50%;
    }

    .modal-container {
        width: auto !important;
        margin: 40px 1rem 0 !important;
    }
}

@media only screen and (max-width: 600px) {
    .hooper-slide {
        width: 33% !important;
    }

    footer .col-80 .col-60,
    footer .col-80 .col-40 {
        width: 100%;
    }

    footer .col-80.d-flex {
        display: block;
    }

    footer .col-80 .col-60 .p-0-4 {
        padding: 1rem 0rem;
    }

    .p-1-5 {
        padding: 1rem;
    }

    .pl-1-5 {
        Padding-left: 1rem;
    }

    .pr-1-5 {
        Padding-right: 1rem;
    }

    .p-2 {
        padding: 1.5rem;
    }

    .p-2-0 {
        padding: 1.5rem 0;
    }

    .p-0-2 {
        padding: 0 1.5rem;
    }

    .pt-2 {
        Padding-top: 1.5rem;
    }

    .pb-2 {
        Padding-bottom: 1.5rem;
    }

    .pl-2 {
        Padding-left: 1.5rem;
    }

    .pr-2 {
        Padding-right: 1.5rem;
    }

    .main-banner {
        padding: 10rem 0 2rem;
    }

    .home-banner h2 {
        margin-bottom: 0;
    }

    .home-banner .col-50 {
        width: 90%;
    }

    .trending-listing .col-33, .blog-post .col-33 {
        width: 100%;
    }

    .trending-listing .col-33 .home-activity-listing, .blog-post .col-33 .home-activity-listing {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .home-share-panel .col-50 {
        width: 100%;
    }

    .profile-content-sidebar {
        display: none;
    }

    .profile-content .d-flex.align-items-center {
        padding-top: 0;
    }

    .profile-content .d-flex .col-65, .profile-content .d-flex .col-35, .profile-content .d-flex .col-70, .profile-content .d-flex .col-30 {
        width: 100%;
    }

    .profile-content .col-70 {
        margin-right: 0rem !important;
    }

    .profile-content .flex-1-1-0 {
        padding-left: 0.7rem !important;
        padding-right: 0.7rem !important;
        padding-top: 0 !important;
    }

    .logo {
        width: 120px;
        height: auto;
    }

    .post-share-card .d-flex {
        display: flex !important;
    }

    .static-content p, .static-content ul {
        margin-left: 1rem !important;
    }

    .profile-content .two-column-post-list.d-flex {
        display: flex;
    }

    .head-menu-links {
        margin-top: 0.5rem;
    }

    form .col-50 {
        width: 100%;
        margin: 0;
    }

    form #showHideBeforeAfter {
        margin-bottom: 0.5rem;
    }

    form label {
        margin-left: 0;
    }

    .profile-content .profile-post {
        display: flex;
    }

    .profile-content .profile-post .ml-1 {
        margin-left: 0;
        margin-right: 2rem;
    }

    .business-listing .proflie-image {
        margin-bottom: 0.5rem;
    }

    .business-listing .d-flex {
        display: block;
    }

    .business-listing .d-flex .col-60, .business-listing .d-flex .col-40 {
        width: 100%;
    }

    .post-profile .d-flex {
        display: flex;
    }

    .listing-middle-panel .profile-post .ml-1 {
        margin: 0;
    }

    .comment-active {
        margin-bottom: 0.5rem;
        margin-left: 1rem;
    }

    .profile-content .modal-mask .insipiration-height .d-flex {
        display: flex;
    }

    .profile-content .modal-mask .proflie-image {
        width: 50px;
    }

    .modal-mask form .d-flex {
        display: flex;
        padding-top: 0.5rem !important;
    }

    .modal-mask form .d-flex ul {
        padding: 0;
    }

    .header-small .col-30, .header-small .col-70 {
        width: 50%;
    }
}

@media only screen and (max-width: 575px) {
    .home-business-types .item {
        width: 33.33%;
    }

    .about-main .col-33 {
        width: 100%;
    }
}

@media only screen and (max-width: 520px) {
    .register-main ul.steps-list li {
        padding-top: 1rem;
    }

    .profile-content-wrap .pt-3.pb-2 .d-inline-block {
        display: block;
    }

    .profile-content-wrap .pt-3.pb-2 .d-inline-block.mr-3 {
        margin-bottom: 1rem;
        margin-right: 0;
    }
}

@media only screen and (max-width: 500px) {
    .profile-content .two-column-post-list.d-flex {
        display: block;
    }

    .two-column-post-item {
        width: 100%;
        margin-right: 0%;
    }

    .search-panel .col-60 {
        width: 100%;
    }

    .login-main .col-55 .absolute-t-l-20, .password-reset-email .col-55 .absolute-t-l-20 {
        transform: translate(-50%, -50%);
    }

    .register-main .login-form .col-50 input {
        margin: 0;
    }

    .register-main .mb-2 {
        margin-bottom: 0rem;
    }
}

@media only screen and (max-width: 450px) {
    .trending-listing .d-flex .col-25 {
        width: 100%;
    }

    .hooper-slide {
        width: 50% !important;
    }

    .blog-post .d-flex.blog-main-wrap .d-flex,
    .blog-post .d-flex.blog-main-wrap .d-flex {
        display: block;
    }

    .blog-post .d-flex.blog-main-wrap .col-30,
    .blog-post .d-flex.blog-main-wrap .col-70 {
        width: 100%;
    }

    .blog-post .d-flex.blog-main-wrap .col-30 .p-0-05,
    .blog-post .d-flex.blog-main-wrap .col-70 .p-0-05 {
        padding: 0;
    }

    .blog-post .d-flex.blog-main-wrap .col-70 {
        margin-top: 1rem;
    }

    .login-form .d-flex {
        display: block;
    }

    .login-form .col-50 {
        width: 100%;
        margin-right: 0;
    }

    .header-help-menu {
        padding: 0.5rem 0;
    }

    .header-help-menu div {
        width: 100%;
        text-align: center;
    }

    .header-help-menu .logo-main .d-flex {
        display: block;
    }
}

@media only screen and (max-width: 430px) {
    .home-business-types .item {
        width: 50%;
    }
}

@media only screen and (max-width: 400px) {
    .policy-links li:nth-child(2) a {
        border-right: none;
    }

    .blog-post .d-flex .col-22 {
        width: 100%;
    }

    .header .d-flex {
        display: block;
    }

    .header .d-flex .col-30, .header .d-flex .col-70 {
        width: 100%;
        text-align: center;
    }

    .share-menu .post-like-button, .share-menu .comment, .share-menu .share {
        text-align: center;
    }

    .share-menu .post-like-button .font-small, .share-menu .comment .font-small, .share-menu .share .font-small {
        display: none;
    }

    .header-small .col-30, .header-small .col-70 {
        width: 100%;
        text-align: center !important;
    }

    .header-small .col-30 .d-flex {
        justify-content: center;
    }
}

@media only screen and (max-width: 380px) {
    .steps-list li {
        border-bottom: none;
        padding: 0 0rem 0.5rem 0rem;
        display: block;
    }

    .steps-list li.active:after {
        content: none;
    }
}

@media only screen and (max-width: 370px) {
    footer .col-80 .col-60 .col-33 {
        width: 100%;
        margin: 1.5rem 0;
    }

    footer .col-80 .col-60 .d-flex {
        display: block;
    }
}

@media only screen and (max-width: 350px) {
    .login-main .d-flex, .password-reset-email .d-flex {
        display: block;
    }

    .login-main .d-flex .col-50, .password-reset-email .d-flex .col-50 {
        width: 100%;
    }

    .login-main .d-flex .col-50.text-right, .login-main .d-flex .col-50 .text-right, .password-reset-email .d-flex .col-50.text-right, .password-reset-email .d-flex .col-50 .text-right {
        text-align: left;
        margin: 0.5rem 0;
    }

    .login-main .col-45, .password-reset-email .col-45 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media only screen and (max-width: 300px) {
    .policy-links li a {
        border-right: none;
        padding: 0;
    }

    .policy-links li {
        display: block;
    }

    .home-business-types .item {
        width: 100%;
    }

    .post-share-card {
        width: 160px !important;
    }

    .login-main .col-55 .absolute-t-l-20, .password-reset-email .col-55 .absolute-t-l-20 {
        display: none;
    }

    .login-main .col-55 .col-45, .password-reset-email .col-55 .col-45 {
        width: 90%;
        position: static;
        transform: translate(0px, 0px);
        margin: 0 auto;
    }

    .login-main .col-55, .password-reset-email .col-55 {
        height: auto;
        padding: 2rem 0;
    }
}

#sidebar ul.topics li.active>a[data-v-e8173ba4] {
    width: 100%;
}

.article-panel .icon {
    position: static;
    transform: translate(0%, 0%);
}

.logo-icon svg {
    width: 70px;
    height: 70px;
}

input[type="date"], input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
    padding: 10px 12px;
}

.login-main .logo-main {
    width: 280px;

}

.login-main .col-45 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* CONTACT FORM */

.contact-form label {
    font-weight: bold;
    font-size: 18px;
}

.contact-form input {
    padding: 15px 12px;
}


/* CONTACT FORM */

.modal-mask .tc.bb {
    padding: 0.3rem 0;
}

.modal-mask form textarea {
    min-height: 120px;
}

.modal-mask form .d-flex {
    padding: 0.5rem;
}

.modal-mask form .d-flex ul {
    padding: 0rem;
}

.modal-mask .cat-tag-list {
    font-size: 0.9rem;
}

.image-preview-box {
    height: 210px;

}

.bg-gray-5 .btn.btn-primary:hover {
    background-color: #fff;
}