/*
========================
Header area start
========================
*/
  
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&family=Roboto+Condensed:wght@400;700&display=swap');

@font-face {
    font-family: 'Poppins', sans-serif;
    font-family: 'PolygonParty';
    src:url(fonts/ChakraPetch-Bold.ttf) format('truetype');
    font-display: swap;
}
body {	
    font-family: 'PolygonParty';
    font-size: 16px;
    font-weight: 400;    
	background: #fff;
	color: #333333;	
}

a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

::selection {
    color: white; 
    background: #ff7675;
}

::-webkit-selection {
    color: white; 
    background: #ff7675;
}

::-moz-selection {
    color: white; 
    background: #ff7675;
}

.scrolltotop {
    width: 45px;
    height: 45px;
    border-radius:50%;
    background: #f63e5c;
    text-align: center;
    padding-top: 7px;
    font-size: 22px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    display: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    text-decoration: none;
}

.scrolltotop:hover {   
    opacity:1;
    background: #f63e5c;
    bottom: 20px;
}
header {
    background-color:#1c1726;
    padding:5px 0;
}
.logo-item img {
    width:100%;
    max-width:350px;
    /* max-width:600px; */
}


/*
========================
hero area start
========================
*/
.hero-area {
    background:url(images/background-simple.jpg)no-repeat;
    background-size: cover;
    padding:90px 0;
}
.hero-left > a img {
    max-width:300px;
}
.hero-left h1 {
    font-size: 4em;
    color:#FFFFFF;
}
.hero-right a img {
    width:100%;
}
.hero-btn-content {
    display: flex;
    align-items: center;
    width:300px;
}
.hero-btn1 {
    width:100%;

    height:80px;
    background-color:#f63e5c;
    display: flex;
    align-items: center;
    justify-content:center;
    border-bottom-left-radius:15px;
    border-top-left-radius:15px;
    transition:0.3s;
}
.hero-btn1 p {
    font-family: 'Roboto Condensed', sans-serif;
    margin:0;
    font-size:35px;
    text-transform: uppercase;
    font-weight:700;
    color:#fff;
}
.hero-btn2 {
    width:80px;
    background-color:#bd2f47;
    height:80px;
    display: flex;
    align-items: center;
    justify-content:center;
    border-bottom-right-radius:15px;
    border-top-right-radius:15px;
}
.hero-btn2 img{
    width:50px;
}
.hero-btn-content:hover .hero-btn1{
    background-color: #bd2f47;
}
.hero-left a{
    display: inline-block;
}
/*
========================
emulator area start
========================
*/
.emu-area {
    background:url(images/background-opera.jpg) no-repeat;
    background-size:cover;
    padding: 90px 0;
}
.emu-left img {
    width:100%;
}

.emu-right h2 {
    font-size:45px;
    color:#FFFFFF;
}
.emu-right p {
    font-size:22px;
    color:#FFFFFF;
}

/*
========================
help area start
========================
*/
.help-area {
    background-color:#f63e5c;
    padding:50px 0;
}
.help-header {
    margin-bottom:35px;
}
.help-header h2 {
    font-size:45px;
    color:#fff;
}
.help-left ul li img {
    max-width:40px;
    margin-right:15px;
}
.help-left ul li {
    color:#fff;
    font-size:30px;
    margin-bottom:15px;
}
.help-item > a img {
    max-width:400px;
}
.help-item {
    padding:30px;
	background:#00031e;
}
.help-item h2 {
    color:#fff;
    font-size:40px;
}
.help-item p {
    color:#fff;
    font-size:20px;
}

/*
========================
footer area start
========================
*/
.footer-item {
    padding:20px 0;
    background-color:#000000;
}
.footer-item  p {
    font-family: 'Poppins', sans-serif;
    font-weight:400;
    font-size:16px;
    color:#FFFFFF;
    line-height:25px;
}
.footer-item2 {
    padding:20px 0;
    background-color:#1c1726;
}
.footer-item2 a {
    font-family: 'Poppins', sans-serif;
    font-weight:400;
    text-decoration:none;
    color:#fff;
    font-size:16px;
}

#modal {
        display: none;
		font-family: 'Poppins', sans-serif;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
				background-color: rgba(0,0,0,0.75);
        z-index: 999;
        overflow: auto;
        justify-content: center;
        align-items: center;
    }
    #modal_content {
        min-height: fit-content;
        position: relative;
        transform: translateY(-50%);
        margin: 50px auto;
        padding: 0;
        width: 80%;
        max-width: 800px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 2px 8px 23px 3px rgba(0,0,0,0.2);
        transform: scale(0);
        transition: 15s;

    }
    .modal_header {
        background: #0D6EFD;
        color: white;
        text-align: center;
				font-size: 1.5em;
        padding: 13px;
        border-radius: 10px 10px 0 0;
    }

    .modal_body {
        padding: 20px;
        display: flex;
        flex-direction: column;
				font-style: italic;
    }

    .close {
        position: absolute;
        top: 2%;
        left: 2%;
        font-size: 2em;
        color: #606060;
        cursor: pointer;
        padding: 10px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 99;
        width: 25px;
        height: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 15s;
    }

    .close:hover {
        background-color: #1d1d1d;
    }

    @keyframes load_modal {
        from{
            transform: scale(0);
        }
        to {
            transform: scale(1);
        }
    }
    @media (max-width: 600px) {
        #modal_content{
            width: 88%;
        }
    }
	
	.buttonModal {
  background-color: #f63e5c; /* Green */
  border: none;
  color: white;
  padding: 2px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.4em;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
  font-weight: bold;
}

.buttonModal:hover {
  background-color: #bd2f47;
  color: white;
}

.video-container {
    justify-content: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* This is for a 16:9 aspect ratio */
    padding-top: 25px;
    height: 0;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* YT Responsive */

.yt-responsive-container {
position:relative;
padding-bottom:56.25%;
height:0;
overflow:hidden;
}

.yt-responsive-container iframe, .yt-responsive-container object, .yt-responsive-container embed {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}