@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@200..900&family=Unlock&display=swap');

@font-face { 
    font-family: "Montserrat-Bold"; 
	src: url('../fonts/Montserrat-Bold.ttf'); 
} 


:root
{
    --text-primary: #FFFF00;
    --text-regular-inverted: #FFFFFF;
    --text-regular: #000000;
    --icon-outline: #277199;
    --icon-background: #277199;
    --bottom-panel: linear-gradient(to bottom, #52B9FF, #338DFF);
    --bottom-panel-height: 65px;
    --modal-background: linear-gradient(to bottom, #06061D, #0B1D58, #06061D);
    --background-theme: #070628;
}

body
{
    font-family: "Montserrat-Bold", "Noto Serif SC", serif;
}

.page
{
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	-o-background-size: 100% 100%;
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
}

.header
{
	background-attachment: fixed;
	background-position: bottom center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.navHeader
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navItem
{
    display: flex;
    justify-content: center;
}

.navIcon
{
    color: var(--text-regular-inverted);
    font-size: 1.5rem;
    border-radius: 50%;
    border: 0.1rem solid var(--icon-outline);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    /* padding: 1rem; */
    aspect-ratio: 1 / 1;
    cursor: pointer;
    background: var(--background-theme);
}

.navIcon:hover
{
    background: var(--icon-background);
}

.navLogo
{
    width: 40%;
    cursor: pointer;
}

.navLogo > img
{
    width: 100%;
}

.langDropdown .dropdown-menu
{
    background: transparent;
    gap: 0.5rem 0;
    flex-direction: column;
    min-width: 4rem;
    align-items: center;
    border: 0;
}

.langDropdown .dropdown-menu.show
{
    display: flex;
}

.langDropdown .dropdown-item
{
    color: var(--text-regular-inverted);
    font-size: 1rem;
    border-radius: 50%;
    border: 0.1rem solid var(--icon-outline);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    padding: 0; 
    aspect-ratio: 1 / 1;
    cursor: pointer;
    background: #030221;
}

.contactList 
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.contactItem {
    display: flex;
    color: #ffffff;
    font-size: 1.5rem;
    border-radius: 10rem;
    padding: 0.5rem;
    align-items: center;
    cursor: pointer;
    /*width: fit-content;*/
    /*margin: 0 auto;*/
    background: linear-gradient(to bottom, #F69891, #CE5B85, #964571);
}

.contactItem:hover
{
    filter: brightness(1.1);
}

.contactItem .contactIcon {
    aspect-ratio: 1 / 1;
    width: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 0 0.5rem #343a40;
    font-size: 1.5rem;
    background: radial-gradient(#BF4A45, #F23C3E);
    position: relative;
    box-shadow: 0 0 .5rem 0.1rem #FFFFFF99;
}

.contactItem:hover .contactIcon
{
    filter: brightness(1.2);
}

.contactIcon::after 
{
    content: "";
    width: 75%;
    position: absolute;
    background: #ffffff33;
    height: 50%;
    top: 0;
    border-radius: 50%;
    z-index: 1;
}

/* WhatsApp */
.contactItem[data-contact-type='whatsapp'] 
{
    background: linear-gradient(to bottom, #4EED88, #32C971, #1EA85B);
}

.contactItem[data-contact-type='whatsapp'] .contactIcon 
{
    background: radial-gradient(#0DAB66, #128C7E, #075E54);
}

/* Telegram */
.contactItem[data-contact-type='telegram'] 
{
    background: linear-gradient(to bottom, #A2D9F7, #66C0F4, #358FDD);
}

.contactItem[data-contact-type='telegram'] .contactIcon 
{
    background: radial-gradient(#0893D6, #127EB3, #046899);
}

/* WeChat */
.contactItem[data-contact-type='wechat'] 
{
    background: linear-gradient(to bottom, #C0E78C, #A5D86A, #77BB3D);
}

.contactItem[data-contact-type='wechat'] .contactIcon 
{
    background: radial-gradient(#87C051, #63A428, #4E9210);
}

/* LiveChat */
.contactItem[data-contact-type='livechat'] 
{
    background: linear-gradient(to bottom, #FF8B3D, #F25106, #C13F05);
}

.contactItem[data-contact-type='livechat'] .contactIcon 
{
    background: radial-gradient(#FF6922, #F25106, #BF3805);
}

/* Instagram */
.contactItem[data-contact-type='instagram'] 
{
    background: linear-gradient(to bottom, #FEDA75, #FA7E1E, #D62976, #962FBF, #4F5BD5);
}

.contactItem[data-contact-type='instagram'] .contactIcon 
{
    background: radial-gradient(#DD2A7B, #8134AF, #515BD4);
}

/* Facebook */
.contactItem[data-contact-type='facebook'] 
{
    background: linear-gradient(to bottom, #4C6EA9, #3B5998, #2A448A);
}

.contactItem[data-contact-type='facebook'] .contactIcon 
{
    background: radial-gradient(#4267B2, #3B5998, #2C3877);
}

/* YouTube */
.contactItem[data-contact-type='youtube'] 
{
    background: linear-gradient(to bottom, #FF7A7A, #FF4343, #D90000);
}

.contactItem[data-contact-type='youtube'] .contactIcon 
{
    background: radial-gradient(#FF0000, #CC0000, #990000);
}

/* Line */
.contactItem[data-contact-type='line'] 
{
    background: linear-gradient(to bottom, #8BF77A, #54E346, #00D84A);
}

.contactItem[data-contact-type='line'] .contactIcon 
{
    background: radial-gradient(#00C300, #00A300, #008A00);
}

/* Twitter */
.contactItem[data-contact-type='twitter'] 
{
    background: linear-gradient(to bottom, #81D4FA, #29B6F6, #039BE5);
}

.contactItem[data-contact-type='twitter'] .contactIcon 
{
    background: radial-gradient(#1DA1F2, #1A91DA, #0A7DC2);
}

/* Twitter-X */
.contactItem[data-contact-type='twitter-x'] 
{
    background: linear-gradient(to bottom, #3A3A3A, #2C2C2C, #1A1A1A); 
}

.contactItem[data-contact-type='twitter-x'] .contactIcon 
{
    background: radial-gradient(#14171A, #1C1C1C, #000000);
}



/* Phone */
.contactItem[data-contact-type='phone']
{
    background: linear-gradient(to bottom, #F69891, #CE5B85, #964571);
}

.contactItem[data-contact-type='phone'] .contactIcon
{
    background: radial-gradient(#BF4A45, #F23C3E);
}

/* Email */
.contactItem[data-contact-type='email']
{
    background: linear-gradient(to bottom, #A2DBF6, #75C5EB, #50AEDC);
}
.contactItem[data-contact-type='email'] .contactIcon
{
    background: radial-gradient(#50AEDC, #0C81BA);
}

/* Hotline */
.contactItem[data-contact-type='hotline']
{
    background: linear-gradient(to bottom, #F69891, #CE5B85, #964571);
}

.contactItem[data-contact-type='hotline'] .contactIcon
{
    background: radial-gradient(#BF4A45, #F23C3E);
}

.contactItem .contactTitle 
{
    margin: 0 0.5rem 0 1rem;
    font-weight: bold;
    min-width: 10rem;
    text-align: center;
}

#changeLanguage
{
	color: var(--text-regular);
	background: linear-gradient(#fffa00, #feb100);
	padding: 0.1rem;
	font-weight: bold;
	font-size: 0.75rem;
	text-align: center;
	letter-spacing: 0.1rem;
}

#changeLanguage option 
{
    color: var(--text-regular);
    background: rgba(255, 247, 0, 0.5);
}

#counterfeitingContent
{
	color: var(--text-primary);
	font-style: italic;
	font-size: 1rem;
}

#slider-content, #contact-content
{
	height: 100%;
}

.slider-container 
{
    display: none;
}

.loginRegistercontainer 
{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    gap: 10rem;
}

.btn-login
{
    display: flex;
    flex-direction: column;
    color: #ffffff;
    font-size: 1rem;
    justify-content: center;
    align-items: center;
    background: #328BFF;
    border-radius: 1rem;
    aspect-ratio: 1 / 1;
    min-width: 7rem;
    cursor: pointer;
}

.btn-login:hover
{
    box-shadow: 0 0 0.5rem 0.1rem #ffffff88;
}

.auth-icon 
{
    font-size: 2.5rem;
}

.btn-register
{
    display: flex;
    flex-direction: column;
    color: #ffffff;
    font-size: 1rem;
    justify-content: center;
    align-items: center;
    background: #EF0100;
    border-radius: 1rem;
    aspect-ratio: 1 / 1;
    min-width: 7rem;
    cursor: pointer;
}

.btn-register:hover
{
    box-shadow: 0 0 0.5rem 0.1rem #ffffff88;
}

.btn-deposit
{
    display: flex;
    flex-direction: column;
    color: #ffffff;
    font-size: 1rem;
    justify-content: center;
    align-items: center;
    background: #FC9203;
    border-radius: 1rem;
    aspect-ratio: 1 / 1;
    min-width: 7rem;
    cursor: pointer;
    text-transform: uppercase;
    animation: eye-catch-button 2s linear infinite;
}

.btn-deposit:hover
{
    box-shadow: 0 0 0.5rem 0.1rem #ffffff88;
}


.category-container
{
    margin-top: 3rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    background: #212344;
    padding: 0.5rem 2rem;
}

.category-item
{
    padding: 0.5rem 2rem;
    color: #ffffff;
    border-radius: 2rem;
    font-weight: bold;
    background: #5A5C71;
    min-width: 9rem;
    text-align: center;
    cursor: pointer;
}

.category-item:hover
{
    box-shadow: 0 0 0.5rem 0.1rem #ffffff88;
}

.category-item.active
{
    background: linear-gradient(to bottom, #4FB8FF, #348EFF);
}

.game-container
{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-content: center;
    row-gap: 2rem;
    column-gap: 2rem;
    margin-top: 3rem;
}

.gameContent
{
    display: contents;
}

.gameTitle 
{
    color: #fff;
    font-size: 1rem;
    text-align: center;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
}

.latestNew-container
{
	color: var(--text-regular-inverted);
	line-height: 1;
	font-weight: bold;
}

.latestNew{
	background: var(--text-primary);
	border-radius: 10px;
}

.logoContent
{
	max-width: 12.5vw;
	width: 100%;
	margin: 0 auto;
	margin-left: unset;
}

.imageDiv
{
	width: 4.5vw;
}

.contactTitle-span
{
	color: var(--text-primary);
	font-size: 1.1vw;
	line-height: 31px;
	font-weight: bold;
	font-family: Times, Times New Roman, Georgia, serif;
}

.contactT-span, .emailT-span
{
	color: #FFF;
}

.stepTextContent{
	color: white;
	font-size: 1.25rem;
	padding: 1.5rem 1rem;
	text-transform: uppercase;
}
.stepDisc{
	color:#fffa00;
	font-size: 1rem;
}

#popUpModal .modal-content
{
    background: transparent;
    
}

#popUpModal .btn-close
{
    margin-top: 1.5rem auto 0 auto;
    width: fit-content;
}

.popUpImg
{
    position: relative;
    display: flex;
    margin: 0 auto;
    overflow: hidden;
}

.popUpFooter
{
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.transition-timer-carousel-progress-bar 
{
	width: 0%;
	height: 5px;
	z-index: 12;
	border: none;
	margin: 0px auto;
	position: relative;
	background-image: -webkit-linear-gradient(top, #ffffff, #007bff);
	background-image: -moz-linear-gradient(top, #ffffff, #007bff);
	background-image: -ms-linear-gradient(top, #ffffff, #007bff);
	background-image: -o-linear-gradient(top, #ffffff, #007bff);
	background-image: linear-gradient(to bottom, #ffffff, #007bff);
}

.carousel-control-prev:hover
{
	background-image: linear-gradient(to right, rgba(0,0,0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
	background-repeat: repeat-x;
}

.carousel-control-next:hover
{
	background-image: linear-gradient(to right, rgba(0,0,0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
	background-repeat: repeat-x;
}

.carousel .carousel-item img{
	margin: 0 auto; /* Align slide image horizontally center */
}

.gameDownloadContent > .row
{
	margin: 0px;
}

.gameDownloadContent > .row > .col-6
{
	padding: 5px 5px 5px 5px;
}

.download-btn-content
{
	text-align: center;
}

.download-btn
{
	width: 5rem;
	padding: 2px;
	color: var(--text-regular-inverted);
	text-align: center;
	background: transparent;
	border: 1px solid #FFFFFF;
	border-radius: 15px;
}

.download-btn:hover, .download-btn:hover .faIcon
{
	background-color: #ffffff;
	color: var(--text-regular);
}

.downloadTitle
{
	font-size: 0.75rem;
}

.copy-btn
{
	color: var(--text-primary);
	cursor: pointer;
	line-height: 1rem;
	font-size: 0.45rem;
	white-space: nowrap;
	text-decoration: underline;
	background-color: transparent;
}

.copy-btn:hover
{
	color: var(--text-regular-inverted);
	text-decoration: none;
}

.faIcon
{
	font-size: 0.75rem;
	color: var(--text-regular-inverted);
}

.form-label > span, .typeFeedback
{
	color: #C4C4C4;
	font-style: italic;
	font-family: Georgia, Palatino, Palatino Linotype, Times, Times New Roman, serif;
}

.title-support
{
	color: var(--text-primary);
	text-align: center;
}
.text-support
{
	color: var(--text-regular-inverted) !important;
	text-align: center;
}
.text-copy
{
	color: #000;
	text-align: center;    
	font-weight: bold;
}

.copyright-container
{
	font-weight: 500;
	color: var(--text-regular-inverted);
	background: none;
}
.csitem
{
	text-align: center;
}

.cs_domain, .emailHyperLink
{
	color: var(--text-regular-inverted);
	text-decoration: none;
}

.cs_domain:hover, .emailHyperLink:hover
{
	color: #FFEA00;
}

.emailHyperLink
{
	display: flex;
	align-items: center;
    justify-content: center;
}

.hr
{
	height: 1px;
	background: #fff;
}

.cursor-pointer
{
    cursor: pointer;
}

.browserImg
{
	width: 2rem;
	height: 2rem;
}
.gameTabList
{
    padding: 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    margin: 0.5rem;
    cursor: pointer;
    border-radius: 2rem;
}

.gameTabList:hover
{
    background: rgba(255, 255, 255, 1);
}

.gameImgContent 
{
	position: relative;
    border: 0.2rem solid #076488;
    border-radius: 7%;
    /*background: #000000;*/
    background: radial-gradient(#323232, #000000);
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gameImgContent .gameImg
{
	width: 80%;
	height: auto;
}

.gameItemContainer:hover .gameImgContent
{
    transform: scale(1.05);
}

.game-container .gameImgContent
{
	cursor: pointer;
	position: relative;
	transition: transform .1s linear;
}

.game-container .gameImgContent:after {
    /*content: "";*/
    position: absolute;
    top: 0;
    left: 2%;
    background: linear-gradient(180deg, #ffffff55 0%, transparent 60%);
    width: 96%;
    height: 100%;
    border-radius: 0.5rem;
    clip-path: ellipse(50% 38% at 50% 37%);
}

.game-container .gameImgContent .gameDownloadContent
{
	display: none;
}
.gameDownloadContent 
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	align-items: center;
	justify-content: center;
}
.gameDownloadContent:hover
{
	background: rgba(0, 0, 0, 0.7);
	margin: 2px;
	border-radius: 20px;
	width: 98% !important;
    height: 98% !important;
}
.gameItem.slick-slider
{
	display: grid !important;
}

.gameItem  .slick-dots
{
	display: none !important;
}
.gameItem .slick-slide .gameItemContainer
{
	padding: 1.5rem
}
.gameItem .slick-slide.slick-center .gameItemContainer
{
	padding: 0.2rem;
}

.stepContent > .row
{
    align-items: center;
    height: 100%;
    justify-content: center;
}

#gameModal .modal-content
{
    background: transparent;
    border: none;
}
#gameModal  .close-btn-container
{
    display: flex;
    justify-content: end;
    position: absolute;
    right: -10px;
    background: #fff;
    border-radius: 50%;
    border: none;
    padding: 0.3rem 0.5rem;
    top: 0px;
    z-index: 99;
}
#gameModal .gameDownloadContent 
{
    background: rgba(0, 0, 0, 0.7);
    margin: 2px;
    border-radius: 20px;
    width: 98% !important;
    height: 98% !important;
    display: flex;
}

#qrModal .modal-content 
{
    background: transparent;
    border: 0;
}

#qrModal .close 
{
    color: #ffffff;
    opacity: 1;
}

.bottom-panel-container
{
    display: flex;
    justify-content: center;
    column-gap: 3rem;
    margin-top: 2rem;
}

.bottom-panel-item
{
    background: var(--bottom-panel);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 1rem;
    min-width: 8rem;
}

.bottom-panel-item:hover
{
    filter: brightness(1.1);
}

.bottom-panel-item.home
{
    display: none;
}

.bottom-panel-icon .footer-icon
{
    width: 3rem;
    height: 3rem;
    fill: #ffffff
}

.bottom-panel-title 
{
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    font-size: .9rem;
    margin-top: 0.5rem;
}

.promotion-slider-container 
{
    padding-top: 3rem;
}

.promoImg
{
    cursor: pointer;
}

.angPowContainer
{
    position: fixed;
    z-index: 20;
    left: 0;
    bottom: 30%;
    width: 6%;
}

.angPowContainer-inner
{
    position: relative;
}

.angPowContent
{
    cursor: pointer;
}

.angpow-close
{
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #ffffff88;
    cursor: pointer;
}

.angPowImg
{
    width: 100%;
}

#promoModal .modal-content
{
    background: var(--modal-background);
}

#promoModal .modal-title
{
    color: #ffffff;
}

#promoModal .modal-body
{
    overflow-y: auto;
}

#promoModal .close
{
    opacity: 1;
    color: #ffffff;
}

#promoModal .promoDesc
{
    margin: 2rem 0;
    color: #ffffff;
}

#promoModal .promoBtn
{
    width: 100%;
}

@media (max-width: 768px)
{
    .page
    {
        padding-bottom: calc(2rem + var(--bottom-panel-height));
    }
    .langDropdown .dropdown-menu
    {
        min-width: 2rem;
    }
    .langDropdown .dropdown-item
    {
        width: 2rem;
        font-size: 0.75rem;
    }
    .navIcon
    {
        width: 2rem;
        font-size: 1rem;
    }
    .navLogo
    {
        width: 80%;
    }
    .contactList
    {
        margin-top: 3rem;
    }
    .contactItem
    {
        font-size: .8rem;
        width: calc(50% - 0.5rem);
        padding: 0.25rem;
    }
    .contactItem .contactIcon
    {
        width: 1.5rem;
        font-size: 1rem;
    }
    .contactItem .contactTitle
    {
        min-width: 5rem;
        margin: 0 auto;
    }
    .loginRegistercontainer
    {
        justify-content: space-evenly;
        gap: 0;
        flex-wrap: wrap;
    }
    .btn-login 
    {
        min-width: 6rem;
    }
    .btn-register 
    {
        min-width: 6rem;
    }
     .btn-deposit 
    {
        min-width: 6rem;
    }
    /*
    .btn-login 
    {
        width: 50%;
        aspect-ratio: auto;
        border-radius: 0;
        padding: .7rem 0;
    }
    .btn-register 
    {
        width: 50%;
        aspect-ratio: auto;
        border-radius: 0;
        padding: .7rem 0;
    }
     .btn-deposit 
    {
        width: 100%;
        aspect-ratio: auto;
        border-radius: 0;
        padding: .7rem 0;
        flex-direction: row;
    }
    .btn-deposit .auth-icon
    {
        display: block;
        font-size: 1.25rem;
        margin-right: 1rem;
    }
    .auth-icon
    {
        display: none;
    }
    */
    .category-item
    {
        padding: 0.5rem 1rem;
        min-width: 4rem;
        font-size: .7rem;
    }
    .game-container
    {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 0.5rem;
        row-gap: 0.5rem;
    }
    .gameImgContent
    {
        border: 0.1rem solid #076488;
    }
    .gameTitle 
    {
        font-size: 0.5rem;
    }
	.stepContent{
		height: 100%;
	}
	.stepImg{
		width: 25px;
		height: 100%;
		padding: 0px;
		object-fit: cover;
		object-position: center;
	}
	.stepTextContent, .stepDisc{
		font-size: 0.75rem;
		padding: 0.5rem 0rem;
	}
	#popOutMobile
	{
		top: 0;
		left: 0;
		z-index: 999;
		width: 100%;
		height: 100%;
		position: fixed;
		overflow-y: scroll;
		background: rgba(52, 58, 64, 0.8);
	}

	.logoContent
	{
		max-width: 65vw;
		margin-top: 0.75rem;
		margin: 0 auto;
		margin-left: none;
	}	
	.copy-btn
	{
		display:none;
	}
	.mobileHide
	{
		display:none;
	}
	.contactTitle-span
	{
		font-size: 3vw;
	}
	.latestNew-container
	{
		width: 100%;
	}
	.gameItem .slick-center .gameDownloadContent
	{
		display: flex;
	}
	.gameTabList {
		padding: 0.5rem 0rem;
	}
	.bottom-panel-container 
	{
        position: fixed;
        bottom: 0;
        left: 0;
        display: flex;
        justify-content: center;
         column-gap: 0; 
        margin: 0;
        background: var(--bottom-panel);
        width: 100%;
        height: var(--bottom-panel-height);
        z-index: 20;
    }
    .bottom-panel-item
    {
        width: 25%;
        min-width: auto;
        border-radius: 0;
        background: transparent;
        padding: 0.25rem;
    }
    .bottom-panel-item.home
    {
        display: flex;
        padding: 0 0.25rem;
        transform: translateY(-30%) scale(1.1);
    }
    .bottom-panel-item.home .bottom-panel-icon
    {
        
    }
    .HomeButtonImg
    {
        width: 100%;
    }
    .bottom-panel-icon .footer-icon 
    {
        width: 1.5rem;
        height: 1.5rem;
        fill: #ffffff;
    }
    
    .bottom-panel-title
    {
        font-size: .6rem;
    }
    
    .angPowContainer
    {
        width: 4rem;
    }
    
    .angpow-close
    {
        width: 1rem;
        height: 1rem;
        font-size: 0.6rem;
    }
}

@media (max-width: 360px)
{
	.downloadTitle
	{
		font-size: 0.55rem;
	}
	.faIcon
	{
		font-size: 0.55rem;
	}
	.download-btn
	{
		width: 19vw;
	}
	.contactTitle-span
	{
		font-size: 4vw;
	}
}

@keyframes eye-catch-button
{
    0%
    {
        box-shadow: 0 0 0rem 0rem #FC9203;
    }
    50%
    {
        box-shadow: 0 0 2rem 0rem #FC9203;
    }
    100%
    {
        box-shadow: 0 0 0rem 0rem #FC9203;
    }
}