/* font-face start */

@font-face {
    font-family: 'OpenSans';
    src: url('./../fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('./../fonts/Raleway-Regular.woff2') format('woff2'),
         url('./../fonts/Raleway-Regular.woff') format('woff'),
         url('./../fonts/Raleway-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('./../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* font-face end */

/* color-palette start */

:root {
    --black-1: #000;
    --black-2: #444444;
    --black-3: #222222;
    --black-4: #111;
    --white-1: #fff;
    --white-2: #e7f8f6;
    --green-1: #34b7a7;
    --green-2: #51cdbe;
    --green-3: #c8efea;
    --green-4: #1d685f;
    --green-5: #11dbcf;
    --green-6: #78d9cd;
    --green-7: #18d26e;
    --blue-1: #47aeff;
    --gray-1: #dcf5f2;
    --gray-2: #6f6f6f;
    --gray-3: #888888;
    --gray-4: #555555;
    --gray-5: #999;
    --gray-6: rgba(255, 255, 255, 0.7);
    --gray-7: #eee;
    --gray-8: #e9e8e6;
    --orange-1: #ffa76e;
    --orange-2: #ffbb2c;
    --orange-3: #ff5828;
    --orange-4: #ed3c0d;
    --pink-1: #e80368;
}

/* color-palette end */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", "Roboto";
    color: var(--black-2);
}

a {
    color: var(--green-1);
    text-decoration: none !important;
}

a:hover {
    color: var(--green-2);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", "Roboto";
}

#main {
    margin-top: 50px;
    padding: 0 30px;
}

@media (max-width: 992px) {
#main {
    margin-top: 30px;
}
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
position: fixed;
right: 15px;
bottom: 15px;
z-index: 996;
background: #34b7a7;
width: 40px;
height: 40px;
border-radius: 50px;
transition: all 0.4s;
cursor: pointer;
}

.back-to-top i {
font-size: 24px;
color: #fff;
line-height: 0;
}

.back-to-top:hover {
background: #49cbbb;
color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
background: #e9e8e6;
box-shadow: 0px 0px 25px 0 rgba(0, 0, 0, 0.08);
z-index: 997;
padding: 15px 0;
}

#header .logo {
font-size: 32px;
margin: 0;
padding: 0;
line-height: 1;
font-weight: 400;
letter-spacing: 2px;
text-transform: uppercase;
}

#header .logo a {
color: #222222;
}

#header .logo img {
max-height: 40px;
}

@media (max-width: 992px) {
#header .logo {
    font-size: 28px;
}
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
padding-right: 15px;
}

.header-social-links a {
color: #6f6f6f;
padding-left: 6px;
display: inline-block;
line-height: 0px;
transition: 0.3s;
font-size: 16px;
}

.header-social-links a:hover {
color: #34b7a7;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
padding: 0;
}

.navbar ul {
margin: 0;
padding: 0;
display: flex;
list-style: none;
align-items: center;
}

.navbar li {
position: relative;
padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
display: flex;
align-items: center;
justify-content: space-between;
font-family: "Raleway", sans-serif;
font-size: 15px;
font-weight: 600;
color: #888888;
white-space: nowrap;
transition: 0.3s;
position: relative;
}

.navbar a:hover{
    transform: scale(1.1);
}

.navbar a i,
.navbar a:focus i {
font-size: 12px;
line-height: 0;
margin-left: 5px;
}

.navbar>ul>li>a:before {
content: "";
position: absolute;
height: 2px;
bottom: -5px;
left: 0;
background-color: #34b7a7;
visibility: hidden;
width: 0;
transition: all 0.3s ease-in-out 0s;
}

.navbar .active:before {
visibility: visible;
width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
color: #222222;
}

.navbar .dropdown ul {
display: block;
position: absolute;
left: 14px;
top: calc(100% + 30px);
margin: 0;
padding: 10px 0;
z-index: 99;
opacity: 0;
visibility: hidden;
background: #fff;
box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
transition: 0.3s;
border-radius: 4px;
}

.navbar .dropdown ul li {
min-width: 200px;
padding: 0;
}

.navbar .dropdown ul a {
padding: 10px 20px;
font-size: 15px;
text-transform: none;
font-weight: 600;
}

.navbar .dropdown ul a i {
font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
color: #34b7a7;
}

.navbar .dropdown:hover>ul {
opacity: 1;
top: 100%;
visibility: visible;
}

.navbar .dropdown .dropdown ul {
top: 0;
left: calc(100% - 30px);
visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
opacity: 1;
top: 0;
left: 100%;
visibility: visible;
}

@media (max-width: 1366px) {
.navbar .dropdown .dropdown ul {
    left: -90%;
}

.navbar .dropdown .dropdown:hover>ul {
    left: -100%;
}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
color: #222222;
font-size: 28px;
cursor: pointer;
display: none;
line-height: 0;
transition: 0.5s;
}

@media (max-width: 992px) {
.mobile-nav-toggle {
    display: block;
}

.navbar{
    display: none !important;
}
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
width: 100%;
height: 100vh;
background: url("./../images/hero-bg.jpg") top right;
background-size: cover;
}

#hero .container {
padding-top: 70px;
position: relative;
}

@media (max-width: 992px) {
#hero .container {
    padding-top: 58px;
}
}

#hero h1 {
margin: 0;
font-size: 48px;
font-weight: 700;
line-height: 56px;
color: #222222;
}

#hero h2 {
color: #6f6f6f;
margin: 10px 0 0 0;
font-size: 22px;
}

#hero .btn-about {
font-family: "Raleway", sans-serif;
text-transform: uppercase;
font-weight: 600;
font-size: 12px;
letter-spacing: 1px;
display: inline-block;
padding: 12px 40px;
border-radius: 50px;
transition: 0.5s;
margin-top: 30px;
color: #fff;
background: #34b7a7;
}

#hero .btn-about:hover {
background: #3dc8b7;
}

@media (min-width: 1024px) {
#hero {
    background-attachment: fixed;
}
}

@media (max-width: 992px) {
#hero h1 {
    font-size: 28px;
    line-height: 36px;
}
#hero h2 {
    font-size: 18px;
    line-height: 24px;
}
}

@media (max-width: 576px) {
    #hero {
        background-position: center;
    }
    #hero .container {
        padding-top: 0;
        padding-bottom: 200px;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
padding: 60px 0;
}

.section-bg {
background-color: #e7f8f6;
}

.section-title {
padding-bottom: 30px;
}

.section-title h2 {
font-size: 32px;
font-weight: bold;
text-transform: uppercase;
margin-bottom: 20px;
padding-bottom: 20px;
position: relative;
text-align: center;
}

.section-title h2::after {
content: "";
position: absolute;
display: block;
width: 50%;
height: 3px;
background: #34b7a7;
bottom: 0;
left: 25%;
}

.section-title p {
margin-bottom: 0;
text-align: justify;
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 22px;
    }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
background-size: cover;
padding: 80px 0;
}

.cta h3 {
color: #fff;
font-size: 28px;
font-weight: 700;
}

.cta p {
color: #fff;
}

.cta .cta-btn {
font-family: "Raleway", sans-serif;
text-transform: uppercase;
font-weight: 500;
font-size: 16px;
letter-spacing: 1px;
display: inline-block;
padding: 8px 20px;
border-radius: 2px;
transition: 0.5s;
margin: 10px;
border: 2px solid #fff;
color: #fff;
}

.cta .cta-btn:hover {
background: #34b7a7;
border: 2px solid #34b7a7;
}

@media (max-width: 1024px) {
.cta {
    background-attachment: scroll;
}
}

@media (min-width: 769px) {
.cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
font-weight: 700;
font-size: 26px;
color: #555555;
}

.about .content ul {
list-style: none;
padding: 0;
}

.about .content ul li {
padding-bottom: 10px;
}

.about .content ul i {
font-size: 20px;
padding-right: 2px;
color: #34b7a7;
}

.about .content p:last-child {
margin-bottom: 0;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
height: 100px;
display: block;
background: none;
border-radius: 0;
}

.skills .progress .skill {
padding: 10px 0;
margin: 0 0 6px 0;
text-transform: uppercase;
display: block;
font-weight: 600;
font-family: "Poppins", sans-serif;
color: #222222;
font-size: 16px;
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .counters span {
font-size: 48px;
display: block;
color: #34b7a7;
}

.facts .counters p {
padding: 0;
margin: 0 0 20px 0;
font-family: "Raleway", sans-serif;
font-size: 14px;
}

@media (max-width: 480px) {
    .facts .counters span {
        font-size: 26px;
    }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .section-header {
margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
overflow: hidden;
}

.testimonials .testimonial-item {
text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
width: 120px;
border-radius: 50%;
border: 4px solid #fff;
margin: 0 auto;
}

.testimonials .testimonial-item h3 {
font-size: 20px;
font-weight: bold;
margin: 10px 0 5px 0;
color: #111;
}

.testimonials .testimonial-item h4 {
font-size: 14px;
color: #999;
margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
color: #c8efea;
font-size: 16px;
}

.testimonials .testimonial-item .quote-icon-left {
display: inline-block;
left: -10px;
bottom: 10px;
position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
display: inline-block;
right: -10px;
position: relative;
top: 5px;
}

.testimonials .testimonial-item p {
font-style: italic;
margin: 0 auto 15px auto;
}

@media (min-width: 992px) {
.testimonials .testimonial-item p {
    width: 80%;
}
}

.testimonials .swiper-pagination {
margin-top: 20px;
position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: #fff;
opacity: 1;
border: 1px solid #34b7a7;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
background-color: #34b7a7;
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
font-size: 26px;
font-weight: 400;
margin-top: 20px;
margin-bottom: 20px;
color: #222222;
}

.resume .resume-item {
padding: 0 0 20px 20px;
margin-top: -2px;
border-left: 2px solid #34b7a7;
position: relative;
}

.resume .resume-item h4 {
line-height: 18px;
font-size: 18px;
font-weight: 600;
font-family: "Poppins", sans-serif;
color: #1d685f;
margin-bottom: 10px;
}

.resume .resume-item h5 {
font-size: 16px;
background: #effbf9;
padding: 5px 15px;
display: inline-block;
font-weight: 600;
margin-bottom: 10px;
color: #34b7a7;
}

.resume .resume-item ul {
padding-left: 20px;
}

.resume .resume-item ul li {
padding-bottom: 10px;
}

.resume .resume-item:last-child {
padding-bottom: 0;
}

.resume .resume-item::before {
content: "";
position: absolute;
width: 16px;
height: 16px;
border-radius: 50px;
left: -9px;
top: 0;
background: #fff;
border: 2px solid #34b7a7;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
text-align: center;
padding: 70px 20px 80px 20px;
transition: all ease-in-out 0.3s;
background: #fff;
box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .icon-box .icon {
margin: 0 auto;
width: 100px;
height: 100px;
display: flex;
align-items: center;
justify-content: center;
transition: ease-in-out 0.3s;
position: relative;
padding-bottom: 30px;
}

.services .icon-box .icon i {
font-size: 36px;
transition: 0.5s;
position: relative;
}

.services .icon-box .icon svg {
width: 100px;
height: 100px;
}

.services .icon-box .icon svg path {
transition: 0.5s;
}

.services .icon-box h4 {
font-weight: 600;
margin: 10px 0 15px 0;
font-size: 22px;
}

.services .icon-box h4 a {
color: #222222;
transition: ease-in-out 0.3s;
}

.services .icon-box p {
line-height: 24px;
font-size: 14px;
margin-bottom: 0;
}

.services .iconbox-blue i {
color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
color: #fff;
}

.services .iconbox-blue:hover .icon path {
fill: #47aeff;
}

.services .iconbox-orange i {
color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
color: #fff;
}

.services .iconbox-orange:hover .icon path {
fill: #ffa76e;
}

.services .iconbox-pink i {
color: #e80368;
}

.services .iconbox-pink:hover .icon i {
color: #fff;
}

.services .iconbox-pink:hover .icon path {
fill: #e80368;
}

.services .iconbox-yellow i {
color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
color: #fff;
}

.services .iconbox-yellow:hover .icon path {
fill: #ffbb2c;
}

.services .iconbox-red i {
color: #ff5828;
}

.services .iconbox-red:hover .icon i {
color: #fff;
}

.services .iconbox-red:hover .icon path {
fill: #ff5828;
}

.services .iconbox-teal i {
color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
color: #fff;
}

.services .iconbox-teal:hover .icon path {
fill: #11dbcf;
}

@media(max-width:480px){
    .services .icon-box{
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .services .icon-box .icon svg{
        width: 70px;
        height: 70px;
    }
    .services .icon-box h4 {
        font-size: 18px;
    }
    .services .icon-box p {
        line-height: 16px;
        font-size: 13px;
        text-align: justify;
    }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
margin-bottom: 30px;
height: 300px;
}

#portfolio-flters {
padding: 0;
margin: 0 auto 20px auto;
list-style: none;
text-align: center;
}

#portfolio-flters .portfolio-flters-tab {
cursor: pointer;
display: inline-block;
padding: 8px 16px 10px 16px;
font-size: 13px;
font-weight: 500;
line-height: 1;
text-transform: uppercase;
color: #444444;
margin-bottom: 5px;
transition: all 0.3s ease-in-out;
border-radius: 50px;
}

#portfolio-flters .portfolio-flters-tab:hover,
#portfolio-flters .portfolio-flters-tab.react-tabs__tab--selected {
color: #fff;
background: #34b7a7;
}

.portfolio #portfolio-flters li:last-child {
margin-right: 0;
}

.portfolio .portfolio-wrap {
transition: 0.3s;
position: relative;
overflow: hidden;
z-index: 1;
background: rgba(34, 34, 34, 0.6);
}

.portfolio .portfolio-wrap::before {
content: "";
background: rgba(34, 34, 34, 0.6);
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
transition: all ease-in-out 0.3s;
z-index: 2;
opacity: 0;
}

.portfolio .portfolio-wrap img {
transition: all ease-in-out 0.3s;
width: 100%;
height: 300px;
object-fit: cover;
object-position: center;
}

.portfolio .portfolio-wrap .portfolio-info {
opacity: 0;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 3;
transition: all ease-in-out 0.3s;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: flex-start;
padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
font-size: 20px;
color: #fff;
font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
color: rgba(255, 255, 255, 0.7);
font-size: 14px;
text-transform: uppercase;
padding: 0;
margin: 0;
font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
text-align: center;
z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
color: #fff;
margin: 0 5px 0 0;
font-size: 28px;
display: inline-block;
transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
color: #78d9cd;
}

.portfolio .portfolio-wrap:hover::before {
opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
opacity: 1;
}

@media (max-width: 576px) {
    #portfolio-flters {
        display: flex;
        flex-direction: column;
    }
}
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
padding-top: 0;
}

.portfolio-details .portfolio-details-slider img {
width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
margin-top: 20px;
position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
width: 12px;
height: 12px;
background-color: #fff;
opacity: 1;
border: 1px solid #34b7a7;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
background-color: #34b7a7;
}

.portfolio-details .portfolio-info {
padding: 30px;
box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
font-size: 22px;
font-weight: 700;
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
list-style: none;
padding: 0;
font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
margin-top: 10px;
}

.portfolio-details .portfolio-description {
padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
font-size: 26px;
font-weight: 700;
margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
padding: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
width: 100%;
background: #fff;
}

.contact .info i {
font-size: 20px;
color: #34b7a7;
float: left;
width: 44px;
height: 44px;
background: #effbf9;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50px;
transition: all 0.3s ease-in-out;
}

.contact .info h4 {
padding: 0 0 0 60px;
font-size: 22px;
font-weight: 600;
margin-bottom: 5px;
color: #222222;
}

.contact .info p {
padding: 0 0 0 60px;
margin-bottom: 0;
font-size: 14px;
color: #555555;
}

.contact .info .email,
.contact .info .phone {
margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
background: #34b7a7;
color: #fff;
}

.contact .php-email-form {
width: 100%;
background: #fff;
}

.contact .php-email-form .form-group {
padding-bottom: 8px;
}

.contact .php-email-form .error-message {
display: none;
color: #fff;
background: #ed3c0d;
text-align: center;
padding: 15px;
font-weight: 600;
}

.contact .php-email-form .sent-message {
display: none;
color: #fff;
background: #18d26e;
text-align: center;
padding: 15px;
font-weight: 600;
}

.contact .php-email-form .loading {
display: none;
background: #fff;
text-align: center;
padding: 15px;
}

.contact .php-email-form .loading:before {
content: "";
display: inline-block;
border-radius: 50%;
width: 24px;
height: 24px;
margin: 0 10px -6px 0;
border: 3px solid #18d26e;
border-top-color: #eee;
animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
border-radius: 4px;
box-shadow: none;
font-size: 14px;
resize: none;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
border-color: #34b7a7;
}

.contact .php-email-form input {
height: 44px;
}

.contact .php-email-form textarea {
padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
background: #34b7a7;
border: 0;
padding: 10px 30px 12px 30px;
color: #fff;
transition: 0.4s;
border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
background: #3dc8b7;
}

@keyframes animate-loading {
0% {
    transform: rotate(0deg);
}

100% {
    transform: rotate(360deg);
}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
background: #e9e8e6;
padding: 30px 0;
color: #222222;
font-size: 14px;
text-align: center;
}

#footer .credits {
padding-top: 5px;
font-size: 13px;
}

#footer .credits a {
color: #34b7a7;
}

/*--------------------------------------------------------------
# Not Found
--------------------------------------------------------------*/
#not-found{
    width: 100%;
    height: 100vh;
    background-color: var(--green-1);
    color: var(--white-1);
}
