
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1e1e1e;
}

a {
    color: #1e1e1e;
    transition: all 0.5s ease-in-out;
}

a:hover {
    color: #1cd5db;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}



.p-r {
    position: relative;
}

.color-a {
    color: #1cd5db;
}

.color-d {
    color: #f5f5f5;
}

.color-text-a {
    color: #4e4e4e;
}







/*--/ Title s /--*/

.title-s {
    font-weight: 600;
    color: #009688;
    font-size: 1.1rem;
}

/*--/ Title A /--*/

.title-box {
    margin-bottom: 4rem;
}

.title-a {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
}

.title-a:hover{
    color: #009688;
}

.subtitle-a {
    color: #4e4e4e;
}

.line-mf {
    width: 40px;
    height: 5px;
    background-color: #009688;
    margin: 0 auto;
}

/*--/ Title Left /--*/

.title-box-2 {
    margin-bottom: 3rem;
}

.title-left {
    font-size: 2rem;
    position: relative;
}

.title-left:before {
    content: '';
    position: absolute;
    height: 3px;
    background-color: #009688;
    width: 135px;
    bottom: -12px;
}




#preloader p {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50%;
    /* top:0; */
    display: inline-block;
    text-align: center;
    margin-bottom: -5em;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #1cd5db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes example12 {
    0% {
        background-color: #009688;
        background-size: 5%;
    }
    25% {
        background-color: yellow;
        background-size: 10%;
    }
    50% {
        background-color: blue;
        background-size: 20%;
    }
    75% {
        background-color: green;
        background-size: 30%;
    }
    100% {
        background-color: #009688;
        background-size: 40%;
    }
}

/*------/ Button /------*/

.abc {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.button {
    display: inline-block;
    padding: .3rem .6rem;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1rem;
    border-radius: .3rem;
    border: 1px solid transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    cursor: pointer;
}

.button2 {
    display: inline-block;
    padding: .3rem .6rem;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1.25rem;
    border-radius: .3rem;
    border: 1px solid transparent;
    transition: all 500ms ease-out;
    cursor: pointer;
}

.button2:hover {
    background-color: #0fe8f0;
    color: #fff;
    transition: all 500ms ease-out;
}

.button:focus {
    outline: 0;
}

.button:hover {
    background-color: #009688;
    color: #fff;
    transition: all 500ms ease-out;
}

.button-a {
    background-color: #009688;
    color: #fff;
    border-color: #cde1f8;
}

.button-big {
    padding: .9rem 2.3rem;
    font-size: 1.2rem;
}

.button-rouded {
    border-radius: 5rem;
}

.btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem;
}



/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about-mf .box-shadow-full {
    padding-top: 4rem;
    padding-bottom: 4rem;
    border-radius: 25px;
    top: 8%;
}

.about-mf .about-img {
    margin-bottom: 2rem;
}

.about-mf .about-img img {
    margin-left: 10px;
}


@media (min-width: 767px) {
    .about-mf .box-pl2 {
        margin-top: 3rem;
        padding-left: 0rem;
    }
}

.skill-mf span {
    color: #4e4e4e;
}

.skill-mf .progress {
    background-color: #cde1f8;
    margin: .5rem 0 1.2rem 0;
    border-radius: 0;
    height: .7rem;
}

.skill-mf .progress .progress-bar {
    height: .7rem;
    background-color: #1cd5db;
}



/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service-box {
    background-color: #fff;
    padding: 2.5rem 1.3rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.service-box:hover .ico-circle {
    transition: all 500ms ease;
    color: #fff;
    background-color: #1cd5db;
    box-shadow: 0 0 0 10px #cde1f8;
}

.service-box .service-ico {
    margin-bottom: 1rem;
    color: #1e1e1e;
}

.service-box .ico-circle {
    transition: all 500ms ease;
    font-size: 4rem;
}

.service-box .s-title {
    font-size: 1.4rem;
    text-transform: uppercase;
    text-align: center;
    padding: .4rem 0;
}

.service-box .s-description {
    color: #4e4e4e;
}

