/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Oct 31 2022 | 14:11:03 */
.banner-bottom-row{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 50px;
    position: absolute;
    bottom: 20px;
    left: 0;
}
	.banner-bottom-row p {
		margin: 0;
		font-size:0.7rem;
		font-weight: 500;
	}
	#home-top .full-height-inner {
		position: relative;
		height: 100%;
		display: flex;
		align-items: center;
		width:100%;
	}
		#home-top .hide-mob {
			width: 96%;
		}
		#home-top .show-mob {
			width: 80%;
		}
		@media screen and (max-width:600px){
			#home-top .show-mob {
				width: 100%;
			}
		}
			#home-top .full-height svg{
				width: 100%;
			}
		.banner-icons svg {
			fill: white;
		}
		.banner-icons svg:hover {
			fill: var(--coral-color);
		}
		.banner-bottom-row one-third {
			width: 33.33%;
		}
		#home-chevron-down {
			display: flex;
			justify-content: center;
		}
		.banner-icons {
			display: flex;
			gap: 5%;
			justify-content: flex-end;
		}
		.scroll-down {
		  position: absolute;
		  top: 0;
		  right: 0;
		  bottom: 0;
		  left: 0;
		  margin: auto;
		  width :34px;
		  height: 55px;
		}
		.mouse-icon {
		  width: 3px;
		  padding: 0px 7px;
		  height: 30px;
		  border: 1px solid #fff;
		  border-radius: 25px;
		  opacity: 1;
		  box-sizing: content-box;
		}
		.scroller {
		  width: 3px;
		  height: 10px;
		  border-radius: 25%;
		  background-color: #fff;
		  animation-name: scroll;
		  animation-duration: 2.2s;
		  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
		  animation-iteration-count: infinite;
		}
		@keyframes scroll {
		  0% { opacity: 0; }
		  10% { transform: translateY(0); opacity: 1; }
		  100% { transform: translateY(10px); opacity: 0;}
		}

@media screen and (max-width:700px){
	.banner-bottom-row{
		padding-right: 20px;
		padding-left: 20px;
	}
}
