* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.bgCustom {
    background-color: #FCEBEA;
}

.bgCustomSnd {
    background-color: #FFDCDC;
}

@font-face {
    font-family: '1769 Display';
    src: url('../font/a769.woff2') format('woff2'),
        url('../font/a769.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Header CSS */
.top-menu-right {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.toggle.activate {
    width: 293px;
    justify-content: flex-end;
}

.toggle.activate .line-toggle {
    right: 14px;
}

header {
    position: absolute;
    inset: 0;
    width: 100%;
    height: max-content;
    z-index: 2;
    padding-top: 25px;
}

.menu-links {
    background-color: transparent;
    padding: 6.8px 15px;
    position: absolute;
    bottom: 0;
    border-radius: 50px 0 0 50px;
    right: 50px;
    display: none;
    transition: 0.3s ease;
    box-shadow: 0 3px 7px 0 #00000014;
    column-gap: 15px;
    box-shadow: none;
}

.menu-links.open {
    display: flex;
    column-gap: 15px;
}

.menu-links a {
    display: inline-block;
}

.menu-links a>div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: #f5f5f5;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
}

.menu-links a:hover>div {
    background-color: #f9ebea;
}

.menu-links a img {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

/* Top Menu Toggle CSS */
.toggle {
    cursor: pointer;
    overflow: hidden;
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 3px 7px 0 #00000038;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.line-toggle {
    position: absolute;
    display: block;
    width: 15px;
    height: 3px;
    background: #000;
    border-radius: 5px;
    transition: all .6s;
}

.line-toggle:first-child {
    transform: translateY(-9px) translateX(0px);
    width: 23.6px;
    transition-delay: 0s;
}

.toggle .line-toggle:nth-child(2) {
    transition-delay: .12s;
    transform: translateY(0) translateX(4px);
}

.line-toggle:last-child {
    transform: translateY(9px) translateX(0px);
    width: 23.6px;
    transition-delay: 0s;
}

.toggle.activate .line-toggle:first-child {
    background: #DE705F;
    transform: translateY(0) translateX(0) rotate(45deg);
    width: 26px;
    height: 3px;
    transition-delay: .1s;
}

.toggle.activate .line-toggle:nth-child(2) {
    transform: translateX(110px);
    transition-delay: 0s;
}

.toggle.activate .line-toggle:last-child {
    background: #DE705F;
    transform: translateY(0) translateX(0) rotate(314deg);
    width: 26px;
    height: 3px;
    transition-delay: .1s;
}

/* Hero CSS */
.hero {
    background-color: #FFDCDC;
    padding: 200px 0;
    padding-top: 350px;
    padding-bottom: 90px;
    position: relative;
    z-index: 1;
    height: 100dvh;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    text-transform: uppercase;
    font-size: 130px;
    font-weight: 300;
    line-height: 125px;
    margin-bottom: 0;
    color: #DE705F;
    font-family: '1769 Display';
}

.hero-content h1 .design {
    margin-left: -140px;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 400;
    line-height: normal;
    color: #281717c7;
    margin-bottom: 0;
    margin-left: 360px;
}

.hover-character img {
    position: absolute;
    top: -390px;
    right: 8%;
    width: 288px;
    height: 326px;
    object-fit: cover;
}

.content-media-top {
    position: relative;
}

.content-media-top .grid-line {
    width: 320px;
    height: 300px;
    object-fit: contain;
    top: -85px;
    left: 125px;
    position: absolute;
    z-index: 1;
}

.call img {
    position: absolute;
    right: 30%;
    top: -15px;
    width: 124px;
    height: 124px;
    object-fit: contain;
}

.behind-design img {
    position: absolute;
    left: 28%;
    bottom: 0;
    width: 97px;
    height: 97px;
    object-fit: contain;
    z-index: 3;
}

.resume-hover img {
    position: absolute;
    left: 13%;
    bottom: 92px;
    width: 114px;
    height: 88px;
    object-fit: contain;
    z-index: 2;
}

.hover-call {
    display: inline-block;
    background-color: #F5F5F5;
    padding: 12px 25px;
    border-radius: 16px;
    border: 2px solid #913C34;
    position: absolute;
    top: 108px;
    right: 31%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.hover-call p {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    color: #281717;
}

.call:hover .hover-call,
.behind-design:hover .hover-call,
.resume-hover:hover .hover-call {
    opacity: 1;
    visibility: visible;
}

.behind-design .hover-call {
    bottom: -98px;
    top: auto;
    right: auto;
    left: 16%;
}

.hover-character .character-eyes-close-hand-behind {
    opacity: 0;
}

/* .hover-character .character-eyes-open {
    opacity: 0;
} */

.hover-character {
    position: relative;
}

/* .hover-character img {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
} */

.character-eyes-open {
    z-index: 3;
    opacity: 0;
}

.character-eyes-close {
    z-index: 2;
    opacity: 1;
}

.character-eyes-close-hand-behind {
    z-index: 1;
    opacity: 1;
}

.resume-hover .hover-call {
    left: 0;
    right: auto;
    bottom: -5px;
    top: auto;
}

.social-media-handle .linkedin-icon {
    top: -80px;
    left: 155px;
}

.social-media-handle a {
    position: absolute;
    z-index: 3;
    display: inline-block;
    cursor: pointer;
}

.social-media-handle a img {
    transition: 0.3s ease-in-out;
}

.social-media-handle a:hover img {
    transform: scale(1.05);
}

.social-media-handle .dribble-icon {
    left: 250px;
    top: 18px;
}

.social-media-handle .behance-icon {
    left: 348px;
    top: 112px;
}

.social-media-handle a img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    object-position: center center;
}

.hover-call::after {
    position: absolute;
    content: '';
    right: 20px;
    top: -9px;
    border-top: 7px solid #913C34;
    border-bottom: 7px solid transparent;
    border-right: 7px solid transparent;
    border-left: 7px solid #913C34;
    background-color: transparent;
    z-index: -1;
    transform: rotate(45deg);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.call:hover .hover-call::after,
.resume-hover:hover .hover-call::after,
.behind-design:hover .hover-call::after {
    opacity: 1;
    visibility: visible;
}

.behind-design .hover-call::after {
    right: 50px;
}

/* Tab CSS */
.work-demo {
    background-color: #FCEBEA;
    padding: 34px 0;
}

.button-tab button {
    background: transparent;
    border: none;
    font-size: 30px;
    color: #913c3496;
    font-weight: 300;
    line-height: normal;
    margin-right: 35px;
}

.button-tab {
    margin-bottom: 31px;
}

.work-demo {
    background-color: #FCEBEA;
    padding: 34px 0;
    padding-bottom: 100px;
    min-height: 930px;
}

.button-tab button {
    background: transparent;
    border: none;
    font-size: 30px;
    color: #913c3496;
    font-weight: 300;
    line-height: normal;
    margin-right: 35px;
    transition: 0.3s ease-in-out;
}

.button-tab button.style-one {
    color: #913C34;
    font-weight: 400;
}

.button-tab {
    margin-bottom: 31px;
}

.masonry {
    column-count: 3;
    margin: 0 0;
    transition: 0.3s ease-in-out;
}

.masonry-item img {
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: cover;
    object-position: center;
    transition: 0.3s ease-in-out;
}

.masonry-item {
    margin-bottom: 15px;
    transition: 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

.masonry-item .see-work {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 60%;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
    background-color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.masonry-item:hover .see-work {
    opacity: 1;
    visibility: visible;
    top: 50%;
}


.masonry-item a {
    overflow: hidden;
}

.masonry-item:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #0909095e;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.masonry-item:hover:before {
    opacity: 1;
    visibility: visible;
}

/* Work Page CSS */

.work-demo.work-page {
    padding-top: 175px;
    /* height: 100vh; */
}

/* About me CSS */

.about-wrapper {
    padding: 0px 53px;
}

/* .arrow-btn.left {
    display: none;
} */

.dis-block {
    display: block;
}

.dis-none {
    display: none;
}


.about-me {
    background-color: #FFDCDC;
    padding-top: 190px;
    padding-bottom: 120px;
}

.about-user {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 64px;
}

.about-user-image img {
    width: 165px;
    height: 165px;
    object-fit: cover;
    border-radius: 50%;
}

.about-user-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.about-user-name h3 {
    font-size: 36px;
    font-weight: 600;
    color: #281717;
    line-height: normal;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.about-user-name p {
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 400;
    line-height: normal;
    color: #281717;
    margin-bottom: 0;
}

.about-user-right {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.button-resume {
    padding: 8.5px 16.5px;
    background-color: #281717;
    border-radius: 4px;
    text-decoration: none;
    color: #F5F5F5;
    font-size: 22px;
    font-weight: 400;
    display: inline-block;
    transition: 0.3s ease-in-out;
}

.button-resume:hover {
    background-color: #913C34;
}

.about-row-first h4 {
    color: #281717;
    font-size: 28px;
    line-height: normal;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-row-first p {
    color: #281717;
    font-size: 22px;
    line-height: 32px;
    font-weight: 300;
    margin-bottom: 20px;
}

.about-row-first p:last-child {
    margin-bottom: 0;
}

.about-row-first {
    margin-bottom: 47px;
}

.last-row-before p {
    font-size: 22px;
    font-weight: 300;
    line-height: 32px;
    color: #281717;
    margin-bottom: 10px;
}

.last-row-before {
    margin-bottom: 40px;
}

.last-row-before p b {
    font-size: 26px;
}

.last-row h4 {
    font-size: 28px;
    font-weight: 500;
    line-height: normal;
    color: #281717;
    margin-bottom: 15px;
}

.last-row p {
    color: #281717;
    font-size: 22px;
    line-height: 32px;
    font-weight: 300;
    margin-bottom: 0;
}

.last-row p a {
    color: #FF6F59;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: normal;
    transition: 0.3s ease-in-out;
}

.last-row p a:hover {
    color: #913C34;
}

.achievement h4 {
    font-size: 28px;
    font-weight: 500;
    line-height: normal;
    color: #281717;
    margin-bottom: 15px;
}

.achievement ul {
    margin: 0;
    padding: 0 25px;
}

.achievement ul li {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 25px;
}

.achievement ul li:last-child {
    margin-bottom: 0;
}

.achievement {
    margin-bottom: 51px;
}

.resume {
    height: auto;
    background-color: #FFDCDC;
}

.contact {
    background-color: #FFDCDC;
    padding-top: 200px;
    padding-bottom: 200px;
    height: auto;
}

.contact-left h2 {
    font-family: '1769 Display';
    font-size: 84px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0;
}

.arrow-message {
    display: flex;
    /* align-items: center; */
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 68px;
}

.arrow-left img {
    height: 56px;
    width: 170px;
    object-fit: contain;
    margin-top: 10px;
}

.arrow-right h2 {
    margin-bottom: 0;
}

.contact-info-small h4 {
    font-size: 32px;
    font-weight: 400;
    line-height: normal;
    color: #281717;
    margin-bottom: 12px;
}

.contact-info-small a {
    display: block;
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    color: #281717;
    text-decoration: none;
    margin-bottom: 7px;
    transition: 0.3s ease-in-out;
}

.contact-info-small a:hover {
    color: #DE705F;
}

.contact-social-links h4 {
    font-size: 32px;
    color: #281717;
    line-height: 40px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-social-links a {
    display: block;
    text-decoration: none;
    font-size: 18px;
    line-height: 22px;
    color: #281717;
    font-weight: 400;
    margin-bottom: 10px;
    transition: 0.3s ease-in-out;
}

.contact-info-small {
    margin-bottom: 80px;
}

.contact-social-links a:hover {
    color: #DE705F;
}

.contact-right form .custom-input-design {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #C29F9F;
    margin-bottom: 25px;
}

.contact-right form .custom-input-design label {
    border-right: 1px solid #C29F9F;
    padding: 16px 17.5px;
    position: absolute;
    top: 0;
}

.contact-right form .custom-input-design label img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact-right form .custom-input-design input,
.contact-right form .custom-input-design select,
.contact-right form .custom-input-design textarea {
    background-color: transparent;
    border: none;
    width: 100%;
    height: auto;
    font-size: 16px;
    color: #5D4C4C;
    line-height: 16px;
    font-weight: 400;
    padding: 18px 10px;
    padding-left: 70px;
    box-shadow: none;
    outline: none;
}

.contact-right form .custom-input-design input:focus {
    box-shadow: none;
    outline: none;
}

.contact-right form .custom-input-design textarea {
    padding-bottom: 0px;
    resize: none;
}

.btn-contact-submit {
    background-color: #281717;
    border: none;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: #F5F5F5;
    text-transform: uppercase;
    padding: 14px 127px;
    border-radius: 10px;
    display: inline-block;
    transition: 0.3s ease-in-out;
    margin-top: 20px;
}

.btn-contact-submit:hover {
    background-color: #423c3c;
}

.custom-input-design.custom-selection-height {
    height: 58px;
}

.custom-input-design.custom-selection-height span {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-25px);
    cursor: pointer;
}

.custom-input-design.custom-selection-height span img {
    width: 18px;
    height: 18px;
    object-fit: cover;
}

/* Thank you CSS */
.thank-you {
    background-color: #FFDCDC;
    padding-top: 250px;
    height: 100vh;
}

.thanks-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 20px;
}

.thanks-message h2 {
    text-transform: capitalize;
    color: #281717;
    font-size: 58px;
    font-weight: 400;
    line-height: 68px;
    margin-bottom: 0;
}

.thanks-message img {
    width: 76px;
    height: 76px;
    object-fit: cover;
}

.thanks-message h3 {
    color: #281717;
    font-size: 48px;
    line-height: 68px;
    font-weight: 300;
    margin-bottom: 12px;
}

.thanks-message p {
    font-size: 32px;
    font-weight: 400;
    line-height: 46px;
    color: #281717;
    margin-bottom: 0;
}

.thanks-message-right img {
    max-width: 100%;
}

.custom-input-design.custom-selection-height .file-name-display {
    display: block;
    font-size: 14px;
    margin-top: 8px;
    right: auto;
    left: 75px;
    top: 32px;
    color: #5D4C4C;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.animation-animi {
    animation-name: animianimation;
    animation-iteration-count: infinite;
    animation-duration: 6s;
}
@keyframes animianimation {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

/* Loader css */
/* From Uiverse.io by vikramsinghnegi */ 
.loader-spanne-20 {
  position: relative;
  width: 100px;
  height: 30px;
  padding: 0;
}
.loader-spanne-20 > span {
  position: absolute;
  right: 0;
  width: 3px;
  height: 30px;
  background-color: #DE705F;
  display: block;
  border-radius: 3px;
  transform-origin: 50% 100%;
  animation: move 2.8s linear infinite;
}
.loader-spanne-20 > span:nth-child(1) {
  animation-delay: -0.4s;
}
.loader-spanne-20 > span:nth-child(2) {
  animation-delay: -0.8s;
}
.loader-spanne-20 > span:nth-child(3) {
  animation-delay: -1.2s;
}
.loader-spanne-20 > span:nth-child(4) {
  animation-delay: -1.6s;
}
.loader-spanne-20 > span:nth-child(5) {
  animation-delay: -2s;
}
.loader-spanne-20 > span:nth-child(6) {
  animation-delay: -2.4s;
}
.loader-spanne-20 > span:nth-child(7) {
  animation-delay: -2.8s;
}
@keyframes move {
  0% {
    opacity: 0;
    transform: translateX(0px) rotate(0deg);
  }
  20% {
    opacity: 1;
  }
  40% {
    transform: translateX(-40px) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: translateX(-50px) rotate(22deg);
  }
  85% {
    opacity: 1;
    transform: translateX(-85px) rotate(60deg);
  }
  100% {
    opacity: 0;
    transform: translateX(-100px) rotate(65deg);
  }
}
.loader-animation {
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #000;
    position: fixed;
}

.loader-animation .center-body .loader-spanne-20 {left: 50%;top: 50%;height: auto;transform: translate(-50%, -50%);}

.loader-animation .center-body {
    height: 100%;
}

/* resume css */
.resume-wrapper {
    padding-top: 175px;
    padding-bottom: 100px;
}

.resume-wrapper embed {
    width: 100%;
    height: 1000px;
}

.resume-wrapper object {
    width: 100%;
    height: 1000px;
}
