@media (min-width:1920px){
    /* html{width:1920px;margin:0 auto;} */


}
body{
    background:
    url("../img/wave.png") repeat-x 0% 2.6%,
    url("../img/bg_pink.png") no-repeat  50% 13%;
    /* animation: bgWave 200s linear 0s infinite; */
}
@keyframes bgWave {
    0%{
        background:
        url("../img/wave.png") repeat-x 0% 3%,
        url("../img/bg_pink.png") repeat-x  0% 10%;
    }
    100%{
        background:
        url("../img/wave.png") repeat-x 5000% 3%,
        url("../img/bg_pink.png") repeat-x  -5000% 13%;
    }
}

/* 마우스커서 */
#custom_cursor {
    position: fixed;
    pointer-events: none;
    z-index: 999999;
    top: 19.6%;
    left: 16.5%;
}

.noise {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    left: 0;
    top: 0;
    /* z-index: -1; */
    opacity: 0.04;
    background: url(../img/noise.gif) repeat 50% 50%;
}

/* gnb메뉴 */
.gnb {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: .5rem;
    display: flex;
    align-items: stretch;
    gap: 1rem;
    z-index: 100000;
}
.gnb>li {
    display: flex;
    align-items: center;
    position: relative;
    top: 2.5px;
}
.gnb::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1.5rem;
    padding: 1.3rem;
    width: 52%;
    margin-top: 1rem;
    border: 1px solid transparent;
    border-radius: 50px 0px 0px 50px;
    background-color: var(--main-pink-color);
    z-index: -1;
    box-sizing: border-box;
    box-shadow: 1px 3px 4px #00000024;
}
.gnb::after{
    content: "";
    position: absolute;
    top:0;
    right: -1.5rem;
    padding: 1.3rem;
    width: 56.2%;
    margin-top: 1rem;
    border-radius: 0px 50px 50px 0px;
    border: 1px solid transparent;
    background-color: var(--main-yellow-color);
    z-index: -1;
    box-sizing: border-box;
    box-shadow: 2px 3px 4px #00000024;
    z-index: -1;
}
.gnb a {
    white-space: nowrap;
    color: var(--light-font-color);
    font-weight: 500;
    transform: skewY(0deg);
    display: inline-block;
    font-size: 0.8rem;
}
.gnb a:hover{
    transform: skewY(-12deg);
    filter:drop-shadow(0 0 5px var(--main-yellow-color))
}
.gnb a.pinkTxt:hover{
    transform: skewY(-12deg);
    filter:drop-shadow(0 0 5px var(--main-blue-color))
}
.nos{
    position: relative;
}
.gnb .pinkTxt{
    color: var(--main-pink-color);
}
.gnb>li.nos:hover a{
    transform: initial;
    filter:initial;
}
.hidnos{
   position: absolute;
   left:0;
   top:0;
   width:100%;
    opacity: 0;
    pointer-events: none;
}
.nos:hover .hidnos{
    opacity: 1;
    pointer-events: auto;
}
.nos:hover .orinos{
    opacity: 0;
    pointer-events: none;
}
.pj2menu{
    position: relative;
}
.pj2SubMenu {
    position: absolute;
    top: 70px;
    left: 50%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    transform: translateX(-50%);
    align-items: center;
    padding-top: 0.4rem;
    opacity: 0;
    pointer-events: none;
}
.pj2SubMenu a{
    background-color: var(--main-yellow-color);
    padding: .5rem 1rem;
    border-radius: 50px;
    color: var(--main-font-color)
}
.pj2menu:hover .pj2SubMenu{
    opacity: 1;
    pointer-events: auto;
}


@keyframes trem {
    0%{
        /* transform:rotate(-5deg) */
        transform:scale(1)
    }
    100%{
        /* transform:rotate(5deg) */
        transform:scale(1.1)
    }
}
.nos{
    animation: trem 1s linear 0s infinite alternate;
}
.nos:hover{
    animation-play-state: paused;
}
.nos img {
    max-width: initial;
    height: 4.5rem;
    aspect-ratio: 139 / 80;
}
.hiddenGnb,
.btnMenu{
    display: none;
}

.heroWrap {
    background-color: var(--main-pink-color);
    padding-top: 4rem;
    position: relative;
}
.bannerStation.swiper {
    padding-bottom: 2rem;
}
.hero {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 6rem 0;
    padding: 3rem !important;
}
.heroTxt{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--light-font-color);
    margin: 0 auto;
}
.heroTxt>p{
    font-weight: 300;
}
.heroTxt .nameSubSpan{
    font-weight: 500;
    color: var(--main-yellow-color);
}
.heroTxt .nameSpan{
    font-weight: 300;
    color: var(--main-yellow-color);
}
.heroTxt>p:nth-of-type(1){
    letter-spacing: 0.5rem;
}
.heroTxt>h1{
    color: var(--light-font-color);
    font-size: 3rem;
}
.heroBanner {
    border: 2px solid var(--main-yellow-color);
    height: 570px;
    background: url(../img/heroBanner.jpg) no-repeat 50% 43% / cover;
    background-attachment: fixed;
    border-radius: 300px;
    box-shadow: inset 3px 3px 4px #00000022;
}
.deco3 {
    position: absolute;
    top: 28%;
    left: 2%;
    transform: rotate(-97deg);
    height: 13rem;
}
.deco5 {
    position: absolute;
    top: 27%;
    right: 15%;
    height: 6rem;
    animation: twinkle 1.3s linear 0s infinite alternate;
}
.deco6 {
    position: absolute;
    top: 37%;
    right: 12%;
    height: 3rem;
    animation: twinkle 1s linear 0s infinite alternate;
}
@keyframes twinkle {
    0%{
        filter: drop-shadow(0px 0px 0px #ffffffab);
    }
    100%{
        filter: drop-shadow(5px 5px 10px #ffffffab)
        drop-shadow(-5px -5px 10px #ffffffab);
    }
}

/* 띠배너 */
.autoBannerStation {
    background-color: var(--main-yellow-color);
    padding: 1rem 0;
    overflow: hidden;
}

.autoBannerImg {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    transition-timing-function: linear!important;
}
.autoBannerImg li{
    width: auto;
    flex-shrink: 0;
    text-align: center;
    white-space: nowrap;
    width: max-content;
}
@keyframes move {
    0%{
        transform: translateX(0%);
    }
    100%{
        transform: translateX(-50%);
    }
}
.autoBannerImg.train1{
    animation: move 30s linear 0s infinite;
}
.autoBannerImg.train2{
    animation: move 30s linear 0s infinite;
}

.autoBannerImg p{
    font-size: 2rem;
    font-weight: 200;
    color: var(--main-blue-color);
    white-space: nowrap;
}
.autoBannerImg img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}
.autoBannerTrain {
    width: 100%;
    display: inline-flex;
}



/* aboutme */
.aboutmeFrame{
    position: relative;
    overflow-x: hidden;
}
.deco4 {
    position: absolute;
    top: 24%;
    left: -11%;
    height: 14rem;
    transform: rotate(-13deg);
    animation: decoswing 1s linear 0s infinite alternate;
}
@keyframes decoswing {
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(-12deg);
    }
    
}
.aboutme{
    border: 2px solid var(--main-yellow-color);
    border-radius: 30px;
    padding: 3rem;
    display: flex;
    gap: 8rem;
    padding-top: 7rem;
    position: relative;
    /* color: var(--light-font-color); */
}
.aboutme1{
    display: flex;
    align-items: center;
}
.aboutme1>span{
    position: absolute;
    top: 2.5rem;
    left: 1rem;
    font-size: 10rem;
    color: var(--main-pink-color);
    -webkit-text-stroke: 0.1rem var(--main-yellow-color);
    text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.177);
    line-height: 62%;
    font-family: "Abhaya Libre", serif;
    z-index: 1;
}
.aboutme1>img {
    height: 32rem;
    filter: drop-shadow(10px 5px 0px var(--main-yellow-color));
}
.aboutme2{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.aboutmeProfile{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.aboutmeProfile dl{
    display: flex;
    gap: 2rem;
    align-items: center;
}
.aboutmeProfile dt{
    width: 120px;
    font-weight: 600;
    color: var(--main-yellow-color);
}
.keyward>dd{
    display: flex;
    gap: 0.5rem;
}
.aboutmeTxt{
    border: 1px solid var(--main-yellow-color);
    border-style: dashed;
    border-radius: 30px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.aboutmeTxt>div h4{
    display: inline-flex;
}
.aboutmeTxt .pinkBox{
    animation: none;
}
.aboutmeTxt>ul{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.aboutmeTxt>ul li{
    white-space: pre-line;
}

/* skill&tools */
.skillandTolls{
    border: 2px solid var(--main-pink-color);
    border-radius: 30px;
    padding: 3rem;
    overflow-x: hidden;
}
.skillToolTxt{
    text-align: center;
    margin-bottom: 3rem;
}
.skillToolTxt>h3.pinkBox{
    display: inline-flex;
    margin-bottom: 0.5rem;
}
.skillToolTxt p>span{
    background-color: var(--main-yellow-color);
    padding: 0.1rem;
}
.skillToolBox ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.skillToolBox li{
    padding: 2rem 1rem;
    border: 2px solid var(--main-blue-color);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all 0.5s ease 0s;
}
.skillToolBox li>h4{
    color: var(--main-font-color);
}
.skillToolBox li:hover{
    background-color: var(--main-pink-color);
    border: 2px solid var(--main-pink-color);
    color: var(--light-font-color);
    transform: scale(1.06);
}
.skillToolBox li:hover h4{
    color: var(--main-yellow-color);
}

/* other Experience */
.otherEx{
    border: 2px solid var(--main-blue-color);
    border-radius: 30px;
    padding: 2rem;
    overflow-x: hidden;
}
.otherExTxt{
    text-align: center;
    margin-bottom: 3rem;
}
.otherExTxt>h3{
    display: inline-flex;
    margin-bottom: 0.5rem;
}
.otherExBox{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}
.otherExBox>div{
    flex: 1;
}
.otherExBox div>h4{
    color: var(--main-blue-color);
}
.otherExBox ul{
    border: 2px solid var(--main-yellow-color);
    border-radius: 25px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
    transition: all 0.5s ease 0s;
}
.otherWork span{
    font-weight: 400;
}
.otherExBox>div>ul:hover{
    background-color: var(--main-blue-color);
    color: var(--light-font-color);
}

/* Popup Design */
.popups{
    overflow-x: hidden;
}
.popupsTxt{
    text-align: center;
    margin-bottom: 3rem;
}
.popupsTxt>h3{
    display: inline-flex;
    margin-bottom: 0.5rem;
}
.popupList{
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem; */
}
.popupList li>figure {
    background-color: var(--main-yellow-color);
    border-radius: 20px;
    position: relative;
    background: none;
    border: 0.4rem solid var(--main-yellow-color);
    line-height: 0;
    overflow: hidden;
}
.popupList li>figure img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.txtFramePopup {
    display: flex;
    line-height: 1.2;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background-color: #f7f5f1b9;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: all 0.3s ease 0s;
}
.popupList>li:hover .txtFramePopup{
   opacity: 1;
}
.txtFramePopup>dl {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex-direction: column;
}
.txtFramePopup>dl>dd{
    display: flex;
    flex-wrap: wrap;
    gap:.5rem;
}
.txtFramePopup>dl>dd span{
    border: 1px solid var(--main-font-color);
    padding: 0.25rem 1rem;
    border-radius: 30px;
    font-size: var(--detail);
}

/* banner */
.banners{
    position: relative;
    /* overflow-x: hidden; */
}
.banners .deco2{
    position: absolute;
    height: 25rem;
    top: 5%;
    left: -17%;
    animation: spin 10s linear 0s infinite;
}

.bannersTxt{
    text-align: center;
    margin-bottom: 3rem;
}
.bannersTxt>h3{
    display: inline-flex;
    margin-bottom: 0.5rem;
}
.bannersBox{
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid var(--main-font-color);
    box-sizing: border-box;
}
.statusBar{
    padding: 1rem ;
    background-color: var(--main-blue-color);
    display: flex;
    gap: .5rem;
}
.statusBar span{
    height: .9rem;
    border-radius: 50%;
    aspect-ratio: 1/1;
}
.statusBar .redC{
    background-color: #F24747;
}
.statusBar .orengeC{
    background-color: #FFAE43;
}
.statusBar .greenC{
    background-color: #7CD56D;
}
.bannerCon{
    padding: 1rem;
    background-color: var(--main-yellow-color);
    border-top: 2px solid var(--main-font-color);;
}
.bannerCon img{
    border: 2px solid var(--main-font-color);
    line-height: 0;
}
.bannerCon>div{
    padding-top: 1rem;
    display: grid;
    grid-template-columns: 310px 1fr 310px;
    gap: 2rem;
}
.bannerCon dl{
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.bannerCon dl>dd span{
    border: 1px solid var(--main-font-color);
    padding: 0.25rem 1rem;
    border-radius: 30px;
    font-size: var(--detail);
    display: inline-flex;
}
.bannerStation .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--main-yellow-color);
}

/* project */
.projectTxt{
    text-align: center;
    margin-bottom: 3rem;
    overflow-x: hidden;
}
.projectTxt>h3{
    display: inline-flex;
    margin-bottom: 0.5rem;
}
.stickyMenu.commonFrame{padding-top: 0;}
.project1 .stickyMenu,
.project2 .stickyMenu{
    position: sticky;
    top: 5.5rem;
    left: 0;
    display: flex;
    gap: 0.5rem;
    /* margin-top: 2rem; */
    margin-bottom: 2rem;
    z-index: 10;
}
.stickyMenu>li{
    padding: .4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 1rem;
}
.project1 .stickyMenu>li{
    color: #3E4628;
    background-color: #E0E6D6;
    border: 2px solid #6b7a48;
    transition: all 0.2s ease 0s;
}
.project1 .stickyMenu>li:hover{
    color: #E0E6D6;
    background-color: #3E4628;
    border: 2px solid #6b7a48;
}
.project2 .stickyMenu>li{
    color: #3888DD;
    background-color: #d8e2eb;
    border: 2px solid #0E4887;
    transition: all 0.2s ease 0s;
}
.project2 .stickyMenu>li:hover{
    color: #d8e2eb;
    background-color: #0E4887;
    border: 2px solid #3888DD;
}
.imgAll{
    min-height: 500px;
    text-align: center;
    line-height: 0;
}
.imgAll img {
    width: 100%;
    max-width: 1920px;
}
.project1{
    background-color: #3E4628;
    padding-top: 3rem;
}
.project2{
    padding-top: 2rem;
}
.project1 .forestToneLogo{
    display: flex;
    margin: 0 auto;
    justify-content: flex-end;
    padding-right: 1rem;
    overflow-x: hidden;
}
.forestToneLogo img{
    height: 2.5rem;
}
.wacomLogo img{
    height: 2.5rem;
}
.project2 {
    padding-top: 2rem;
    background: #3d98df;
}
.project2 .wacomLogo {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding-top: 0;
    color: #fff;
    overflow-x: hidden;
}
.project2 .wacomLogo p{
    margin-bottom: 2rem;
    width: 60%;
    margin: 0 auto;
    font-weight: 200;
    margin-bottom: .5rem;
}
.project1 .forestToneLogo p{
    margin-bottom: 2rem;
    width: 60%;
    margin: 0 auto;
    font-weight: 200;
    margin-bottom: .5rem;
}
.project1 .forestToneLogo {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding-top: 0;
    color: #fff;
}
.forestToneBottomTxt.commonFrame{
    padding-top: 0;
}
.forestToneBottom{
    padding: 10rem 0;
}
.wrapForest {
    background-color: #F7F5F1;
    overflow: hidden;
    padding-bottom: 16rem;
}
.forestToneBottom .forestToneBottomImg {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    gap: 0.5rem;
    margin-top: 6rem;
    position: relative;
    z-index: 1;
}
.sdCard{
    animation:greenGlowRotate 6s ease 0s infinite alternate;
}
@keyframes greenGlowRotate {
    0% {
      filter:
        drop-shadow(0px -10px 6px #FFFEE0)
        drop-shadow(0px 10px 6px #cbf9a2);
    }
    25% {
      filter:
        drop-shadow(10px 0px 6px #FFFEE0)
        drop-shadow(-10px 0px 6px #cbf9a2);
    }
    50% {
      filter:
        drop-shadow(0px 10px 6px #FFFEE0)
        drop-shadow(0px -10px 6px #cbf9a2);
    }
    75% {
      filter:
        drop-shadow(-10px 0px 6px #FFFEE0)
        drop-shadow(10px 0px 6px #cbf9a2);
    }
    100% {
      filter:
        drop-shadow(0px -10px 6px #FFFEE0)
        drop-shadow(0px 10px 6px #cbf9a2);
    }
  }
.forestToneBottomImg {
    position: relative;
}
.fog1{
    position: absolute;
    z-index: -1;
    animation: moveStar1 5s linear infinite;
    top: -25%;
    left: 0;
    aspect-ratio: 1/1;
}
.fog2{
    position: absolute;
    z-index: -1;
    animation: moveStar2 5s linear infinite;
    top: -5%;
    left: 70%;
    aspect-ratio: 1/1;
}
.fog3{
    position: absolute;
    z-index: -1;
    animation: moveStar3 5s linear infinite;
    top: 50%;
    left: 30%;
    aspect-ratio: 1/1;
}

@keyframes moveStar1 {
    0%   { transform: translate(0%, 0%); }
    25%  { transform: translate(20%, 15%); }
    50%  { transform: translate(-15%, 25%); }
    75%  { transform: translate(-10%, -15%); }
    100% { transform: translate(0%, 0%); }
  }
  
  @keyframes moveStar2 {
    0%   { transform: translate(0%, 0%); }
    20%  { transform: translate(-25%, 10%); }
    40%  { transform: translate(-15%, -20%); }
    60%  { transform: translate(10%, -25%); }
    80%  { transform: translate(20%, 10%); }
    100% { transform: translate(0%, 0%); }
  }
  
  @keyframes moveStar3 {
    0%   { transform: translate(0%, 0%); }
    20%  { transform: translate(40%, -5%); }
    40%  { transform: translate(25%, -10%); }
    60%  { transform: translate(-30%, -5%); }
    80%  { transform: translate(-35%, 5%); }
    100% { transform: translate(0%, 0%); }
  }
.forestToneBottom span>img {
    width: 100%;
}
.forestToneBottom .forestToneBottomTxt{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.forestToneBottomTxt>h1{
    font-size: 3rem;
    margin-bottom: 2rem;
}
.forestToneBottomTxt>section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    font-size: 1.1rem;
}
.wrapWacom {
    background: #E4E4E4 url(../img/wacom_bottom_bg.svg) no-repeat 50% -45%;
    padding-top: 16rem;
    /* padding-bottom: 6rem; */
}

@media (max-width:1200px){
    .wrapWacom {
        background: #E4E4E4 url(../img/wacom_bottom_bg.svg) no-repeat 50% -25%;
        padding-top: 16rem;
        padding-bottom: 6rem;
    }
}
@media (max-width: 768px) {
    .wrapWacom {
        background: #E4E4E4 url(../img/wacom_bottom_bg.svg) no-repeat 50% -3%;
        padding-top: 2rem;
        padding-bottom: 6rem;
    }
}
.wrapWacom>img{
    width: 100%;
    object-fit: cover;
    border: 1px solid;
}
.wacomBottomImg{
    line-height: 1.2;
}
.wacomBottomImg img{
    width:auto;
}
.wacomBottomImg figure{
    position: relative;
    /* transform: translateY(22%); */
}
.imgAll img.floating1deco {
    position: absolute;
    left: 48%;
    top: -60%;
    width: 34%;
    filter: drop-shadow(4px 9px 7px rgba(56, 56, 56, 0.632));
    animation: floatUpDown1 4s ease-in-out infinite;
}
.imgAll img.floating2deco {
    position: absolute;
    left: 32%;
    top: -31%;
    width: 14%;
    filter: drop-shadow(4px 9px 7px rgba(56, 56, 56, 0.632));
    animation: floatUpDown2 5s ease-in-out infinite;
}

.imgAll img.floating3deco {
    position: absolute;
    left: 6.5%;
    top: -33%;
    width: 23%;
    filter: drop-shadow(4px 9px 7px rgba(56, 56, 56, 0.632));
    animation: floatUpDown3 4.2s ease-in-out infinite;
}
.imgAll img.ghostf{
    width:60%;
    /* filter: drop-shadow(4px 9px 7px rgba(56, 56, 56, 0.632)); */
}
@keyframes floatUpDown1 {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }
  
  @keyframes floatUpDown2 {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-14px); }
    100% { transform: translateY(0); }
  }
  
  @keyframes floatUpDown3 {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-8px); }
    100% { transform: translateY(0); }
  }

.wacomBottom{
    color: #f2f2f2;
}
.wacomBottomTxt{
    padding: 6rem 0;
}
.wacomBottomTxt>h1{
    font-family: 'yg-jalnan';
    text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.200);
    font-size: 3rem;
    /* margin-top: 6rem; */
}
.wacomBottomTxt>h2{
    font-size: 2rem;
    margin: 4rem 0;
}
.wacomBottomSubTxt{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* contact */
.contect{
    position: relative;
}
.decTxt {
    position: sticky;
    top: 160px;
}
.contect .deco1 {
    height: 22rem;
    opacity: .7;
    position: sticky;
    top: 35px;
    z-index: -1;
    animation: spin 10s linear 0s infinite;
}
@keyframes spin {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.contect.commonFrame {
    text-align: center;
    padding-bottom: 6rem;
    /* overflow-x: hidden; */
}
#typing-title {
    font-family: 'LOTTERIACHAB';
    color: var(--main-pink-color);
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 1rem;
}

#typing-title::after {
    content: "|";
    animation: blink 0.7s infinite;
    color: var(--main-blue-color)
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.contactMe {
    border: 0.6rem solid var(--main-yellow-color);
    box-shadow: 5px 5px 0 var(--main-pink-color);
    border-radius: 500px 500px 40px 40px;
    width: 270px;
    margin: 0 auto;
    margin-bottom: 1rem;
    overflow: hidden;
    line-height: 0;
    aspect-ratio: 720 / 966;
    box-sizing: border-box;
}
.contactList {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    font-weight: 600;
    /* flex-direction: column; */
    align-items: center;
}
.contactMe video{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.contactList li{
    display: flex;
    align-items: center;
    gap: .3rem;
}
.contactList li>a{
    display: flex;
    align-items: center;
    gap: .3rem;
}
.contactList img{
    height: 1.4rem;
    background-color: var(--main-pink-color);
    border-radius: 30px;
    padding: .2rem;
}
.contect .decTxt{
    font-family: 'LOTTERIACHAB';
    font-weight: normal;
    font-size: 2.5rem;
    color: var(--main-yellow-color);
    -webkit-text-stroke: 2px var(--main-pink-color);
    text-transform: uppercase;
}
.ltr{
    transform:translate(-1rem);
    opacity: 0;
    transition:all 0.8s ease 0s;
}
.ltr.on{
    transform:translate(0rem);
    opacity: 1;
}

.rtl{
    transform:translate(1rem);
    opacity: 0;
    transition:all 0.8s ease 0s;
}
.rtl.on{
    transform:translate(0rem);
    opacity: 1;
}