/*========================
			Fonts 			
==========================*/
@font-face {
    font-family: 'Noto Sans';
    src: url('../fonts/NotoSans-Italic.woff2') format('woff2'),
        url('../fonts/NotoSans-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Noto Sans';
    src: url('../fonts/NotoSans-Bold.woff2') format('woff2'),
        url('../fonts/NotoSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('../fonts/NotoSans.woff2') format('woff2'),
        url('../fonts/NotoSans.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('../fonts/NotoSans-BoldItalic.woff2') format('woff2'),
        url('../fonts/NotoSans-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}


/*========================
		General Css
=========================*/
body{
    font-family: 'Noto Sans';
	font-weight: normal;
	width: 100%;
}
ul,
p,
h1,h2,h3,h4,h5,h6,
body{
	margin: 0;
	padding: 0;
}
a{
	display: inline-block;
	text-decoration: none;
}
*:hover{
	transition: all 0.3s;
}
/*========================
		Index 
=========================*/
#entry {
	position: relative;
}
.entry-inner{
	position: relative;
	height: 100vh;
}
.entry-content{
	position: absolute;
	top: 50%;
	left: 50%;
	margin: auto;
	text-align: center;
	transform: translate(-50%,-50%);
}
.entry-logo{
	width: 150px;
	height: 150px;
	position: relative;
	z-index: 1;
	margin: 0 auto;
}
.entry-logo img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: 40px;
}
.entry-content h1 {
    font-size: 32px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 25px;
}
.entry-content h1 {
    font-size: 32px;
    font-weight: bold;
    margin-top: 16px;
}
.entry-links {
	list-style: none;
}
.entry-links li{
	display: inline-block;
}
.entry-links li a{
	font-size: 16px;
    color: #858585;
    margin: 0 10px;
}
.g-recaptcha > div{
	margin: 0 auto;
}
#response{
	font-size: 14px;
	margin-bottom: 10px;
}
#captcha-response{
	font-size: 14px;
	margin-top: 10px;	
}
/*========================
	Privacy Policy
=========================*/
#privacy,
#terms  {
	padding-top: 50px;
}
#support  {
	padding-top: 55px;
}
#support .section-heading h1:before {
    transform: translateX(-68px);
}
.section-heading{
    padding-bottom: 40px;
}
.section-heading h1{
	font-size: 36px;
    color: #222222;
    text-align: center;
    position: relative;
}
.section-heading h1:before{
	content: '';
    width: 20px;
    height: 3px;
    background-color: #ED6D46;
    position: absolute;
    bottom: -7px;
    left: 50%;
    display: inline-block;
    transform: translateX(-112px);
}
.innerpage-content p {
	font-size: 16px;
	color: #212529;
	line-height: 1.5;
	margin: 0 0 16px;
}
.innerpage-subheading h2{
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 8px;
}
.innerpage-subheading h4{
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 8px;
}
.innerpage-subheading ul,
.innerpage-subheading ol {
	padding-left: 40px;
	padding-bottom: 16px;
}
footer {
    background-color: #fff;
    padding: 30px 0;
    color: #858585;
    font-size: 18px;
    text-align: center;
}
footer .entry-links{
	padding-bottom: 10px;
}
footer p {
    color: #858585;
    font-size: 16px;
}
.form-group input:focus, .form-group textarea:focus{
	/*border: none;*/
	outline: none;
}
.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: #a9a9a9;
}
.form-group input, .form-group textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid #efefef;
    color: #a9a9a9;
    padding: 15px;
    box-shadow: none;
    border-radius: 6px;
}
#contact-us{
	width: 100%;
    max-width: 700px;
    text-align: center;
    margin: 45px auto 0 auto;
    min-height: 510px;
}
.form-group textarea {
    height: 120px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group input[type="submit"] {
    cursor: pointer;
    font-size: 18px;
	width: 150px;
    background: #222222;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 30px;
    margin-bottom: 40px;
}
.form-group input[type="submit"]:hover {
    background-color: #313131;
}

.error {
    color: #ffd617;
    display: block;
    text-align: left;
    margin-top: 5px;
} 

@media (max-width: 992px){
	.entry-links li a {
	    margin: 0px 5px;
	}
	.innerpage-subheading h2 {
	    font-size: 26px;
	    margin-bottom: 8px;
	}
	.innerpage-subheading h4 {
	    font-size: 22px;
	    margin-bottom: 8px;
	}
	.section-heading h1:before {
	    transform: translateX(-99px);
	}
	.section-heading h1 {
	    font-size: 32px;
	}
	.innerpage-subheading ul, .innerpage-subheading ol {
	    padding-left: 24px;
	    padding-bottom: 16px;
	}
	#support .section-heading h1:before {
	    transform: translateX(-62px);
	}
	.form-group textarea {
	    height: 100px;
	}
}
@media (max-width: 768px){
	.entry-content h1 {
	    font-size: 21px;
	    margin-bottom: 18px;
	}
	.entry-logo {
	    width: 100px;
	    height: 100px;
	}
	.entry-logo img {
	    border-radius: 20px;
	}
	.entry-content {
	    width: 100%;
	    max-width: 320px;
	}
	.entry-links li a {
	    font-size: 14px;
	}
	.section-heading h1 {
	    font-size: 26px;
	}
	.section-heading h1:before {
	    transform: translateX(-80px);
	}
	.innerpage-content p {
	    font-size: 14px;
	    margin: 0 0 14px;
	}
	.innerpage-subheading h2 {
	    font-size: 18px;
	    margin-bottom: 8px;
	}
	.innerpage-subheading h4 {
	    font-size: 16px;
	    margin-bottom: 8px;
	}
	.innerpage-subheading ul li, .innerpage-subheading ol li {
	    font-size: 14px;
	}
	footer p {
	    font-size: 14px;
	}
	.section-heading {
	    padding-bottom: 30px;
	}
	#privacy, #terms {
	    padding-top: 30px;
	}
	#support .section-heading h1:before {
	    transform: translateX(-48px);
	}
	.form-group input::placeholder, 
	.form-group textarea::placeholder {
		font-size: 14px;  
	}
	.form-group input, .form-group textarea {
		font-size: 14px;
	    padding: 10px;
	}
	.error {
		font-size: 13px;
	}
	.form-group input[type="submit"] {
	    width: 120px;
	    font-size: 14px;
	    margin-top: 10px;
	    margin-bottom: 0px;
	}
	.form-group textarea {
	    height: 80px;
	}
	#contact-us {
	    margin: 25px auto 0 auto;
	}
}