/**Typeo CSS Start**/
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,400;0,500;0,700;0,800;1,300;1,400;1,500;1,600;1,700&display=swap');
* {
box-sizing: border-box;
}
body {
margin: 0px;
background-color: #ffffff;
}
.topscn {
height: 600px;
background-color: #141627;
height: 600px;
width: 100%;
}
@media(max-width:1200px) {
.topscn {
height: 250px;
}
}
/**Typeo CSS End**/
.newsletter-scn, .newsletter-scn * {
--page-width: 1330px;
--base-fm: 'Rubik', sans-serif;
--title-size: 34px;
--base-size: 16px;
--white-clr: #ffffff;
--theme-clr: #0887c5;
--bg-clr: #000000;
}
/**Testimonial Section Start**/
.newsletter-scn {
font-family: var(--base-fm);
font-size: var(--base-size);
color: var(--white-clr);
text-align: center;
}
.page-width {
max-width: var(--page-width);
margin: auto;
width: 100%;
padding: 0 15px;
}
.newsletter-inner {
max-width: 800px;
padding: 40px 20px;
border-radius: 8px;
width: 100%;
margin: -100px auto 0 auto;
background-color: var(--bg-clr);
}
.newsletter-inner h3 {
font-size: var(--title-size);
margin: 0px;
font-weight: 400;
}
.newsletter-form {
background-color: var(--white-clr);
display: flex;
flex-flow: row wrap;
max-width: 500px;
margin: auto;
width: 100%;
border-radius: 6px;
padding: 2px 1px 2px 2px;
margin-top: 30px;
}
.newsletter-form input[type="email"] {
padding: 15px;
font-family: var(--base-fm);
font-size: 16px;
border: none;
border-radius: 6px;
outline: none;
width: calc(100% - 137px);
display: flex;
}
.newsletter-form .newsletter-btn {
padding: 10px 10px;
text-transform: uppercase;
font-size: 16px;
font-weight: 700;
background-color: #000;
color: #fff;
border: none;
font-family: var(--base-fm);
cursor: pointer;
border-radius: 0px 6px 6px 0px;
outline: none;
text-align: center;
width: 136px;
}
@media(max-width:767px) {
.newsletter-scn {
font-size: calc(var(--base-size) - 2px)
}
.newsletter-inner h3 {
font-size: calc(var(--title-size) - 6px);
}
.newsletter-form {
margin-top: 20px;
}
.newsletter-inner {
padding: 20px 10px;
}
.newsletter-inner p {
margin: 10px 0px;
}
.newsletter-form .newsletter-btn {
width: 120px;
font-size: 14px;
}
.newsletter-form input[type="email"] {
width: calc(100% - 121px);
padding: 10px;
font-size: 14px;
}
}