/* Preloader Start */
#loading {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: fixed;
    display: block;
    z-index: 99
}
.projecstinners {
    background: #fff;
    height: 100%;
}
#loading-image {
    position: absolute;
    top: 40%;
    left: 45%;
    z-index: 100
}

#preloader {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background-color: #1abc9c;
    z-index: 99;
}

#preloader .container {
    top: 50%;
    left: 50%;
    position: absolute;
}

.circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    animation: 2s spin linear infinite;
}

.circle:nth-child(2) {
    animation-delay: .2s;
}

.circle:nth-child(3) {
    animation-delay: .4s;
}

@keyframes spin {
    0% {
        transform-origin: 300% 50%;
        transform: rotate(0deg);
    }

    50% {
        transform-origin: 300% 50%;
        transform: rotate(360deg);
    }

    50.1% {
        transform-origin: -300% 50%;
        transform: rotate(360deg);
    }

    100% {
        transform-origin: -300% 50%;
        transform: rotate(0deg);
    }
}

/* Prelader End */
/* Header starts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); html, body {
    font-family: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
}

#portfolioheader {
    background-image: url(../img/VineeshCoverpic.jpg);
    min-height: 100vh;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 767px) {
    header#portfolioheader h2.deignation {
        font-size: 19px;
        color: #f2ff2c;
        text-shadow: 0 0 4px #000;
    }

    #portfolioheader p {
        font-weight: 500;
        text-shadow: 0 0 4px #000;
    }

    h1.Myname {
        text-shadow: 0 0 4px #000;
    }

    #portfolioheader{
    background-image: url("../img/VineeshCoverpicMobile.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;      /* fills screen, may crop (normal) */
    /* OR use contain if you want full image visible */
    /* background-size: contain; */
    padding-right: 64px;
  }
}

.hamburger li {
    list-style: none;
}

.hamburger input[type="checkbox"] {
    width: 50px;
    height: 43px;
    position: absolute;
    top: 5px;
    left: 6px;
    display: block;
    z-index: 999999999;
    opacity: 0;
    cursor: pointer;
}

.hamburgerlines {
    width: 46px;
    height: 46px;
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 9999999;
    background: #fff;
    padding: 11px;
    border-radius: 30px;
}

.hamburgerlines .lines {
    display: block;
    height: 3px;
    width: 100%;
    background: #232323;
    border-radius: 10px;
}

.hamburger {
    position: relative;
}

ul.menu-items li a {
    color: #fff;
    text-decoration: none;
}

ul.menu-items {
    padding-left: 50px !important;
    height: 100vh;
    z-index: 99999 !important;
}

.hamburgerlines * {
    color: #000 !IMPORTANT;
}

.hamburger input[type="checkbox"]:checked ~ .hamburgerlines {
    padding-left: 12px;
    width: 47px;
    margin: 0 !important;
}

.menu-items {
    padding-top: 50px !important;
    transition: transform 0.5s ease-in-out;
    padding-left: 15px;
    background: #fff;
    /* margin-top: -10px; */
    color: #fff;
    padding-bottom: 1rem;
    max-width: 400px;
    width: 320px;
    height: 100vh;
    position: fixed;
    right: -400px;
    padding-bottom: 30px !IMPORTANT;
    transition: ease all 1s;
}

.menu-items li {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.hamburger input[type="checkbox"]:checked ~ .menu-items {
    display: block;
    right: 0;
    background: #000000;
}

.hamburger input[type="checkbox"]:checked ~ .hamburgerlines .lines {
    background: #000;
}

.hamburgerlines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.3s ease-in-out;
}

.hamburgerlines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.3s ease-in-out;
}

.hamburger input[type="checkbox"]:checked ~ .hamburgerlines .line1 {
    transform: rotate(42deg);
    width: 31px;
}

.hamburger input[type="checkbox"]:checked ~ .hamburgerlines .line2 {
    display: none;
}

.hamburger input[type="checkbox"]:checked ~ .hamburgerlines .line3 {
    transform: rotate(-42deg);
    width: 31px;
}

.hamburger {
    position: fixed;
    right: 70px;
    z-index: 99;
}

h2.deignation {
    color: #ffd61f;
    font-weight: 700;
    margin: 30px 0 20px;
}

#portfolioheader p {
    color: #fff;
    line-height: 29px;
    font-weight: 400;
}

.resumes {
    background: #464646;
    padding: 50px 0;
    text-align: center;
    color: #fff;
}

.resumes h3 {
    color: #fff;
    width: 100%;
}

.resumes a {
    background: #f33e81;
    width: auto;
    display: inline-block;
    margin: auto;
    transition: ease all .5s;
    padding: 15px 40px;
    margin-top: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 19px;
    border-radius: 50px;
    border: 6px solid #ffffff52;
}

.resumes a:hover {
    background: #cd1f5f;
}

#portfolioheader .col-md-6.offset-md-6 {
    padding-bottom: 80px;
}

h2.deignation {
    color: #ffd61f;
    font-weight: 700;
    margin: 0px 0 20px;
}

#portfolioheader p {
    color: #fff;
    line-height: 33px;
    font-weight: 500;
}

#portfolioheader .col-md-6.offset-md-6 {
    padding-bottom: 40px;
}

h1.Myname {
    color: #fff;
    font-weight: 800;
    margin-top: 22px;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Header Ends */
/* Skills Start */
ul.skillsList {
    list-style: none;
    padding: 0;
    text-align: center;
    line-height: 32px;
    font-weight: 500;
    color: #79314d;
}

section#skills {
    padding: 80px 0;
    text-align: center;
    background: #f9f9f9;
    background: rgb(242,219,146);
    background: linear-gradient(153deg, rgb(255 253 245) 0%, rgb(255 221 129) 100%);
}

section#skills h3 {
    font-weight: 600;
    color: #79314d;
}

h2.heading {
    font-weight: 800;
    margin-bottom: 40px;
    font-size: 51px;
    font-size: 72px;
    background: -webkit-linear-gradient(#f14084 20%, #79314d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.skillImage i {
    color: #79314d;
    font-size: 38px;
    background: -webkit-linear-gradient(#f14084 20%, #79314d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.skillImage {
    margin: 20px 0;
}

#skills h3 {
    margin: 28px 0 20px;
}

/* Skills End */
/* Portfolio Start */
.portfolio-section {
    padding: 50px 0;
    background-color: #000;
}

.portfolio-menu {
    text-align: center;
}

.control {
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border: 1px solid #343a40;
    border-radius: 3px;
    margin: 5px;
    cursor: pointer;
    -webkit-transition: all 05s ease;
    -moz-transition: all 05s ease;
    -ms-transition: all 05s ease;
    -o-transition: all 05s ease;
    transition: all 0.5s ease;
}

.control:hover {
    background: #343a40;
}

.mixitup-control-active {
    color: #fff;
    background: #343a40;
}

.fancybox-container button:focus {
    outline: 0;
    box-shadow: none;
}

.portfolio-item {
    padding-top: 30px;
    box-sizing: border-box !important;
    width: 100%;
}

.pd {
    padding: 0;
    padding: 10px;
    box-sizing: border-box;
}

.pd img {
    max-height: 100%;
    transition: all 0.5s;
    max-width: 100%;
}

.portfolio-overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    text-align: center;
    visibility: hidden;
    transition: all 0.5s;
    transform: scale(0);
}

.portfolio-overlay p, .portfolio-overlay a {
    position: relative;
    z-index: 4;
}

.portfolio-overlay::before {
    content: "";
    width: 0;
    height: 0;
    border-width: 0;
    position: absolute;
    left: 10%;
    top: 10%;
    transition: 50ms height ease 150ms;
    z-index: 3;
}

.portfolio-overlay::after {
    content: "";
    width: 0;
    height: 0;
    border-width: 0;
    position: absolute;
    right: 10%;
    bottom: 10%;
    transition: 100ms width ease 200ms;
    z-index: 3;
}

.portfolio-item:hover .portfolio-overlay::before {
    width: 80%;
    height: 80%;
    border-top: 1px solid #ea3b7e;
    border-right: 1px solid #ea3b7e;
    transition: width 0.1s ease 0.3s, height 0.1s ease 0.5s;
}

.portfolio-item:hover .portfolio-overlay::after {
    width: 80%;
    height: 80%;
    border-bottom: 1px solid #ea3b7e;
    border-left: 1px solid #ea3b7e;
    transition: width 0.1s ease 0.6s, height 0.1s ease 0.7s;
}

.portfolio-item li:hover .portfolio-overlay {
    visibility: visible;
    transform: scale(1);
}

.portfolio-overlay .category {
    margin-top: 70px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.portfolio-overlay .magnify-icon {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background: #ea3b7e;
    margin: 0 5px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.25s;
}

.portfolio-overlay .magnify-icon:hover {
    background: #000;
}

.portfolio-overlay .magnify-icon p span i {
    font-size: 15px;
    color: #fff;
    line-height: 40px;
    cursor: pointer;
}

li.mix {
    position: relative;
    overflow: hidden;
}

/* Portfolio End */
/* Testimonials Start */
section#testimonials {
    position: relative;
    text-align: center;
    background: #f9f9f9;
    background: rgb(242,219,146);
    background: linear-gradient(153deg, rgb(255 253 245) 0%, rgb(255 221 129) 100%);
}

.section-title {
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-weight: 400;
    display: inline-block;
    position: relative;
}

.section-title:after, .section-title:before {
    content: "";
    position: absolute;
    bottom: 0;
}

.section-title:after {
    height: 2px;
    background-color: rgba(252, 92, 15, 0.46);
    left: 25%;
    right: 25%;
}

.section-title:before {
    width: 15px;
    height: 15px;
    border: 3px solid #fff;
    background-color: #fc5c0f;
    left: 50%;
    transform: translatex(-50%);
    bottom: -6px;
    z-index: 9;
    border-radius: 50%;
}

/* CAROUSEL STARTS */
.customer-feedback .owl-item img {
    width: 85px;
    height: 85px;
}

.feedback-slider-item {
    position: relative;
    padding: 60px;
    margin-top: -70px;
    display: block;
    float: left;
}

.customer-name {
    margin-top: 5px;
    margin-bottom: 35px;
    font-size: 20px;
    font-weight: 700;
    COLOR: #000;
}

.feedback-slider-item p {
    line-height: 1.875;
}

.customer-rating {
    background-color: #eee;
    border: 3px solid #fff;
    color: rgba(1, 1, 1, 0.702);
    font-weight: 700;
    border-radius: 50%;
    position: absolute;
    width: 47px;
    height: 47px;
    line-height: 44px;
    font-size: 15px;
    right: 0;
    top: 77px;
    text-indent: -3px;
}

.thumb-prev .customer-rating {
    top: -20px;
    left: 0;
    right: auto;
}

.thumb-next .customer-rating {
    top: -20px;
    right: 0;
}

.customer-rating i {
    color: rgb(251, 90, 13);
    position: absolute;
    top: 10px;
    right: 5px;
    font-weight: 600;
    font-size: 12px;
}

/* GREY BACKGROUND COLOR OF THE ACTIVE SLIDER */
.feedback-slider-item:after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    top: 103px;
    background-color: #f6f6f6;
    border: 1px solid rgba(251, 90, 13, 0.1);
    border-radius: 10px;
    z-index: -1;
}

.thumb-prev, .thumb-next {
    position: absolute;
    z-index: 99;
    top: 45%;
    width: 98px;
    height: 98px;
    left: -90px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.thumb-next {
    left: auto;
    right: -90px;
}

.feedback-slider-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.feedback-slider-thumb:hover {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

.customer-feedback .owl-nav [class*="owl-"] {
    /* position: relative; */
    display: inline-block;
    bottom: 45px;
    transition: all 0.2s ease-in;
    margin: 0 10px;
}

.customer-feedback .owl-nav i {
    background-color: transparent;
    color: rgb(251, 90, 13);
    font-size: 25px;
}

.customer-feedback .owl-prev {
    left: -15px;
}

.customer-feedback .owl-prev:hover {
    left: -20px;
}

.customer-feedback .owl-next {
    right: -15px;
}

.customer-feedback .owl-next:hover {
    right: -20px;
}

/* DOTS */
.customer-feedback .owl-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 35px;
}

.customer-feedback .owl-dot {
    display: inline-block;
}

.customer-feedback .owl-dots .owl-dot span {
    width: 11px;
    height: 11px;
    margin: 0 5px;
    background: #fff;
    border: 1px solid rgb(251, 90, 13);
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    border-radius: 50%;
}

.customer-feedback .owl-dots .owl-dot.active span {
    background-color: rgb(251, 90, 13);
}

section#testimonials {
    padding: 70px 0;
    text-align: center;
    overflow: hidden;
}

/* RESPONSIVE */
@media screen and (max-width: 767px) {
    .feedback-slider-item:after {
        left: 30px;
        right: 30px;
    }

    .customer-feedback .owl-nav [class*="owl-"] {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 45px;
        bottom: auto;
    }

    .customer-feedback .owl-prev {
        left: 0;
    }

    .customer-feedback .owl-next {
        right: 0;
    }
    header#portfolioheader {
    padding-right: 0;
}
}

/* Testimonials End */
/* Contacts Us Start */
#contact {
    background: rgb(108,72,169);
    background: linear-gradient(140deg, rgba(108,72,169,1) 0%, rgba(255,40,122,1) 100%);
    padding: 82px 0;
}

fieldset {
    float: left;
    width: 100%;
    margin-bottom: 19px;
}

a.btn.submitBtn {
    background: #9d5aa9;
    color: #fff;
}

.contactForm {
    padding: 30px;
    background: #fff !important;
    float: left;
    border-radius: 20px;
    box-shadow: 0 0 20px #62626280;
}

.form-control {
    min-height: 47px;
    background: #e1e1e1;
    border: 0;
    box-shadow: none;
    appearance: none;
}

textarea.form-control {
    min-height: 100px;
    box-shadow: none;
    appearance: none;
}

h3 {
    color: #cc338a;
    font-size: 24px;
    margin-bottom: 14px;
    font-weight: 700;
}

input.form-control:focus, .success {
    border: 2px solid #85c5a7 !important;
    box-shadow: none !IMPORTANT;
    background: #3cec4d14;
}

input.form-control:focus {
    border: 2px solid #85c5a7 !important;
    box-shadow: none !IMPORTANT;
    background: #3cec4d14;
}

.vineeshContactDetails {
    color: #fff;
    font-size: 18px;
    margin-top: 22px;
    font-weight: 500;
    line-height: 32px;
}

.vineeshContactDetails p {
    margin-bottom: 0px;
}

.footerContacts {
    text-align: center;
    padding-top: 39px;
}

.socialmedia ul {
    list-style: none;
    padding: 0;
}

.socialmedia ul li {
    display: inline-block;
    color: #fff;
    padding: 10px;
}

.vineeshContactDetails a {
    color: #ffffffb8;
    text-decoration: none;
}

.socialmedia ul li a {
    background: #900967;
    width: 40px;
    height: 40px;
    float: left;
    border-radius: 30px;
    padding: 6px;
    color: #ffdd83;
    font-size: 20px;
    transition: ease all .5s;
}

.socialmedia ul li a:hover {
    background: #790556;
    color: #fff;
}

.socialmedia {
    margin: 20px 0;
}

.copyright {
    color: #ffffffa1;
    font-weight: 500;
    font-size: 13px;
}

/* Contacts Us End */
#portfolioheader h4 {
    font-weight: 800;
    color: #ffd61f;
}

#portfolioheader ul li {
    line-height: 34px;
    color: #fff;
}
.projecstinners.andmore {
    padding: 20px;
    width: 100%;
    height: 100%;
}

.projecstinners.andmore p {
    border: 1px solid #cc338a;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    font-weight: 800;
    font-size: 41px;
    line-height: 51px;
    display: table;
    width: 100%;
    display: flex;
    align-items:center;
    justify-content:center;
}
#portfolioheader ul {
    padding: 0;
    list-style: none;
}
.portfolio-overlay .category {
    padding: 0 52px;
}


