@import url("https://fonts.googleapis.com/css?family=Fira+Sans");

.form-login {
    position: relative;
    min-height: 100vh;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Fira Sans", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.form-structor {
    background-color: #222;
    border-radius: 15px;
    height: 550px;
    width: 350px;
    position: relative;
    overflow: hidden;
}

.form-structor::after {
    content: "";
    opacity: 0.8;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 182%;
    background-image: url("../img/bg-login.jpg");
}

.form-structor .signup {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    width: 65%;
    z-index: 5;
    -webkit-transition: all 0.3s ease;
}

.form-structor .signup.slide-up {
    top: 5%;
    -webkit-transform: translate(-50%, 0%);
    -webkit-transition: all 0.3s ease;
}

.form-structor .signup.slide-up .form-holder,
.form-structor .signup.slide-up .submit-btn {
    opacity: 0;
    visibility: hidden;
}

.form-structor .signup.slide-up .form-title {
    font-size: 1em;
    cursor: pointer;
}

.form-structor .signup.slide-up .form-title span {
    margin-right: 5px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease;
}

.form-structor .signup .form-title {
    color: #fff;
    font-size: 1.7em;
    text-align: center;
}

.form-structor .signup .form-title span {
    color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
}

.form-structor .signup .form-holder {
    border-radius: 15px;
    background-color: #fff;
    overflow: hidden;
    margin-top: 50px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease;
}

.form-structor .signup .form-holder .input {
    border: 0;
    outline: none;
    box-shadow: none;
    display: block;
    height: 30px;
    line-height: 30px;
    padding: 8px 15px;
    border-bottom: 1px solid #eee;
    width: 100%;
    font-size: 12px;
}

.form-structor .signup .form-holder .input:last-child {
    border-bottom: 0;
}

.form-structor .signup .form-holder .input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.form-structor .signup .submit-btn {
    background-color: rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.7);
    border: 0;
    border-radius: 15px;
    display: block;
    margin: 15px auto;
    padding: 15px 45px;
    width: 100%;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease;
}

.form-structor .signup .submit-btn:hover {
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.8);
}

.form-structor .login {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 5;
    -webkit-transition: all 0.3s ease;
}

.form-structor .login::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -20px;
    -webkit-transform: translate(-50%, 0);
    background-color: #fff;
    width: 200%;
    height: 250px;
    border-radius: 50%;
    z-index: 4;
    -webkit-transition: all 0.3s ease;
}

.form-structor .login .center {
    position: absolute;
    top: calc(50% - 10%);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    width: 65%;
    z-index: 5;
    -webkit-transition: all 0.3s ease;
}

.form-structor .login .center .form-title {
    color: #000;
    font-size: 1.7em;
    text-align: center;
}

.form-structor .login .center .form-title span {
    color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
}

.form-structor .login .center .form-holder {
    border-radius: 15px;
    background-color: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    margin-top: 50px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease;
}

.form-structor .login .center .form-holder .input {
    border: 0;
    outline: none;
    box-shadow: none;
    display: block;
    height: 30px;
    line-height: 30px;
    padding: 8px 15px;
    border-bottom: 1px solid #eee;
    width: 100%;
    font-size: 12px;
}

.form-structor .login .center .form-holder .input:last-child {
    border-bottom: 0;
}

.form-structor .login .center .form-holder .input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.form-structor .login .center .submit-btn {
    background-color: #6b92a4;
    color: rgba(255, 255, 255, 0.7);
    border: 0;
    border-radius: 15px;
    display: block;
    margin: 15px auto;
    padding: 15px 45px;
    width: 100%;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease;
}

.form-structor .login .center .submit-btn:hover {
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.8);
}

.form-structor .login.slide-up {
    top: 90%;
    -webkit-transition: all 0.3s ease;
}

.form-structor .login.slide-up .center {
    top: 10%;
    -webkit-transform: translate(-50%, 0%);
    -webkit-transition: all 0.3s ease;
}

.form-structor .login.slide-up .form-holder,
.form-structor .login.slide-up .submit-btn {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
}

.form-structor .login.slide-up .form-title {
    font-size: 1em;
    margin: 0;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
}

.form-structor .login.slide-up .form-title span {
    margin-right: 5px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease;
}


#icon_drag_mobile {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: url(../img/free_icon_1.svg) 0 0 no-repeat;
    width: 50px;
    height: 50px;
    opacity: 0.6;
    /* z-index: 99; */
    display: none;
}

@media (max-width: 992px) {
    #icon_drag_mobile {
        display: block;
    }
}

.right-50px {
    right: 50px !important;
}

.p-relative {
    position: relative;
}

.z-index-1 {
    z-index: 1;
}

@media (max-width: 992px) {

    .cta .container-service {

        padding: 16px;
    }
}

@media (max-width: 992px) {

    .size-img-dash {
        max-height: 14rem !important;
        min-height: 14rem !important;
    }
}

.size-img-dash {
    max-height: 21rem;
    width: 100%;
    min-height: 21rem;
}

@media (max-width: 992px) {

    .font-desk-service {

        text-align: justify;
        font-size: 22px !important;
    }
}

.font-desk-service {

    font-size: 2rem;
    line-height: normal;
}

.font-size-title {
    margin-top: 10px;
    font-size: 14px;
    font-family: 'Unica', sans-serif;
    font-weight: 300;

}

@media (max-width: 640px) {

    .font-size-title {
        max-height: 2rem;
        overflow: hidden;
    }
}

@media (max-width: 640px) {

    .desk-port {
        display: none;
        font-size: 10px;
    }
}

@media (max-width: 1300px) {

    .desk-port {
        font-size: 10px;
        max-height: 3.6em;
        overflow: hidden;
    }
}

@media (max-width: 992px) {

    .max-height {
        max-height: 10rem !important;
        min-height: 13rem !important;
        width: 100% !important;

    }
}

@media (max-width: 992px) {

    .over-height {
        overflow: hidden;
        max-height: 13rem;

    }
}

@media (max-width: 992px) {

    .font-size-nav-baro {
        font-size: 23px !important;

    }
}

.min-height-video {
    min-height: 41rem;
}

@media only screen and (min-width: 200px) and (max-width: 1024px) and (orientation: portrait) {
    .min-height-video {
        min-height: 15rem !important;
        /* max-height: 11rem !important; */
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .min-height-video {
        min-height: 30rem !important;
        /* max-height: 24rem !important; */
    }
}

@media (max-width: 992px) {}


.font-text-port {
    font-size: smaller;
    font-family: monospace;
}


.pr-var {
    padding-right: var(--bs-gutter-x, 2.75rem) !important;
}

.max-height {
    max-height: 22rem;
    min-height: 22rem;
    width: 100%;
}

.desk-port {
    font-size: 10px;
    font-family: 'Unica', sans-serif;
    font-weight: 300;
    letter-spacing: .02em;
    line-height: 1.8;
    color: #666;
}

.font-initial {

    font-family: Chathura;
    line-height: 0.9;
    color: black;
}

.size-50px {
    font-size: 50px;
}

.size-30px {
    font-size: 30px;
}

.font-auto {
    font-family: Beau Rivage;
}

.btn-more {
    border: 1px solid;
    padding: 4px 32px;
    border-radius: 20px;
    color: black;
    font-size: xx-small;
}

.border-r-0px {
    border-radius: 0px !important;
}

.max-col-portrait {
    /* max-height: 742px !important;
    min-height: 742px !important; */
}

.max-portrait {
    max-height: 750px;
    min-height: 750px;
    /* max-height: 47rem; */
    width: 100%;
}

.max-landscape {
    max-height: 294px;
    min-height: 294px;
    width: 100%;
}

.mt-15px {
    margin-top: 15px;
}

.float-right {
    float: right;
}

/* @import url("https://fonts.googleapis.com/css?family=Raleway:400,400i,700"); */
.outter {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



video {
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

* {
    box-sizing: border-box;
    font-family: Raleway, sans-serif;
}



.video-container {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.tile-video-header {
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0 1rem;
    padding: 0;
    line-height: 1;
    font-family: Raleway;
    font-size: 2vw;
    font-weight: 700;
}

@media (max-width: 400px) {
    .tile-video-header {
        font-size: 14px;
    }
}

@media (min-width: 1200px) {
    .tile-video-header {
        font-size: 51px;
    }
}


.desc {
    font-family: Raleway;
    font-weight: 400;
    font-size: 18px;
}

.desk {
    padding-left: 17px;
    color: #9eabb4;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
}

.callout {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
    width: 70%;
    margin: auto;
}

@media (max-width: 992px) {
    .button {
        font-size: xx-small;
    }
}

.button {
    text-transform: uppercase;
    background-color: transparent;
    border-radius: 40px;
    padding: 4px;
    border: 1px solid #fbfbfb;
    margin-top: 20px;
    color: #fbfbfb;
}

.button .inner {
    /* background-color: #b84647; */
    padding: 1px 30px;
    border-radius: 40px;
}

.support {
    position: fixed;
    bottom: 60px;
    right: 20px;
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 1px;
    text-align: right;
    position: relative;
    z-index: 10;
}

.support a {
    color: white;
    text-decoration: none;
    position: relative;
    display: inline-block;
    margin-top: 10px;
}

.support a:before {
    display: block;
    position: absolute;
    content: "";
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    transition: 0.3s;
}

.support a:hover:before {
    width: 100%;
}

.option2 {
    margin-top: 50px;
}

.option2 .callout {
    text-align: left;
    align-self: flex-start;
}

.option2 .callout .tile-video-header {
    text-align: left;
    width: 100%;
}

.option2 .callout .button {
    margin-right: auto;
}

.option2 .callout .desc {
    max-width: 500px;
    text-align: left;
    align-self: flex-start;
}


.sidebar-menu {
    background-color: #fff;
    position: fixed;
    transition: width 0.2s ease;
    z-index: 9;
}

.sidebar-menu nav {
    height: 100%;
}

.sidebar-menu .sidebar__nav {
    display: flex;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-menu .sidebar__nav .sidebar__nav__link {
    align-items: center;
    color: #bbb;
    display: flex;
    padding-left: 20px;
    text-decoration: none;
    /* transition: color 0.2s ease, background-color 0.2s ease; */
}

.sidebar-menu .sidebar__nav .sidebar__nav__link:hover {
    background-color: rgba(0, 0, 0, 0.15);
    color: #495057;
    border-radius: 35px;
}

.sidebar-active {
    color: #495057 !important;
    background-color: rgba(0, 0, 0, 0.15);
    /* color: #495057; */
    border-radius: 35px;

}

.sidebar-menu .sidebar__nav .sidebar__nav__text {
    display: none;
    margin-left: 10px;
    margin-right: auto;
    white-space: nowrap;
}

.sidebar-menu .sidebar__nav i {
    align-items: center;
    display: flex;
    justify-content: center;
}

.ml-page {
    margin-left: 74px;
}

@media (max-width: 572px) {
    .ml-page {
        margin-left: 0;
    }

    .sidebar-menu {
        bottom: 0;
        width: 100%;
    }

    .sidebar-menu .sidebar__nav {
        justify-content: space-around;
    }

    .sidebar-menu .sidebar__nav .sidebar__nav__link {
        height: 100%;
        padding: 0.75em;
    }

    .sidebar-menu .sidebar__nav i {
        font-size: 2rem;
    }

}


@media (min-width: 572px) {
    .sidebar-menu {
        height: -webkit-fill-available;
        left: 0;
        width: var(--sidebar-width);
    }

    .sidebar-menu:hover {
        width: 5rem;
    }

    .sidebar-menu .sidebar__nav {
        flex-direction: column;
    }

    .sidebar-menu .sidebar__nav li:last-child {
        margin-top: auto;
    }

    .sidebar-menu .sidebar__nav .sidebar__nav__link {
        /* padding: 1em; */
        margin: 8px;
        padding: 4px;
    }

    .sidebar-menu:hover .sidebar__nav .sidebar__nav__text {
        display: inline;
    }

    .sidebar-menu .sidebar__nav i {
        font-size: 2.5rem;
    }
}

@media (max-height: 434px) {
    .sidebar-menu {
        overflow-y: scroll;
    }
}


* {
    outline: none;
    box-sizing: border-box;
}

.main {
    margin-left: auto;
    margin-right: auto;
    /* max-width: 992px; */
    /* padding: 2em 1.5em; */
    width: auto;
}

.main .h2 {
    font-size: 2em;
    margin-top: 0px;
}

.main .p {
    color: #444;
    font-size: 1.25em;
    line-height: 2;
    text-align: justify;
}

@media (min-width: 572px) {
    .main {
        margin-left: var(--sidebar-width);
    }
}

:root {
    --sidebar-width: 4.5em;
}

#page {
    transition: margin-left .3s;
    /* padding: 16px; */
}

.side-icon-side {
    font-size: 35px;
    display: flex;
    height: auto;
    width: -webkit-fill-available;
}

@media screen and (max-height: 450px) {
    .sidebar-menu {
        padding-top: 15px;
    }

    .sidebar-menu a {
        font-size: 18px;
    }
}

@media screen and (max-width: 991px) {
    .side-icon-side {
        font-size: 35px;
        display: flex;
        height: auto;
        width: 48px;
    }
}

@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i");

/*----------------------------------------------------------
GENERAL
----------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}


_footer__title {
    text-transform: uppercase;
    font-family: ui-serif;
    color: #53646f;
    font-weight: 400;
    font-size: 20px;
    margin: 0;
}

.row--top-40 {
    margin-top: 40px;
}

.row--top-20 {
    margin-top: 20px;
}

.table__th {
    color: #9eabb4;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    border: 0 !important;
    padding: 15px 8px !important;
}

.table-row {
    border-bottom: 1px solid #e4e9ea;
    background-color: #fff;
}

.table__th:hover {
    color: #01b9d1;
}

.table--select-all {
    width: 18px;
    height: 18px;
    padding: 0 !important;
    border-radius: 50%;
    border: 2px solid #becad2;
}

.row-td-action,
.table-row__td {
    padding: 12px 8px !important;
    vertical-align: middle !important;
    color: #53646f;
    font-size: 13px;
    font-weight: 400;
    position: relative;
    line-height: 18px !important;
    border: 0 !important;
}

.table-row__img {
    max-width: 60px;
    height: auto;
    display: inline-block;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.table-row__info {
    display: inline-block;
    padding-left: 12px;
    vertical-align: middle;
}

.table-row__name {
    color: #53646f;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0px;
    position: relative;
    display: inline-block;
    background: #dbdbdb5e;
    padding: 1px 3px;
    border-radius: 2px;
}

.table-row__edit {
    width: 46px;
    padding: 8px 17px;
    display: inline-block;
    background-color: #daf3f8;
    border-radius: 18px;
    vertical-align: middle;
    margin-right: 10px;
    cursor: pointer;
}



.btn-edit {
    background: #ffc10759;
    padding: 4px 16px;
    border-radius: 13px;
    color: black;
    margin-right: 5px;
}

.btn-delete {
    background: #ff001857;
    padding: 4px 16px;
    border-radius: 13px;
    color: black;
}

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

    .table-row {
        display: inline-block;
        border: 0;
        background-color: #fff;
        width: calc(33.3% - 13px);
        margin-right: 10px;
        margin-bottom: 10px;
        box-shadow: 2px 2px 6px 0px rgb(0 0 0 / 9%);

    }

    .table-row__img {
        width: 89px;
        height: 68px;
        margin-bottom: 10px;
    }

    .row-td-action {
        float: right;
    }


    .row-td-action.table-row__td:before {
        content: attr(data-column);
        color: #9eabb4;
        font-weight: 500;
        font-size: 12px;
        text-transform: uppercase;
        display: block;
    }

    .table-row__info {
        /* display: block; */
        padding-left: 0;
    }

    .row-td-action,
    .table-row__td {
        display: block;
        /* text-align: center; */
        padding: 8px !important;
    }



    .table-row__name {
        position: absolute;
        top: 9px;
    }

    .btn-edit,
    .btn-delete {
        padding: 4px 13px;
    }

    .faq .accordion-body {
        padding: 0 10px 10px 10px;
        border: 0;
        border-radius: 5px;
        background: var(--color-white);
        box-shadow: none;
    }

}

@media screen and (max-width: 680px) {
    .row-td-action {
        float: right;

    }

    .table-row {
        width: calc(50% - 13px);
        box-shadow: 2px 2px 6px 0px rgb(0 0 0 / 9%);
    }
}

@media screen and (max-width: 480px) {
    .row-td-action {
        float: right;
    }

    .table-row {
        width: 100%;
        box-shadow: 2px 2px 6px 0px rgb(0 0 0 / 9%);
    }
}

.dummy-text {
    color: #3c3b3b;
    font-family: lato;
    font-size: 20px;
    line-height: 1.5;
}

.footer-col-6 {
    width: 50%;
    display: inline-table;
}

footer {
    background-color: #6c757d;
    padding: 3em 4em 2em;
}

footer .logo {
    color: #fff;
    font-size: 28px;
    font-family: roboto;
}

footer .row_footer {
    margin: 2em 0;
    font-family: lato;
    color: #fff;
    position: relative;
    /* border-bottom: 1px solid #cecece; */
}

.footer-toggle {
    display: none;
}

.link-cat {
    cursor: pointer;
}

footer ul {
    padding: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

footer ul li {
    list-style-type: none;
    padding: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    line-height: 2;
}

footer .footer-cat,
#newsletter span {
    font-size: 20px;
}

.footer-cat-links a {
    color: #cecece;
    text-decoration: none;
    position: relative;
}

.footer-cat-links.active>li a {
    pointer-events: auto;
}

.footer-cat-links a:after {
    top: 21px;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    width: 0;
    background: #fff;

    -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

.footer-cat-links a:hover:after,
.footer-cat-links a:focus:after {
    width: 100%;
    left: 0;
}

.footer-col-3 {
    display: inline-table;
    width: 25%;
}

.footer-col-3#newsletter {
    width: 24%;
}

.footer-col-3#newsletter #btn-scribe {
    margin-left: -4px;
    border: 1px solid #cecece;
    border-radius: 0px 4px 4px 0;
    padding: 8px 5px;
    background-color: #e2e2e2;
    color: #212121;
    cursor: pointer;
}

.social-2 {
    display: none;
}

.social-links {
    bottom: 0px;
    position: absolute;
    left: 0;
}

.social-links a {
    color: #fff;
    font-size: 20px;
    border: 1px solid;
    border-radius: 20px;
    padding: 6px 7px;

    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.social-links a:not(:last-child) {
    margin-right: 10px;
}

.social-links a:hover,
.social-links a:focus {
    background-color: #212121;
}

.social-links a i {
    width: 25px;
    height: 25px;
    text-align: center;
}

/* #newsletter #address li:not(:first-child) {
    padding: 20px 0;
} */

#newsletter #address li i {
    font-size: 45px;
    width: auto;
    padding: 5px;
}

#newsletter #address li div {
    color: #cecece;
    font-size: 14px;
    width: 80%;
    text-align: left;
    float: right;
    line-height: 1.3;
}

#copyright {
    text-align: center;
    color: #fff;
    font-family: lato;
}

#owner {
    text-align: center;
    padding: 20px 0 0px;
    color: #fff;
    font-family: lato;
}

#owner a {
    color: #fff;
}

.social-1 {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 20rem;
}

/* iPads to Smartphone for Common Elements ----------- */
@media only screen and (max-width: 1024px) {
    .footer-col-3 {
        display: block;
        width: 100%;
        padding-bottom: 1em;
        position: relative;
    }

    .footer-col-3#newsletter {
        width: 100%;
        position: relative;
        padding-bottom: 0;
        padding-top: 1em;
    }

    footer .footer-cat {
        margin-left: 25px;
    }

    .footer-toggle,
    .footer-toggle::after {
        background: #fff;
        height: 2px;
        width: 15px;
        position: absolute;
        display: block;
        -webkit-transition: all 0.4s ease-in;
        transition: all 0.4s ease-in;
    }

    .footer-toggle {
        top: 11px;
        cursor: pointer;
    }

    .footer-toggle::after {
        content: "";
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .btnActive .footer-toggle::after {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .footer-cat-links {
        margin: 0 0em 0px 1.6em;
    }

    .footer-cat-links a {
        pointer-events: none;
    }

    .footer-cat-links li {
        line-height: 0;
        opacity: 0;
    }

    .footer-cat-links.active>li {
        line-height: 2;
        opacity: 1;
    }

    .social-1 {
        margin-top: 0;
    }

    .social-2 {
        display: block;
        position: absolute;
        top: 7.5em;
        bottom: 0px;
        height: 20px;
        padding-bottom: 1.5em;
        width: 100%;
    }

    /* #address {
        margin-top: 6em;
    } */

    #newsletter #address li i {
        width: auto;
    }

    #newsletter #address li div {
        font-size: 14px;
        width: auto;
        text-align: -webkit-auto;
        float: none;
        line-height: 2;
        display: inline-block;
        padding: 10px 0 15px;
    }

    #newsletter #address li div:last-child {
        padding-bottom: 0;
    }

    /* #newsletter #address li:not(:first-child) {
        padding: 20px 0 0;
    } */
}


.header {
    padding: 4px 0;
}

/* iPads (portrait)----------- */
@media only screen and (min-width: 375px) and (max-width: 1024px) and (orientation: portrait) {
    .header {
        padding: 13px 0;
    }

    footer {
        padding-right: 3em;
        padding-left: 3em;
    }

    .footer-col-3 {
        display: block;
        width: 100%;
        padding-bottom: 1em;
    }
}

/* iPads (landscape) ----------- */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .header {
        padding: 13px 0;
    }

    section {
        padding-bottom: 3em;
    }

    .sec-heading {
        padding: 1em 0;
    }

    .footer-col-3 {
        display: block;
        width: 100%;
        padding-bottom: 1em;
    }
}


/* Mini Tablet ----------- */
@media only screen and (max-width: 600px) {
    .footer-col-3 {
        display: block;
        width: 100%;
        padding-bottom: 1em;
    }

    .footer-col-6 {
        width: 100%;
        display: block;
    }

    footer {
        padding: 3em 2em 2em;
    }
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (max-width: 480px) {
    .footer-col-6 {
        width: 100%;
        display: block;
    }

    footer {
        padding-right: 1em;
        padding-left: 1em;
    }
}

.title-project-dash {
    bottom: 13rem;
    position: relative;
    padding-right: 0;
}

.posts-list {
    overflow: overlay;
    max-height: 67rem;
}

.services .details {
    margin: -100px 5px 5px 5px !important;
    padding: 47px 16px 10px !important;
    min-height: 13rem;
}

h2 {
    font-weight: bold !important;
}

p {
    color: var(--color-secondary);
    /* font-weight: 600; */
    font-size: 18px;
    letter-spacing: 1px;
}

.cta {
    padding: 80px;
    background: rgba(var(--color-secondary-rgb), 0.1);
    border-radius: 15px;
}

.img-col12 {
    overflow: hidden;
    max-height: 30rem;
    /* height: max-content; */
    margin-bottom: 1rem;
    border-radius: 23px;
    padding: 0;
}

.img-col6 {
    overflow: hidden;
    max-height: 30rem;
    margin-bottom: 1rem;
    border-radius: 23px;
    padding: 0;
}

.text-pos {
    position: absolute;
    bottom: 7px;
    color: white;
    font-family: 'Poppins';
    font-weight: bold;
    /* letter-spacing: 5px; */
    padding: 31px 12px;
    border-radius: 23px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    /* text-shadow: 3px 3px #0000006e; */
    width: -webkit-fill-available;
    background-image: linear-gradient(#ffffff00, #000000);
    height: 89px;
}

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

.size-col6 {
    font-size: 25px;
}

@media only screen and (min-width: 200px) and (max-width: 1024px) and (orientation: portrait) {
    .size-col12 {
        font-size: 23px;
    }

    .size-col6 {
        font-size: 23px;
    }
}

.btn-cta {
    padding: 12px;
    border-radius: 22px;
    color: white;
    font-weight: bold;
    background: #1893a8;
}

.btn-cta:hover {
    padding: 12px;
    border-radius: 22px;
    color: white;
    font-weight: bold;
    background: var(--color-primary);
}

.font-title-service {
    line-height: 18px !important;
    font-size: 15px !important;
}

.btn-wa-fixed {
    width: 12rem;
    position: fixed;
    z-index: 9;
    bottom: 1rem;
    left: -16px;
}

/* CUSTOM SELECT 2 */
.select2-container {
    display: inline;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 38px;
    height: 43px;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 39px;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 5px;
    right: 1px;
    width: 20px;
}

/* AND CUSTOM SELECT 2 */

body,
p,
span,
h1,
h2,
h3,
h4,
h5,
h6,
li {
    font-family: 'Poppins' !important;
    letter-spacing: 0px;
}

p {
    letter-spacing: normal;
}

.gallery {
    --anim-time--hi: 266ms;
    --anim-time--med: 400ms;
    --anim-time--lo: 600ms;

    display: flex;
    place-content: center;
    max-width: clamp(30rem, 95%, 50rem);
    width: max(22.5rem, 100%);
    min-height: 100vh;
    margin-inline: auto;
    padding: clamp(0px, (30rem - 100vw) * 9999, 1rem);

}

.gallery__content--flow {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery__content--flow>* {
    flex-grow: 1;
    flex-basis: calc((30rem - 100%) * 999);
}

@media only screen and (min-width: 200px) and (max-width: 1024px) and (orientation: portrait) {
    .figure {
        min-width: auto !important;
    }

}

/* iPads (landscape) ----------- */
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .figure {
        min-width: 20rem !important;
    }

}

/* figure::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            hsla(0, 0%, 0%, 0.8) 0%,
            hsla(0, 0%, 0%, 0.7) 12%,
            hsla(0, 0%, 0%, 0.2) 41.6%,
            hsla(0, 0%, 0%, 0.125) 50%,
            hsla(0, 0%, 0%, 0.01) 59.9%,
            hsla(0, 0%, 0%, 0) 100%);
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: var(--anim-time--med), var(--anim-time--med);
    transition-timing-function: ease, ease;
    z-index: 4;
} */
.figure {
    display: flex;
    min-width: 32rem;
    max-height: 32rem;
    position: relative;
    border-radius: .35rem;
    box-shadow:
        rgb(40, 40, 40, 0.1) 0px 2px 3px,
        rgb(20, 20, 20, 0.2) 0px 5px 8px,
        rgb(0, 0, 0, 0.25) 0px 10px 12px;
    overflow: hidden;
    transition: transform var(--anim-time--med) ease;

}



.header__caption {
    z-index: 10;
    position: absolute;
    display: inline-flex;
    flex-direction: column;
    align-self: flex-end;
    width: 100%;
    gap: 0.5rem;
    padding: 1rem;
    /* justify-content: center; */
    text-align: left;
    /* transform: translateY(100%); */
    transition: transform var(--anim-time--hi) linear,
        opacity var(--anim-time--hi) linear;
    transform: translateY(0);
    opacity: 1;
    background-image: linear-gradient(#ffffff00, #000000);
}

/* figure:hover::before {
    opacity: 0.8;
} */

/* figure:hover .header__caption {
    transform: translateY(0);
    opacity: 1;
} */

/* figure:hover .img-grid-news {
    transform: scale(1);
} */

.title {
    color: #fff;

}

.title--primary {
    font-size: 1.25rem;
    font-weight: bold;
}

.title--secondary {
    text-transform: uppercase;
    font-weight: bold;
}

.img-grid-news {
    display: block;
    width: -webkit-fill-available;
    object-fit: cover;
    object-position: center;
    height: 100%;
    transform: scale(1.15);
    /* aspect-ratio: 16 / 13; */
    transition: 400ms ease-in-out;
}

.ul-list-heriz {
    display: -webkit-inline-box;
    width: -webkit-fill-available;
    overflow-y: auto;
    list-style: none;
    padding-left: 0;
}

.btn-service {
    border: 3px solid #ffffff70;
    padding: 1px 5px;
    border-radius: 5px;
    color: #485664;
    margin: 3px 11px;
}

.btn-service:hover {
    color: black;
    /* text-decoration-line: underline; */
    background: white;
    font-weight: bold;

}

.service-active,
.serv-kons-active {
    color: black;
    /* text-decoration-line: underline; */
    background: white;
    font-weight: bold;
}

#service-list-konsep::-webkit-scrollbar-track,
#service-list-layanan::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    /* background-color: #F5F5F5; */
}

#service-list-konsep::-webkit-scrollbar,
#service-list-layanan::-webkit-scrollbar {
    width: 12px;
    /* background-color: #F5F5F5; */
    height: 5px;
}

#service-list-konsep::-webkit-scrollbar-thumb,
#service-list-layanan::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: hwb(0 34% 66%);
}

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

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

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

.p-service {
    padding-top: 14rem;
}

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

@media only screen and (min-width: 200px) and (max-width: 1024px) and (orientation: portrait) {
    .section-header h2 {
        font-size: 28px;
    }

    .pt-5rem {
        padding-top: 3rem !important;
    }
    .p-service {
        padding-top: 22rem;
    }
}


.text-border {
    background: #eceeef;
    padding-bottom: 7px;
    border-top-left-radius: 32px;
    border-bottom-right-radius: 32px;

}

.breadcrumbs {
    padding: 15px 0;
    background: #e4dfdf;
    min-height: 40px;
}

.portfolio-details {
    padding-top: 11rem;
}

.blog .sidebar .recent-posts img {
    width: auto;
    height: 62px;
    margin-right: 15px;
}