/* ######## basic body items and defaults ###### */
@font-face {
    font-family: 'Candara';
    src: local('Candara'), url('/Candara.ttf') format('truetype');
}
@font-face {
    font-family: 'Corbel';
    src: local('Corbel'), url('/Corbel.ttf') format('truetype');
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 53px 0 0 0;
    background: rgba(244, 225, 255, 1);
} 

.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    display: flex;
    align-items: center;
}
.scroll-to-top button {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    opacity: 0.5;
    height: 50px;
    width: 50px;
    border: 3px solid rgba(129, 5, 200, 1);
    color: rgba(129, 5, 200, 1);
    border-radius: 50%;
    font-weight: bold;
    font-family: Corbel;
    transition: all 0.2s ease-in;
}
.scroll-to-top button:hover {
    opacity: 1;
}
/* ###### navbar ######### */

.navbar {
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 59px;
    background: rgba(129, 5, 200, 1);
    padding: 0 11.9vw;
    display: grid;
    grid-template-columns: repeat(12, minmax(1px, 1fr));
    justify-content: center;
}   
.brand-name {
    padding: 1px;
    grid-column: 1/3;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Candara;
    font-weight: bold;
}
.brand-name__inverted {
    margin-left: 5px;
    background: #fff;
    color: rgba(129, 5, 200, 1);
    height: 33px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
} 

.navbar-items {
    grid-column: 7/13;
    display: grid;
    align-items: center;
}
.navbar-items ul {
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
    float: right;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: normal;
    font-family: Candara;
}
.navbar-items ul li:hover {
    cursor: pointer;
    text-decoration: underline;
}
.active-page {
    font-weight: bold;
    text-decoration: underline;
}
.hireMe-button {
    font-weight: bold;
    border: 3px solid #fff;
    outline: none;
    background: rgba(129, 5, 200, 1);
    height: 37px;
    width: 100px;
    color: #fff;
    border-radius: 18px;
}
.drop-down {
    display: none;
}
.navbar-items--responsive-display {
    display: none;
    z-index: 1;
    position: fixed;
    top: 53px;
    right: 0;
    width: 900px;
    max-width: 100%;
    background: rgba(129, 5, 200, 1);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: all 0.7s ease-in;
    clip-path: circle(10px at 0 -70px);
}
.drop-down__active-display {
    clip-path: circle(1000px at 0 -70px);
}
.navbar-items--responsive-display ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.navbar-items--responsive-display ul li {
    margin-left: 20px;
    font-size: 16px;
    line-height: 40px;
    color: #fff;
    font-family: Candara;
    font-weight: bold;
}
.custom-navbar-links a {
    margin: 10px 0 0 0;
}
.sender {
    display: grid;
    position: fixed;
    top: 111px;
    left: 50%;
    transform: translate(-50%, -400px);
    opacity: 0;
    width: 510px;
    max-width: 100%;
    border: 2px solid rgba(129, 5, 200, 1);
    background: rgba(255,255,255, 0.89);
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
    padding: 46px 0;
    border-radius: 42px;
    z-index: -100; 
    transition: all 0.5s ease-in;
}
.sender-active {
    z-index: 199;
    transform: translate(-50%, 0);
    opacity: 1;
}
.sender-email,
.sender-job-description,
.sender p,
.sender-buttons {
    margin: 23px 0 0 0;
    grid-column: 2/6;
    font-family: Candara;
    font-weight: bold;
    color: rgba(129, 5, 200, 1);
    display: flex;
    flex-direction: column;
}
.sender-email label,
.sender-job-description label {
    font-size: 14px;
}
.sender-email {
    margin: 0;
}
.sender-email input,
.sender-job-description textarea {
    margin-top: 23px;
    padding: 13px 16px;
    font-size: 16px;
    line-height: 18px;
    color: rgba(66, 18, 94, 1);
    border: 0;
    border-bottom: 3px solid rgba(129, 5, 200, 1);
    outline: 0;
    box-sizing: content-box;
    transition: all 0.6s linear;
    background: inherit;
}
.sender-email input:focus,
.sender-job-description textarea:focus {
    border: 0;
    border-bottom: 3px solid rgba(129, 5, 200, 1);
    border-left: 3px solid rgba(129, 5, 200, 1);
}
.sender-job-description textarea {
    padding-top: 0;
    height: 120px;
    font-family: inherit;
    line-height: 24px;
    resize: none;
}
.sender p {
    width: 203px;
    max-width: 100%;
    justify-self: right;
}
.sender-buttons {
    flex-direction: row;
    justify-content: center;
}
.sender-buttons .submit,
.sender-buttons .close {
    padding: 10px 24px;
    font-size: 18px;
    line-height: 18px;
    font-family: Candara;
    color: rgba(129, 5, 200, 1);
    font-weight: bold;
    border: 3px solid rgba(129, 5, 200, 1);
    border-radius: 22px;
    outline: none;
}
.sender-buttons .close {
    margin-left: 10px;
    background: red;
    color: #fff;
    border: 3px solid red;
}
/* ####### first part namings and all ##### */
 
.introductory {
    padding: 0 11.9vw;
    margin-top: 115px;
    display: grid;
    grid-template-columns: repeat(12, minmax(1px, 1fr));
}
.text-introductory {
    grid-column: 1/7; 
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
}
.introduction-1 {
    grid-column: 1/5;
    margin: 0;
    padding: 0;
    font-size: 25px;
    line-height: 31px;
    font-family: Corbel;
    font-weight: bold;
}
.introduction-2 {
    grid-column: 1/7;
    margin: 8px 0 0 0;
    padding: 0;
    font-size: 45px;
    line-height: 55px;
    font-weight: bold;
    font-family: Candara;
}
.introduction-3 {
    grid-column: 1/6;
    margin: 17px 0 0 0;
    padding: 0;
    font-size: 21px;
    line-height: 28px;
    font-family: Corbel;
    font-weight: bold;
}
.resume-download {
    grid-column: 1/5;
    margin: 15px 0 0 0;
    padding: 0;
    display: flex;
}
.resume-download button {
    background: #fff;
    height: 53px;
    min-width: 248px;
    outline: none;
    border: 3px solid rgba(129, 5, 200, 1);
    border-radius: 29px;
    font-size: 21px;
    line-height: 26px;
    font-weight: bold;
    color: rgba(129, 5, 200, 1);
    font-family: Candara;
}
.scroll-icon {
    background: #fff;
    height: 53px;
    min-width: 25px;
    border-radius: 18px;
    border: 3px solid rgba(129, 5, 200, 1);
    margin-left: 16px;
    display: grid;
}
.scroll-icon-inner {
    width: 8px;
    height: 16px;
    border-radius: 18px;
    background: rgba(129, 5, 200, 1);
    margin: auto;
    animation: scrolll ease-out;
    animation-duration: 1.3s;
    animation-iteration-count: infinite;
}
@keyframes scrolll {
    0% {
        transform: translateY(-11px);
        opacity: 0;
    }
    100% {
        transform: translateY(9px);
        opacity: 1;
    }
}
.introductory .avatar {
    grid-column: 9/12;
}
.avatar-content {
    height: 250px;
    width: 250px;
    border-radius: 50%;
    background: url('/mainAvatar1.png');
    background-size: cover;
    box-shadow: -2px 2px 2px 0 rgba(0,0,0,0.2);
}

/* ###### key features and deliverables ###### */

.key-aspects {
    padding: 0 11.9vw;
    margin-top: 130px;
    display: grid;
    grid-template-columns: repeat(12, minmax(1px, 1fr));
}
.key-aspects-inner {
    grid-column: 1/13;
    border: 1.5px solid rgba(129, 5, 200, 1);
    padding: 75px;
    box-shadow: -5px -5px 10px 0 rgba(129, 5, 200, 0.3) , 5px 5px 10px 0 rgba(129, 5, 200, 0.3);
    border-radius: 42px;
    display: grid;
    column-gap: 59px;
    row-gap: 59px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    grid-auto-rows: auto;
    justify-content: center;
}
.aspect {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.aspect-logo {
    width: 119px;
    height: 119px;
    transform: rotate(-45deg);
    border: 3px solid rgba(129, 5, 200, 1);
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.aspect-logo div {
    height: 50%;
    width: 50%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    transform: rotate(45deg);
}
.aspect h2 {
    margin: 34px 0 0 0;
    padding: 0;
    font-size: 21px;
    line-height: 26px;
    font-weight: bold;
    font-family: Candara;
    color: rgba(66,18,94,1);
}
.aspect p {
    text-align: center;
    font-size: 15px;
    line-height: 18px;
    font-family: Candara;
    font-weight: bold;
    color: rgba(129, 5, 200, 1);
}


/* #### skills ##### */

.homepage__skills, 
.homepage__projects{
    margin: 83px 0 0 0;
    padding: 0 11.9vw;
    display: grid;
    grid-template-columns: repeat(12, minmax(1px, 1fr));
    grid-auto-rows: auto;
}
.homepage__skills h1,
.homepage__projects h1 {
    margin: 0;
    padding: 0;
    grid-column: 1/-1;
    font-size: 36px;
    font-family: Corbel;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    color: rgba(66,18,94,1);
}
.skills-items,
.projects-items {
    grid-column: 2/12;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    grid-gap: 16px;
    margin: 51px 0 0 0;
}
.skills-items__item,
.projects-items__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.skill-image,
.project-image {
    width: 100px;
    height: 100px;
    border-radius: 30px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.skill-name,
.project-name {
    margin: 16px 0 0 0;
    font-size: 19px;
    line-height: 23px;
    font-weight: bold;
    color: rgba(66,18,94,1);
    font-family: Corbel;
}
.more-skills,
.more-projects {
    grid-column: 1/-1;
    text-align: center;
}
.more-skills button,
.more-projects button {
    margin: 40px 0 0 0;
    height: 40px;
    width: 136px;
    border: 2px solid rgba(129, 5, 200, 1);
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: rgba(129, 5, 200, 1);
    font-family: Candara;
    font-weight: bold;
    background: #fff;
    border-radius: 22px;
    outline: none;
}

/* #### projects #### */

.project-image {
    width: 150px;
    height: 150px;
}

/* #### testimonials #### */

.testimonials {
    margin: 110px 0 0 0;
    padding: 0 11.9vw;
    display: grid;
    grid-template-columns: repeat(12, minmax(1px, 1fr));
}
.testimonials h1 {
    text-align: center;
    margin: 0;
    padding: 0;
    grid-column: 1/-1;
    font-size: 36px;
    font-family: Corbel;
    font-weight: bold;
    line-height: 40px;
    color: rgba(66,18,94,1);
}
.carousel {
    grid-column: 1/13;
    margin: 50px 0 0 0;
}

/* #### achievements #### */

.achievements {
    margin: 147px 0 0 0;
    padding: 0 11.9vw;
    display: grid;
    grid-template-columns: repeat(12, minmax(1px, 1fr));
}
.achievements h1 {
    margin: 0;
    padding: 0;
    grid-column: 1/-1;
    font-size: 36px;
    font-weight: bold;
    font-family: Corbel;
    line-height: 40px;
    color: rgba(66,18,94,1);
    text-align: center;
}
.achievements-items {
    grid-column: 1/13;
    margin: 50px 0 0 0;
    display: grid;
    row-gap: 50px;
    grid-auto-rows: auto;
}
.achievements-items__item {
    display: grid;
    grid-template-columns: 1fr 3fr;
    column-gap: 35px;
}
.achievements-items__item .avatar {
    justify-self: center;
    width: 120px;
    max-width: 100%;
    height: 120px;
    border-radius: 28px;
    /* border: 1px solid rgba(112,112,112,1); */
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}
.achievements-items__item h2 {
    text-decoration: underline;
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: bold;
    line-height: 26px;
    font-family: Corbel;
    color: rgba(66,18,94,1);
}
.achievements-items__item p {
    margin: 12px 0 0 0;
    padding: 0;
    font-size: 18px;
    line-height: 24px;
    font-family: Corbel;
    color: rgba(129, 5, 200, 1);
}

/* #### footer #### */

.footer {
    overflow: hidden;
    background: rgba(66, 18, 94, 1);
    margin: 107px 0 0 0;
    padding: 46px 11.9vw 46px 11.9vw;
}
.footer__upper {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px , 1fr));
    grid-auto-rows: auto;
    row-gap: 46px;
}
.upper__about-me {
    display: flex;
    flex-direction: column;
}
.little-about {
    width: 80%;
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 25px;
    font-family: Corbel;
    font-style: italic;
    color: #fff;
}
.social-icons {
    width: 30%;
    margin: 25px 0 0 0;
    display: flex;
    justify-content: space-between;
    color: #fff;
}
.social-icons img {
    height: 26px;   
}
.upper__mail-section {
    justify-self: center;
    display: flex;
    flex-direction: column;
}
.upper__mail-section h2 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
    font-family: Corbel;
    line-height: 32px;
    color: #fff;
}
.upper__mail-section h2 img {
    height: 15px;
}
.upper__mail-section p {
    margin: 7px 0 0 0;
    padding: 0;
    text-decoration: underline;
    font-size: 20px;
    line-height: 25px;
    font-family: Corbel;
    color: #fff;
}
.footer__lower {
    margin: 59px 0 0 0;
    grid-column: 1/13;
    font-size: 20px;
    line-height: 25px;
    font-family: Corbel;
    color: #fff;
    text-align: center;
}

/* @@@@@@@@@@@@@@@@@ project page  @@@@@@@@@@@@@@@@@@@@@@ */

/* #### items #### */
.project-page__items {
    padding: 0 11.9vw;
}
.project-page__item {
    margin: 168px 0 0 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto;
}
.project-page__item .avatar {
    grid-column: 1/5;
    grid-row: 1/4;
    width: 336px;
    max-width: 100%;
    border-radius: 39px;
    background: #fff;
}
.project-page__item h2 {
    margin: 0 0 0 30px;
    padding: 0;
    grid-column: 5/11;
    grid-row: 1/2;
    font-size: 40px;
    line-height:44px;
    font-weight: bold;
    font-family: Corbel;
    color: rgba(66,18,99,1);
    text-decoration: underline;
}
.project-page__item h2 img {
    margin-right: 10px;
}
.project-page__item p {
    grid-column: 5/11;
    grid-row: 2/3;
    font-size: 19px;
    line-height: 25px;
    font-weight: bold;
    font-family: Candara;
    color: rgba(129, 5, 200, 1);
    margin: 31px 0 0 30px;
    padding: 0;
}
.project-page__item .buttons {
    grid-column: 5/11;
    grid-row: 3/4;
    margin: 14px 0 0 30px;
    padding: 0;
    display: flex;
    /* width: 240px; */
    max-width: 100%;
    /* justify-content: space-between; */
}
.project-page__item .buttons .view {
    width: 123px;
    height: 32px;
    border-radius: 26px;
    border: 2px solid rgba(129, 5, 200, 1);
    font-size: 15px;
    color: rgba(129, 5, 200, 1);
    font-weight: bold;
    font-family: Candara;
    line-height: 21px;
    background: #fff;
    outline: none;
}
.project-page__item .buttons .view a,
.project-page__item .buttons .visit a {
    text-decoration: none;
    color: inherit;
}
.project-page__item .buttons .visit {
    margin-left: 10px;
    width: 93px;
    height: 32px;
    border-radius: 26px;
    font-size: 15px;
    color: #fff;
    border: 0;
    outline: none;
    font-weight: bold;
    font-family: Candara;
    line-height: 21px;
    background: rgba(129, 5, 200, 1);
}

/* @@@@@@@@@@@ SKILL PAGE @@@@@@@@ */

/* #### SKILL ITEMS ##### */
.skill-page__items {
    margin: 141px 0 0 0;
    padding: 0 11.9vw;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: auto;
    column-gap: 100px;
    row-gap: 70px;
}
.skill-page__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.skill-page__item .avatar {
    width: 160px;
    height: 160px;
    border-radius: 27px;
    background: #fff;
    box-shadow: 2px 2px 4px 0 rgba(222, 169, 252, 1), -2px -2px 4px 0 rgba(222, 169, 252, 1);
}
.skill-page__item h2 {
    margin: 30px 0 0 0;
    padding: 0;
    font-family: Candara;
    font-size: 29px;
    font-weight: bold;
    line-height: 36px;
    color: rgba(66,18,99,1);
}
.skill-page__item p {
    margin: 30px 0 0 0;
    padding: 0;
    font-family: Candara;
    font-size: 16px;
    line-height: 19px;
    color: rgba(129, 5, 200, 1);
    text-align: center;
}

/* #### project particulars ##### */

.project-particulars__introductory {
    margin: 118px 0 0 0;
    padding: 0 11.9vw;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}
.project-particulars__introductory .naming {
    grid-column: 1/6;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.project-particulars__introductory .naming h1{
    margin: 0;
    padding: 0;
    font-size: 41px;
    font-weight: 100;
    font-family: Candara;
    text-decoration: underline;
    color: rgba(129, 5, 200, 1);
}
.project-particulars__introductory .naming button {
    margin: 24px 0 0 0;
    border: 2px solid rgba(129, 5, 200, 1);
    border-radius: 37px;
    height: 45px;
    width: 160px;
    outline: none;
    font-size: 20px;
    font-weight: bold;
    font-family: Corbel;
    color: rgba(129, 5, 200, 1);
}
.project-particulars__introductory .description {
    grid-column:  6/12;
    grid-row: 1/3;
    font-family: Corbel;
    font-size: 24px;
    line-height: 40px;
    font-weight: bold;
    color: rgba(129, 5, 200, 1);
}
.project-particulars__gallery {
    padding: 0 11.9vw;
    margin: 115px 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    grid-auto-flow: row;
}
.project-particulars__gallery .item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.project-particulars__gallery .item h2 {
    margin: 27px 0 0 0;
    padding: 0;
    font-size: 22px;
    color: rgba(129, 5, 200, 1);
    font-weight: bold;
    font-family: Corbel;
}
.project-particulars__gallery .item div {
    margin: 27px 0 0 0;
    width: 248px;
    height: 30px;
    border: 1px solid #707070;
    border-radius: 39px;
}
/* !!!!!! buttons animations - hover !!!!!!!!!!!!! */
.custom-button1 {
    position:relative;
    overflow: hidden;
    transition: all 0.2s ease-in;
    z-index: 3;
    cursor: pointer;
}
.custom-button1:hover {
    background: #fff;
    color: rgba(129, 5, 200, 1);
}
.custom-button1::before {
    content: '';
    height: 0%;
    width: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0 0 50% 50%;
    z-index: -1;
    transition: all 0.2s ease-in;
}
.custom-button1:hover::before {
    height: 120%;
}


.custom-navbar-links a {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in;
    padding-left: 15px;
}
.custom-navbar-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top:0;
    height: 0;
    width: 10px;
    z-index: -1;
    background: #fff;
    transition: all 0.3s ease-in;
}
.custom-navbar-links a:hover::before {
    height: 100%;
}

.custom-button2 {
    position:relative;
    overflow: hidden;
    transition: all 0.3s ease-in;
    z-index: 3;
    cursor: pointer;
}
.custom-button2:hover {
    background: rgba(129, 5, 200, 1);
    color: #fff !important;
}

.custom-button2::before {
    content: '';
    height: 0%;
    width: 100%;
    background: rgba(129, 5, 200, 1);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0 0 50% 50%;
    z-index: -1;
    transition: all 0.3s ease-in;
}
.custom-button2:hover::before {
    height: 140%;
}



.custom-button3 {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in;
    z-index: 3;
    cursor: pointer;
}
.custom-button3:hover {
    color: rgba(129, 5, 200, 1) !important;
    border: 2px solid rgba(129, 5, 200, 1) !important;
}
.custom-button3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #fff;
    border-radius: 0 0 50% 50%;
    transition: all 0.3s ease-in;
    z-index: -1;
}
.custom-button3:hover::before {
    height: 130%;
}


.custom-button4 {
    position:relative;
    overflow: hidden;
    transition: all 0.3s ease-in;
    z-index: 3;
    cursor: pointer;
}
.custom-button4:hover {
    background: #fff;
    color: red !important;
}
.custom-button4::before {
    content: '';
    height: 0%;
    width: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0 0 50% 50%;
    z-index: -1;
    transition: all 0.3s ease-in;
}
.custom-button4:hover::before {
    height: 140%;
}