@charset "utf-8";

/*
/*	Copyright (c) 2023 FIMARx
/*	Author: FIMARx

/*---------------------------------------------------*/
/*	01) FIMARx BASE
/*---------------------------------------------------*/
:root {
    --main-color: #fa5b0f;
}
html {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}
body {
    overflow-x: hidden;
    width: 100%;
    font-family: "Poppins";
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.2px;
    word-wrap: break-word;
    font-weight: 400;
    background-color: #000;
    color: #A2A2A2;
}
svg {
    fill: currentcolor;
    width: 15px;
    height: 15px;
}
img.svg {
    width: 15px;
    height: 15px;
}
::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #A2A2A2;
}
:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #A2A2A2;
    opacity: 1;
}
::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #A2A2A2;
    opacity: 1;
}
:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #A2A2A2;
}
::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #A2A2A2;
}

::placeholder {
    /* Most modern browsers support this now. */
    color: #A2A2A2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    font-family: "Poppins";
    color: #fff;
}
h1 {
    font-size: 45px;
}
h2 {
    font-size: 36px;
}
h3 {
    font-size: 30px;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 20px;
}
h6 {
    font-size: 16px;
}
.edrea_tm_all_wrap {
    width: 100%;
    min-height: 100vh;
    clear: both;
    float: left;
    position: relative;
}
.edrea_tm_all_wrap,
.edrea_tm_all_wrap * {
    -webkit-box-sizing: border-box;
    /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;
    /* Firefox, other Gecko */
    box-sizing: border-box;
    /* Opera/IE 8+ */
}
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    display: flex;
}
#preloader:after,
#preloader:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    background-color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#preloader:after {
    left: auto;
    right: 0;
}
#preloader .loader_line {
    margin: auto;
    width: 1px;
    height: 250px;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}
.loader_line:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #000;
    -webkit-animation: lineheight 1000ms ease-in-out 0s forwards;
    -o-animation: lineheight 1000ms ease-in-out 0s forwards;
    animation: lineheight 1000ms ease-in-out 0s forwards;
}
.loader_line:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #ddd;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-animation: lineround 1200ms linear 0s infinite;
    -o-animation: lineround 1200ms linear 0s infinite;
    animation: lineround 1200ms linear 0s infinite;
    animation-delay: 2000ms;
}

@keyframes lineheight {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

@keyframes lineround {
    0% {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%);
    }
}

/*hiding all*/
.preloaded .loader_line:after {
    opacity: 0;
}
.preloaded .loader_line {
    opacity: 0;
    height: 100%!important;
}
.preloaded:after,
.preloaded:before {
    -webkit-animation: preloadedzero 300ms ease-in-out 500ms forwards;
    -o-animation: preloadedzero 300ms ease-in-out 500ms forwards;
    animation: preloadedzero 300ms ease-in-out 500ms forwards;
}
@keyframes preloadedzero {
    0% {
        width: 50%;
    }
    100% {
        width: 0;
    }
}

.waves {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

/*---------------------------------------------------*/
/*	02) FIMARx MOBILE MENU
/*---------------------------------------------------*/

.edrea_tm_topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: #000;
    z-index: 10;
    display: none;
}
.edrea_tm_topbar .topbar_inner {
    width: 100%;
    height: 100%;
    clear: both;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.edrea_tm_topbar .logo img {
    max-width: 100px;
    max-height: 40px;
}
.edrea_tm_topbar .hamburger {
    padding: 0;
}
.edrea_tm_topbar .hamburger-inner,
.edrea_tm_topbar .hamburger-inner:after,
.edrea_tm_topbar .hamburger-inner:before {
    width: 30px;
    height: 2px;
    background-color: #fff;
}
.edrea_tm_topbar .hamburger.is-active .hamburger-inner,
.edrea_tm_topbar .hamburger.is-active .hamburger-inner:after,
.edrea_tm_topbar .hamburger.is-active .hamburger-inner:before {
    background-color: #fff;
}
.edrea_tm_topbar .trigger {
    position: relative;
    top: 5px;
}
.edrea_tm_topbar .hamburger-box {
    width: 30px;
}
.edrea_tm_mobile_menu {
    position: fixed;
    top: 50px;
    right: -200px;
    height: 100vh;
    width: 200px;
    z-index: 15;
    background-color: #000;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.edrea_tm_mobile_menu.opened {
    right: 0;
}
.edrea_tm_mobile_menu .inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: right;
    padding: 50px 20px 20px;
}
.edrea_tm_mobile_menu .menu_list {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
}
.edrea_tm_mobile_menu .menu_list ul {
    margin: 0;
    list-style-type: none;
}
.edrea_tm_mobile_menu .menu_list ul li {
    margin: 0 0 7px;
}
.edrea_tm_mobile_menu .menu_list ul li a {
    text-decoration: none;
    color: #fff;
    font-family: "Poppins";
}
.edrea_tm_mobile_menu .menu_list ul li.active a {
    color: var(--main-color);
}

/*---------------------------------------------------*/
/*	03) FIMARx HEADER
/*---------------------------------------------------*/

.edrea_tm_header {
    position: fixed;
    width: 900px;
    transform: translateX(-50%);
    left: 50%;
}
.edrea_tm_header .header_inner {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.edrea_tm_header .logo img {
    max-width: 100px;
}
.edrea_tm_header .menu ul {
    margin: 0;
    list-style-type: none;
}
.edrea_tm_header .menu ul li {
    margin: 0 30px 0 0;
    display: inline-block;
}
.edrea_tm_header .menu ul li:last-child {
    margin-right: 0;
}
.edrea_tm_header .menu ul li a {
    text-decoration: none;
    color: #fff;
    font-family: "Poppins";
    font-weight: 500;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.edrea_tm_header .menu ul li.active a {
    color: var(--main-color);
}
.edrea_tm_header .menu ul li a:hover {
    color: var(--main-color);
}

/*---------------------------------------------------*/
/*	04) FIMARx CONTENT
/*---------------------------------------------------*/

.edrea_tm_content {
    position: fixed;
    width: 900px;
    top: 100px;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
}
.edrea_tm_section {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    overflow-y: scroll;

    opacity: 0;
    visibility: hidden;
    z-index: 8;
    transition: visibility 0.5s linear, opacity 0s linear;
    -moz-transition: visibility 0.5s linear, opacity 0s linear;
    -webkit-transition: visibility 0.5s linear, opacity 0s linear;
    -o-transition: visibility 0.5s linear, opacity 0s linear;
}
.edrea_tm_section.animated {
    opacity: 1;
    visibility: visible;
    z-index: 9;
}
.edrea_tm_section.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}
.edrea_tm_section.hidden {
    opacity: 0;
    visibility: hidden;
    z-index: 9;
}
.edrea_tm_section::-webkit-scrollbar {
    width: 0;
}
.edrea_tm_section .section_inner {
    position: relative;
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
}

/*---------------------------------------------------*/
/*	05) FIMARx HOME
/*---------------------------------------------------*/

.edrea_tm_home {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    text-align: center;
}
.edrea_tm_home .name {
    color: #fff;
    font-size: 72px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.edrea_tm_home .job {
    font-size: 25px;
    font-weight: 500;
    color: #A2A2A2;
    margin-bottom: 40px;
}
.edrea_tm_home .job b {
    color: #fff;
    font-weight: 600;
}
.edrea_tm_button {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    position: relative;
    z-index: 5;
}
.edrea_tm_button a {
    text-decoration: none;
    color: #fff;
    display: inline-block;
    background-color: var(--main-color);
    padding: 10px 40px;
    text-align: center;
    border-radius: 50px;
    font-family: "Poppins";

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.edrea_tm_button a:hover {
    background-color: #fff;
    color: #000;
}
.edrea_tm_button.full a {
    display: block;
}

/*---------------------------------------------------*/
/*	06) FIMARx ABOUT
/*---------------------------------------------------*/

.edrea_tm_about {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    display: flex;
}
.edrea_tm_about .left {
    width: 40%;
}
.edrea_tm_about .left .image {
    position: relative;
}
.edrea_tm_about .left .image img {
    position: relative;
    min-width: 100%;
    opacity: 0;
}
.edrea_tm_about .left .image .main {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}
.edrea_tm_about .right {
    width: 60%;
    padding-left: 100px;
}
.edrea_tm_about .right .short {
    width: 100%;
    float: left;
    margin-bottom: 24px;
    border-bottom: 1px dashed rgba(255,255,255,.15);
    padding-bottom: 30px;
}
.edrea_tm_about .right .short .name {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 40px;
    font-weight: 700;
}
.edrea_tm_about .right .short .job {
    font-size: 18px;
    font-weight: 400;
    color: #A2A2A2;
}
.edrea_tm_about .right .short .job b {
    color: #fff;
    font-weight: 400;
}
.edrea_tm_about .right .text {
    width: 100%;
    float: left;
    margin-bottom: 36px;
}
.edrea_tm_about .right .text p {
    margin-bottom: 15px;
}
.edrea_tm_about .right .text p:last-child {
    margin-bottom: 0;
}
.edrea_tm_about .right .text span {
    color: #fff;
}
.coloring {
    color: var(--main-color);
}
.edrea_tm_modalbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 20;
    background-color: rgba(0,0,0,1);
    opacity: 0;
    visibility: hidden;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.edrea_tm_modalbox.opened {
    opacity: 1;
    visibility: visible;
}
.edrea_tm_modalbox .box_inner {
    position: absolute;
    top: 70px;
    bottom: 70px;
    width: 800px;
    left: 50%;
    border-radius: 10px;
    transform: translateX(-50%);
    background-color: #222;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    margin-top: -20px;
    transition-delay: 0.3s;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.edrea_tm_modalbox.opened .box_inner {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
.edrea_tm_modalbox .close {
    position: fixed;
    left: 100%;
    top: 0;
    margin-left: 30px;
    z-index: 10;
}
.edrea_tm_modalbox .close a {
    display: block;
    width: 40px;
    height: 40px;
    text-decoration: none;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 10px;
    position: relative;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.edrea_tm_modalbox .close a:hover {
    border-radius: 100%;
}
.edrea_tm_modalbox .close a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.edrea_tm_modalbox .description_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    float: left;
    position: relative;
    overflow: hidden;
    overflow-y: scroll;
}
.edrea_tm_modalbox .description_wrap:before {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: #222;
    z-index: 3;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.edrea_tm_modalbox .description_wrap:after {
    position: fixed;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-color: #222;
    z-index: 3;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.edrea_tm_modalbox .description_wrap::-webkit-scrollbar {
    width: 0;
}
.edrea_tm_hidden_content {
    position: absolute;
    z-index: -111;
    visibility: hidden;
    opacity: 0;
    display: none;
}
.edrea_tm_modalbox .about_popup_details {
    width: 100%;
    height: 100%;
    clear: both;
    float: left;
    position: relative;
}
.edrea_tm_modalbox .about_popup_details .left {
    position: fixed;
    width: 40%;
    left: 0;
    top: 0;
    bottom: 0;
    border-right: 1px dashed rgba(255,255,255,.1);
    z-index: 5;
}
.edrea_tm_modalbox .about_popup_details .left .left_inner {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    position: relative;
    padding: 50px 40px;
}
.edrea_tm_modalbox .about_popup_details .left .author {
    width: 100%;
    float: left;
    margin-bottom: 35px;
    text-align: center;
    overflow: hidden;
}
.edrea_tm_modalbox .about_popup_details .left .avatar_image {
    position: relative;
    margin: 0 auto 25px;
    max-width: 50%;
}
.edrea_tm_modalbox .about_popup_details .left .avatar_image img {
    position: relative;
    opacity: 0;
    min-width: 100%;
}
.edrea_tm_modalbox .about_popup_details .left .avatar_image .main {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 100%;
}
.edrea_tm_modalbox .about_popup_details .left .short {
    width: 100%;
    float: left;
}
.edrea_tm_modalbox .about_popup_details .left .short .name {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 7px;
}
.edrea_tm_modalbox .about_popup_details .left .short .job {
    font-weight: 400;
    color: #A2A2A2;
    font-size: 15px;

}
.edrea_tm_modalbox .about_popup_details .left .short .job b {
    color: #fff;
    font-weight: 400;
}
.edrea_tm_modalbox .about_popup_details .left .list {
    width: 100%;
    float: left;
    margin-bottom: 35px;
}
.edrea_tm_modalbox .about_popup_details .left .list ul {
    margin: 0;
    list-style-type: none;
}
.edrea_tm_modalbox .about_popup_details .left .list ul li {
    margin: 0;
    width: 100%;
    float: left;
    border-bottom: 1px dashed rgba(255,255,255,.15);
    padding-bottom: 7px;
    margin-bottom: 7px;
}
.edrea_tm_modalbox .about_popup_details .left .list ul li:last-child {
    border: none;
    padding: 0;
    margin: 0;
}
.edrea_tm_modalbox .about_popup_details .left .list ul li .list_inner {
    margin: 0;
    width: 100%;
    float: left;
    position: relative;
}
.edrea_tm_modalbox .about_popup_details .left .list ul li i {
    color: var(--main-color);
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.edrea_tm_modalbox .about_popup_details .left .list ul li span {
    padding-left: 37px;
}
.edrea_tm_modalbox .about_popup_details .left .list ul li a {
    text-decoration: none;
    color: #fff;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.edrea_tm_modalbox .about_popup_details .left .list ul li a:hover {
    color: var(--main-color);
}
.edrea_tm_modalbox .about_popup_details .right {
    width: 100%;
    position: absolute;
    padding-left: 40%;
    top: 0;
    right: 0;
    bottom: 0;
}
.edrea_tm_modalbox .about_popup_details .right .right_inner {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    position: relative;
    padding: 50px 40px;
}
.edrea_tm_modalbox .about_popup_details .biography {
    width: 100%;
    float: left;
    margin-bottom: 55px;
}
.edrea_tm_modalbox .about_popup_details .about_title {
    width: 100%;
    float: left;
    position: relative;
    overflow: hidden;
    border-bottom: 1px dashed rgba(255,255,255,.15);
    padding-bottom: 15px;
}
.edrea_tm_modalbox .about_popup_details .about_title h3 {
    font-size: 18px;
    font-weight: 600;
}
.edrea_tm_modalbox .about_popup_details .biography .text {
    width: 100%;
    float: left;
    margin-top: 29px;
}
.edrea_tm_modalbox .about_popup_details .biography .text span {
    color: #fff;
}
.edrea_tm_modalbox .about_popup_details .prog_skill {
    width: 100%;
    float: left;
    margin-bottom: 62px;
}
.oki_progress {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    margin-top: 30px;
}
.progress_inner {
    width: 100%;
    margin-bottom: 15px;
}
.progress_inner:last-child {
    margin-bottom: 0;
}
.progress_inner > span {
    margin: 0 0 5px;
    width: 100%;
    display: block;
    text-align: left;
}
.progress_inner span.number {
    float: right;
}
.progress_inner .background {
    background: rgba(255,255,255,.15);
    width: 100%;
    min-width: 100%;
    position: relative;
    height: 2px;
}
.progress_inner .background .bar_in {
    height: 100%;
    background: var(--main-color);
    width: 0;
    overflow: hidden;
}
.progress_inner .background .bar {
    height: 100%;
    width: 0;
}
.progress_inner .background .bar.open {
    -webkit-animation: wow 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
    /* Safari 4+ */
    -moz-animation: wow 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
    /* Fx 5+ */
    animation: wow 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
    /* IE 10+ */
    width: 100%;
}

@-webkit-keyframes wow {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
@-moz-keyframes wow {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
@keyframes wow {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.edrea_tm_modalbox .about_popup_details .lang_skill {
    width: 100%;
    float: left;
    margin-bottom: 34px;
}
.circular_progress_bar {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    margin-top: 40px;
}
.circular_progress_bar ul {
    margin: 0 0 0 -20px;
    list-style-type: none;
}
.circular_progress_bar ul li {
    margin: 0 0 20px;
    width: 33.3333%;
    float: left;
    padding-left: 20px;
}
.circular_progress_bar .myCircle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    /* Initial background set by JS animation */
    background: conic-gradient(#fa5b0f 0%, rgba(255,255,255,0.08) 0%);
}
/* Inner mask — creates ring effect (must match popup box_inner background) */
.circular_progress_bar .myCircle::after {
    content: '';
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    background: #222;
}

.circular_progress_bar .list_inner {
    width: 100%;
    position: relative;
    text-align: center;
}

.circular_progress_bar .title {
    width: 100%;
    max-width: 110px;
    text-align: center;
}
.circular_progress_bar .number {
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    pointer-events: none;
}
.edrea_tm_modalbox .about_popup_details .service {
    width: 100%;
    float: left;
    margin-bottom: 55px;
}
.edrea_tm_modalbox .about_popup_details .service .list {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    margin-top: 29px;
}
.edrea_tm_modalbox .about_popup_details .service .list ul {
    margin: 0;
    list-style-type: none;
}
.edrea_tm_modalbox .about_popup_details .service .list ul li {
    margin: 0 0 8px;
    width: 100%;
    float: left;
    position: relative;
    padding-left: 25px;
}
.edrea_tm_modalbox .about_popup_details .service .list ul li:last-child {
    margin-bottom: 0;
}
.edrea_tm_modalbox .about_popup_details .service .list ul li i {
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
    font-size: 16px;
    margin-top: 1px;
}
.edrea_tm_modalbox .about_popup_details .timeline {
    width: 100%;
    float: left;
    margin-bottom: 55px;
}
.edrea_tm_modalbox .about_popup_details .timeline .list {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    margin-top: 45px;
}
.edrea_tm_modalbox .about_popup_details .timeline .list ul {
    margin: 0;
    list-style-type: none;
    position: relative;
    display: inline-block;
    padding-top: 10px;
}
.edrea_tm_modalbox .about_popup_details .timeline .list ul:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,.15);
}
.edrea_tm_modalbox .about_popup_details .timeline .list ul li {
    margin: 0;
    width: 100%;
    float: left;
    position: relative;
    padding-left: 20px;
    padding-bottom: 45px;
}
.edrea_tm_modalbox .about_popup_details .timeline .list ul li:last-child {
    padding-bottom: 0;
}
.edrea_tm_modalbox .about_popup_details .timeline .list ul li:before {
    content: "";
    position: absolute;
    height: 12px;
    width: 12px;
    background: var(--main-color);
    border-radius: 100%;
    border: solid 1px var(--main-color);
    left: -6px;
    top: 12px;
}
.edrea_tm_modalbox .about_popup_details .timeline .list ul li .list_inner {
    width: 100%;
    height: auto;
    clear: both;
    display: flex;
    position: relative;
}
.edrea_tm_modalbox .about_popup_details .timeline .list ul li .time {
    width: 50%;
    padding-right: 15px;
}
.edrea_tm_modalbox .about_popup_details .timeline .list ul li .time span {
    display: inline-block;
    padding: 5px 25px;
    background-color: rgba(255,255,255,.05);
    border-radius: 50px;
    font-size: 14px;
    white-space: nowrap;
}
.edrea_tm_modalbox .about_popup_details .timeline .list ul li .place {
    width: 50%;
    padding-left: 15px;
}
.edrea_tm_modalbox .about_popup_details .timeline .list ul li .place h3 {
    font-size: 15px;
    margin-bottom: 2px;
}
.edrea_tm_modalbox .about_popup_details .timeline .list ul li .place span {
    font-size: 14px;
}
.edrea_tm_modalbox .about_popup_details .partners {
    width: 100%;
    float: left;
    margin-bottom: 62px;
}
.edrea_tm_modalbox .about_popup_details .partners .list {
    width: 100%;
    float: left;
    clear: both;
    overflow: hidden;
    border: 2px solid #333;
    margin-top: 40px;
}
.edrea_tm_modalbox .about_popup_details .partners .list ul {
    margin: -2px -10px -2px -2px;
    list-style-type: none;
    padding-top: 2px;
    float: left;
    padding-left: 2px;
    min-width: calc(100% + 12px);
}
.edrea_tm_modalbox .about_popup_details .partners .list ul li {
    margin: 0;
    float: left;
    width: 50%;
    border: 2px solid #333;
    text-align: center;
    height: 130px;
    line-height: 130px;
    position: relative;
    margin-top: -2px;
    margin-left: -2px;
    overflow: hidden;
}
.edrea_tm_modalbox .about_popup_details .partners .list ul li img {
    max-width: 65%;
    max-height: 65px;
}
.edrea_tm_modalbox .about_popup_details .partners .list ul li .list_inner {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    opacity: 0.5;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.edrea_tm_modalbox .about_popup_details .partners .list ul li .list_inner:hover {
    opacity: 1;
}
.edrea_tm_modalbox .about_popup_details .testimonial {
    width: 100%;
    float: left;
}
.edrea_tm_modalbox .about_popup_details .testimonial .list {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    margin-top: 54px;
}
.edrea_tm_modalbox .about_popup_details .testimonial .list ul {
    margin: 0;
    list-style-type: none;
    cursor: e-resize;
}
.edrea_tm_modalbox .about_popup_details .testimonial .list ul li {
    margin: 0;
}
.edrea_tm_modalbox .about_popup_details .testimonial .list ul li .list_inner {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    position: relative;
}
.edrea_tm_modalbox .about_popup_details .testimonial .list ul li .text {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    position: relative;
    border: 2px solid #333;
    padding: 40px;
    margin-bottom: 30px;
}
.edrea_tm_modalbox .about_popup_details .testimonial .list ul li .text:before {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    top: 100%;
    left: 50px;
    border: solid transparent;
    border-top-color: #333;
    border-width: 18px 18px 0 0;
}
.edrea_tm_modalbox .about_popup_details .testimonial .list ul li .text:after {
    position: absolute;
    content: "";
    top: 100%;
    left: 50px;
    height: 0;
    width: 0;
    border: solid transparent;
    border-top-color: #222;
    border-width: 14px 13px 0 0;
    margin-left: 2px;
}
.edrea_tm_modalbox .about_popup_details .testimonial .list ul li .text i {
    position: absolute;
    z-index: 1;
    font-size: 30px;
    top: -29px;
    left: 50px;
    color: var(--main-color);
}
.edrea_tm_modalbox .about_popup_details .testimonial .details {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    display: flex;
    align-items: center;
    padding-left: 20px;
}
.edrea_tm_modalbox .about_popup_details .testimonial .details .image {
    position: relative;
    width: 60px;
    height: 60px;
}
.edrea_tm_modalbox .about_popup_details .testimonial .details .image .main {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 100%;
}
.edrea_tm_modalbox .about_popup_details .testimonial .details .info {
    padding-left: 20px;
}
.edrea_tm_modalbox .about_popup_details .testimonial .details .info h3 {
    font-size: 15px;
    margin-bottom: 2px;
}
.edrea_tm_modalbox .about_popup_details .testimonial .details .info span {
    font-size: 14px;
}
.edrea_tm_modalbox .about_popup_details .testimonial .owl-carousel .owl-stage-outer {
    overflow: hidden;
}
.edrea_tm_modalbox .about_popup_details .testimonial .owl-carousel .owl-stage-outer {
    overflow: visible;
}
.edrea_tm_modalbox .about_popup_details .testimonial .owl-item.active {
    opacity: 1;
}
.edrea_tm_modalbox .about_popup_details .testimonial .owl-item {
    opacity: 0;
}

/*---------------------------------------------------*/
/*	07) EDREA PORTFOLIO
/*---------------------------------------------------*/

.edrea_tm_main_title {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    border-bottom: 1px dashed rgba(255,255,255,.15);
    padding-bottom: 20px;
}
.edrea_tm_main_title h3 {
    font-weight: 700;
}
.edrea_tm_portfolio {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
}
.edrea_tm_portfolio .portfolio_list {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding-top: 60px;
}
.edrea_tm_portfolio .portfolio_list .list_inner {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.edrea_tm_portfolio .portfolio_list .image {
    position: relative;
    overflow: hidden;
}
.edrea_tm_portfolio .portfolio_list .image img {
    position: relative;
    min-width: 100%;
    opacity: 0;
}
.edrea_tm_portfolio .portfolio_list .image .main {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: scale(1)translateZ(0);

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.edrea_tm_portfolio .portfolio_list .details {
    position: absolute;
    z-index: 2;
    bottom: -100px;
    left: 20px;
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 0 20px rgba(0,0,0,.2);
    border-radius: 5px;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.edrea_tm_portfolio .portfolio_list .details h3 {
    color: #000;
    font-size: 15px;
    margin-bottom: 2px;
}
.edrea_tm_portfolio .portfolio_list .details span {
    color: #777;
    font-size: 14px;
}
.edrea_tm_portfolio .portfolio_list .list_inner:hover .details {
    bottom: 20px;
}
.edrea_tm_portfolio .portfolio_list .list_inner:hover .image .main {
    transform: scale(1.1)translateZ(0);
}
.edrea_tm_full_link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
}
.edrea_tm_swiper_progress {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    clear: both;
    margin-top: 32px;
}
.edrea_tm_swiper_progress .my_pagination_in {
    float: left;
    position: relative;
}
.edrea_tm_swiper_progress span {
    display: block;
    float: left;
    font-size: 16px;
    letter-spacing: 0;
    color: #fff;
    height: 22px;
    line-height: 22px;
}
.edrea_tm_swiper_progress .pagination_progress {
    width: 100px;
    margin: 0 20px;
    position: relative;
}
.edrea_tm_swiper_progress .pagination_progress .all {
    height: 1px;
    width: 100%;
    position: absolute;
    z-index: 5;
    top: 0;
    top: 50%;
    left: 0;
    background-color: rgba(255,255,255,.2);
}
.edrea_tm_swiper_progress .pagination_progress .all span {
    height: 1px;
    width: 100%;
    background-color: rgba(255,255,255,.5);
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    transform-origin: left top;
    transform: scale(0);

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.edrea_tm_swiper_progress .my_navigation {
    position: relative;
    left: 0;
}
.edrea_tm_swiper_progress .my_navigation ul {
    margin: 0;
    list-style-type: none;
}
.edrea_tm_swiper_progress .my_navigation ul li {
    margin: 0 10px 0 0;
    display: inline-block;
}
.edrea_tm_swiper_progress .my_navigation ul li:last-child {
    margin-right: 0;
}
.edrea_tm_swiper_progress .my_navigation ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.edrea_tm_swiper_progress .my_navigation ul li a:hover {
    color: var(--main-color);
}
.edrea_tm_modalbox .portfolio_popup_details {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding: 50px 50px 20px;
}
.edrea_tm_modalbox .portfolio_popup_details .top_image {
    position: relative;
    margin-bottom: 25px;
}
.edrea_tm_modalbox .portfolio_popup_details .top_image img {
    position: relative;
    opacity: 0;
    min-width: 100%;
}
.edrea_tm_modalbox .portfolio_popup_details .top_image .main {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}
.edrea_tm_modalbox .portfolio_popup_details .portfolio_main_title {
    width: 100%;
    float: left;
    margin-bottom: 25px;
}
.edrea_tm_modalbox .portfolio_popup_details .portfolio_main_title h3 {
    font-size: 25px;
    margin-bottom: 3px;
}
.edrea_tm_modalbox .portfolio_popup_details .portfolio_main_title a {
    color: #A2A2A2;
    text-decoration: none;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.edrea_tm_modalbox .portfolio_popup_details .portfolio_main_title a:hover {
    color: #fff;
}
.edrea_tm_modalbox .portfolio_popup_details .text {
    width: 100%;
    float: left;
    margin-bottom: 42px;
}
.edrea_tm_modalbox .portfolio_popup_details .text p {
    margin-bottom: 10px;
}
.edrea_tm_modalbox .portfolio_popup_details .text p:last-child {
    margin-bottom: 0;
}
.edrea_tm_modalbox .portfolio_popup_details .additional_images {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
}
.edrea_tm_modalbox .portfolio_popup_details .additional_images ul {
    margin: 0 0 0 -30px;
    list-style-type: none;
}
.edrea_tm_modalbox .portfolio_popup_details .additional_images ul li {
    margin: 0 0 30px;
    float: left;
    width: 50%;
    padding-left: 30px;
}
.edrea_tm_modalbox .portfolio_popup_details .additional_images ul li:nth-child(3n-2) {
    width: 100%;
}
.edrea_tm_modalbox .portfolio_popup_details .additional_images ul li .list_inner {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    position: relative;
}
.edrea_tm_modalbox .portfolio_popup_details .additional_images ul li .image {
    position: relative;
}
.edrea_tm_modalbox .portfolio_popup_details .additional_images ul li .image img {
    opacity: 0;
    min-width: 100%;
}
.edrea_tm_modalbox .portfolio_popup_details .additional_images ul li .image .main {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

/*---------------------------------------------------*/
/*	08) EDREA NEWS
/*---------------------------------------------------*/

.edrea_tm_news {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
}
.edrea_tm_news .news_list {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding-top: 60px;
}
.edrea_tm_news .news_list .list_inner {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.edrea_tm_news .news_list .image {
    position: relative;
    overflow: hidden;
}
.edrea_tm_news .news_list .image img {
    position: relative;
    opacity: 0;
    min-width: 100%;
}
.edrea_tm_news .news_list .image .main {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: scale(1)translateZ(0);

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.edrea_tm_news .news_list .image:hover .main {
    transform: scale(1.1)translateZ(0);
}
.edrea_tm_news .news_list .details {
    width: 100%;
    float: left;
    background-color: #222;
    padding: 30px 20px 27px;
}
.edrea_tm_news .news_list h3 {
    font-size: 15px;
    margin-bottom: 4px;
}
.edrea_tm_news .news_list h3 a {
    text-decoration: none;
    color: #fff;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.edrea_tm_news .news_list h3 a:hover {
    color: var(--main-color);
}
.edrea_tm_news .news_list span a {
    text-decoration: none;
    color: #A2A2A2;
    font-size: 14px;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.edrea_tm_news .news_list span a:hover {
    color: #fff;
}
.edrea_tm_modalbox .news_popup_details {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    padding: 50px 50px 42px;
}
.edrea_tm_modalbox .news_popup_details .top_image {
    position: relative;
    margin-bottom: 25px;
}
.edrea_tm_modalbox .news_popup_details .top_image img {
    position: relative;
    opacity: 0;
    min-width: 100%;
}
.edrea_tm_modalbox .news_popup_details .top_image .main {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}
.edrea_tm_modalbox .news_popup_details .news_main_title {
    width: 100%;
    float: left;
    margin-bottom: 25px;
}
.edrea_tm_modalbox .news_popup_details .news_main_title h3 {
    font-size: 25px;
    margin-bottom: 3px;
}
.edrea_tm_modalbox .news_popup_details .news_main_title a {
    color: #A2A2A2;
    text-decoration: none;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.edrea_tm_modalbox .news_popup_details .news_main_title a:hover {
    color: #fff;
}
.edrea_tm_modalbox .news_popup_details .text {
    width: 100%;
    float: left;
}
.edrea_tm_modalbox .news_popup_details .text p {
    margin-bottom: 10px;
}
.edrea_tm_modalbox .news_popup_details .text p:last-child {
    margin-bottom: 0;
}

/*---------------------------------------------------*/
/*	09) EDREA CONTACT
/*---------------------------------------------------*/

.edrea_tm_contact {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
}
.edrea_tm_contact .wrapper {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    display: flex;
    padding-top: 60px;
}
.edrea_tm_contact .wrapper .left {
    width: 50%;
    padding-right: 50px;
}
.edrea_tm_contact .wrapper .left ul {
    margin: 0;
    list-style-type: none;
}
.edrea_tm_contact .wrapper .left ul li {
    margin: 0 0 20px;
    width: 100%;
    float: left;
}
.edrea_tm_contact .wrapper .left ul li:last-child {
    margin-bottom: 0;
}
.edrea_tm_contact .wrapper .left ul li .list_inner {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    position: relative;
    background-color: #222;
    border-radius: 10px;
    padding: 10px;
}
.edrea_tm_contact .wrapper .left ul li i {
    color: var(--main-color);
    font-size: 16px;
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: 1px;
    transform: translateY(-50%);
}
.edrea_tm_contact .wrapper .left ul li span {
    display: inline-block;
    padding-left: 48px;
}
.edrea_tm_contact .wrapper .left ul li a {
    text-decoration: none;
    color: #fff;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.edrea_tm_contact .wrapper .left ul li a:hover {
    color: var(--main-color);
}
.edrea_tm_contact .wrapper .right {
    width: 50%;
    padding-left: 50px;
}
.edrea_tm_contact .fields {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
}
.edrea_tm_contact .fields .first {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}
.edrea_tm_contact .fields .first ul {
    margin: 0 0 0 -20px;
    list-style-type: none;
}
.edrea_tm_contact .fields .first ul li {
    margin: 0;
    width: 50%;
    padding-left: 20px;
    float: left;
}
.edrea_tm_contact .fields .first ul li .list_inner {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
    background-color: #222;
    border-radius: 10px;
}
.edrea_tm_contact .fields .first ul li input {
    width: 100%;
    height: 45px;
    background-color: transparent;
    border: none;
    color: #A2A2A2;
    padding: 20px;
    font-family: "Poppins";
}
.edrea_tm_contact .fields .first ul li input:focus {
    outline: none;
}
.edrea_tm_contact .fields .last {
    width: 100%;
    float: left;
    background-color: #222;
    border-radius: 10px;
    margin-bottom: 20px;
}
.edrea_tm_contact .fields .last textarea {
    width: 100%;
    height: 108px;
    background-color: transparent;
    border: none;
    color: #A2A2A2;
    resize: none;
    padding: 20px;
    font-family: "Poppins";
}
.edrea_tm_contact .fields .last textarea:focus {
    outline: none;
}
.edrea_tm_contact .empty_notice {
    color: #F52225;
    margin-bottom: 7px;
    display: none;
    text-align: left;
    font-weight: 500;
}
.edrea_tm_contact .contact_error {
    color: #F52225;
    text-align: left;
    font-weight: 500;
}
.edrea_tm_contact .returnmessage {
    color: #3A00FF;
    text-align: left;
    font-weight: 500;
}

/*---------------------------------------------------*/
/*	10) CAVANI MAGIC CURSOR
/*---------------------------------------------------*/

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}
.cursor-inner {
    margin-left: -3px;
    margin-top: -3px;
    width: 6px;
    height: 6px;
    z-index: 100;
    background-color: var(--main-color);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.cursor-inner.cursor-hover {
    margin-left: -40px;
    margin-top: -40px;
    width: 80px;
    height: 80px;
    background-color: var(--main-color);
    opacity: 0.3;
}
.cursor-outer {
    margin-left: -15px;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    border: 2px solid var(--main-color);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 100;
    opacity: 0.5;
    -webkit-transition: all 0.08s ease-out;
    transition: all 0.08s ease-out;
}
.cursor-outer.cursor-hover {
    opacity: 0;
}
.edrea_tm_all_wrap[data-magic-cursor="hide"] .mouse-cursor {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: -1111;
}

/*---------------------------------------------------*/
/*	08) SHANE SETTINGS
/*---------------------------------------------------*/

.edrea_tm_settings {
    position: fixed;
    z-index: 10;
    top: 20%;
    right: -200px;
    width: 200px;
    background-color: #222;
    padding: 40px 20px 33px 30px;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.edrea_tm_settings.opened {
    right: 0;
}
.edrea_tm_settings .wrapper {
    width: 100%;
    height: auto;
    clear: both;
    float: left;
}
.edrea_tm_settings .icon {
    position: absolute;
    top: 0;
    right: 100%;
    background-color: #222;
    padding: 12px 12px 4px;
}
.edrea_tm_settings .icon .svg {
    color: #fff;
    width: 25px;
    height: 25px;
    animation: fa-spin 2s infinite linear;
}
.edrea_tm_settings .link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
.edrea_tm_settings .title {
    color: #fff;
    font-family: "Poppins";
    font-weight: 600;
    font-size: 14px;
    position: relative;
    display: inline-block;
}
.edrea_tm_settings .title:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,.2);
    left: 0;
    bottom: 0;
}
.edrea_tm_settings .colors {
    margin: 0 0 22px;
    list-style-type: none;
    padding-top: 32px;
}
.edrea_tm_settings .colors li {
    margin: 0;
    display: inline-block;
}
.edrea_tm_settings .colors li a {
    text-decoration: none;
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 100%;
}

.edrea_tm_settings .cursor {
    margin: 0;
    list-style-type: none;
    padding-top: 15px;
}
.edrea_tm_settings .cursor li {
    margin: 0 20px 0 0;
    display: inline-block;
}
.edrea_tm_settings .cursor li a {
    text-decoration: none;
    color: #fff;
    opacity: 0.4;
    font-weight: 600;
}
.edrea_tm_settings .cursor li a.showme {
    opacity: 1;
}
.edrea_tm_settings .cursor li:nth-child(1) a {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 2px solid #fff;
    position: relative;
    display: inline-block;
}
.edrea_tm_settings .cursor li:nth-child(1) a:before {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: #fff;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
}
.edrea_tm_settings .cursor li .svg {
    width: 25px;
    height: 25px;
    color: #fff;
}
.edrea_tm_settings .cursor li:nth-child(2) {
    position: relative;
    top: -2px;
}

/*---------------------------------------------------*/
/*	11) FIMARx MEDIA QUERIES (FOR SMALL DEVICES)
/*---------------------------------------------------*/

@media (max-width: 1400px) {
    body {
        font-size: 15px;
    }
    .edrea_tm_header {
        width: 800px;
    }
    .edrea_tm_header .header_inner {
        padding-top: 30px;
    }
    .edrea_tm_content {
        top: 80px;
        bottom: 80px;
        width: 800px;
    }
    .edrea_tm_home .name {
        font-size: 55px;
        margin-bottom: 17px;
    }
    .edrea_tm_home .job {
        font-size: 23px;
        margin-bottom: 32px;
    }
    .edrea_tm_about .right .short .name {
        font-size: 32px;
        margin-bottom: 12px;
    }
    .edrea_tm_about .right .short {
        margin-bottom: 20px;
        padding-bottom: 25px;
    }
    .edrea_tm_about .right .short {
        margin-bottom: 30px;
    }
    .edrea_tm_about .right {
        padding-left: 75px;
    }
    .edrea_tm_about .right .text {
        margin-bottom: 30px;
    }
    .edrea_tm_modalbox .box_inner {
        width: 700px;
        top: 35px;
        bottom: 35px;
    }
    .edrea_tm_modalbox .close {
        margin-left: 20px;
    }
    .edrea_tm_modalbox .close a {
        width: 35px;
        height: 35px;
    }
    .edrea_tm_modalbox .about_popup_details .left {
        width: 35%;
    }
    .edrea_tm_modalbox .about_popup_details .right {
        padding-left: 35%;
    }
    .edrea_tm_modalbox .about_popup_details .left .left_inner {
        padding: 30px 25px;
    }
    .edrea_tm_modalbox .about_popup_details .left .short .name {
        font-size: 19px;
        margin-bottom: 5px;
    }
    .edrea_tm_modalbox .about_popup_details .left .list ul li {
        padding-bottom: 5px;
        margin-bottom: 5px;
    }
    .edrea_tm_button a {
        padding: 8px 40px;
    }
    .edrea_tm_modalbox .about_popup_details .left .list ul li span {
        padding-left: 32px;
        font-size: 14px;
    }
    .edrea_tm_modalbox .about_popup_details .left .list ul li i {
        font-size: 15px;
    }
    .edrea_tm_contact .wrapper {
        padding-top: 50px;
    }
    .edrea_tm_portfolio .portfolio_list {
        padding-top: 50px;
    }
    .edrea_tm_news .news_list {
        padding-top: 50px;
    }
    .edrea_tm_news .news_list .image {
        max-height: 150px;
    }
    .edrea_tm_news .news_list .details {
        padding: 25px 20px 22px;
    }
}
@media (max-width: 1040px) {
    .mouse-cursor {
        display: none;
    }
    #preloader {
        display: none;
    }
    .edrea_tm_header {
        display: none;
    }
    .edrea_tm_topbar {
        display: block;
    }
    .edrea_tm_content {
        width: 100%;
        top: 70px;
        bottom: 70px;
    }
    .edrea_tm_home {
        padding: 0 20px;
    }
    .edrea_tm_about {
        flex-direction: column;
        align-items: baseline;
        padding: 0 20px;
    }
    .edrea_tm_about .left {
        width: 100%;
        margin-bottom: 40px;
    }
    .edrea_tm_about .right {
        width: 100%;
        padding-left: 0;
    }
    .edrea_tm_about .right .short .name {
        font-size: 30px;
        margin-bottom: 13px;
    }
    .edrea_tm_about .right .short .job {
        font-size: 16px;
    }
    .edrea_tm_about .right .short {
        margin-bottom: 19px;
        padding-bottom: 25px;
    }
    .edrea_tm_modalbox .box_inner {
        width: 700px;
    }
    .edrea_tm_modalbox .close {
        left: auto;
        right: 10px;
        top: 10px;
    }
    .edrea_tm_modalbox .close a {
        width: 30px;
        height: 30px;
    }
    .edrea_tm_modalbox .close a i {
        font-size: 13px;
    }
    .edrea_tm_modalbox .about_popup_details .left {
        position: relative;
        width: 100%;
        border: none;
    }
    .edrea_tm_modalbox .about_popup_details .right {
        position: relative;
        padding: 0;
    }
    .edrea_tm_modalbox .about_popup_details .left .avatar_image {
        max-width: 50%;
    }
    .edrea_tm_modalbox .about_popup_details .right .right_inner {
        padding: 20px 20px 50px;
    }
    .edrea_tm_modalbox .about_popup_details .left .left_inner {
        padding: 50px 20px;
    }
    .edrea_tm_main_title h3 {
        font-size: 26px;
    }
    .edrea_tm_portfolio {
        padding: 0 20px;
    }
    .edrea_tm_swiper_progress {
        margin-top: 25px;
    }
    .edrea_tm_news {
        padding: 0 20px;
    }
    .edrea_tm_news .news_list .image {
        max-height: 100%;
    }
    .edrea_tm_contact {
        padding: 0 20px;
    }
    .edrea_tm_contact .wrapper {
        flex-direction: column;
        align-items: baseline;
    }
    .edrea_tm_contact .wrapper .left {
        padding: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    .edrea_tm_contact .wrapper .right {
        padding: 0;
        width: 100%;
    }
    .edrea_tm_contact .fields .first ul {
        margin: 0;
    }
    .edrea_tm_contact .fields .first ul li {
        width: 100%;
        padding-left: 0;
    }
    .edrea_tm_contact .fields .first ul li:first-child {
        margin-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .edrea_tm_home .name {
        font-size: 40px;
        margin-bottom: 14px;
    }
    .edrea_tm_home .job {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .edrea_tm_modalbox .box_inner {
        width: 300px;
    }
    .edrea_tm_modalbox .close a {
        width: 20px;
        height: 20px;
    }
    .edrea_tm_modalbox .close a i {
        font-size: 10px;
    }
    .circular_progress_bar ul li {
        width: 50%;
    }
    .edrea_tm_modalbox .about_popup_details .timeline .list ul li .list_inner {
        flex-direction: column;
    }
    .edrea_tm_modalbox .about_popup_details .timeline .list ul li .place {
        padding-left: 0;
        width: 100%;
    }
    .edrea_tm_modalbox .about_popup_details .timeline .list ul li .time {
        width: auto;
        padding: 0;
        margin-bottom: 20px;
    }
    .edrea_tm_modalbox .about_popup_details .testimonial .list ul li .text {
        padding: 30px;
    }
    .edrea_tm_modalbox .about_popup_details .testimonial .list ul li .text:before {
        left: 30px;
    }
    .edrea_tm_modalbox .about_popup_details .testimonial .list ul li .text:after {
        left: 30px;
    }
    .edrea_tm_modalbox .about_popup_details .testimonial .details {
        padding-left: 0;
    }
    .edrea_tm_modalbox .portfolio_popup_details {
        padding-left: 20px;
        padding-right: 20px;
    }
    .edrea_tm_modalbox .portfolio_popup_details .portfolio_main_title h3 {
        font-size: 20px;
    }
    .edrea_tm_modalbox .portfolio_popup_details .additional_images ul {
        margin: 0;
    }
    .edrea_tm_modalbox .portfolio_popup_details .additional_images ul li {
        width: 100% !important;
        padding-left: 0;
    }
    .edrea_tm_modalbox .portfolio_popup_details .portfolio_main_title {
        margin-bottom: 18px;
    }
    .edrea_tm_modalbox .news_popup_details {
        padding-left: 20px;
        padding-right: 20px;
    }
    .edrea_tm_modalbox .news_popup_details .news_main_title h3 {
        font-size: 20px;
    }
    .edrea_tm_modalbox .news_popup_details .news_main_title {
        margin-bottom: 18px;
    }
}

/*---------------------------------------------------*/
/*	2026 PREMIUM OVERRIDES
/*---------------------------------------------------*/
body { font-family: 'Inter', sans-serif; background-color: #0b0b10 !important; }
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif !important; font-weight: 700 !important; letter-spacing: -0.5px !important; }

/* Contact Form Input Restyling */
.modern_input_wrap {
    position: relative;
    background-color: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}
.modern_input_wrap:focus-within {
    background-color: rgba(255, 255, 255, 0.06) !important;
    border-color: var(--main-color) !important;
    box-shadow: 0 0 0 4px rgba(250, 91, 15, 0.1) !important; /* Glow matching main color roughly */
}
.modern_input_wrap .input_icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    transition: all 0.3s ease;
}
.modern_input_wrap:focus-within .input_icon {
    color: var(--main-color);
}
.edrea_tm_contact .fields .first ul li input, 
.edrea_tm_contact .fields .last textarea {
    padding-left: 50px !important;
    font-family: 'Inter', sans-serif !important;
}
.edrea_tm_contact .fields .last .input_icon {
    top: 35px;
}
.edrea_tm_contact .fields .last textarea {
    padding-top: 25px !important;
}
.edrea_tm_contact .empty_notice {
    margin-bottom: 15px !important;
}

/* Glass Panels */
.edrea_tm_contact .wrapper .left ul li .list_inner {
    background-color: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.edrea_tm_contact .wrapper .left ul li .list_inner:hover {
    background-color: rgba(255, 255, 255, 0.06) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4) !important;
    border-color: rgba(255, 255, 255, 0.1);
}

/* Modal Inner */
.edrea_tm_modalbox .box_inner {
    background-color: rgba(30, 30, 35, 0.95) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.edrea_tm_modalbox .description_wrap::before,
.edrea_tm_modalbox .description_wrap::after {
    background-color: rgba(30, 30, 35, 0.95) !important;
}

/* Buttons */
.edrea_tm_button a {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(250, 91, 15, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.edrea_tm_button a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(250, 91, 15, 0.5);
    background-color: var(--main-color) !important;
    color: #fff !important;
}

/* About Section Enhancements */
.edrea_tm_about .right .short {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Custom Cursor Fixes for 2026 */
.cursor-inner { mix-blend-mode: difference; background-color: #fff !important; transform-origin: center; }
.cursor-outer { border-color: rgba(255,255,255,0.3) !important; }
.cursor-hover { transform: scale(1.5); opacity: 0.5; }

/* Waves Background Obfuscation & Ambient Glow Fix */
.waves {
    opacity: 0.4;
    filter: blur(30px);
    background: radial-gradient(circle at 50% 50%, rgba(250, 91, 15, 0.08) 0%, rgba(0, 0, 0, 0) 50%);
}


/*---------------------------------------------------*/
/*	2026 FLOATING LABELS ADDON
/*---------------------------------------------------*/
/* Floating Labels (Premium 2026) */
.floating_input_wrap {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}

.floating_input_wrap input,
.floating_input_wrap textarea {
    width: 100%;
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 15px 15px 15px 45px !important;
    font-family: 'Inter', sans-serif !important;
    color: #fff !important;
    outline: none !important;
    transition: all 0.3s ease !important;
    border-radius: 0 !important;
}

.floating_input_wrap textarea {
    height: 120px !important;
    resize: none;
}

.floating_input_wrap label {
    position: absolute;
    left: 0px;
    top: 15px;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex;
    align-items: center;
}

.floating_input_wrap .input_icon {
    font-size: 16px;
    width: 35px;
    text-align: left;
    transition: all 0.3s ease;
}

.floating_input_wrap input:focus,
.floating_input_wrap textarea:focus,
.floating_input_wrap input:not(:placeholder-shown),
.floating_input_wrap textarea:not(:placeholder-shown) {
    border-bottom-color: var(--main-color) !important;
    box-shadow: 0 1px 0 var(--main-color) !important;
}

.floating_input_wrap input:focus ~ label,
.floating_input_wrap textarea:focus ~ label,
.floating_input_wrap input:not(:placeholder-shown) ~ label,
.floating_input_wrap textarea:not(:placeholder-shown) ~ label {
    top: -24px;
    left: 0px;
    font-size: 13px;
    color: var(--main-color);
    font-weight: 500;
}

.floating_input_wrap input:focus ~ label .input_icon,
.floating_input_wrap textarea:focus ~ label .input_icon,
.floating_input_wrap input:not(:placeholder-shown) ~ label .input_icon,
.floating_input_wrap textarea:not(:placeholder-shown) ~ label .input_icon {
    font-size: 13px;
}

.edrea_tm_contact .fields .first ul li .list_inner.floating_input_wrap,
.edrea_tm_contact .fields .last .list_inner.floating_input_wrap {
    background-color: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/*---------------------------------------------------*/
/*	2026 UI V3 FIXES & CANVAS
/*---------------------------------------------------*/
/* Nav Overrides */
.edrea_tm_header .menu ul {
    display: flex;
    align-items: center;
}
.edrea_tm_header .menu ul li a {
    font-family: 'Outfit', sans-serif !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
}
.edrea_tm_header .menu ul li a i {
    font-size: 16px;
}

/* Swiper Arrow Fix */
.edrea_tm_swiper_progress .my_navigation ul li a {
    overflow: visible !important;
}
.edrea_tm_swiper_progress .my_navigation ul li a i {
    font-size: 14px;
    position: relative;
    top: 1px;
}

/* Particle Canvas Background */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
}


/*---------------------------------------------------*/
/*	V4 HOTFIXES: NAV HITBOX AND CONTACT FORM
/*---------------------------------------------------*/

/* 1. Mobile & Desktop Nav Hitbox Fixes */
.edrea_tm_mobile_menu .menu_list ul li a {
    font-family: 'Outfit', sans-serif !important;
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 20px !important;
    width: 100%;
}
.edrea_tm_header .menu ul li a {
    padding: 15px 20px !important; /* Huge clickable area */
    position: relative;
    z-index: 10;
}

/* 2. Contact Form Background and Alignment Fixes */
.edrea_tm_contact .fields .last {
    background-color: transparent !important; /* Remove the black #222 box */
    padding: 0 !important;
    margin-bottom: 25px !important;
}

.floating_input_wrap label {
    left: 10px !important; /* Push it inward so icon doesn't clip outside */
}

/* Make sure the text area doesn't have an overlapping offset for the icon */
.floating_input_wrap textarea {
    padding-top: 15px !important; /* Match the label top */
}

/* Animation scaling correction for the icon */
.floating_input_wrap input:focus ~ label .input_icon,
.floating_input_wrap textarea:focus ~ label .input_icon,
.floating_input_wrap input:not(:placeholder-shown) ~ label .input_icon,
.floating_input_wrap textarea:not(:placeholder-shown) ~ label .input_icon {
    font-size: 14px !important;
    width: 20px !important;
}

/*---------------------------------------------------*/
/*	V6 PREMIUM CONTACT FORM OVERHAUL
/*---------------------------------------------------*/

.premium_input_container {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
    background: transparent !important;
}

.premium_input_container input,
.premium_input_container textarea {
    width: 100% !important;
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 10px 0px 10px 35px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    color: #fff !important;
    outline: none !important;
    border-radius: 0 !important;
    text-align: left !important;
    box-shadow: none !important;
    height: auto !important;
    line-height: 1.5 !important;
    transition: all 0.3s ease !important;
}

.premium_input_container textarea {
    min-height: 100px !important;
    resize: none !important;
    padding-top: 15px !important;
}

.premium_input_container label {
    position: absolute !important;
    left: 0px !important;
    top: 12px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    pointer-events: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform-origin: left top !important;
}

.premium_input_container .input_icon {
    font-size: 16px !important;
    width: 20px !important;
    text-align: center !important;
}

.premium_input_container input:focus,
.premium_input_container textarea:focus,
.premium_input_container input:not(:placeholder-shown),
.premium_input_container textarea:not(:placeholder-shown) {
    border-bottom-color: var(--main-color) !important;
}

.premium_input_container input:focus ~ label,
.premium_input_container textarea:focus ~ label,
.premium_input_container input:not(:placeholder-shown) ~ label,
.premium_input_container textarea:not(:placeholder-shown) ~ label {
    transform: translateY(-28px) scale(0.85) !important;
    color: var(--main-color) !important;
    font-weight: 600 !important;
}


/*---------------------------------------------------*/
/*	V7 PREMIUM TIMELINE OVERHAUL
/*---------------------------------------------------*/
.premium_timeline_section {
    width: 100%;
    margin-top: 40px;
}

.premium_timeline .timeline_list {
    position: relative;
    padding-left: 0;
    margin-top: 30px;
}

.premium_timeline .timeline_list::before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 7px;
    width: 2px;
    background: rgba(255, 255, 255, 0.08); 
}

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

.premium_timeline .timeline_list ul li {
    margin: 0 0 30px 0;
    position: relative;
    width: 100%;
}

.timeline_card {
    position: relative;
    padding-left: 45px;
    display: flex;
    align-items: flex-start;
}

.timeline_dot {
    position: absolute;
    left: 0; 
    top: 15px; 
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--main-color);
    box-shadow: 0 0 10px var(--main-color), 0 0 20px var(--main-color);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline_card:hover .timeline_dot {
    /* transform: scale(1.3); */
    /* box-shadow: 0 0 15px var(--main-color), 0 0 30px var(--main-color), 0 0 45px var(--main-color); */
    background: #fff;
}

.content_box {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline_card:hover .content_box {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    /* transform: translateY(-4px); */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
}

.content_box .date {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(250, 91, 15, 0.1);
    color: var(--main-color);
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 12px;
}

.content_box h3 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.content_box h4 {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin: 0 0 15px 0;
}

.content_box h4 .location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.content_box p {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bullets span {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    cursor: default;
}

.timeline_card:hover .bullets span {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
}

.bullets span:hover {
    background: rgba(250, 91, 15, 0.15) !important;
    border-color: var(--main-color) !important;
    color: #fff !important;
    transform: translateY(-2px);
}




/* V7 TIMELINE ALIGNMENT PATCH */
.premium_timeline_section {
    position: relative;
}

/* 1. Remove the broken, separated lines */
.premium_timeline .timeline_list::before {
    display: none !important;
}

/* 2. Create the unified, continuous line */
.premium_timeline_section::before {
    content: '';
    position: absolute;
    top: 60px; /* Starts exactly at the first Work Experience dot */
    bottom: 40px; /* Ends right under the last Education dot */
    left: 7px; /* Aligns precisely with the left:0 dot */
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 0;
}

/* 3. Hide the ugly template border-right that was confusing you */
.edrea_tm_modalbox .about_popup_details .left {
    border-right: none !important;
}

/* 4. Provide space for the horizontal title dividers ("the other line") */
.edrea_tm_modalbox .about_popup_details .about_title {
    padding-bottom: 25px !important;
    margin-bottom: 20px !important;
    border-bottom: 1px dashed rgba(255,255,255,.05);
}

/* 5. Mask the vertical line where it intersects Education Timeline heading */
.about_title h3 {
    position: relative;
    z-index: 2;
}
.about_title h3 span {
    background-color: rgba(30, 30, 35, 1);
    padding: 0 10px 0 0;
}


/* V7 FINAL ALIGNMENT FIX */
/* 1. Kill the legacy 1px template line that was starting at the bio */
.edrea_tm_modalbox .about_popup_details .timeline .list ul:before {
    display: none !important;
}

/* 2. Adjust NEW premium line to start EXACTLY at the first dot */
.premium_timeline_section::before {
    content: '';
    position: absolute;
    top: 65px; /* Tuned to start at the Technical Specialist dot */
    bottom: 50px;
    left: 7px;
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

/* 3. Ensure biography and top sections don't have hidden markers */
.edrea_tm_modalbox .about_popup_details .biography,
.edrea_tm_modalbox .about_popup_details .service,
.edrea_tm_modalbox .about_popup_details .prog_skill,
.edrea_tm_modalbox .about_popup_details .lang_skill {
    position: relative;
    border-left: none !important;
}

/* 4. Mask the line where it passes through titles */
.premium_timeline .about_title h3 span {
    background-color: rgba(30, 30, 35, 1);
    padding-right: 15px;
    position: relative;
    z-index: 10;
}


/* V7 FINAL REFINEMENTS */
/* 1. Kill the HARDCODED 40% vertical line on the right container */
.edrea_tm_modalbox .about_popup_details .right .right_inner:before {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
}

/* 2. Fix the Trainer line spacing in Typed.js elements if needed */
.cd-words-wrapper b {
    font-weight: 600;
}

/* V8 FINAL PRECISION ALIGNMENT */
/* 1. Stop the unified line from leaking into top sections */
.premium_timeline_section::before {
    display: none !important; /* Kill the high-level one */
}

.premium_timeline .timeline_list {
    position: relative;
    padding-left: 25px; /* Ensure space for the line and dots */
}

.premium_timeline .timeline_list::before {
    content: '';
    position: absolute;
    top: 5px; /* Starts exactly at the first orange dot center */
    bottom: 5px; /* Ends right at the last dot */
    left: 7px;
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 0;
}

/* 2. Nuclear Clear for all template ghost lines */
.about_popup_details .right .right_inner::before,
.about_popup_details .right::before,
.about_popup_details .biography::before,
.about_popup_details .service::before,
.about_popup_details .prog_skill::before,
.about_popup_details .lang_skill::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
}

/* 3. Ensure headings are above everything */
.about_title h3 {
    position: relative;
    z-index: 5;
    background: transparent;
}
.about_title h3 span {
    background-color: #1e1e23; /* Match your dark theme background exactly */
    padding-right: 15px;
    position: relative;
    z-index: 6;
}

/* V9 - FINAL PREMIUM TIMELINE REWORK */
/* 1. Restore and Enhance the Vertical Track */
.premium_timeline_section::before {
    display: none !important; /* Keep the high-level one hidden */
}

.premium_timeline .timeline_list {
    position: relative;
    padding-left: 20px;
}

.premium_timeline .timeline_list::before {
    content: '';
    position: absolute;
    top: 5px;   /* Center of first dot */
    bottom: 5px; /* Center of last dot */
    left: 7px;
    width: 2px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 114, 13, 0.3) 20%, 
        rgba(255, 114, 13, 0.3) 80%, 
        rgba(255, 255, 255, 0.2) 100%
    );
    box-shadow: 0 0 8px rgba(255, 114, 13, 0.1); /* Subtle glowing track */
    z-index: 0;
}

/* 2. Glassmorphism Card Style */
.timeline_card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.timeline_card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 114, 13, 0.3);
    /* transform: translateX(5px); */
    /* box-shadow: -10px 0 20px -10px rgba(255, 114, 13, 0.2); */
}

/* 3. Dot Refinement */
.timeline_dot {
    width: 14px;
    height: 14px;
    background: #FF720D;
    border: 3px solid #1e1e23; /* Border to help it sit 'on top' of the line */
    border-radius: 50%;
    position: absolute;
    left: 1px;
    top: 25px;
    z-index: 10;
    box-shadow: 0 0 10px rgba(255, 114, 13, 0.6);
}

/* 4. Mask the Track under Section Titles */
.premium_timeline .about_title h3 span {
    background: #1e1e23;
    padding-right: 15px;
    position: relative;
    z-index: 5;
}

/* V10 - THE "MINIMALIST" OVERHAUL - FINAL CLEAN SWEEP */

/* 1. NUCLEAR NEUTRALIZATION of all Template Boxes & Dashed Borders */
.premium_timeline_section, 
.premium_timeline, 
.timeline_card, 
.content_box {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    backdrop-filter: none !important;
}

/* 2. REMAKE THE VERTICAL TRACK (The Sharp Connecting Line) */
.premium_timeline .timeline_list {
    position: relative;
    padding-left: 35px; /* Create a clean gutter for the line */
    margin-top: 15px;
}

.premium_timeline .timeline_list::before {
    content: '';
    position: absolute;
    top: 5px;   /* Center of first Technical Specialist dot */
    bottom: 5px; /* Center of last dot */
    left: 7px;
    width: 2px;
    background: linear-gradient(to bottom, 
        #FF720D 0%, 
        rgba(255, 114, 13, 0.4) 50%, 
        #FF720D 100%
    );
    z-index: 1;
}

/* 3. REFINE THE DOTS */
.timeline_dot {
    width: 14px;
    height: 14px;
    background: #FF720D;
    border: 3px solid #1e1e23;
    border-radius: 50%;
    position: absolute;
    left: 1px;
    top: 5px; /* Align perfectly with line start */
    z-index: 10;
    box-shadow: 0 0 10px rgba(255, 114, 13, 0.4);
}

/* 4. CLEAN TYPOGRAPHY (NO BOXES) */
.timeline_card h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: #fff;
}

.timeline_card h4 {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.timeline_card .date {
    display: inline-block;
    color: #FF720D;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 5. MINIMALIST TAGS (Skill Bullets) */
.bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.bullets span {
    background: rgba(255, 114, 13, 0.1); /* Very subtle tint */
    border: none !important;
    color: rgba(255, 255, 255, 0.8);
    padding: 2px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
    font-weight: 500;
}

/* 6. HIDE MISALIGNED DASHED BORDERS */
.premium_timeline_section {
    border: none !important;
}

/* 7. HIDE GHOST DECORATIVE BLOBS (CYAN) */
.about_popup_details .right .right_inner::before {
    display: none !important;
}

/* 8. MASK THE LINE UNDER HEADINGS (BLACK BACKGROUND) */
.premium_timeline .about_title h3 span {
    background: #1e1e23;
    padding-right: 20px;
    position: relative;
    z-index: 5;
}

/* V11 - REMOVE TIMELINE DOTS COMPLETELY */
.timeline_dot {
    display: none !important;
}

/* Adjust line to start slightly higher since dots are gone */
.premium_timeline .timeline_list::before {
    top: 0;
    left: 0; /* Align to the edge if dots are gone */
}

/* Shift list items slightly left to compensate for missing dots space */
.premium_timeline .timeline_list {
    padding-left: 20px;
}
/* V12 - ICONIC MINIMALIST REWORK - FINAL REFINEMENT */

/* 1. Integrate the Icons onto the Track */
.timeline_icon {
    position: absolute;
    left: -2px; /* Center with the 2px line */
    top: 5px;
    width: 20px;
    height: 20px;
    background: #1e1e23; /* Background to break the line */
    color: #FF720D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    z-index: 10;
    transition: all 0.3s ease;
}


/* 2. Adjust the Track Line to account for Icon gaps */
.premium_timeline .timeline_list::before {
    background: rgba(255, 255, 255, 0.1);
}

/* 3. Refine Card Spacing for Icons */
.premium_timeline .timeline_list {
    padding-left: 35px;
}

/* 4. Ensure Typography Hierarchy is clean */
.timeline_card h3 {
    margin-top: -2px; /* Pull up to align with icon top */
    color: #fff;
    font-size: 1.15rem;
}

.bullets span {
    background: rgba(255, 114, 13, 0.08);
}

/* V12 - ICONIC SIDE LAYOUT (FINAL) */
.timeline_card {
    position: relative;
    padding-left: 45px !important; /* Ensure enough space for side-icons */
    margin-bottom: 40px;
}

.timeline_icon {
    position: absolute;
    left: -1px; /* Align to center of 2px vertical track */
    top: 5px;   /* Vertically align with Date text */
    width: 20px;
    height: 20px;
    background: #1e1e23;
    color: #FF720D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.timeline_card .content_box {
    background: transparent !important;
    border: none !important;
    padding-left: 0 !important;
}

/* V19 - THE ULTIMATE PROJECT SLIDER & VISIBILITY RECOVERY (Final Fix) */

/* 1. ULTIMATE VISIBILITY: Isolate sections without 'display: none' (which breaks JS sliders) */
.edrea_tm_section {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 0 !important; /* JS can calculate dimensions inside height: 0 */
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    overflow: hidden !important;
    transition: none !important;
}

/* Force ONLY the active section to be visible and functional */
.edrea_tm_section.active:not(.hidden) {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    z-index: 10 !important;
}

/* Invisible scrollbar for aesthetic purposes */
.edrea_tm_section::-webkit-scrollbar {
    width: 0px !important;
    background: transparent !important;
}
.edrea_tm_section {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

/* Force inner wrapper to stretch regardless of implicit height limitations */
.edrea_tm_section.active:not(.hidden) .section_inner {
    height: auto !important;
    min-height: 100%;
}

/* 2. PROTECT JS INITIALIZATION (Allow essential visibility for children of ONLY the active section) */
.edrea_tm_section.active:not(.hidden) .animated, 
.edrea_tm_section.active:not(.hidden) [data-enter],
.edrea_tm_section.active:not(.hidden) .swiper-section {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Maintain ZERO forced entrance/hover animations for static feeling */
.animated, [data-enter], .zoomIn, .fadeInUp {
    animation-duration: 0.01s !important;
    animation-delay: 0s !important;
    transition-duration: 0.01s !important;
    transform: none !important;
}

/* 3. TIMELINE ICON - DEFINITIVE SIDE-BY-SIDE ALIGNMENT WITH JOB TITLES */
.timeline_card {
    position: relative !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    padding-left: 0 !important;
    margin-bottom: 40px;
}

.timeline_icon {
    position: relative !important;
    flex-shrink: 0 !important;
    margin-top: 58px !important; /* DEFINITIVE CENTERING WITH JOB TITLES (H3) */
    width: 25px !important;
    height: 25px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #1e1e23;
    color: #FF720D;
    font-size: 0.9rem;
    z-index: 10;
}

.content_box {
    flex-grow: 1;
    background: transparent !important;
    border: none !important;
    padding-left: 0 !important;
}

/* 4. TOTAL STATIC TEXT (NO HOVER EFFECTS AT ALL) */
a, h1, h2, h3, h4, h5, h6, span, p, i, li {
    transition: none !important;
    animation: none !important;
}

a:hover, h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover, span:hover, p:hover, i:hover {
    transform: none !important;
    text-decoration: none !important;
    background: none !important;
    text-shadow: none !important;
}

/* Keep basic Nav color but NO movement */
.edrea_tm_topbar .menu ul li a:hover, .edrea_tm_header .menu ul li a:hover {
    transform: none !important;
    color: #FF720D !important;
}

/* 5. PRESERVE HERO HEADLINE ROLES CYCLE ONLY */
.cd-words-wrapper b {
    transition-duration: 0.5s !important;
}

/*---------------------------------------------------*/
/*	V15 LINKTREE STYLE SOCIALS
/*---------------------------------------------------*/

.linktree_wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 120px 20px 100px;
    text-align: center;
}

.linktree_profile {
    margin-bottom: 35px;
}

.linktree_profile .image {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.1) !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4) !important;
    transition: border-color 0.3s ease !important;
}

.linktree_profile:hover .image {
    border-color: var(--main-color) !important;
}

.linktree_profile .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.linktree_profile h3 {
    color: #fff;
    font-size: 24px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
}

.linktree_profile p {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

.linktree_links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.linktree_wrapper a.link_btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    width: 100% !important;
    padding: 18px 50px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    backdrop-filter: blur(10px) !important;
    overflow: hidden !important;
}

.linktree_wrapper a.link_btn i {
    position: absolute !important;
    left: 20px !important;
    font-size: 20px !important;
    z-index: 1 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Specific Brand Colors Overlay */
.linktree_wrapper a.link_btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: var(--btn-color) !important;
    opacity: 0 !important;
    z-index: 0 !important;
    transition: opacity 0.3s ease !important;
}

.linktree_wrapper a.link_btn span {
    position: relative !important;
    z-index: 1 !important;
}

.linktree_wrapper a.link_btn:hover {
    transform: translateY(-4px) !important;
    border-color: transparent !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
}

.linktree_wrapper a.link_btn:hover::before {
    opacity: 1 !important;
}

.linktree_wrapper a.link_btn:hover span,
.linktree_wrapper a.link_btn:hover i {
    color: var(--btn-text) !important;
}

.linktree_divider {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 10px auto;
    border-radius: 2px;
}

/* Brand Configs */
.link_btn.snapchat { --btn-color: #FFFC00; --btn-text: #000; }
.link_btn.snapchat i { color: #FFFC00 !important; }

.link_btn.youtube { --btn-color: #FF0000; --btn-text: #fff; }
.link_btn.youtube i { color: #FF0000 !important; }

.link_btn.tiktok { --btn-color: #00f2fe; --btn-text: #000; }
.link_btn.tiktok i { color: #00f2fe !important; }

.link_btn.instagram { --btn-color: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); --btn-text: #fff; }
.link_btn.instagram i { color: #E1306C !important; }

.link_btn.discord { --btn-color: #5865F2; --btn-text: #fff; }
.link_btn.discord i { color: #5865F2 !important; }

.link_btn.x_twitter { --btn-color: #fff; --btn-text: #000; }
.link_btn.x_twitter i { color: #fff !important; }

/*---------------------------------------------------*/
/*	V16 SOCIAL MEDIA GRAPH
/*---------------------------------------------------*/

.social_graph_container {
    width: 100%;
    max-width: 600px;
    margin: 40px auto 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-align: left;
    backdrop-filter: blur(10px);
}

.social_graph_container .graph_header_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.social_graph_container h4 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.growth_badge {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.growth_badge.positive {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
}

.growth_badge.negative {
    background: rgba(255, 68, 68, 0.15);
    color: #ff4444;
}

.social_graph_container .graph_subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-bottom: 25px;
}

.social_graph_container .canvas_wrapper {
    position: relative;
    width: 100%;
    height: 300px;
}

/*---------------------------------------------------*/
/*	V17 GLOBAL UI PATCHES
/*---------------------------------------------------*/

/* Fix blue outline/focus ring on Safari/Chrome when clicking navigation arrows */
a, a:active, a:focus, button, button:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Prevent Home rotating text from wrapping incorrectly when FontAwesome icons load */
.cd-words-wrapper b {
    white-space: nowrap !important;
}
