@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
:root {
  --animation-timing-function: 0s 1s cubic-bezier(.19,1,.22,1);
  --animation-duration: 1s;
}

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(90vw) rotateY(67.5deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(90vw) rotateY(67.5deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
[data-animation] {
  opacity: 0;
  -webkit-animation-timing-function: var(--animation-timing-function);
          animation-timing-function: var(--animation-timing-function);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: var(--animation-duration);
          animation-duration: var(--animation-duration);
  will-change: transform, opacity;
}

.animations-disabled,
.animations-disabled [data-animation] {
  -webkit-animation: none !important;
          animation: none !important;
  opacity: 1 !important;
}

.slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
}

.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}

.slideInLeft {
  -webkit-animation-name: slideInleft;
          animation-name: slideInleft;
}

.slideInRight {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

.zoomReverseIn {
  -webkit-animation-name: zoomReverseIn;
          animation-name: zoomReverseIn;
}

.flipInY {
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
}

.flipOutY {
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
  animation-direction: reverse;
}



@-webkit-keyframes blockReveal {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes blockReveal {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}


.anni {    -webkit-animation: blockReveal 8s 1s cubic-bezier(.19,1,.22,1) both;
    animation: blockReveal 8s 1s cubic-bezier(.19,1,.22,1) both;}
    
    .ctrlbnH {
      width: 100%;
      height: 292px;
    }
    
      .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    

.mypage_wapper{
    
    max-width: 100%;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}



.container_home {
    max-width: 100%;
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 0px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}




#headSection2 {
    background-image: url('../images/home/2023/nodelinkbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    padding: 30px 0 30px;
}


.headSectiontitleone {
   
}

.headSectiontitleone h2{
    position: relative;
    font-size: 34px;
    line-height: 45px;
    font-weight: 800;
    font-family:"Inter", sans-serif;
    color: #353535;
    margin: 0 auto;
}
.headSectiontitleone h2 span{
  color: #B00000;
}


.headSectiontitleone p{
    font-size: 18px;
    line-height: 1.45;
    font-weight: 400;
    font-family:"Inter", sans-serif;
    color: #353535;
    margin: 0 auto;
    padding:10px 0 0 0;
}


.icon_Boxflex{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.icon_Boxflex .icon_Card {
    flex: 0 0 24%;
    display: flex;
    padding: 10px 0 10px;
    justify-content: center;
}
.icon_Boxflex .icon_Card a{
    display: flex;
    flex-direction: row;
    text-decoration: none;
    align-items: center;
    justify-content: flex-start;
    background: hsla(0, 0%, 97%, 1);
    border-radius: 161px;
    box-shadow: 0px 4px 4px 0px hsla(0, 0%, 0%, 0.25);
    width: 260px;
    transition: all 0.3s ease 0s;
}

.icon_Boxflex .icon_Card a:hover{
    border: 1px solid #89241f;
    transform: scale(1.051);
    box-shadow: 0px 8px 13px 3px hsla(0, 0%, 0%, 0.25);
}

.icon_Boxflex .icon_Card a .icon_card-media{
    background-color: hsla(3, 63%, 33%, 1);
    padding: 20px;
    border-radius: 50%;
    transition: all 0.3s ease 0s;
}
.icon_Boxflex .icon_Card a:hover > .icon_card-media{
    transform: scale(.95);
}
.icon_Boxflex .icon_Card a .icon_card-media img{
    width: 46px;
    height: auto;
    transition: all 0.3s ease 0s;
}

.icon_Boxflex .icon_Card a h1{
    font-size: 20px;
    line-height: 1.75;
    font-weight: 500;
    font-family:"Inter", sans-serif;
    color: hsla(0, 0%, 0%, 1);
    text-align: start;
    margin: 0;
    margin-left: 20px;
    transition: all 0.3s ease 0s;
}



#headSection3 {
    background-color: #fff;
    width: 100%;
    height: 100%;
    margin: 28px 0 28px;
    position: relative;
}

.headSectiontitletwo {
    text-align: center;
    transition: all 0.3s ease 0s;
    padding:10px 0 14px 0;
}

.headSectiontitletwo h1{
  color: #353535;
  font-family: "Inter", sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0em;
  text-align: center;
  margin: 0;
  position: relative;
}
.headSectiontitletwo h1 span{
  color: #B82F28;
}



.headSectiontitletwo p{
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: hsla(0, 0%, 14%, 1);
  margin: 0 auto;
  text-align: center;
  padding-top: 4px;
  padding-bottom: 20px;
}


.iconpluscontent_Boxflex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 32px 0;
}


.iconpluscontent_Boxflex .iconpluscontent_Card {
    flex: 0 0 29.33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: #fff;
    border-top: 3px solid hsl(3deg 63% 33% / 30%);
    padding: 1.5rem;
    /* max-width: 178px; */
    min-height: 290px;
    box-shadow: 0px 3.401425361633301px 3.401425361633301px 0px hsla(0, 0%, 0%, 0.25);
}
.iconpluscontent_Boxflex .iconpluscontent_Card .ipc_head {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.iconpluscontent_Boxflex .iconpluscontent_Card .ipc_head .ipc_media img{
    width: 45px;
    height: auto;
}
.iconpluscontent_Boxflex .iconpluscontent_Card .ipc_head h1{
    font-size: 20px;
    line-height: 1.75;
    font-weight: 700;
    font-family:"Inter", sans-serif;
    color: hsla(0, 0%, 0%, 1);
    text-align: center;
    margin: 0.51rem auto;
}

.iconpluscontent_Boxflex .iconpluscontent_Card .ipc_body {
    display: flex;
    flex-direction: column;
    align-items: center;
        padding: 0 24px;
}
.iconpluscontent_Boxflex .iconpluscontent_Card .ipc_body p{
    font-size: 14px;
    line-height: 1.45;
    font-weight: 400;
    font-family:"Inter", sans-serif;
    color: hsla(0, 0%, 0%, 1);
    text-align: center;
    margin: 0.51rem 0;
}
.iconpluscontent_Boxflex .iconpluscontent_Card .ipc_body a.ipc_action{
    text-decoration: none;
    padding: 5px 24px;
    margin-top: 20px;
    color: #ffff;
    background-color: hsla(3, 63%, 33%, 1);
    text-transform: uppercase;
    line-height: 1.75;
    font-size: 12px;
    border-radius: 42.52px;
    box-shadow: 0px 3px 3px 2px rgb(0 0 0 / 11%);
    transition: all 0.3s ease 0s;
}
.iconpluscontent_Boxflex .iconpluscontent_Card .ipc_body a.ipc_action:hover{
    box-shadow: 1px 8px 12px 1px rgb(137 36 31 / 24%);
    /* transform: translateY(-7px); */
    border: 2px solid hsla(3, 63%, 33%, 1);
    color: hsla(3, 63%, 33%, 1);
    background-color: #fff;
    font-weight: 700;
}


#headSection4 {
    position: relative;
    background: #F3D9D9;
    padding: 15px 0;
    width: auto;
    margin:15px 0 0 0;
}
#headSection4::before{
    content: '';
	position: absolute;
	display: none;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODA4IiBoZWlnaHQ9IjI1MiIgdmlld0JveD0iMCAwIDgwOCAyNTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik00Ni4wMjUzIDIxMC4zODZMNDQuMTA4OSAyMjQuMDk1TDMzLjY3OCAyMTYuNjQ1TDQ2LjAyNTMgMjEwLjM4NloiIGZpbGw9IiM4ODI0MUYiLz4KPHBhdGggZD0iTTE1LjkwMjYgNy40OTc0M0wxMy45ODYyIDIxLjIwNzJMMy41NTUyOSAxMy43NTYzTDE1LjkwMjYgNy40OTc0M1oiIGZpbGw9IiM4ODI0MUYiLz4KPHBhdGggZD0iTTQ1My45MjQgMjMzLjcxNkw0NjMuMjExIDI0My45ODFMNDUwLjgwNCAyNDcuMjAzTDQ1My45MjQgMjMzLjcxNloiIGZpbGw9IiM4ODI0MUYiLz4KPHBhdGggZD0iTTQ4OC43NzkgNS4xNjAyN0w0ODYuODYzIDE4Ljg3TDQ3Ni40MzIgMTEuNDE5Mkw0ODguNzc5IDUuMTYwMjdaIiBmaWxsPSIjODgyNDFGIi8+CjxwYXRoIGQ9Ik03OTYuNzk0IDIxMy40MzVMODA1LjQ5NCAyMjQuMjAzTDc5Mi45MjYgMjI2LjcyN0w3OTYuNzk0IDIxMy40MzVaIiBmaWxsPSIjODgyNDFGIi8+Cjwvc3ZnPgo=');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1; 
}


.media_title {
    display: flex;
    justify-content: space-evenly;
    position: relative;
    align-items: center;
}
.media_title .media_actionBox{
    flex: 0 0 45%;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: center;
}
.media_actionBox-video{
    border-bottom: 2px solid hsla(3, 63%, 33%, 1);
    position: relative;
    left: 0;
    top: 0;
    padding: 0;
    margin: 0;
}

.media_title .media_actionBox .media_actionBox-video video{
    display: inline-block;
    /* clip-path: polygon(0 0, 100% 10%, 100% 85%, 0 100%); */
    /* box-shadow: 9px 20px 20px 20px rgb(255 255 255);*/    
}


.media_titleBox{
    margin:0;
    padding:58px 0 0 0;
}

.media_titleBox h1{
  position: relative;
  font-size: 34px;
  line-height: 47px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: #353535;
  margin: 0;
  /* text-align: start; */
  display: inline;
  padding-bottom: 8px;
}
.media_titleBox h1::before{
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    margin: 0 auto;
    width: 20%;
    height: 3px;
    background-color: #B82F28;
}
.media_title .media_titleBox p{
   /* font-size: 15.58px; */
   font-size: 26.58px;
    line-height: 1.45;
    font-weight: 400;
    font-family:"Inter", sans-serif;
    color: hsl(0deg 0% 100%);
    margin: 0 auto;
    text-align: start;
    padding-top: 16px;
    padding-bottom: 24px;
}

.btn-wrap {
    position: relative;
    top: 0;
    left: 0;
    margin: 16px 0 0 0px;
}

.btn-wrap a.mediAction {
  text-decoration: none;
  padding: 8px 32px;
  color: #ffff;
  background-color: #B00000;
  text-transform: uppercase;
  line-height: 1.75;
  font-size: 13px;
  box-shadow: 0px 8px 15px rgb(0 0 0 / 37%);
  transition: all 0.3s ease 0s;
  animation: bounce 2s ease-in-out forwards;
  animation-iteration-count: infinite;
  -webkit-animation: bounce 2s ease-in-out forwards;
  -webkit-animation-iteration-count: bounce 2s ease-in-out forwards;
}

.media_title .media_titleBox a.mediAction:hover{
    box-shadow: 0px 11px 19px 6px rgb(47 26 26 / 53%);
    /* transform: translateY(-7px); */
}





#headSection5 
            {
                padding: 35px 0;
             }
             #headSection5 table tr td p
            {
              margin: 0;
              padding: 10px 0;
              border: 2px solid #474747;
              font-family: "Inter", sans-serif;
              font-weight: 600;
              color: #474747;
              text-align: center;
              width: 190px;
              font-size: 17px;
             }
            .cardSliderContainer
            {
                /*border: 1px solid rgb(244 244 244 / 90%) 100%);
                border-radius: 14px;
                box-shadow: 0px 4px 4px 0px hsla(0, 0%, 0%, 0.25);
                margin: 16px auto;*/
                display: flex;
                /* background: linear-gradient(180deg, #cecece75 0%, rgb(248 248 248 / 33%) 100%); */
                padding: 16px 60px;
                width: 100%;
                align-items: center;
                background:  transparent;;
            }
            
            .cardSliderContainer::before {
             display:none;
             /*content: '';*/
	        position: absolute;
	        top: 0;
	        right: 0;
	        bottom: 0;
	        left: 0;
            background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODA4IiBoZWlnaHQ9IjI1MiIgdmlld0JveD0iMCAwIDgwOCAyNTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik00Ni4wMjUzIDIxMC4zODZMNDQuMTA4OSAyMjQuMDk1TDMzLjY3OCAyMTYuNjQ1TDQ2LjAyNTMgMjEwLjM4NloiIGZpbGw9IiM4ODI0MUYiLz4KPHBhdGggZD0iTTE1LjkwMjYgNy40OTc0M0wxMy45ODYyIDIxLjIwNzJMMy41NTUyOSAxMy43NTYzTDE1LjkwMjYgNy40OTc0M1oiIGZpbGw9IiM4ODI0MUYiLz4KPHBhdGggZD0iTTQ1My45MjQgMjMzLjcxNkw0NjMuMjExIDI0My45ODFMNDUwLjgwNCAyNDcuMjAzTDQ1My45MjQgMjMzLjcxNloiIGZpbGw9IiM4ODI0MUYiLz4KPHBhdGggZD0iTTQ4OC43NzkgNS4xNjAyN0w0ODYuODYzIDE4Ljg3TDQ3Ni40MzIgMTEuNDE5Mkw0ODguNzc5IDUuMTYwMjdaIiBmaWxsPSIjODgyNDFGIi8+CjxwYXRoIGQ9Ik03OTYuNzk0IDIxMy40MzVMODA1LjQ5NCAyMjQuMjAzTDc5Mi45MjYgMjI2LjcyN0w3OTYuNzk0IDIxMy40MzVaIiBmaWxsPSIjODgyNDFGIi8+Cjwvc3ZnPgo=');
            background-position: center;
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 1;    
             }
            .cardSliderContainer .cardSlider-left 
            {
                flex: 0 0 50%;
            }
            .cardSliderContainer .cardSlider-left img 
            {
                 width: 100%;
                 height: auto; 
             }
            
            .cardSliderContainer .cardSlider-right 
            {
                flex: 0 0 50%;
                display: flex;
                align-items: center;
                flex-direction: column;
            }
            .cardSliderContainer .cardSlider-right .cs_content 
            {
              padding: 0 16px 10px;
              text-align: start;
            }
            .cardSliderContainer .cardSlider-right .cs_content h1 
            {
                text-align: start;
                line-height: 1.75;
                font-size: 40.704px;
                color: #1e1e1e;
                font-weight: 700;
                margin: 0 auto 16px;
                position: relative;
                display: inline-block;
                
            }
            
            .cardSliderContainer .cardSlider-right .cs_content h1::before{
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: auto;
                    right: auto;
                    margin: 0 auto;
                    width: 100%;
                    height: 3px;
                    background-color: hsla(3, 63%, 33%, 1);
                }
            
            .cardSliderContainer .cardSlider-right .cs_content h1 span{
                padding: 16px;
                color: #fff;
                background: hsla(3, 63%, 33%, 1);
                /* clip-path: polygon(0% 0%, 100% 10%, 98% 90%, 2% 100%); */
                clip-path: polygon(0% 5%, 99% 0%, 97% 100%, 1% 95%);
                position: relative;
                display: inline-block;
            }
            .cardSliderContainer .cardSlider-right .cs_content p 
            {
                    text-align: start;
                    line-height: 1.5;
                    font-size: 20px;
                    color: #1e1e1e;
                    font-weight: 300;
                    position: relative;
                    margin-left: 36px;
             }
            .cardSliderContainer .cardSlider-right .cs_content p::before 
            {
                    content: '';
                    position: absolute;
                    left: -36px;
                    top: 50%;
                    width: 30px;
                    height: 1px;
                    background-color: #1e1e1e73;
                    display: inline-block;
             }
             
             .cardSliderContainer .cardSlider-right a.cs_actionbtn
            {
              text-decoration: none;
              padding: 8px 16px;
              color: #ffff;
              background-color: hsla(3, 63%, 33%, 1);
              text-transform: uppercase;
              line-height: 1.75;
              font-size: 12px;
              border-radius: 18.52px;
              cursor: pointer;
              position: relative;
              z-index: 10;
              margin: 30px auto 0;
              box-shadow: 1px 3px 9px 7px rgb(0 0 0 / 11%);
              transition: all 0.3s ease 0s;
             }
             
              .cardSliderContainer .cardSlider-right a.cs_actionbtn:hover
            {
                    box-shadow: 0px 11px 19px 6px rgb(137 36 31 / 24%);
                    /* transform: translateY(-7px); */
                    border: 2px solid hsla(3, 63%, 33%, 1);
                    color: hsla(3, 63%, 33%, 1);
                    background-color: #fff;
                    font-weight: 700;
             }
             
             .slider__prev, .slider__next {
              position: absolute;
              width: 50px;
              height: 50px;
              background-color: #fff;
              border-radius: 50%;
              z-index: 2;
              box-shadow: 0 0 15px rgba(75, 75, 75, 0.4);
              top: calc(50% - 25px);
              cursor: pointer;
            }
            .slider__prev::after, .slider__next::after {
              content: "";
              position: absolute;
              width: 10px;
              height: 10px;
              transform: rotate(-45deg);
              top: 20px;
              left: 10px;
              box-sizing: border-box;
            }
            .slider__prev::after {
              content: "";
              position: absolute;
              width: 10px;
              height: 10px;
              transform: rotate(-45deg);
              top: 20px;
              left: 30px;
              box-sizing: border-box;
            }
            .slider__prev.swiper-button-disabled, .slider__next.swiper-button-disabled {
              opacity: 0.6;
              box-shadow: none;
              cursor: not-allowed;
            }
            .slider__prev {
              left: -25px;
            }
            .slider__prev::after {
              border-top: 3px solid #88241f;
              border-left: 3px solid #88241f;
            }
            .slider__next {
              right: -25px;
            }
            .slider__next::after {
              border-bottom: 3px solid #88241f;
              border-right: 3px solid #88241f;
            }
#headSection6{margin:0; padding:20px 0 25px 0;}
.dbg{
    background-image: url('../images/home/2024/downloadapp_bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width:893px;
    height:194px;
    margin:0 auto;
}
#headSection6 .dbg h2{
  margin: 0;
    padding: 31px 0 0 81px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 49px;
    color: #B00000;
}
#headSection6 .dbg table{
  margin: 56px 0 0 0;
    padding: 0;
    
}

#footSection1 {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 15px 0;
    transition: all 0.3s ease 0s;
    
}
#footSection1::before {
    content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
    background: #88241F;
}

#footSection1 .footflex_box{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 9;
}

.footflex_box .ft_contact_left{
    flex: 0 0 20%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
}
.ft_contact_left .ft_brand{
    padding: 0.5rem 0;
    margin: 0 0 1rem;
}
.ft_contact_left .ft_brand img{
    width: auto;
    height: auto;
}

.ft_contact_left .ft_contactinfo{
  padding-bottom:13px; 
}
 .ft_contact_left .ft_contactinfo h3{
  position: relative;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: hsl(0, 0%, 100%);
  margin: 0;
  text-align: start;
  display: block;
  padding: 2px 0px 9px 0;
}

.ft_contact_left .ft_contactinfo ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.ft_contact_left .ft_contactinfo ul li{
    margin: 0;
    padding: 0;
}
.ft_contact_left .ft_contactinfo ul li p{
    font-size: 14px;
    line-height: 1.75;
    font-weight: 400;
    font-family:"Inter", sans-serif;
    color: hsl(0, 0%, 100%);
    margin: 0;
    text-align: start;
}
.ft_contact_left .ft_contactinfo ul li p a{
    font-size: 14px;
    line-height: 1.75;
    font-weight: 400;
    font-family:"Inter", sans-serif;
    color: hsl(0, 0%, 100%);
    margin: 0;
    text-align: start;
    text-decoration: none;
}


.ft_contact_middle{
   /* flex: 0 0 40%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
    transition: all 0.5s; */
    
    flex: 0 0 40%;
    display: flex;
    flex-direction: row;
    position: relative;
    transition: all 0.5s;
    align-items: flex-start;
}
.ft_contact_middle::before{
  /*  content: '';
    position: absolute;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: hsl(0, 0%, 100%);
    border-radius: 100%; 
    
    content: '';
    position: absolute;
    vertical-align: middle;
    right: 0;
    top: 8%;
    width: 2px;
    height: 200px;
    background-color: hsl(0, 0%, 100%);
    border-radius: 100%;*/
}

.ft_contact_middle .ft_contact_middle_top h3 {
    position: relative;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 500;
    font-family:"Inter", sans-serif;
    color: hsl(0, 0%, 100%);
    margin: 0;
    text-align: start;
    display: inline;
    padding-bottom: 0px;
}
.ft_contact_middle_top h3::before{
  display:none;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    width: 99.99%;
    height: 2px;
    background-color: hsl(0, 0%, 100%);
}
.ft_contact_middle .ft_contact_middle_top ul{
   
    list-style: none;
    margin: 19.71px 0;
    padding: 0;
    display: flex;
    width: 100%;
    flex-direction: column;
}
.ft_contact_middle .ft_contact_middle_top ul li {
    /* flex: 0 0 0; */
    margin: 0 0 7px;
    padding: 0;
}
.ft_contact_middle .ft_contact_middle_top ul li a{
    font-size: 14px;
    line-height: 1.75;
    font-weight: 400;
    font-family:"Inter", sans-serif;
    color: hsl(0, 0%, 100%);
    margin: 0;
    text-align: start;
    text-decoration: none;
        transition: all 0.5s;
}
.ft_contact_middle .ft_contact_middle_top ul li a:hover{
    border-bottom: 2px solid #fff;
    padding-bottom: 3px;
}



.ft_contact_middle .ft_contact_middle_bottom h3 {
  position: relative;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
  font-family:"Inter", sans-serif;
  color: hsl(0, 0%, 100%);
  margin: 0;
  text-align: start;
  display: inline;
  padding-bottom: 0px;
}
.ft_contact_middle_bottom h3::before{
display:none;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  width: 99.99%;
  height: 2px;
  background-color: hsl(0, 0%, 100%);
}
.ft_contact_middle .ft_contact_middle_bottom ul{
 
  list-style: none;
  margin: 19.71px 0;
  padding: 0;
  display: flex;
  width: 100%;
  flex-direction: column;
}
.ft_contact_middle .ft_contact_middle_bottom ul li {
  /* flex: 0 0 0; */
  margin: 0 0 7px;
  padding: 0;
}
.ft_contact_middle .ft_contact_middle_bottom ul li a{
  font-size: 14px;
  line-height: 1.75;
  font-weight: 400;
  font-family:"Inter", sans-serif;
  color: hsl(0, 0%, 100%);
  margin: 0;
  text-align: start;
  text-decoration: none;
      transition: all 0.5s;
}
.ft_contact_middle .ft_contact_middle_bottom ul li a:hover{
  border-bottom: 2px solid #fff;
  padding-bottom: 3px;
}

/* #footSection1 .footflex_box .ft_contact_middle .ft_contact_middle_top ul li a:hover,
#footSection1 .footflex_box .ft_contact_middle .ft_contact_middle_bottom ul li a:hover{
    border-bottom: 2px solid #fff;
    padding-bottom: 3px;
} */

.ft_contact_right .ft_contact_right_bottom h3 {
    position: relative;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 500;
    font-family:"Inter", sans-serif;
    color: hsl(0, 0%, 100%);
    margin: 0;
    text-align: start;
    padding-bottom: 0px;
}

.ft_contact_right .ft_contact_right_bottom p {
    font-size: 14px;
    line-height: 1.75;
    font-weight: 500;
    font-family:"Inter", sans-serif;
    color: hsl(0, 0%, 100%);
    margin: 10px 0;
    text-align: start;
    padding: 0;
}
.ft_contact_right .ft_contact_right_bottom ul {
    list-style: none;
    margin: 8px 0;
    padding: 0;
    width: 100%;
}
.ft_contact_right .ft_contact_right_top ul li {
    margin: 0;
    padding: 0;
    margin-right: 5px;
}
.ft_contact_right .ft_contact_right_top ul li a {
    text-decoration: none;
    background: #fff;
    display: flex;
    width: 30px;
    height: auto;
    border-radius: 60px;
    justify-content: center;
    align-items: center;
}
.ft_contact_right .ft_contact_right_top ul li a img {
    width: 30px;
    height: auto;
}
.ft_contact_right .ft_contact_right_bottom ul li #Form2 {
    display: flex;
    position: relative;
    align-items: center;
}
.ft_contact_right_bottom ul li form  input[type="email"].sub_field,
.ft_contact_right_bottom ul li form  input.sub_field, 
.ft_contact_right_bottom ul li form #Form2 input.sub_field, 
.ft_contact_right_bottom ul li input.sub_field, 
input.sub_field  {
  position: relative;
  display: inline-block;
  width: 100%;
  background: #a0504c;
  padding: 8px 10px;
  margin: 8px 0;
  transition: all 0.5s;
  box-sizing: border-box;
  height: 38px;
  margin-top: 0;
  border: none;
  border-radius: 6px;
}


.ft_contact_right .ft_contact_right_bottom ul li form  input.sub_field,
.ft_contact_right .ft_contact_right_bottom ul li form  input.sub_field::-webkit-input-placeholder,
.ft_contact_right .ft_contact_right_bottom ul li input.sub_field::-webkit-input-placeholder,
input.sub_field,
input.sub_field::-webkit-input-placeholder {
    font-size: 13px;
    line-height: 3;
    color:#ffffff;
}



.ft_contact_right .ft_contact_right_bottom ul li form button.sub_bt,
.ft_contact_right .ft_contact_right_bottom ul li button.sub_bt {
  position: absolute;
  right: 11px;
  top: 10px;
  display: inline-block;
  border: none;
  cursor: pointer;
  background-image: url(/Resources/images/home/2024/subscribe_icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 18px;
  height: 18px;
  background-color: transparent;
}
#ft_social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
#ft_social ul li {
  margin: 0;
  padding: 0;
  margin-right: 5px;
}


#copyright {
    padding: 10px 0;
    text-align: center;
}
#copyright p{
    font-size: 14px;
    line-height: 1.75;
    font-weight: 400;
    font-family:"Inter", sans-serif;
    color: hsl(0, 0%, 0%);
    margin: 0;
    text-align: center;
}




#section2new {
  padding:  0;
  margin: 0 auto;
}

#section2new .dsa_container {
  
  position: relative;
}
#section2new .dsa_container.bbg {
   padding: 0;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

#section2new .dsa_container .dsa_left {
  display: none !important;
  flex: 0 0 auto;
  display: flex;
  justify-content: space-around;
  margin-right: 40px;
  position: relative;
} 
#section2new .dsa_container .dsa_left::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: -54px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDEwIiBoZWlnaHQ9IjI4MiIgdmlld0JveD0iMCAwIDQxMCAyODIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTE5LjkzNyAyNTguNTIyLTIuNDYgMTcuNTk4LTEzLjM5LTkuNTY0IDE1Ljg1LTguMDM0Wk0zOTUuMTk1IDQwLjM4OGwxMS45MjIgMTMuMTc2TDM5MS4xOSA1Ny43bDQuMDA1LTE3LjMxMlpNMjEuOTM3IDUuNTIybC0yLjQ2IDE3LjU5OC0xMy4zOS05LjU2NCAxNS44NS04LjAzNFoiIGZpbGw9IiM4ODI0MUYiLz48L3N2Zz4=");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 600px;
  opacity: 1;
} 
#section2new .dsa_container .dsa_left .dsa_left-media {
  padding: 0;
  margin: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

} 
#section2new .dsa_container .dsa_left .dsa_left-media::before {
  content: "";
  width: 340px;
  height: 340px;
  position: absolute;
  z-index: -1;
  left: auto;
  right: auto;
  background-color: #88241F;
  border-radius: 100%;
} 
#section2new .dsa_container .dsa_left .dsa_left-media img {
  margin: 0;
  padding: 0;
  /* width: 467px;
  height: 492px; */
  width: 420px;
  height: auto;
} 

#section2new .dsa_container .dsa_right {
  flex: 0 0 65%;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}


#section2new .dsa_container .dsa_right .dsa_right-title {
  text-align: center;
    margin: 15px 0 15px 0;
}
#section2new .dsa_container .dsa_right .dsa_right-title h1 {
  color: #2D2D2D;
  font-family:"Inter", sans-serif;
  font-size:28px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0em;
  text-align: center;
  margin:0 0 0 0;
  position: relative;
}
/*#section2new .dsa_container .dsa_right .dsa_right-title h1::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: auto;
  right: auto;
  margin: 0 auto;
  width: 100%;
  height: 3px;
  background-color: #88241F;
  display: block;
}*/
#section2new .dsa_container .dsa_right .dsa_right-title p {
  color: #242424;
  font-family:"Inter", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0em;
  text-align: center;
}

#section2new .dsa_container .dsa_right .dsa_right-icongrid {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
#section2new .dsa_container .dsa_right .dsa_right-icongrid a.dsa-right-iconCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease 0s;
}
#section2new .dsa_container .dsa_right .dsa_right-icongrid a.dsa-right-iconCard img {
  width: 50px;
  width: 50px;
}
#section2new .dsa_container .dsa_right .dsa_right-icongrid a.dsa-right-iconCard h1 {
  color: #2D2D2D;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 500;
  font-family:"Inter", sans-serif;
  color: hsla(0, 0%, 0%, 1);
  text-align: center;
  margin: 0.51rem auto;
}
#section2new .dsa_container .dsa_right .dsa_right-icongrid a.dsa-right-iconCard:hover, #section2new .dsa_container .dsa_right .dsa_right-icongrid a.dsa-right-iconCard h1:hover {
  color: #88241F;
}


/* After logout landing page css start */
#after_logOut {
  background-color: #ffffff;
}

.after_logOut-flex {
  display: flex;
  transition: all ease-in .3s;
}

.after_logOut-flex .logOut-left {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-image: url('/Resources/images/home/2023/logoutpage/manubuilding.jpg');
  /* background-image: url('/Resources/images/home/2023/logoutpage/manubuilding.png'); */
  background-position: center;
  background-size: cover;
  /* background-size: 100% 100vh; */
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  height: 100vh;
  transition: all ease-in .2s;
}

.after_logOut-flex .logOut-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background:hsla(3, 63%, 33%, 0.7);
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.after_logOut-flex .logOut-left a.Llgout-brand {
  padding: 0;
  margin: 16px auto;
  text-align: center;
}

.after_logOut-flex .logOut-left a.Llgout-brand img {
  width: 520px;
  height: auto;
}

.after_logOut-flex .logOut-left .Llgout-content {
  padding: 0;
  width: 50%;
}
.after_logOut-flex .logOut-left .Llgout-content p {
  font-size: 40px;
  color: #fff;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  margin-bottom: 32px;
}

.after_logOut-flex .logOut-left a.Llgout-action {
  padding: 12px 48px;
  font-size: 20px;
  color: #fff;
  border-radius: 50px;
  border: 2px solid #ffffff;
  background-color: transparent;
  box-shadow: 0px 4px 4px 0px hsla(0, 0%, 0%, 0.25);
  transition: all ease .2s;
}
.after_logOut-flex .logOut-left a.Llgout-action:hover {
  background-color: #89241f;
  border-color: #89241f;
  box-shadow: 0px 10px 20px 2px rgba(0,0,0,.25);
}


.after_logOut-flex .logOut-right {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all ease-in .3s;
}

.after_logOut-flex .logOut-right .Rlgout-title {
  padding: 0;
  margin-bottom: 20px;
}

.after_logOut-flex .logOut-right .Rlgout-title h1 {
  font-family:"Inter", sans-serif;
  /* font-size: 54px; */
  font-size: 56px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: normal;
  text-align: center;
  color: hsla(0, 0%, 14%, 1);
  margin: 0;
}

.after_logOut-flex .logOut-right .Rlgout-title h1 span{
  color:hsla(3, 63%, 33%, 1);
  font-weight: 700;
}

.after_logOut-flex .logOut-right .Rlgout-pro {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.after_logOut-flex .logOut-right .Rlgout-pro a.product-media {
  padding: 0;
  margin-bottom: 32px;
  text-align: center;
  transition: all ease .2s;
}

.after_logOut-flex .logOut-right .Rlgout-pro a.product-media:last-child {
  padding: 0;
  margin-bottom: 0;
}

.after_logOut-flex .logOut-right .Rlgout-pro a.product-media img {
  width: 350px;
  height: auto;
  transition: all ease-in .3s;
}

.after_logOut-flex .logOut-right .Rlgout-pro a.product-media img:hover {
  transform: scale(0.95);
}
#section2new .dsa_container .dsa_right .dsa_right-title h1 span {
  color: #B82F28;
}
.pr{padding:0 10px 0 0;}
.p0{padding: 0;}
/* After logout landing page css ends */
@media(max-width:768px) {
  .pr{padding:0;}
.p0{padding: 0;}
.carousel .item img {
  height: auto !important;
}
#headSection6 .dbg h2 {
  padding: 31px 0 0 81px;
}
.dbg {
  width: 100%;
  height: auto;
}
#headSection5 table tr td p {
  
  border: 1px solid #474747;
  width: 162px;
  font-size: 14px;
}
}



