

/* Variables */
:root {
    --main-color: #38B0E3;
    --bg-color-1: #faeddf;
    --bg-color-2: #fcf7f1;
    --bg-color-3: #ffffff;
	--text-color: #2d2d2d;
    --main-transition: 0.3s linear;
    --hover: #cccccc;
}


* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: var(--main-color);
}

a:hover{
    color: var(--hover);
    transition: all var(--main-transition);

}
body {
    font-family: 'Montserrat',sans-serif;
    font-size: 15px;
    line-height: 2;
    font-weight: 400;
    padding-top: 77px;
    color: var(--text-color);
    background-color: var(--bg-color-1);
    overflow-x: hidden;
}
.container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}
.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}
.comman-padding {
    padding: 13% 18%;
}
.main-p {
    margin-bottom: 30px;
    line-height: 30px;
    font-size: 20px;
    font-weight: 400;
}
.main-bold-p {
    margin-bottom: 30px;
    line-height: 30px;
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
}
.main-heading {
    padding: 150px 10px;
    text-align: center;
    height: fit-content;
}
.main-heading h2 {
    font-weight: 300;
    font-size: 54px;
    line-height: 54px;
    letter-spacing: -4px;
}
.main-heading.color-1 {
    background-color: var(--main-color);
    color: #fff;
}
.main-heading.color-2 {
    background-color: #f8a577;
    color: #fff;
}
.main-heading.color-3 {
    background-color: #fff48f;
    color: #9e7e63;
}
.main-flex-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.main-flex-section .declaration-part {
    width: calc(100% / 3);
}
.main-flex-section .content-part {
    width: calc((100% / 3) * 2);
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-color-3);
    z-index: 999999;
}

header nav {
    background-color: var(--bg-color-1);
    z-index: 999;
}
header nav ul li a {
    display: inline-block;
    letter-spacing: .5px;
    font-size: 15px;
    line-height: 17px;
    font-weight: 500;
    color: var(--text-color);
    transition: color .3s ease;
}
header nav ul li a:hover,
header nav ul li a.active {
    color: var(--main-color);
}
header .menu-toggler {
    position: absolute;
    transform: translateY(-50%);
    width: 30px;
    height: 20px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: margin var(--main-transition);
    z-index: 999;
}
header .menu-toggler.toggler-activate {
    margin-right: -5px;
}
header .menu-toggler span {
    position: absolute;
    display: block;
    height: 3px;
    background-color: var(--main-color);
    transition: all var(--main-transition);
}
header .menu-toggler span:nth-child(1) {
    width: 25px;
    top: 0;
    transform-origin: left top;
}
header .menu-toggler span:nth-child(2) {
    width: 17px;
    top: 50%;
}
header .menu-toggler span:nth-child(3) {
    width: 30px;
    top: 100%;
    transform-origin: left bottom;
}
header .menu-toggler:hover span {
    width: 100%;
}
header .menu-toggler.toggler-activate span:nth-child(1) {
    width: 100%;
    transform: rotate(45deg);
}
header .menu-toggler.toggler-activate span:nth-child(2) {
    opacity: 0;
}
header .menu-toggler.toggler-activate span:nth-child(3) {
    width: 100%;
    transform: rotate(-45deg);
}
header .side-left {
    background-color: transparent !important;
}
header .side-left a.logo {
    line-height: 32px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--main-color);
    margin-right: 25px;
    padding-bottom: 2px;
}
header .side-left ul.social-side-left {
    display: flex;
    margin-right: 30px;
    padding-bottom: 2px;
}
header .side-left ul.social-side-left li {
    margin-right: 35px;
}
header .side-left ul.social-side-left li a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 5px;
    line-height: 24px;
    color: var(--main-color);
    transition: color var(--main-transition);
}
header .side-left ul.social-side-left li a:hover {
    color: var(--main-color);
}


.home {
    overflow: hidden;
}
.home .container {
    position: relative;
    background-color: var(--bg-color-3);
    z-index: 1;
}
.home .section-moving-shape {
    position: absolute;
    bottom: 75px;
    right: -25px;
    width: 150px;
    animation: home-shape 1s ease-in-out alternate infinite;
    z-index: -1;
}

.home .main-flex-section .image img {
    display: block;
    width: 100%;
    max-width: 390px;
}
.home .main-flex-section .text {
    padding: 5% 5%;
    /*display: flex;*/
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.home .main-flex-section .text h1 {
    font-size: 50px;
    font-weight: 200;
    line-height: 94px;
    letter-spacing: -4px;
	color: var(--main-color);
}
.home .main-flex-section .text p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    padding-left: 10px;
    padding-right: 30px;
    padding-bottom: 20px;
}

/* 5. About section Styles */
.about .about-content {
    background-color: var(--bg-color-3);
}
.about .about-content .text p {
    padding-bottom: 20px;
}
.about .about-content .features {
    display: flex;
    justify-content: space-between;
}
.about .about-content .features .box {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.about .about-content .features .box img {
    width: 120px;
    max-width: 100%;
}
.about .about-content .features .box span {
    padding-top: 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
}


.skills .skills-content {
    position: relative;
    background-color: var(--bg-color-2);
}
.skills .skills-content img.section-moving-shape {
    position: absolute;
    bottom: 40px;
    left: -50px;
    width: 100px;
    animation: skills-shape 1s ease-in-out alternate infinite;
}

.skills .skills-content .progress-box .prog-bar {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.skills .skills-content .progress-box .prog-bar .bar {
    display: inline-block;
    position: relative;
    flex: 1;
    padding-left: 10px;
    line-height: 12px;
    letter-spacing: 3.5px;
    font-size: 10px;
    font-weight: 500;
    background-color: #fff;
    color: #fcf7f1;
    z-index: 1;
}
.skills .skills-content .progress-box .prog-bar .bar span.bar-percent{
    position: absolute;
    top: 50%;
    left: 0;
    height: 22px;
    width: 20px;
    transform: translateY(-50%);
    background-color: var(--main-color);
    transition: width 0.7s ease;
    z-index: -1;
}
.skills .skills-content .progress-box .prog-bar span.value {
    display: block;
    margin-left: 30px;
    font-size: 22px;
    line-height: 44px;
    color: #bea17d;
}


.facts {
    overflow: hidden;
}
.facts .facts-content {
    position: relative;
    background-color: var(--bg-color-3);
}
.facts .facts-content img.section-moving-shape {
    position: absolute;
    bottom: 50px;
    right: -100px;
    width: 150px;
    animation: facts-shape 1s ease-in-out alternate infinite;
}
.facts .facts-content p.text {
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 50px;
}
.facts .facts-content .counter-area {
    display: flex;
    flex-wrap: wrap;
}
.facts .facts-content .counter-area > .counter-box {
    flex-basis: 50%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.facts .facts-content .counter-area > .counter-box i {
    font-size: 60px;
    line-height: 60px;
    color: var(--main-color);
    margin-bottom: 25px;
}
.facts .facts-content .counter-area > .counter-box span.value {
    font-size: 60px;
    line-height: 60px;
    color: var(--main-color);
    font-weight: 700;
}
.facts .facts-content .counter-area > .counter-box span.title {
    font-size: 19px;
    line-height: 48px;
    font-weight: 400;
}


.contact .main-heading {
    position: relative;
}
.contact .main-heading img {
    position: absolute;
    top: calc(50% - 55px);
    left: -45px;
    width: 110px;
    animation: contact-shape 5s linear infinite;
}

.contact .contact-content {
    background-color: var(--bg-color-3);
}
.contact .contact-content .text p.bolder-p {
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 50px;
}
.contact .contact-content .text p.main-p {
    padding-bottom: 40px;
}
.contact .contact-content .form-field {
    padding: 20px 0;
}
.contact .contact-content .form-field form > div {
    position: relative;
    margin-bottom: 35px;
}
.contact .contact-content .form-field form > div input,
.contact .contact-content .form-field form > div textarea {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 25px;
    font-weight: 500;
    color: var(--main-color);
    border: none;
    border-bottom: 2px solid var(--main-color);
    background-color: transparent;
    padding: 5px 2px 7px;
    width: 100%;
    height: 25px;
}
.contact .contact-content .form-field form > div textarea {
    height: 150px;
    resize: vertical;
}
.contact .contact-content .form-field form > div input:focus,
.contact .contact-content .form-field form > div textarea:focus {
    outline: none;
}
.contact .contact-content .form-field form > div span {
    position: absolute;
    top: -7px;
    left: 0px;
    font-size: 18px;
    font-weight: 700;
    pointer-events: none;
    transition: all 0.3s ease;
}
.contact .contact-content .form-field form > div input:focus + span,
.contact .contact-content .form-field form > div textarea:focus + span,
.contact .contact-content .form-field form > div input.input-fill + span,
.contact .contact-content .form-field form > div textarea.input-fill + span,
.contact .contact-content .form-field form > div span.has-content {
    top: -18px;
    font-size: 11px;
}
.contact .contact-content .form-field form > input[type="submit"] {
    display: block;
    font-family: 'Montserrat' , sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    width: 100%;
    padding: 20px 0;
    margin-top: -13px;
    color: var(--main-color);
    background-color: transparent;
    border: 2px solid var(--main-color);
    cursor: pointer;
    transition: var(--main-transition);
}
.contact .contact-content .form-field form > input[type="submit"]:hover {
    background-color: var(--main-color);
    color: var(--bg-color-1);
}


footer {
    padding: 60px 10px;
    text-align: center;
}
footer ul.foot-social {
    display: flex;
    justify-content: space-evenly;
    max-width: 500px;
    padding: 10px;
    margin: 0px auto 4px;
}
footer a {
    color: var(--main-color);
    transition: color var(--main-transition);
}
footer a:hover {
    color: var(--main-color);
}
footer ul.foot-social li a i {
    font-size: 28px;
    line-height: 28px;
}
footer .copyright-holder {
    margin-bottom: 0px;
}



/* Small */
@media (max-width: 650px) {
    header nav {
        position: absolute;
        right: -100% !important;
        top: 100%;
        width: 100% !important;
        height: calc(100vh - 77px);
        overflow-y: auto;
        color: #7a5932;
        padding-left: 40% !important;
        padding-top: 20px;
        padding-bottom: 20px;
        transition: all var(--main-transition);
    }
    header nav.nav-activate {
        right: 0px !important;
    }
    header nav.nav-activate ~ .side-left a.logo {
        display: none;
    }
    header .side-left ul.social-side-left {
        display: none;
    }
    header nav.nav-activate ~ .side-left .social-side-left {
        display: flex;
    }
    .blogs-field,
    .single .blog-box {
        margin: 0 8px;
    }
    .blog-box ul.blog-info {
        flex-direction: column;
    }
    .blog-box ul.blog-info li {
        padding-left: 0px !important;
        margin-top: 5px;
    }
    .blogs-field .blog-box h2.blog-title,
    .single h1 {
        font-size: 27px;
        line-height: 32px;
    }
}
@media (max-width: 767px) {
    .comman-padding {
        padding: 30px 15px !important;
    }
    .main-heading {
        padding: 30px 15px !important;
    }
    .portfolio .main-flex-section,
    .skills .main-flex-section,
    .facts .main-flex-section,
    .contact .main-flex-section {
        flex-wrap: wrap-reverse;
    }
    .main-flex-section > div,
    .facts .facts-content .counter-area > .counter-box {
        flex-basis: 100% !important;
    }
    .home .container {
        padding: 30px 15px;
    }
    .home .main-flex-section .image img.desktop-home-image {
        display: none;
    }
    .home .main-flex-section .image img.mobile-home-image {
        display: block;
    }
    .home .main-flex-section .text {
        padding: 0;
    }
    .home .main-flex-section .text h1 {
        margin-top: 0px;
        font-size: 30px !important;
        line-height: 50px !important;
    }
    .home .main-flex-section .text p {
        margin-top: 0;
        padding-right: 0;
    }
    .portfolio-load-content-holder.show {
        padding: 30px 15px;
    }
    .about .about-content .features,
    .single .blog-foot {
        flex-direction: column;
    }
    .about .about-content .features .box img {
        width: 120px;
    }
    .education .education-content .edu-holder .edu-box {
        padding: 0px 0 30px 40px;
    }
    .education .education-content .edu-holder .edu-box p.text {
        margin-left: 15px;
    }
    .single .blog-foot > div {
        text-align: center !important;
        margin: 0px 10px;
    }
    .single .blog-foot > div:first-child {
        padding-bottom: 40px;
    }
    .single .blog-foot .separator {
        display: none;
    }
    .grid-sizer,
    .grid-item {
        top: 0 !important;
        left: 0 !important;
        position: relative !important;
        width: 100% !important;
        border: 0;
        transform: none !important;
    }
}
@media (min-width: 768px) {
    .home .main-flex-section .image img.desktop-home-image {
        display: block;
    }
    .home .main-flex-section .image img.mobile-home-image {
        display: none;
    }
    .facts .facts-content .counter-area > .counter-box:nth-child(1),
    .facts .facts-content .counter-area > .counter-box:nth-child(2) {
        margin-bottom: 20px;
    }
}
/* Medium */
@media (max-width: 991px) {
    .comman-padding {
        padding: 10% 13%;
    }
    .home .main-flex-section .text h1 {
        font-size: 66px;
        line-height: 60px;
    }
    .main-heading {
        padding: 100px 10px;
    }
    .main-heading h2 {
        font-size: 40px;
        line-height: 40px;
    }
}
@media (min-width: 992px) {

}
/* Large */
@media (max-width: 1300px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: #faeddf;
        padding: 0 20px;
        height: 77px;
    }
    header .container {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 77px;
    }
    header nav {
        position: absolute;
        right: -300px;
        top: 100%;
        width: 300px;
        height: calc(100vh - 77px) !important;
        overflow-y: auto;
        padding-left: 100px;
        padding-top: 20px;
        padding-bottom: 20px;
        transition: all var(--main-transition);
    }
    header nav.nav-activate {
        right: 0px;
    }
    header nav ul li a {
        padding: 10px 18px 10px 0px;
        margin-bottom: 5px;
    }
    header .menu-toggler {
        top: 50%;
        right: 15px;
    }
    header .side-left {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    header .side-left a.logo {
        padding-bottom: 0px;
    }
    header .side-left ul.social-side-left {
        transform: translateX(500px);
        transition: 0.3s linear;
    }
    header nav.nav-activate ~ .side-left .social-side-left {
        transform: translateX(0px);
    }
    .blog,
    .single {
        padding-top: 50px;
    }
}
@media (min-width: 1301px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    header .container {
        position: relative;
    }
    header nav {
        width: 100%;
        transform: translateY(-77px);
        transition: all var(--main-transition);
        z-index: 999;
    }
    header nav.nav-activate {
        transform: translateY(0);
    }
    header nav ul {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px 0;
    }
    header nav ul li:not(:last-of-type) {
        margin-right: 10px;
    }
    header nav ul li a {
        padding: 15px;
    }
    header .menu-toggler {
        top: calc(50% - 2px);
        right: calc(100% + 25px);
    }
    header .side-left {
        position: absolute;
        right: 100%;
        top: 0;
        height: 100%;
        width: 100%;
        transform: rotate(-90deg);
        transform-origin: right bottom;
        display: flex;
        justify-content: flex-start;
        flex-direction: row-reverse;
        align-items: center;
    }
}

.btn {
  appearance: none;
    -webkit-appearance: none;
  font-family: sans-serif;
  cursor: pointer;
  padding: 12px;
  min-width: 100px;
  margin-top: 15px;
  border: 0px;
    -webkit-transition: background-color 100ms linear;
    -ms-transition: background-color 100ms linear;
     transition: background-color 100ms linear;
}

.btn:focus, .btn.focus {
  outline: 0;
}

.btn-primary {
  background: #3498db;
  color: #ffffff;
}

.btn-primary:hover {
  background: #2980b9;
  color: #ffffff;
}

.btn-success {
  background: #2ecc71;
  color: #ffffff;
}

.btn-success:hover {
  background: #27ae60;
  color: #ffffff;
}

.btn-warning {
  background: #f1c40f;
  color: #ffffff;
}

.btn-warning:hover {
  background: #f39c12;
  color: #ffffff;
}

.btn-danger {
  background: #e74c3c;
  color: #ffffff;
}

.btn-danger:hover {
  background: #c0392b;
  color: #ffffff;
}


.thank-you{display: none;}