

/*--COLOR SCHEME--*/
:root {
  --primary-black: #000;
  --primary-red: #BB0000;
  --primary-light-gray: #DDD;
  --primary-lighter-gray: #f7f7f7;
  --primary-dark-gray: #303030;
}
/*--RESET--*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
	font-size:16px;
	scroll-behavior: smooth;
	overflow-x:hidden;
}
body {
    font-family: 'Lato', Tahoma, sans-serif;
    line-height: 1.6;
    background-color: #fff;
}

a{
	color:inherit;
}

a:hover{
	color:inherit;
}

sup {
    font-size: 70%;
    text-decoration: underline;
}

hr {
   border:1px solid #ddd;
   width: 100%;
}
/* Default font weight*/
.heavy{
	font-weight: 900;
}
.bold{
	font-weight: 700;
}
.regular{
	font-weight: 400;
}

/* Default font sizes */
.font-80 {
    font-size: 5rem; /* 80px */
    line-height: 1; /* Adjust line-height as needed */
}

.font-74 {
    font-size: 4.625rem; /* 74px */
    line-height: 1; /* Adjust line-height as needed */
}

.font-58 {
    font-size: 3.625rem; /* 58px */
    line-height: 1; /* Adjust line-height as needed */
}

.font-40 {
    font-size: 2.5rem; /* 40px */
    line-height: 1.3; /* Adjust line-height as needed */
}

.font-24 {
    font-size: 1.5rem; /* 24px */
    line-height: 1.4; /* Adjust line-height as needed */
}

.font-18 {
    font-size: 1.125rem; /* 18px */
    line-height: 1.3; /* Adjust line-height as needed */
}

.font-14 {
    font-size: 0.875rem; /* 14px */
    line-height: 1.4; /* Adjust line-height as needed */
}


/* Media query for mobile screens */
@media (max-width: 767px) {
    .font-80 {
        font-size: 3.75rem; /* Adjusted to approximately 60px */
        line-height: 1; /* Adjust line-height as needed */
    }

    .font-74 {
        font-size: 3.125rem; /* Adjusted to approximately 50px */
        line-height: 1; /* Adjust line-height as needed */
    }

    .font-58 {
        font-size: 2.5rem; /* Adjusted to approximately 40px */
        line-height: 1; /* Adjust line-height as needed */
    }

    .font-40 {
        font-size: 1.5rem; /* Adjusted to approximately 24px */
        line-height: 1.3; /* Adjust line-height as needed */
    }

    .font-24 {
        font-size: 1.25rem; /* Adjusted to approximately 20px */
        line-height: 1.4; /* Adjust line-height as needed */
    }

    .font-18 {
        font-size: 1rem; /* Adjusted to approximately 18px */
        line-height: 1.4; /* Adjust line-height as needed */
    }

    .font-14 {
        font-size: 0.875rem; /* Adjusted to approximately 14px */
        line-height: 1.4; /* Adjust line-height as needed */
    }
}




/*--COLOR--*/
.text-white {
    color: #FFFFFF;
}

.text-black {
    color: #000000;
}

.text-black-60 {
    color: rgba(0, 0, 0, 0.6);
}

.text-red {
    color: #bb0000;
}

.text-light-gray {
    color: #E2E2E2;
}

.text-off-white {
    color: #F9F9F9;
}

/*--MARGIN AND PADDDING--*/
.mt-0 { margin-top: 0px; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 80px; }

.mb-0 { margin-bottom: 0px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 80px; }

.m-1 { margin: 10px auto; }
.m-2 { margin: 20px auto; }
.m-3 { margin: 30px auto; }
.m-4 { margin: 40px auto; }
.m-5 { margin: 60px auto; }
.m-6 { margin: 100px auto; }

.p-0 { padding: 0px 0; }
.p-1 { padding: 10px 0; }
.p-2 { padding: 20px 0; }
.p-3 { padding: 30px 0; }
.p-4 { padding: 40px 0; }
.p-5 { padding: 60px 0; }
.p-6 { padding: 100px 0; }

/*--GENERAL--*/
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	max-width: 1260px;
	width: 100%;
	margin: auto;
}

.full-vh{
	min-height: 100vh;
	position:relative;
}

.tsma__header h1 {
    width: 85%;
}

.tsma__header p {
    width: 55%;
}

.tsm-brand-icon img{
    width:120px;
}
/* Media query for mobile screens */
@media (max-width: 767px) {
	.full-vh{
		min-height:auto;
	}
	
	.tsma__header.full-vh{
		min-height: 90vh;
	}
	
	.video-container video{
		margin-bottom:30px;
	}
	.tsma__header p {
    width: 100%;
}
    .tsm-brand-icon img{
    width:70px;
        margin-bottom:20px;
}
}
.flexwrap{
	display:flex;
}

.center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/*--VIDEOS--*/
 .video-container {
            max-width: 1100px;
            width: 100%;
            height: auto;
            overflow: hidden;
        }

        .video-container video {
            width: 100%;
            height: auto;
            display: block;
        }

        video::-webkit-media-controls {
            display: none !important;
        }

        video::-webkit-media-controls-enclosure {
            display: none !important;
        }

        video::-webkit-media-controls-play-button {
            display: none !important;
        }

        video::-webkit-media-controls-start-playback-button {
            display: none !important;
        }


/*--HEADER--*/
#header {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
}

.tsma__header{
	/*background: linear-gradient(109.6deg, rgb(49, 47, 54) 11.2%, rgb(0, 0, 0) 98.6%), rgb(23, 23, 23) 51.2%;
    background: -webkit-linear-gradient(109.6deg, rgb(49, 47, 54) 11.2%, rgb(0, 0, 0) 98.6%), rgb(23, 23, 23) 51.2%;
    background: -moz-linear-gradient(109.6deg, rgb(49, 47, 54) 11.2%, rgb(0, 0, 0) 98.6%), rgb(23, 23, 23) 51.2%;
	background-image: url(https://cdn.thestar.com.my/Themes/img/applanding/feather-blur-mix.webp);*/
    background:#000;
}
.tsma__header .brand {
   x border-bottom: 1px solid #dddddd20;
}

.brand img{
	max-width: 150px;
    height: auto;
    display: block;
    margin: auto;
}

.tsma__blackbg {
    background: linear-gradient(109.6deg, rgb(49, 47, 54) 11.2%, rgb(0, 0, 0) 98.6%), rgb(23, 23, 23) 51.2%;
    background: -webkit-linear-gradient(109.6deg, rgb(49, 47, 54) 11.2%, rgb(0, 0, 0) 98.6%), rgb(23, 23, 23) 51.2%;
    background: -moz-linear-gradient(109.6deg, rgb(49, 47, 54) 11.2%, rgb(0, 0, 0) 98.6%), rgb(23, 23, 23) 51.2%;
}

.tsma__greybg{
	background: linear-gradient(to bottom, #dbdbdb8a 0%, #fafafa66 50%, #f6f6f6 70%, #ffffff 100%);
	background: -webkit-linear-gradient(to bottom, #dbdbdb8a 0%, #fafafa66 50%, #f6f6f6 70%, #ffffff 100%);
	background: -moz-linear-gradient(to bottom, #dbdbdb8a 0%, #fafafa66 50%, #f6f6f6 70%, #ffffff 100%);

}

.app-links img {
    width: 160px;
    margin: 0 10px;
}
/* Media Queries */
@media (max-width: 767px) {
	.app-links img{
		width: 28%;
		margin: 4px;
	}
}

.tsma_down_arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding:30px;
}

.tsma_down_arrow a {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
  margin: 20px;
  text-decoration: none;
}

.tsma_down_arrow a:hover {
  opacity: 0.5;
}

.tsma_down_arrow a span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  box-sizing: border-box;
  margin:0;
}

.tsma_down_arrow a span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 15px;
  height: 15px;
  margin: -11px 0 0 -7.5px; /* Center the arrow */
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  box-sizing: border-box;
}

.tsma_down_arrow a span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px; /* Center the animation */
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  opacity: 0;
  animation: sdb03 3s infinite;
  box-sizing: border-box;
}

@keyframes sdb03 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


/*--CUSTOMISE MENU SECTION--*/

.tsma__feature-custom-menu{
	background: url("https://cdn.thestar.com.my/Themes/img/applanding/red-bg-left.png"), url("https://cdn.thestar.com.my/Themes/img/applanding/red-bg-right.png");
	background-position:left top, right bottom, center center;
    background-repeat: no-repeat;
	background-size:28%, 22%;
	
}


/*--OFFLINE ACCESS--*/
.tsma__feature-offline-access {
  background: var(--primary-lighter-gray);
}

.access_ofl {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.access_ofl .access__desc h2 {
    margin-top: 0;
}
.access_ofl .access__desc p {
    margin-bottom:0;
}
.access__visual {
    width: 50%;
	display:flex;
	justify-content:center;
}

.access__visual video {
    width: 70%;
}

.access__desc {
    width: 50%;
    padding: 20px;
}

.tsma__feature-offline-access .access__desc h2,
.tsma__feature-offline-access .access__desc p{
	text-align:right;
}

/* Media Queries */
@media (max-width: 767px) {
    .access_ofl {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .access__visual,
    .access__desc {
        width: 100%;
        padding: 10px;
    }

	.tsma__feature-offline-access .access__desc h2, 
	.tsma__feature-offline-access .access__desc p{
        text-align: center;
    }
}
@media (min-width: 768px) and (max-width: 992px){
.tsma__feature-offline-access .access__desc h2,
.tsma__feature-offline-access .access__desc p{
	text-align:center;
	}
.access_ofl {
    flex-direction: column;
}
	.access__visual{
		width:70%;
	}

.access__desc {
    width: 100%;
}

}
/*--NEWS COLLECTION--*/



.tsma__feature-news-collection .slick-slider {
   max-width: 400px;
    width: 100%;
	margin-bottom:0;
}

.tsma__feature-news-collection .slick-dots{
    margin-top:10px;
    margin-bottom:0;
}

.tsma__feature-news-collection .flex-item{
	flex: 1 1 50%;
    box-sizing: border-box;
	margin: 0 auto;
}
.tsma__feature-news-collection .flex-item .details p{
	margin-bottom:30px;
}
.tsma__feature-news-collection .slick-slider .slick-arrow {
    display: none;
}

.tsma__feature-news-collection .slick-dots li.slick-active,
.tsma__feature-news-collection .slick-dots li:hover{
	border: 1.5px solid rgba(0, 0, 0, 0.6);
    background: #da2128;
    color: #fff;
}

.tsma__feature-news-collection .slick-dots li {
    margin: 10px;
    padding: 10px;
    width: auto;
    height: auto;
    font-size: 1.25rem;
    background-color: transparent;
    color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    margin-right: 0.5rem;
    cursor: pointer;

}

.tsma__feature-news-collection .slick-dots li a {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
	text-decoration:none;
}

.tsma__feature-news-collection .access__visual {
    max-width: 500px;
    width: 100%;
}

/* Media Queries */
@media (max-width: 767px) {
  .tsma__feature-news-collection .access_ofl {
        display: flex;
        flex-direction: column-reverse; 
        flex-wrap: wrap; 
    }
    .tsma__feature-news-collection .access__visual {
      order: -1;
	  min-height:250px;
    }

    .tsma__feature-news-collection .slick-slider {
        max-width: 100%;
        width: 200px;
        height: 50px;
    }

.tsma__feature-news-collection .slick-dots{
    margin:10px auto!important;
}

    .tsma__feature-news-collection .slick-dots li a {
        padding: 2px; 
    }
	.tsma__feature-news-collection .feature-content .details {
    margin-top: 60px;
	}
}

/*--DARK MODE--*/

.tsma__feature-dark-mode {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tsma-feature-video-wrapper {
  position: relative;
  width: 100%;
}

.tsma-feature-video-wrapper video {
  width: 100%;
  height: auto;
  border-radius: 10%;
}

.video-frame-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://cdn.thestar.com.my/Themes/img/applanding/ipad-frame.webp');
  background-size: contain;
  pointer-events: none;
  background-repeat: no-repeat;
}

.custom-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  font-size: 3rem;
  border-radius: 50%;
  padding: 10px 20px;
  cursor: pointer;
  display: none;
}


.custom-play-button.show {
  display: block;
}

  .custom-play-button a {
            text-decoration: none;
            background-image: linear-gradient(to right, #6400a4, #5e07b5, #5411c6, #411bd8, #1225eb);
            border: 2px dotted white;
            color: aliceblue;
            border-radius: 50%;
            padding: 15px;
            position: relative;
        }

     .custom-play-button a::after {
            position: absolute;
            content: '';
            bottom: -7px;
            top: -7px;
            left: -7px;
            right: -7px;
            background-color: transparent;
            border-radius: 50%;
            border: 4px solid #fff;
            margin: 0px;
            opacity: 1;
            transform-origin: center;
            animation: anim 800ms linear infinite;
        }

        .custom-play-button a::before {
            position: absolute;
            content: '';
            bottom: -7px;
            top: -7px;
            left: -7px;
            right: -7px;
            background-color: transparent;
            border-radius: 50%;
            border: 4px solid #fff;
            margin: 0px;
            opacity: 0.8;
            transform-origin: center;
            animation: anim 800ms linear 400ms infinite;
        }

        @keyframes anim {
            from {
                margin: 0px;
                opacity: 1;
            }

            to {
                margin: -15px;
                opacity: 0;
            }
        }

        span {
            color: #fff;
            font-weight: 600;
            xmargin-left: 20px;
        }
/* Media Queries */
@media (max-width: 767px) {
  .tsma-feature-video-wrapper {
    max-width: 100%;
  }
	h1.font__animate span {
	    font-size: 25px;

}
	.custom-play-button {
    font-size: 14px;
    background: #b00;
    border-radius: 6px;
}
	
	.tsma__feature-dark-mode{
		height:90vh;
	}
}

h1.font__animate span {
    font-weight: 300;
    margin-left: 0;

}

.font__animate{
 background: 50% 100%/50% 50% no-repeat radial-gradient(ellipse at bottom, #bb0000, transparent, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-animation: reveal 3000ms ease-in-out forwards 200ms, glow 2500ms linear infinite 2000ms;
          animation: reveal 3000ms ease-in-out forwards 200ms, glow 2500ms linear infinite 2000ms;
	letter-spacing: -0.5px;
}
@-webkit-keyframes reveal {
  80% {
    xletter-spacing: 8px;
  }
  100% {
    background-size: 300% 300%;
  }
}
@keyframes reveal {
  80% {
    xletter-spacing: 8px;
  }
  100% {
    background-size: 300% 300%;
  }
}
@-webkit-keyframes glow {
  40% {
    text-shadow: 0 0 8px #DA2128;
  }
}
@keyframes glow {
  40% {
    text-shadow: 0 0 8px #DA2128;
  }
} 


/*--MORE CONTENT--*/
.tsma__feature-more-content{
    background: url('https://cdn.thestar.com.my/Themes/img/applanding/right-spread.png');
    background-position: right bottom, center center;
    background-repeat: no-repeat;
    background-size: 18%;
}

.feature-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.feature-item {
    flex: 1 1 33%; /* Grow and shrink with a base of 30% */
    box-sizing: border-box;
    max-width: calc(33.333% - 20px);
}

.feature-item img {
    width: 100%;
    height: auto;
}

.feature-content .details {
    padding: 0px 50px;
}

.feature-content .details h3 {
    margin: 10px 0;
}

.feature-content .details p {
    margin: 10px 0;
	text-align:center;
}

@media (max-width: 767px) {
    .feature-item {
        flex: 1 1 100%; /* Grow and shrink with a base of 100% */
        max-width: 100%;
    }
	.feature-content .details {
    margin-top: -10px;
	padding:0;
}
}

@media (min-width: 768px) and (max-width: 992px){
	.feature-content .details {
	padding:0;
}
}

@media (min-width:768px) {
	.download-now p {
    xwidth: 70%;
    text-align: center;
    margin: 20px auto;
}
}


/*--LAYOUT PERSONALISED--*/
.tsma__feature-layout-personalised {
    background: url('https://cdn.thestar.com.my/Themes/img/applanding/left-spread.png'), linear-gradient(to bottom, #dbdbdb8a 0%, #fafafa66 50%, #f6f6f6 70%, #ffffff 100%);
    background-position: top left, center center;
    background-repeat: no-repeat;
    background-size: 18%, cover;
    background: -webkit-linear-gradient(to bottom, #dbdbdb8a 0%, #fafafa66 50%, #f6f6f6 70%, #ffffff 100%);
    background: -moz-linear-gradient(to bottom, #dbdbdb8a 0%, #fafafa66 50%, #f6f6f6 70%, #ffffff 100%);
}

.tsma__feature-layout-personalised #customisation img {
    width: 80%;
    margin: 20px auto;
}


/*--FOOTNOTE--*/
.tsma__footnote {
    padding-bottom: 18%;
    background-image: url('https://cdn.thestar.com.my/Themes/img/applanding/red-spread.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}
.tsma__footnote {
    text-align: left;
}

.tsma__footnote ol {
   list-style-type: decimal;
   padding-left: 15px;
	margin-bottom:20px;
}

.tsma__footnote ol li {
    line-height:1.6rem;
	margin-left:15px;
	margin-bottom:5px;
}

@media (max-width: 993px) {
   .tsma__footnote {
    background-position: bottom;
    background-size: contain;
}
}

/*--FLY IN ANIMATION--*/
.fs {
	animation-name: fadein;
  animation-duration: 4s;
}

.ff {
	animation-name: fadein;
  animation-duration: 2s;
}

.fll {
	animation-name: flyin-left;
	animation-duration: 1s;
	transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.flr {
	animation-name: flyin-right;
	animation-duration: 2s;
	transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.zi {
	animation-name: zoom-in;
	animation-duration: 1s;
}

.si {
	animation-name: spin-in;
	animation-duration: 2s;
}

.fz {
	animation-name: fade-zoom;
	animation-duration: 2s;
	transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.fzs {
	animation-name: fade-zoom-spin;
	animation-duration: 2s;
}

@keyframes fadein {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes flyin-left { 
	0% {
		transform: translate(-3000px, 0px);
	}
	100% {
		transform: translate(0px, 0px);
	}
}

@keyframes flyin-right { 
	0% {
		transform: translate(3000px, 0px);
	}
	100% {
		transform: translate(0px, 0px);
	}
}

@keyframes zoom-in {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes spin-in {
	0% {
		transform: scale(0) rotate(360deg);
	}
	100% {
		transform: scale(1) rotate(-360deg);
	}
}

@keyframes fade-zoom {
	0% {
		opacity: 0;
		transform: scale(0);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes fade-zoom-spin {
	0% {
		opacity: 0;
		transform: scale(0) rotate(360deg);
	}
	100% {
		opacity: 1;
		transform: scale(1) rotate(-360deg);
	}
}

.fadein-fast, .flyin-left, .flyin-right, .zoom-in, .spin-in, .fade-zoom, .fade-zoom-spin {
    transition: all 0.1s ease-out;
}


/*--slider - 5 features--*/
.slider {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
}

.slider-left-group {
  display: flex;
  flex-direction: column;
  width: 45%;
  height: 100%;
}

.slider-contents {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  min-height: 160px;
}

.slider-contents-list {
  display: flex;
  list-style-type: none;
  transition: transform 1s;
}

.slider-item {
  flex-direction: column;
  min-width: 100%;
  text-align: left;
  display:none;
  opacity:0;
  transition: opacity 0.5s ease-in-out;
}

.slider-item.active {
    display: flex;
    opacity: 1;
	background: none;
}

.slider-nav {
   margin-top: 2rem;
    display: flex;
    flex-direction: row;
    column-gap: 20px;
}

.slider-nav > button {
  width: 3rem;
  height: 3rem;
  font-size: 1.25rem;
  background-color: transparent;
  color: rgba(0,0,0,0.6);
  border: 1px solid rgba(0,0,0,0.6);
  border-radius: 50%;
  cursor: pointer;
}

.slider-nav > button:hover,
.slider-nav > button:active{ 
  border: 1.5px solid  rgba(0,0,0,0.6);
	background:#da2128;
	color:#fff;
}

.slider-images {
  width: 50%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.slider-images-list {
  position: relative;
  list-style-type: none;
  height: 100%;
  display: flex;  
  transition: transform 1s;
}

.slider-image {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slider-image.active {
    opacity: 1;
	background:none;
}

.slider-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  .slider {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }

  .slider-left-group,
  .slider-images {
    width: 100%;
  }

  .slider-left-group {
    order: 2;
    margin-top: 0;
  }

  .slider-images {
    order: 1;
  }

  .slider-contents {
    margin-bottom: 1rem;
	  height:200px;
  }
	
	.slider-nav{
		margin-top:0;
		margin-bottom:20px;
		text-align:center;
        justify-content: center;
        align-items: center;
	}
	.slider-nav > button {
    margin: 0 10px;
}
}

@media (min-width:768px) and (max-width:992px){
	
  .slider {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }

  .slider-images {
    width: 80%;
  }

  .slider-left-group {
    order: 2;
    margin-top: 0;
	  width:100%;
  }

  .slider-images {
    order: 1;
  }
	
	.slider-nav{
		margin-top:0;
		margin-bottom:20px;
		text-align:center;
	}
	.slider-nav > button {
    margin: 0 10px;
}
		.slider-contents {
    height: auto;
        width: 85%;
        margin: 0 auto;
			
	}
	.slider-item {
    text-align: center;
}
}


/*--seemless background--*/

.seemless .tsma_down_arrow{
	position:absolute;
	bottom:10px;
}
.seemless{
  min-height: 100vh;
  display: grid;
  grid:"main" 100vh/auto;
  place-items: center;
}

.seemless h1 {
    grid-area: main;
    font-size: 8rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #fff;
    text-align: center;
	
	
}

.seemless svg {
  grid-area: main;
  height: 100%;
  width: 100%;
}

/* Button styling */

.material-icons {
    font-size: 24px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 24px;
   height: 24px;
}


#backToTopBtn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #bb0000;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    transition: opacity 0.5s ease-in-out;
}

#backToTopBtn:hover {
    background-color: #da2128; 
}

@media (min-width: 768px) and (max-width: 992px) {
    .seemless h1 { 
       font-size: 4.5rem;
       padding: 30px;
    }


}

@media (max-width: 767px) {
    .brand img {
    max-width: 120px;
        margin-bottom:20px;
}
    .tsma__header h1{
        width:100%;
    }
    .seemless h1 { 
        font-size:30px;
    }
    
    #backToTopBtn {
        bottom:40px;
    }
    
}


