/* Reset some default styles for consistency */
html, body {
	background-color: #1a2426;
    min-height: 100%;
}
body, ul {
    margin: 0;
    padding: 0;
	font-family: 'Kanit', sans-serif;
	font-weight: 200;
	font-size: 16px;
	color: #ffffff;
}	

.textCentered {
	text-align: center;
}

.whiteText {
	color: white;
}

.beigeText {
	color: #F6DEB0;
}

.orangeText {
	color: #E68A37;
}

.burntText {
	color: #B75129;
}

.redText {
	color: #A42921;
}

.brownText {
	color: #4C1C12;
}

.blackText {
	color: #1A2426;
}

.whitebg{
	background-color: white;
}

.margin-bottom-zero{
	margin-bottom: 0px;
}

/* Topbar styles */
.topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
    background-color: #131E20;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
	z-index: 999;
}

.logo img {
    width: 100px; /* Adjust the size of the logo */
	margin-right: 20px;
	cursor: pointer;
}

.anniversary{
	color: #F6DEB0;
	vertical-align:middle;
}

.anniversary .icon{
	vertical-align: middle;
	margin: 0 20px;
}

.menu ul {
    list-style: none;
    display: flex;
	flex-wrap: wrap;
}

.menu li {

}

/* Rounded square buttons for main navigation */
.menu a {
    display: inline-block;
    padding: 6px 12px;
    color: #e68936;
    text-decoration: none;
	font-weight: 200;
	font-size: 16px;
    transition: color 0.3s ease-in-out;
}

/* Hover effect */
.menu a:hover {
	color: #F6DEB0;
	cursor: pointer;
}

/* Active button style */
.menu a.active, .menu .a.active:hover {
    color: #807976;
	cursor: default;
}

.button-small, a.button-small, .button-large, a.button-large{
	padding: 6px 12px;
	font-size: 14px;
	font-weight: 200;
	border: 1px solid #e68936;
	color: #ffffff;
	background-color: #1A2426;
	border-radius: 4px;
	text-decoration: none;
	transition: background-color 0.3s ease-in-out;
}

.button-large, a.button-large{
	padding: 12px 24px;
	font-size: 20px;
	font-weight: 200;
}

.button-small:hover, .button-large:hover{
	background-color: #e68936;
	cursor: pointer;
}
.button-small.active, a.button-small.active{
	background-color: #B75129;
	cursor: default;
}

/* Mobile menu styles */
.mobile-menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
	margin-right: 20px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #F6DEB0;
    margin: 3px 0;
}

/* Content area */
.content {
	background-color: #1A2426;
	margin-top:68px;
}

/* Carousel styles */
.carousel-container {
    position: relative;
    height: 400px;
    overflow: hidden;
	background-image: url("images/backgrounds/bg-log.png");
	background-size: cover;
	background-repeat: no-repeat;
    background-position: center center;
}

.carousel {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.slide {
    position: relative;
    flex: 0 0 100%;
    height: 400px;
    flex-direction: column;
    justify-content: space-between;
    background-repeat: no-repeat;
    background-position: center center;
	opacity: 0;
	display: none;
    animation: slideTransition 0.3s ease-in-out forwards;
}

.slide-image{
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
    flex: 0 0 100%;
    height: 400px;
	flex-direction: column;
    justify-content: space-between;
    background-repeat: no-repeat;
    background-position: center center;
	background-size: auto;
	opacity: 0;
	display: flex;
    animation: imageTransition 0.3s ease-in-out forwards;
}

.graphicDesign {
	background-image: url("images/slides/Slide-1.png");
}
.webDesign {
	background-image: url("images/slides/Slide-2.png");
}
.appDesign {
	background-image: url("images/slides/Slide-3.png");
}
.uxDesign {
	background-image: url("images/slides/Slide-4.png");
}
.xrDesign {
	background-image: url("images/slides/Slide-5.png");
}
.threeDDesign {
	background-image: url("images/slides/Slide-6.png");
}
.videoDesign {
	background-image: url("images/slides/Slide-7.png");
}

/* Carousel styles start */
.slide-content {
    color: white;
	height: 100%;
}

.dynamic-title {
    font-size: 28px;
	line-height: 32px;
    margin-bottom: 0px;
	position: absolute;
	top: 0px;
	right: calc(50% - 10px);
	text-align: right;
	padding-right:10px;
	animation: titleTransition 0.3s ease-in-out forwards;
}

.static-title {
    font-size: 28px;
	line-height: 32px;
    opacity: 0.6;
    margin-bottom: 0px;
	position: absolute;
	top: 0px;
	left: calc(50% + 10px);
	padding-left: 10px;
}

.short-description {
    font-size: 16px;
    margin-bottom: 20px;
	position: absolute;
	bottom: 0px;
	max-width: 515px;
	left: calc(50% - 258px);
}

/* Holiday Carousel styles start */
.holiday1 {
	background-image: url("images/slides/HolidaySlide-1.png");
}
.holiday2 {
	background-image: url("images/slides/HolidaySlide-2.png");
}
.holiday3 {
	background-image: url("images/slides/HolidaySlide-3.png");
}
.holiday4 {
	background-image: url("images/slides/HolidaySlide-4.png");
}
.holiday5 {
	background-image: url("images/slides/HolidaySlide-5.png");
}
.holiday6 {
	background-image: url("images/slides/HolidaySlide-6.png");
}
.holiday7 {
	background-image: url("images/slides/HolidaySlide-7.png");
}
.holiday8 {
	background-image: url("images/slides/HolidaySlide-8.png");
}
.holiday9 {
	background-image: url("images/slides/HolidaySlide-9.png");
}
.holiday10 {
	background-image: url("images/slides/HolidaySlide-10.png");
}

.holiday-slide-image{
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: 400px;
    background-repeat: no-repeat;
    background-position: center center;
	background-size: auto;
	opacity: 0;
	display: flex;
    animation: imageTransition 0.3s ease-in-out forwards;
}

@keyframes slideTransition {
    0% {
        display: flex; 
        opacity: 0; 
    }
    100% {
        
        opacity: 1; 
    }
}

@keyframes titleTransition {
    0% {
		opacity: 0;
		top: -50px;
	}

	100% {
		opacity: 1;
		top: 0px;
	}
}

@keyframes imageTransition {
    0% {
		opacity: 0;
		bottom: -50px;
	}

	100% {
		opacity: 1;
		bottom: 0px;
	}
}

/* Bullets styles */
.bullets {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.bullet {
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255,0.5);
    cursor: pointer;
}

.bullet.active {
    background-color: #E68936;
}

/* Navigation arrows */
.carousel-navigation {
    position: absolute;
    top: 0;
	bottom: 0;
	left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 98%;
}

.prev,
.next {
    font-size: 48px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
	background-color: rgba(26,36,38,0.8);
	color: #ffffff;
	border-radius: 30px;
    padding: 8px 10px 4px 10px;
	height: 40px;
    line-height: 35px;
	z-index: 999;
}

/* Interactive area styles */
.interactive-area {
    margin-top: 48px;
	padding-bottom: 50px;
	background-image: url("images/backgrounds/bg-fall-trees.png");
	background-size: cover;
	background-repeat: no-repeat;
    background-position: center center;
}

.icon-button-group, .cta-button-group {
	padding: 0px 0px;
	max-width: 720px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 auto;
}

.cta-button-group{
	padding: 20px 20px;
	gap: 24px;
}

.icon-button {
    color: #ffffff;
	text-align: center;
	font-size: 14px;
    border: 1px solid #E68936;
	border-radius: 14px;
    padding: 25px 0px 0px;
	background-color: #1A2426;
    cursor: pointer;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	text-decoration: none;
	width: calc(23% - 2px);
	margin: 6px;
}

.icon{
	width: 24px;
	height: 24px;
}

.icon-button:hover{
	background-color: #B75129;
	cursor: pointer;
}

.option {
    display: none;
    margin-top: 20px;
}

.option.active {
    display: flex;
}

.optionImg{
	width: 25%;
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.optionText{
	width: 75%;
	padding: 20px;
	color: #F6DEB0;
}

.cta-area{
	max-width: 720px;
    margin: 0 auto;
	padding-bottom: 50px;
    text-align: center;
	font-size: 14px;
    color: #807976;
}
.cta-area .button-large{
	margin-top: 16px;
}

/* Why area styles */
.why-area {
	background-image: url("images/backgrounds/bg-tools.jpg");
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
	padding-bottom: 50px;
}

.why-overview {
	color: white;
	padding: 20px 50px;
	max-width: 720px;
	margin: 0px auto;
}

.icon-list{
	padding: 0px 0px;
	max-width: 720px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 auto;
}

.icon-list-item{
	padding: 20px 0 0 20px;
    width: calc(40% - 2px);
}
.icon-list-item .icon{
	vertical-align: middle;
}
.icon-label{
	color: #E68A37;
	margin-left: 20px;
	display: inline-block;
	vertical-align: middle;
}

/* Footer styles */
.footer {
    background-color: #131E20;
    color: #807976;
    text-align: center;
    padding: 10px 0;
	font-size: 14px;
}

/****************** Services Page Styles ******************************/

/* Sidebar navigation */
.sidebar {
    position: fixed;
    top: 68px;
    right: 0;
    width: 200px;
    background-color: rgba(26,36,38,0.8);
    overflow-y: auto;
    display: block;
	padding: 0px 10px;
}

.nav {
    list-style: none;
    padding: 4px 0;
    margin: 8px 0 0 0;
}

.nav li {
    margin-bottom: 10px;
}

.nav a {
    text-decoration: none;
    color: white;
}


.outerContent{
	background-color: #1a2426;
	background-image: url("images/backgrounds/bg-foggy-valley.jpg");
	background-size: 100%;
	background-repeat: no-repeat;
    background-position: center 48px;
	scroll-behavior: smooth;
}

.outerContent h1{
	margin: 68px 0 0 0;
	text-align: center;
	padding-top:48px;
}

.servicesContent{
	color: white;
	font-size: 14px;
	scroll-behavior: smooth;
	background-image: url("images/backgrounds/bg-foggy-trees-bottom.jpg");
	background-size: 100%;
	background-repeat: no-repeat;
    background-position: center bottom;
}

.servicesContent section{
	max-width: 720px;
	margin: 48px auto 0px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: normal;
	justify-content: center;
	margin: 0 auto;
}
.content-region{
	width: 66%;
}

.content-region ul{
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 0 20px;
	padding: 0;
	width: 100%;
}

.content-region li{
	width: calc(50% - 40px);
	margin-bottom: 10px;
	padding-right: 20px;
}

.photo-region{
	width: 33%;
	text-align: center;
	padding-top: 20px;
}

.photo-region a{
	font-size: 14px;
	text-decoration: underline;
	color: #E68A37;
	line-height: 14px;
}
.photo-region a:hover{
	color: #F6DEB0;
	cursor: pointer;
}
.photo-region img{
	margin: 6px auto 0;
	width: calc(100% - 20px);
}

.servicesContent h2{
	color: #E68A37;
	text-align: left;
	border-bottom: 1px solid #E68A37;
	font-size: 20px;
}
/************************ Business Card page styles **************************/
.outerBCContent h1{
	margin: 4px 0 0 0;
	text-align: center;
}
.outerBCContent h4{
	margin: 4px 0 0 0;
	text-align: center;
	color: #807976;
	font-family: 'Kanit', sans-serif;
}
.profile{
	margin: 0 auto 0 auto;
	width: 125px;
	height: 125px;
	flex-shrink: 0;
	background: url("images/businessCard/Profile.png") 50% / cover no-repeat;
}
.bcContent{
	margin-top: 120px;
	color: white;
	font-size: 14px;
	scroll-behavior: smooth;
	background-image: url("images/backgrounds/bg-wood-slats-vertical.png");
	background-size: fill;
	background-repeat: no-repeat;
    background-position: center top;
}
.qrcode{
	display: flex;
	width: 250px;
	height: 250px;
	padding: 14px 17px;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	border-radius: 20px;
	background: #FFF;
	box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.80);
	margin: 52px auto 24px auto;
}
.qrcode .qrcodeImage{
	height: 222px;
	flex-shrink: 0;
}
.bcContent .button-large{
	display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
	max-width: 275px;
	margin: 52px auto 24px auto;
}
.buttonIcon{
	width: 40px;
	height: 40px;
	margin-right: 24px;
}
.contactInfoButtonList{
	display: flex;
	width: 323px;
	padding: 6px 0px;
	flex-direction: column;
	align-items: center;
	border-radius: 10px;
	background: var(--Dark-Highlight, #273436);
	margin: 52px auto 32px auto;
}
.contactInfoButton{
	display: flex;
	padding: 8px 14px;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	align-self: stretch;
	text-decoration: none;
}
.contactInfoButton:hover{
	background-color: #131E20;
}
.contactInfoButton .label{
	color: #949292;
	font-family: 'Kanit', sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.654px;
}
.contactInfoButton .value{
	color: #FFF;
	font-family: 'Kanit', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.contactInfoDivider{
	width: 323px;
	height: 2px;
	background: #1A2426;
}
/************************ About us page styles **************************/
.outerAboutContent h1{
	margin: 68px 0 0 0;
	text-align: center;
	padding-top:48px;
}
.aboutContent{
	color: white;
	font-size: 14px;
	scroll-behavior: smooth;
	background-image: url("images/backgrounds/bg-wood-slats-vertical.png");
	background-size: 100%;
	background-repeat: no-repeat;
    background-position: center top;
}

.aboutContent .textBlock{
	max-width: 720px;
	margin: 48px auto;
}

.timeline {
  max-width: 720px;
  margin: auto;
  display: flex;
  flex-direction: column;
  position: relative; /* To position the vertical line */
}

.timeline .event {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
}



.timeline .date {
  order: 1; /* First column */
  text-align: right;
  padding: 0px 20px 0px 0px;
  width: calc(50% - 30px);
}

.timeline .event-text {
  order: 3; /* Third column */
  padding: 0px 0px 0px 20px;
  width: calc(50% - 30px);
}

.timeline .icon {
  order: 2; /* Center column */
  width: 50px;
  height: 48px;
  background-color: #1a2426;;
  border-radius: 50%;
  border: 1px solid #E68A37;
  display: flex;
  align-items: center;
  justify-content: center;
   z-index: 2;
}

.timeline .icon img {
  max-width: 100%;
  max-height: 100%;
   z-index: 3;
}

.event:nth-child(even) {
  flex-direction: row-reverse;
}

.event:nth-child(even) .date {
  text-align: left;
  padding: 0px 0px 0px 20px;
}

.event:nth-child(even) .event-text {
  text-align: right;
  padding: 0px 20px 0px 0px;
}

/* Styling for the vertical line */
.timeline:before {
  content: '';
  position: absolute;
  left: 50%; /* Center it horizontally */
  top: 20px;
  bottom: 20px;
  width: 1px;
  background-color: #E68A37;
  transform: translateX(-50%);
  z-index: 1; /* Behind other elements */
}

/************************ Contact us page styles **************************/

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.contactContent{
	color: white;
	font-size: 14px;
	background-color: #1a2426;
	background-image: url("images/backgrounds/bg-fall-leaves.png");
	background-size: 100%;
	background-repeat: no-repeat;
    background-position: center 116px;
}

.contactContent h1{
	margin: 68px 0 0 0;
	text-align: center;
	padding-top:48px;
}
.contact-container {
  max-width: 720px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  min-height: 70vh;
}

.column {
  width: calc(50% - 10px);
  margin: 5px;
  padding: 10px;
  box-sizing: border-box;
}

.column a{
	color: #E68936;
	text-decoration: none;
}

.column a:hover, .column a:visited{
	color: #ffffff;
}

form {
  display: grid;
  gap: 10px;
}

label {
  font-weight: bold;
}

input, textarea {
  width: calc(100% - 17px);
  background-color: #1A2426;
  padding: 8px;
  border: 1px solid #E68A37;
  border-radius: 4px;
  color: white;
  font-family: Arial;
}

.js-Response{
	border-radius: 12px;
	padding: 18px 36px 18px 48px;
	display: none;
	margin-top: 12px;
	color: white;
}

.js-Response.alert-success{
	background-color: #198754;
	background-image: url('images/icons/tick-circle.png');
	background-position: 18px center;
	background-repeat: no-repeat;
}

.js-Response.alert-warning{
	background-color: #A42921;
	background-image: url('images/icons/info-circle.png');
	background-position: 18px center;
	background-repeat: no-repeat;
}

.wrapper .footer{
	position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.map{
	background-image: url('images/Map.png');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 300px;
}

/************************ Portfolio page styles **************************/
.portfolioContent{
	background-color: #1a2426;
	background-image: url("images/backgrounds/bg-wood-slats-stage.png");
	background-size: 100%;
	background-repeat: no-repeat;
    background-position: center 116px;
	background-size: cover;
}
.portfolioContent h1{
	margin: 68px 0 0 0;
	text-align: center;
	padding-top:48px;
}
.portfolio {
    max-width: 720px;
    margin: 0 auto;
    padding: 20px 20px 175px 20px;
}

.filter-nav li{
	display:inline-block;
}
	

.filter {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.filter-button {
    color: #e68a37;
    border: none;
    padding: 7px 14px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.filter-button.active {
    color: #807976;
}

.thumbnails {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.thumbnail {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.thumbnail:hover{
	cursor: pointer;
}

.thumbnail:hover img{
	opacity:0.5;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.project-overview{
	background-color: #1a2426;
	border: 1px solid #e68a37;
	border-radius: 24px;
	padding: 24px;
	position: absolute;
	top: 24px;
	width: 720px;
	left: calc(50% - 360px);
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	text-align: left;
}

.project-overview h3{
	color: #e68a37;
	margin-top: 0px;
}

.project-overview p{
	margin-bottom: 0px;
}
.overlay .carousel-container{
	height: 550px;
	overflow: hidden;
	background-image: none;
	width: 930px;
	margin-top: 50px;
}

.overlay .slide{
	height: 525px;
	width: 930px;
	overflow: hidden;
}

.slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.close-button {
    position: absolute;
    top: 60px;
    right: 40px;
    background: none;
    border: none;
    cursor: pointer;
	z-index: 10;
}

/* Mobile tab bar */


@media screen and (max-width: 1040px){
	.anniversary{
		display: none;
	}
}
@media screen and (max-width: 1150px){
	.sidebar {
		position: fixed;
		display: block;
		overflow-x: auto;
		white-space: nowrap;
		width: 100%;
		height: auto;
		padding: 0;
		top:68px;
	}

	.nav li {
		display: inline-block;
		padding: 10px 20px;
		text-decoration: none;
		color: #white;
		background-color: #1A2426;
		margin-right: 10px;
		border-radius: 5px;
	}
	.outerContent h1 {
		margin: 112px 0 0 0;
	}
}

@media screen and (max-width: 950px){
	.project-overview{
		left: 20px;
		right: 20px;
		width: auto;
	}
	
	.overlay .carousel-container{
		width: 90vw;
		height: 50vh;
	}
	
	.overlay .slide{
		height: 45vh;
		width: 100%;
	}
}

/* Media query for responsive design */
@media screen and (max-width: 768px) {
    .mobile-menu-icon {
        display: flex;
    }
    
    .topbar {
        padding: 10px;
    }
    
    .logo img {
        width: 150px; /* Increase the logo size */
    }
    
    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100%;
        width: 70%; /* Adjust the width of the slideout menu */
        background-color: #333;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 50px 20px 20px;
		z-index: 999;
        transition: left 0.3s ease-in-out;
    }
    
    .menu.show {
        left: 0;
    }
    
    .menu ul {
        flex-direction: column;
		width: 95%;
    }
    
    .menu li {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .menu a {
        width: 100%;
        padding: 10px;
        text-align: center;
    }
    
    .menu a.active {
        border-color: transparent;
    }
	
	.button-group{
		display: block;
	}
	.toggle-button {
		width: 90%;
		margin-left: 5%;
		margin-bottom: 10px;
	}
	
	.outerContent{
		background-color: #1a2426;
		background-image: url("images/backgrounds/bg-foggy-valley.jpg");
		background-size: 100%;
		background-repeat: no-repeat;
		background-position: center 75px;
	}
	
	.outerContent h1{
		margin-top: 180px;
	}
	
	.servicesContent{
		scroll-behavior: smooth;
		margin-top: 60px;
		
	}
	
	.sidebar {
		position: fixed;
		display: block;
		overflow-x: auto;
		white-space: nowrap;
		width: 100%;
		height: auto;
		padding: 0;
		top:90px;
	}

	.nav li {
		display: inline-block;
		padding: 10px 20px;
		text-decoration: none;
		color: #white;
		background-color: #1A2426;
		margin-right: 10px;
		border-radius: 5px;
	}
	
	.why-area{
		font-size: 14px;
	}
	
	.icon-button{
		flex-direction: row;
		width: calc(100% - 40px);
		padding: 8px 32px;
		justify-content: left;
	}
	
	.icon-button .icon{
		margin-right: 20px;
	}
	
	.icon-list-item{
		width: 60%;
	}
	
	.contact-container {
		flex-direction: column;
	}

	.column {
		width: 100%;
		margin: 5px 0;
	}
	
	.photo-region {
		display: none;
	}
	
	.content-region {
		width: 90%;
	}
	
	.aboutContent .textBlock {
		margin: 48px 20px;
	}
	
	.event:nth-child(even) {
		flex-direction: row;
	}

	.event:nth-child(even) .date {
	  text-align: right;
	  padding: 0px 20px 0px 0px;
	}

	.event:nth-child(even) .event-text {
	  text-align: left;
	  padding: 0px 0px 0px 20px;
	}
	
	.timeline .date {
		width: calc(20% - 30px);
	}
	
	.timeline .event-text {
		width: calc(80% - 30px);
	}
	
	.timeline:before {
		left: 21.5%;
	}
	
	.thumbnails{
		grid-template-columns: repeat(4, 1fr);
	}

	.holiday-slide-image{
		left: 60px;
		right: 60px;
		background-size: contain;
	}
}

@media screen and (max-width: 550px){
	.slide-image{
		background-size: contain;
	}
	.short-description{
		width: auto;
		left: 20px;
		right: 20px;
	}
	.static-title, .dynamic-title{
		font-size: 5vw;
		top: 5%;
	}
	.icon-list-item {
		padding: 20px 0 0 0px;
	}
	.why-overview {
		padding: 20px;
	}
	.icon-list-item {
		width: 90%;
	}
	.cta-button-group {
		padding: 20px 0px;
	}
	
	.event-text{
		font-size: 3vw;
	}
	
	.timeline:before {
		left: 22.5%;
	}
	
	.thumbnails{
		grid-template-columns: repeat(3, 1fr);
	}
	
	@keyframes titleTransition {
		0% {
			opacity: 0;
			top: -50px;
		}

		100% {
			opacity: 1;
			top: 5%;
		}
	}
}

@media screen and (max-width: 385px){
	.thumbnails{
		grid-template-columns: repeat(2, 1fr);
	}
}