

/* Fonts */
:root {
    --font-default: "Pretendard", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-primary: "Pretendard";
    --font-secondary: "tvN";
  }

  
@font-face {
	font-family: 'Pretendard';
	font-weight: 900;
	font-display: swap;
	src: local('Pretendard Black'), url('../fonts/Pretendard-Black.woff2') format('woff2'), url('../../../packages/pretendard/dist/web/static/woff/Pretendard-Black.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 800;
	font-display: swap;
	src: local('Pretendard ExtraBold'), url('../fonts/Pretendard-ExtraBold.woff2') format('woff2'), url('../fonts/Pretendard-ExtraBold.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 700;
	font-display: swap;
	src: local('Pretendard Bold'), url('../fonts/Pretendard-Bold.woff2') format('woff2'), url('../fonts/Pretendard-Bold.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 600;
	font-display: swap;
	src: local('Pretendard SemiBold'), url('../fonts/Pretendard-SemiBold.woff2') format('woff2'), url('../../../packages/pretendard/dist/web/static/woff/Pretendard-SemiBold.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 500;
	font-display: swap;
	src: local('Pretendard Medium'), url('../fonts/Pretendard-Medium.woff2') format('woff2'), url('../../../packages/pretendard/dist/web/static/woff/Pretendard-Medium.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 400;
	font-display: swap;
	src: local('Pretendard Regular'), url('../fonts/Pretendard-Regular.woff2') format('woff2'), url('../../../packages/pretendard/dist/web/static/woff/Pretendard-Regular.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 300;
	font-display: swap;
	src: local('Pretendard Light'), url('../fonts/Pretendard-Light.woff2') format('woff2'), url('../../../packages/pretendard/dist/web/static/woff/Pretendard-Light.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 200;
	font-display: swap;
	src: local('Pretendard ExtraLight'), url('../fonts/Pretendard-ExtraLight.woff2') format('woff2'), url('../../../packages/pretendard/dist/web/static/woff/Pretendard-ExtraLight.woff') format('woff');
}

@font-face {
	font-family: 'Pretendard';
	font-weight: 100;
	font-display: swap;
	src: local('Pretendard Thin'), url('../fonts/Pretendard-Thin.woff2') format('woff2'), url('../../../packages/pretendard/dist/web/static/woff/Pretendard-Thin.woff') format('woff');
}

@font-face {
	font-family: 'tvN';
	font-weight: 100;
	font-display: swap;
	src: local('tvNLight'), url('../fonts/tvNLight.woff') format('woff');
}

@font-face {
	font-family: 'tvN';
	font-weight: 300;
	font-display: swap;
	src: local('tvNMedium'), url('../fonts/tvNMedium.woff') format('woff');
}

@font-face {
	font-family: 'tvN';
	font-weight: 500;
	font-display: swap;
	src: local('tvNBold'), url('../fonts/tvNBold.woff') format('woff');
}






/* Colors */
:root {
    --color-default: #ffffff;
    --color-primary: #9777ba;
    --color-secondary: #ECE6F0;
  }


  /* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
  }


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
  body {
    font-family: var(--font-default);
    color: var(--color-default);
  }
  
  a {
    color: var(--color-default);
    text-decoration: none;
  }
  
  a:hover {
    color: var(--color-secondary);
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-primary);
  }


  section {
    padding: 60px 0;
    overflow: hidden;
    scroll-margin-top: 70px;
  }
  
/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background: var(--color-secondary);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
  }
  
  .scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
  }
  
  .scroll-top:hover {
    background: rgba(246 190 249 / 80%);
    color: #fff;
  }
  
  .scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
  }
  
  /*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
  #preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #fff;
    border-color: var(--color-primary) transparent var(--color-primary) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
  }
  
  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/


  .header {
    transition: all 0.5s;
    z-index: 997;
    height: 90px;
    background-color: var(--color-primary);
  }
  
  .header.sticked {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 70px;
  }
  
  .header .logo img {
    max-height: 40px;
    margin-right: 6px;
  }
  
  .header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #fff;
    font-family: var(--font-primary);
  }
  
  .header .logo h1 span {
    color: #0080bb;
  }
  
  .sticked-header-offset {
    margin-top: 70px;
  }
  /*-------------------------------------------------------
#main-visual
---------------------------------------------------------*/
.main-visual{
    background-color: var(--color-primary);
    height: 100%;
    text-align: center;   
}

.main-visual h2 {
    font-family: var(--font-secondary);
    font-weight: 100;
     color: var(--color-default);
    font-size: 70px;
    line-height: 1.0;
   
}

.main-visual .main-img {
    width: 37%;
    padding-top: 60px;
}


.main-visual .sub-img1{
  top: 0;
  left: 15rem;
}

.main-visual .sub-img1 img{
  width: 70px;
  transform: rotate(-45deg);
}


.main-visual .sub-img2{
  top: 0;
  right: 15rem;
}

.main-visual .sub-img2 img{
  width: 70px;
  transform: rotate(45deg);
}


.main-visual .sub-img3{
  bottom: 20rem;
  left: 15rem;
}

.main-visual .sub-img3 img{
  width: 70px;
  transform: rotate(-45deg);
}


.main-visual .sub-img4{
  bottom: 20rem;
  right: 15rem;
}

.main-visual .sub-img4 img{
  width: 70px;
  transform: rotate(45deg);
}

.main-visual .link-img {
    width: 30%;
    padding-top: 1px;
}

  @media (max-width: 1200px){
    .main-visual .sub-img1{
      left: 10rem;
    }

    .main-visual .sub-img2{
      right: 10rem;
    }

    .main-visual .sub-img3{
      left: 10rem;
    }

    .main-visual .sub-img4{
      right: 10rem;
    }
  }
  
  @media (min-width: 1280px) {
   
    .navbar {
      padding: 0;
    }
  
    .navbar ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navbar li {
      position: relative;
    }
  
    .navbar>ul>li {
      white-space: nowrap;
      padding: 10px 0 10px 28px;
    }
  
    .navbar a,
    .navbar a:focus {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 3px;
      font-family: var(--font-primary);
      font-size: 16px;
      font-weight: 400;
      color: var(--color-default);
      white-space: nowrap;
      transition: 0.3s;
      position: relative;
    }
  
    .navbar a i,
    .navbar a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
    }
  
    .navbar>ul>li>a:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: -6px;
      left: 0;
      background-color: var(--color-secondary);
      visibility: hidden;
      width: 0px;
      transition: all 0.3s ease-in-out 0s;
    }
  
    .navbar a:hover:before,
    .navbar li:hover>a:before,
    .navbar .active:before {
      visibility: visible;
      width: 100%;
    }
  
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
      color: var(--color-secondary);
    }
    
    

  }
  
  @media (min-width: 1280px) and (max-width: 1366px) {
    .slide-content {
      margin-top: 10%;
  }
    .slide-0 {
      font-size: 5rem;
  }
  .main-visual h2 {
    font-size: 5rem;
}
  .slide-2 {
font-size: 1.3rem;
  }
  .slide-1 > h1 {
    font-weight: 600;
    font-size:  2rem;}
    
    .mandoo-write {
      text-align: center;
      color: white;
      font-size: 1.2rem;
      line-height: 120%;
  }
    .visual-inner2 > h1{
      font-size: 5rem;
    }
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
  
    .navbar .dropdown .dropdown:hover>ul {
      left: -100%;
    }
  
   .slide-body {
    gap: -1.5rem; 

}

.swiper-button-prev {
  left: 15%;
  top: 62%;
}
.swiper-button-next {
  right: 9%;
  top: 62%;
}
  }
  
  @media (min-width: 1280px) {
   
    .swiper-button-prev {
      left: 10%;
      top: 62%;
    }
    .swiper-button-next {
      right: 4%;
      top: 62%;
    }
    .mobile-nav-show,
    .mobile-nav-hide {
      display: none;
    }
    .slide-body {
      margin-top: 3%;
  }
  }

/* ==== mobile header ==== */

  @media (max-width: 1279px) {
   
    .slide-content {
      margin-top: 10%;
  }
    .slide-0 > span {
      position: relative;
     
  }
    .slide-body{
      margin-top: 5%;
    }
    .slide-0 {
      font-size: 4rem;
   
      
  }
  .slide-2 {
font-size: 1.3rem;
  }
  .slide-1 > h1 {
    font-weight: 600;
    font-size:  2rem;}
    
    .mandoo-write {
      text-align: center;
      color: white;
      font-size: 1.3rem;
      line-height: 120%;
  }
    .visual-inner2 > h1{
      font-size: 70px;
    }
    .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
      position: absolute;
    
  }
    .bt-1 > img{
      width: 18vw;
    }
    .bt-2 > img{
      width: 18vw;
    }
    .visual4-wt > h1{
      font-size: 70px;
    }
    
    .main-visual .link-img {
      width: 30%;
    }
    
    .main-visual .main-img {
      width: 35%;
      padding-top: 60px;
  }
    .mandoo-write {
      text-align: center;
      color: white;
      font-size: 0.9rem;
      line-height: 120%;
  }
    .visual-inner2 > h1 {
     font-size: 70px;
  }
  .swiper-button-prev {
    left: 4%;
    top: 62%;
  }
  .swiper-button-next {
    right: 0%;
    top: 62%;
  }
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(151, 119, 186, 0.7);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.7);
    font-size: 44px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right:19px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}
@media (max-width: 1020px){
  .visual-4-wrap {
    gap: 3rem;
   
  }
  .swiper-button-prev, .swiper-button-next {
    width: 50px; 
    height: 50px; 
  }
  
  .swiper-button-prev::after, .swiper-button-next::after {
    font-size:30px; 
  }
  .slide-0 > span {
  
    font-size: 4rem;
}
.mandoo-write > h3 {
  text-align: center;
  color: white;
  font-size: 0.9rem;
  line-height: 120%;
}
.slide-1 > h1 {
  font-weight: 600;
  font-size: 1.5rem;
  padding: 0px !important;
}
.slide-2 {
  font-size: 1.1rem;

}
.slide-content{
  margin-top: 10%;
}
.position-absolute {
  display: none;
}
} 
@media (max-width: 840px){
  .slide-1 > h1 {
    font-weight: 600;
    font-size: 1.2rem;
    padding: 0px !important;
}

.slide-2 {
  font-size: 1rem;
}

.main-visual h2 {
  font-size: 55px;
 
}

.visual-inner2 > h1 {
  font-size: 55px;
}
.slide-0 > span{
  font-size: 50px;
}
.visual4-wt > h1 {
  font-size: 55px;
}
.tel p, .copyright h3 {
 font-size: 0.8rem;
}
.ft-sd img {
  width: 100%;
  height: auto;
  display: block;
}
.naver , .instagram , .facebook{
  width: 100%;
}


.swiper-button-prev::after, .swiper-button-next::after {
  font-size:30px; 
}
.swiper-container .swiper-button-prev {
  right: 1%; 
  top: 66%;
}

.swiper-container .swiper-button-next {
  right: -1%; 
  top: 66%;
}

}

@media (max-width:991px){
  .main-visual .link-img {
    width: 40%;
  }

  .button-wrap > a {
    text-align: center;
  }

  .bt-1 > img {
    width: 65%;
  }

  .bt-2 > img {
    width: 65%;
  }
}
@media (max-width:768px){
  .slide-2 h1 {
    display: block; /* 너비가 768px 이상일 때 h1 표시 */
}
.slide-2 span {
    display: inline; /* span을 다시 인라인 요소로 변경 */
}
  .mandoo-write > h3 {
    text-align: center;
    color: white;
    font-size: 0.7rem;
    line-height: 120%;
}

.visual-inner2 > h1 {
 margin-bottom: 3%;
}
.swiper-button-prev {
  left: 1%;
  top:63%;
}

.swiper-button-next {
  right: 1%;
  top: 63%;
}
.slide-body img {
  padding: 7% 8% 8% 8% !important;
}

}

@media (max-width:650px){
  .ft-img {
    width: 50%;
  }
    .mandoo-write > h3 {
      text-align: center;
      color: white;
      font-size: 0.6rem;
      line-height: 120%;
  }


  .slide-1 > h1 {
    display: flex;

    font-weight: 600;
    font-size: 1rem;
    padding: 0px !important;
  }
  .slide-2 {
    font-size: 0.9rem;
  }
  .swiper-button-prev, .swiper-button-next {
    width: 50px;
    height: 50px;
  }

  .swiper-button-prev::after, .swiper-button-next::after {
    font-size:20px;
  }
  .slide-body img {
    padding: 8% 4% 7% 12% !important;
  }
  .swiper-button-next {
    right: -1%;
    top: 66%;
  }
  .swiper-button-prev {
    right: -1%;
    top: 66%;
  }

  .slide-body .slide-description {
    margin-top: 8% !important;
  }
  .slide-1 {
    margin-bottom: 2%;
  }
  .main-visual h2 {
    font-size: 50px;
  }
  .visual-inner2 > h1 {
    font-size: 50px;
  }
}

@media (max-width:430px){
  .slide-2 > h1{
    display: none;
  }
  .slide-2 >  h1 > span{
    display: block;
  }
  .gd-write > span {
    font-family: "Pretendard-Regular";
    font-size: 1rem !important;
    line-height: 132%;
}
.gd-write > h1 {
   
    font-size: 5.5rem;
 
}
  .main-visual h2 {
    font-size: 60px;
}
.slide-body .slide-description {
  margin-top: 8% !important;
  display: flex;
  align-items: center;
  text-align: center;
}
.position-absolute {
  display: none;
}
.main-visual .main-img {
  width: 81%;
  padding-top: 60px;
  padding-bottom: 37px;
}
.justify-content-center {
  display: flex;
  flex-direction:column;
  justify-content: center !important;
  align-items: center;
  gap: 26px;
}
.main-visual .link-img {
  width: 72%;
}
.main-visual .main-img {
  padding-top: 36px;
}
.visual-inner2 > h1 {
  font-size: 60px;
}
#visual-2-phone{
  display: none;
}
.visual-phone {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  justify-content: center;
  gap: 0;
  flex-direction: column;
}
.visual-2 {
  width: 84%;

}
.mandoo-write{
  width: 100%;
}
.mandoo-write > h3 {
  font-size: 0.88rem;
  margin-bottom: 10%;

}
.visual-inner2 > h1 {
  font-size: 60px;
  margin-bottom: 6%;
}
.swiper {
  top: -62px;
}
.slide-body{
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  justify-content: center;
  gap: 0;
  flex-direction: column;
  padding: 6%;
}
.slide-body img {
  width: 52%; /* 이미지가 부모 요소의 전체 너비를 차지하도록 설정 */
  height: auto; /* 이미지의 높이는 자동으로 설정 */
  object-fit: contain; /* 이미지가 잘리지 않고 비율을 유지하면서 크기를 조정 */
  padding: 5% 8% 8% 8% !important;
}
.slide-0 > span {


  font-size: 60px;
}
.slide-body img {
 padding: 0% !important;
 margin-top: 5%;
}


.slide-2 {
  font-size: 0.88rem;
  height: 93px;
  padding-top: 10px;
  text-align: center;
}
.mandoo-logo-bt > img {
  width: 120px;
}
.visual4-wt > h1 {
  font-size: 50px;
}
.bt-1 > img {
  width: 72%;

}
.bt-2 > img {
  width: 72%;
}
.button-wrap > a {
 text-align: center;
}
.mandoo-logo-bt {
 margin-top: 3%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  top: 89%;

}
.swiper-slide swiper-slide-active{
  width: 100%;
}
.slide-0 {
  top: -1.5rem;
  font-size: 4rem;
  position: relative;
}
.swiper-button-prev {
  left: 3%;
  top: 48%;
}
.swiper-button-next {
  right: 3%;
  top: 48%;
}
.slide-content {
  margin-top: 99px;
}
.swiper-pagination-bullet-active {
  background-color: #6a4a8d;
  width: 16px;
  height: 6px;
  border-radius: 12px;
}
.naver, .instagram, .facebook {
  width: 100%;
 
}
.footer-right {
  display: flex;
  gap: 30px;
  margin-left: 3%;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  align-items: flex-start;
  flex-direction: column;
}
.header .logo img {
  max-height: 30px;
  margin-right: 6px;
}
}
@media (max-width:414px){
  .swiper-button-prev {
    left: 3%;
    top: 45%;
  }
  
  .swiper-button-next {
    right: 3%;
    top: 45%;
  }
  .naver, .instagram, .facebook {
    width: 100%;
   
}
  .footer-right {
    display: flex;
    gap: 30px;
    margin-left: 3%;
  }
  .footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    align-items: flex-start;
    flex-direction: column;
}

.visual-inner2 > h1 {
  font-size: 60px;
  margin-bottom: 6%;
}


.visual-2 {
  width: 84%;
  margin-bottom: 20%;
}
.slide-0 > span {
  font-size: 60px;
}


}



@media (max-width:390px){
  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    position: absolute;
    top: 89% !important;
  
  }
  .gd-write > span {
    font-size: 0.9rem;
}
  .gd-write {
    height: 30vh !important;
}



    .slide-2 {
      width: 100%;
     
  }




.slide-body {
  gap: 4px;
}
.swiper-button-prev {
  left: 3%;
  top: 46%;}

.swiper-button-next {
  right: 3%;
  top: 46%;
}
.swiper-button-next::after {
  font-size: 30px;
}
.swiper-button-prev::after {
  font-size: 30px;
}

.visual-2 {
  width: 84%;
  margin-bottom: 20%;
}
.visual-4-wrap {
  gap: 3rem;
  margin-top:20%;
  margin-bottom: 20%;
}
.main-visual h2 {
  font-size: 60px;
}
.visual-inner2 > h1 {
  font-size: 60px;
  margin-bottom: 6%;
}
.slide-0 > span {
  font-size: 60px;
}
.visual4-wt > h1 {
  font-size: 50px;
}
}

@media (max-width:341px){
  .footer-wrap {
    padding: 30px;
}
  .gd-write > span {
    font-family: "Pretendard-Regular";
    font-size: 0.95rem !important;
    line-height: 132%;
}
  .gd-write > span {
    font-size: 0.7rem;
}
.gd-write > h1{
  font-size: 4rem;
}
  .gd-write {
    height: 30vh !important;
}

  .mobile-nav-show {
    font-size: 39px;
    margin-right: 8px;
}
  .header .logo img {
    max-height: 26px;
    margin-right: 6px;
  }
  .main-visual h2 {
    font-size: 50px;
}

.visual4-wt > h1 {
  font-size: 45px;
}
.visual-inner2 > h1 {
  font-size: 50px;
}

}

@media (max-width:320px){
  .swiper {
  
    padding-bottom: 50px;
}
  .footer-wrap {
    padding: 35px;
}
  .visual4-wt > h1 {
    font-size: 40px;
}
.header .logo img {
  max-height: 26px;
  margin-right: 6px;
}
.gd-write > span {
  font-family: "Pretendard-Regular";
  font-size: 0.9rem !important;
  line-height: 132%;
}

}


/*-------------------------------------------------------
#visual-phone
---------------------------------------------------------*/

.main-con-video{
  padding-top: 2rem;
  text-align: center;
  padding-bottom: 5rem;
  display: flex;
  justify-content: center;
}

.main-con-video video{
  width: 50rem;
}

@media (max-width: 650px) {
  .main-con-video video{
    width: 40rem;
  }
}

@media (max-width: 450px) {
  .main-con-video video{
    width: 35rem;
  }
}
.main-con-video-2{
  width: 70%;
}

.phone-inner-p {
  position: relative;
  top: 0rem;
}

.phone-inner-img {
  left: 17rem;
  top: 3rem;
  animation: bounce .5s ease infinite alternate;
  position: absolute;
}

@media (max-width: 1700px) {
  .phone-inner-img {
    left: 13rem;
  }
}

@media (max-width: 1500px) {
  .phone-inner-img {
    left: 12rem;
  }
}

@media (max-width: 1300px) {
  .phone-inner-img {
    left: 6rem;
  }
}
@keyframes bounce {
  100% {
    top: -20px;
  }
}

@media (max-width: 1020px){

  .phone-inner-img {
    left: 8.5rem;
    top: 2rem;
    width: 50%;
    animation: bounce .5s ease infinite alternate;
    position: absolute;
  }

  .phone-inner-p {
    position: relative;
    top: 0rem;
  }

}

@media (max-width: 850px) {
  .phone-inner-img {
    left: 6.5rem;
  }
}

@media (max-width: 650px) {
  .phone-inner-img {
    left: 5.5rem;
  }
}

@media (max-width: 500px) {
  .phone-inner-img {
    left: 4rem;
  }
}

@media (max-width: 430px){
  .phone-inner-img {
    left: 8rem;
    top: 2rem;
    width: 50%;
    animation: bounce .5s ease infinite alternate;
    position: absolute;
    display: none;
  }
}

/*logo*/

.header .logo {
  position: relative
}


.header .logo2 {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.header .logo:hover .logo2 {
  opacity: 1;
}
