

/* --------------------------------------
   Global Styles
-----------------------------------------*/

* {
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #000;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

a,
a:hover,
a:focus,
a:active {
    color: #fff;
    text-decoration: none;
}

/*=========== Typography ============*/
h1 {
    font-size: 60px;
    font-weight: 800;
}

h2 {
    font-size: 50px;
    font-weight: 600;
}

h3 {
    font-size: 30px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    font-weight: 400;
}

h5 {
    font-size: 16px;
    font-weight: 400;
}

h6 {
    font-size: 15px;
    font-weight: 400;
}

/*=========== My Classes ============*/
.main-title {
    margin-bottom: 55px;


}

.main-title h3 {
    color: transparent;
    -webkit-text-stroke: 1px #4d4d4e;
    font-weight: 800;
    letter-spacing: .7px;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.main-title h2 {
    position: relative;
    display: inline-block;
    color: #dedddc;
    font-weight: 800;
    font-size: 45px;
    
    letter-spacing: .7px;
    padding-bottom: 13px;
}

.main-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65px;
    height: 2px;
    background-color: #dca27f;
}

.main-btn {
    position: relative;
    display: inline-block;
    min-width: 155px;
    color: #dca27f;
    padding: 16px 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    background: transparent;
    border: 1px solid #dca27f;
    border-radius: 4px;
    outline: none;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.main-btn:hover {
    color: #fff;
    background: #dca27f;
}

.no-padding {
    padding: 0;
}

.page-content {
    position: relative;
    margin-left: 123px;
    margin-right: 48px;
    margin-top: 24px;
    height: calc(100vh - 48px);
}

section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    transform-origin: 0 0;
    opacity: 0;
    
}

section.active {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scale(1);
    transform: scaleX(1);
    opacity: 1;
    z-index: 1;
    transition: transform .6s ease;
}

.main-img {
    background: url('../images/interior.gif') top center no-repeat;
    background-size: cover;
    height: calc(100vh - 48px);
    
    
}

.area-bg {
    height: calc(100vh - 96px);
    margin-top: 24px;
    margin-bottom: 24px;
    border: 3px solid #1c1c1d;
    border-left: none;
}

.area-bg-acasa {

    background: url('../images/fara_fundal.png') center no-repeat;
    background-size: contain;
}



::-webkit-scrollbar {
    width: 5px;
    height: 15px;
}

::-webkit-scrollbar-track {
    border-radius: 20px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #222223;
}

/* --------------------------------------
   Loading
-----------------------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #121213;
    z-index: 9999999;
}

.preloader .status {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.preloader .status .spinner {
    margin: 100px auto;
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    -webkit-animation: sk-rotate 2.0s infinite linear;
    -moz-animation: sk-rotate 2.0s infinite linear;
    -ms-animation: sk-rotate 2.0s infinite linear;
    -o-animation: sk-rotate 2.0s infinite linear;
    animation: sk-rotate 2.0s infinite linear;
}

.preloader .status .spinner .dot1,
.preloader .status .spinner .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #dca27f;
    border-radius: 100%;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    -moz-animation: sk-bounce 2.0s infinite ease-in-out;
    -ms-animation: sk-bounce 2.0s infinite ease-in-out;
    -o-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.preloader .status .spinner .dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@keyframes sk-rotate {
    
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes sk-bounce {
    
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-bounce {
    
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* --------------------------------------
   Navbar
-----------------------------------------*/

.vertical-nav {
    position: fixed;
    top: 0;
    left: 48px;
    width: 75px;
    height: calc(100vh - 96px);
    margin-top: 48px;
    background: #121213;
    border: 3px solid #1c1c1d;
    border-right: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    z-index: 9999;
    overflow: hidden;
    overflow-y: auto;
}

.logo{

    background-image: url('../images/small_logo.png'); /* Replace 'your-image.jpg' with the path to your image */
  background-size: contain; /* Set the background image size to "contain" */
  background-repeat: no-repeat; /* Prevent the background image from repeating */
  background-position: center; 
}

.vertical-nav .logo {
    display: inline-block;
    width: 75px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    font-size: 43px;
    font-weight: 800;
    background-color: #121213;
    border-bottom: 1px solid #181819;
    color: transparent;
    -webkit-text-stroke: 1px #403e3e;
    font-family: 'Montserrat', sans-serif;
}

.vertical-nav .logo span {
    font-size: 30px;
}

.vertical-nav .toggle-menu {
    background-color: transparent;
    float: right;
    width: 43px;
    height: 65px;
    line-height: 65px;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 9999;
    display: none;

}

.vertical-nav .toggle-menu .bar {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #dca27f;
}

.vertical-nav .toggle-menu .bar:nth-child(2) {
    width: 14px;
    margin: 8px 0;
    margin-left: 7px;
}

.vertical-nav.menu-active .toggle-menu .bar:first-child {
    -webkit-transform: rotate(45deg) translate(6px, 7px);
    -moz-transform: rotate(45deg) translate(6px, 7px);
    -ms-transform: rotate(45deg) translate(6px, 7px);
    -o-transform: rotate(45deg) translate(6px, 7px);
    transform: rotate(45deg) translate(6px, 7px);
}

.vertical-nav.menu-active .toggle-menu .bar:nth-child(2) {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.vertical-nav.menu-active .toggle-menu .bar:last-child {
    -webkit-transform: rotate(-45deg) translate(7px, -8px);
    -moz-transform: rotate(-45deg) translate(7px, -8px);
    -ms-transform: rotate(-45deg) translate(7px, -8px);
    -o-transform: rotate(-45deg) translate(7px, -8px);
    transform: rotate(-45deg) translate(7px, -8px);
}

.vertical-nav .mini-menu ul {
    margin: 0;
}

.vertical-nav .mini-menu > ul li a {
    display: block;
    width: 75px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-top: 1px solid #0e0e0e;
    border-bottom: 1px solid #181819;
    color: #b9b7b7;
}

.vertical-nav .mini-menu > ul li a.active {
    color: #dca27f;
}

.vertical-nav .mini-menu > ul li a i:before {
    margin-left: 0;
    font-size: 24px;
}

/* --------------------------------------
   Home
-----------------------------------------*/

.no_click {
    pointer-events: none;
}

#adresa_text {

    margin-top:100px;
}



.home {
    overflow: hidden;
}

.home .area-bg {
    position: relative;
}

.home #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.home .home-intro {
    position: relative;
    z-index: 1;
    margin-left: 5vw;
}

.home .home-intro .home-info {
    width: 100%;
}

.home .home-intro h3 {
    color: #e6e5e5;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0;
}

.home .home-intro h1 {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    font-size: 75px;
    letter-spacing: 1px;
    font-weight: 800;
    margin: 30px 0;
    text-transform: capitalize;
}

.home .home-intro p {
    color: #e6e5e5;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0;
    margin-bottom: 50px;
}

.home .home-intro p span {
    color: #dca27f;
}

.home h4, .home a {

    color:#e1e2e3 !important;
    font-size: 18px;
}


.phone_homepage{

position:absolute;
top: 85%;
left:12%;

}

.insta_homepage{

position:absolute;
top: 85%;
right:15%;

}

#map_container {

    position:relative;
    bottom: 0;
    height: 50%;
    width: 100%; /* Adjust width as needed */
}

#gmap_canvas {

   
    
    width: 90%;
    height: 95%; 
    
}

#working_hours{

    text-align: left;
    color:#dca27f;
    margin-right: 50px;


}





/* --------------------------------------
   Resume
-----------------------------------------*/

.resume {
    padding-top: 60px;
    padding-bottom: 60px;
    color: #fff;
    overflow: hidden;
    overflow-y: auto;
}

.resume .main-title {
    width:100%;
    height:100%;
    position: relative;
    text-align: center;


}

.resume .main-title h2:after {
    left: 50%;
    margin-left: -32.5px;
}

.resume .resume-content {


    background-color: #1a1a1b;
    padding: 30px 35px 0;

}

.resume .education,
.resume .experience {
    padding-left: 48px;
}

.resume .resume-item {
    position: relative;
    background: #121213;
    padding: 15px 20px;
    margin-bottom: 30px;
    border: 2px solid #1c1c1d;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.resume .resume-item:before {
    content: '';
    position: absolute;
    top: 49px;
    left: -28px;
    
    width: 2px;
    background: #222223;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.resume .resume-item:last-child:before {
    content: none;
}

.resume .resume-item .resume-date {
    position: relative;
    display: inline-block;
    min-width: 175px;
    
   
    color: #dca27f;
    
    
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    
    margin-left: -70px;
}

.resume .resume-item .resume-date i {
    position: absolute;
    top: 0;
    left: 10px;
    line-height: 52px;
    font-size: 23px;
    text-align: center;
    border-radius: 50%;
    color: #dca27f;
}

.resume .resume-item span {
    display: inline-block;
    letter-spacing: 1px;
    color: #dedddc;
    margin: 10px;
    font-size: 15px;
}

.resume .resume-item h4 {
    font-size: 17px;
    font-weight: 600;
    padding: 15px 0 10px;
    text-transform: capitalize;
    color: #fff;
    opacity: .8;
}

.resume .resume-item p {
    color: #dedddc;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 0;
}

/* --------------------------------------
   9. Portfolio
-----------------------------------------*/

.portfolio {
    padding-top: 60px;
    padding-bottom: 30px;
    color: #fff;
    overflow: hidden;
    overflow-y: auto;
}

.portfolio .main-title {
    text-align: center;
}

.portfolio .main-title h2:after {
    left: 50%;
    margin-left: -32.5px;
}

.portfolio .portfolio-content .item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 30px;
}

.portfolio .portfolio-content .item img {
    border-radius: 4px;
}

.portfolio .portfolio-content .item:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.portfolio .portfolio-content .item .overlay { 
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(50, 50, 50, .8);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.portfolio .portfolio-content .item:hover .overlay {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition-duration: .6s;
    -moz-transition-duration: .6s;
    -o-transition-duration: .6s;
    -ms-transition-duration: .6s;
    transition-duration: .6s;
}

.portfolio .portfolio-content .item .overlay .item-title,
.portfolio .portfolio-content .item .overlay .item-category span {
    position: absolute;
    top: 28%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: inline-block;
    color: #fff;
    margin: 0;
    font-size: 16px;
}

.portfolio .portfolio-content .item .overlay .icon-img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
}

.portfolio .portfolio-content .item .overlay .item-category span {
    top: 65%;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
}

.portfolio .portfolio-content .item .overlay .item-category span:before {
    content: '';
    position: absolute;
    top: 10px;
    left: -32px;
    width: 26px;
    height: 2px;
    background-color: #f9c828;
}


/* --------------------------------------
   Copyright
-----------------------------------------*/

.copyright {
    position: absolute;
    left: 0;
    bottom: 20vh;
    letter-spacing: 1.7px;
    color: #c5c5c5;
    font-size: 15px;
    white-space: nowrap;
    margin: 0;
    line-height: 48px;
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -o-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.copyright a
    {
    color: #5f605d;
    }   

.copyright i {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    margin-left: 2px;
    color: #fff;
}

/* --------------------------------------
   13. Media Queries
-----------------------------------------*/

/* Extra Large Devices */
@media (min-width: 1200px) {

    #working_hours{
    text-align: center;
    list-style-position: inside;
    }

    #working_hours ul {

    list-style-type: none;
    }

     
}


/* Large devices (desktops, less than 1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    
    /*=========== Home ============*/
    .home .home-intro {
        margin-left: 3vw;
    }
    
    /*=========== Services ============*/
    .services .service {
        padding: 25px 20px;
    }
    
    /*=========== Resume ============*/
    .resume .resume-content {
        padding: 30px 20px 0;
    }

    .resume .resume-item {
        padding: 30px 20px;
    }
    
    /*=========== Contact ============*/
    .contact .contact-boxes {
        margin-bottom: 35px;
    }
    
    .contact .contact-box .title-box {
        font-size: 18px;
    }
    
    .contact .contact-box .content-box p {
        font-size: 15px;
    }
    
    .contact .contact-box .content-box p > i {
        font-size: 17px;
    }

     .main-title h2 {
        font-size: 35px;
    }

    #working_hours{
    text-align: center;
    list-style-position: inside;
    }

    #working_hours ul {

    list-style-type: none;
    }

    
}

/* Medium devices (tablets, less than 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    
    .area-bg {
        border-left: 3px solid #1c1c1d;
        height: calc(100vh - 48px);
        margin-top: 0;
        margin-bottom: 0;
    }
    
    /*=========== Navbar ============*/
    .vertical-nav {
        box-shadow: 0 0 10px rgba(0, 0, 0, .4);
    }
    
    /*=========== Home ============*/
    .home .home-intro {
        margin-left: 6vw;
    }
    
    /*=========== Contact ============*/
    .contact .contact-boxes {
        margin-bottom: 40px;
    }

    .main-title h2 {
        font-size: 35px;
    }
   
}

/* Small Devices */
@media (max-width: 767.98px) {
    
    .main-title h2 {
        font-size: 40px;
    }
    
    .page-content {
        margin-left: 75px;
        margin-right: 0;
    }
    
    .area-bg {
        margin-top: 0;
        margin-bottom: 0;
        height: calc(100vh - 48px);
        border-left: 3px solid #1c1c1d;
    }
    
    /*=========== Navbar ============*/
    .vertical-nav {
        left: 0;
        box-shadow: 0 0 10px rgba(0, 0, 0, .4);
    }
    
    /*=========== Home ============*/
    .home .home-intro {
        margin-left: 5vw;
    }
    
    .home .home-intro h1 {
        font-size: 70px;
    }
    
    /*=========== About Me ============*/    
    .about-me .about-image {
        margin-right: 80px;
        margin-left: 80px;
        margin-bottom: 40px;
    }
    
    /*=========== Services ============*/
    .services .main-title h2 {
        font-size: 26px;
    }
    
    .services .service {
        padding: 25px 20px;
    }
    
    .services .service h4 {
        font-size: 18px;
    }
    
    .services .service p {
        font-size: 14px;
    }
    
    /*=========== Skills ============*/
    .skills .main-title h2 {
        font-size: 26px;
    }
    
    /*=========== Resume ============*/
    .resume .main-title h2 {
        font-size: 26px;
    }
    
    .resume .resume-content {
        padding: 30px 25px 0;
    }
    
    /*=========== Contact ============*/    
    .contact .contact-boxes {
        margin-bottom: 40px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    
    .page-content {
        margin-left: 0;
        margin-top: 0;
        height: 100vh;
    }
    
    .area-bg {
        margin-top: 65px;
        height: calc(100vh - 65px);
        border: none;
    }
    
    .main-title h2 {
        font-size: 30px;
    }
    
    .main-title h3 {
        font-size: 25px;
    }
    
    /*=========== Navbar ============*/
    .vertical-nav {
        width: 100%;
        height: 65px;
        margin-top: 0;
        border: none;
        border-bottom: 2px solid #1c1c1d;
        overflow: hidden;
    }
    
    .vertical-nav .mini-menu {
        position: relative;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
        -webkit-transition-duration: .3s;
        transition-duration: .3s;
       
    }
    
    .vertical-nav.menu-active .mini-menu {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        margin-right:13px;
        

    }
    
    .vertical-nav .mini-menu li {
        display: inline-block;
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
        -webkit-transition-duration: .3s;
        transition-duration: .3s;
    }
    
    .vertical-nav.menu-active .mini-menu > ul li {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);

    }

    .vertical-nav.menu-active .mini-menu > ul {
    text-align: center;

}
    
    .vertical-nav.menu-active .mini-menu > ul li:first-of-type() {
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }
    
    .vertical-nav.menu-active .mini-menu > ul li:nth-of-type(2) {
        -webkit-transition-delay: .1s;
        transition-delay: .1s;
    }
    
    .vertical-nav.menu-active .mini-menu > ul li:nth-of-type(3) {
        -webkit-transition-delay: .2s;
        transition-delay: .2s;
    }
    
    .vertical-nav.menu-active .mini-menu > ul li:nth-of-type(4) {
        -webkit-transition-delay: .3s;
        transition-delay: .3s;
    }
    
    .vertical-nav.menu-active .mini-menu > ul li:nth-of-type(5) {
        -webkit-transition-delay: .4s;
        transition-delay: .4s;
    }
    
    .vertical-nav.menu-active .mini-menu > ul li:nth-of-type(6) {
        -webkit-transition-delay: .5s;
        transition-delay: .5s;
    }
    
    .vertical-nav.menu-active .mini-menu > ul li:last-of-type() {
        -webkit-transition-delay: .6s;
        transition-delay: .6s;
    }
    
    .vertical-nav .mini-menu > ul li a {
        display: inline-block;
        width: auto;
        height: auto;
        line-height: 65px;
        margin: 0 9px;
        border: none;
    }
    
    .vertical-nav .mini-menu > ul li a i:before {
        font-size: 19px;
    }
    
    .vertical-nav .logo {
        float: left;
        width: 65px;
        height: 65px;
        line-height: 65px;
    }
    
    .vertical-nav.menu-active .logo {
        display: inline-block;
    }
    
    .vertical-nav .toggle-menu {
        display: block;
    }
    
    /*=========== Home ============*/
    .home .home-intro {
        margin-left: 1vw;
    }
    
    .home .home-intro h1 {
        font-size: 59px;
    }
    
    .home .home-intro h3,
    .home .home-intro p {
        font-size: 18px;
    }

    
   
    /*=========== Resume ============*/
    .resume {
        padding-bottom: 30px;
    }
    
    .resume .main-title h2 {
        font-size: 24px;
    }
    
    .resume .resume-content {
        background: transparent;
        padding: 0;
        border: none;
    }
    
    .resume .resume-item {
        padding: 25px 15px;
    }
    
    .resume .resume-item .resume-date {
        min-width: 163px;
        padding-left: 29px;
        font-size: 13px;
        margin-left: -70px;
    }
    
    .resume .resume-item .resume-date i {
        left: 10px;
        font-size: 20px;
    }
    
    .resume .resume-item span {
        letter-spacing: 0;
        font-size: 14px;
    }
    
    .resume .resume-item h4 {
        font-size: 15px;
    }
    
    .resume .resume-item p {
        font-size: 14px;
    }
    
  
}

@media (max-width: 400px) {

.vertical-nav.menu-active .mini-menu {
        font-size: 13px;
        
        }
    

    }

}