@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* universal */
body {
    font-family: 'Roboto';
    line-height: 1.5;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: black;
}

.container {
    max-width: 1100px;
    margin: 0 auto; /* aligns to the centre */
    padding: 0 20px;
}

/* navbar */
.navbar {
    width: 100%;
    position: fixed;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: rgba(240, 240, 244, 0.82);
    height: 60px;
    z-index: 1000;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.navbar ul {
    display: flex;
}

.navbar a {
    padding: 2px 10px;
}

.navbar a:hover {
    color: rgb(0,122,255);
}

.downloadButton {
    border: none;
    background-color: rgb(0,122,255);
    color: white;
    font-size: 14px;
    border-radius: 30px;
    outline: none;
}

/* welcomeGrid */
.gradientBackground {
    background-image: linear-gradient(rgb(66, 154, 248), rgb(0, 122, 255));
    padding-top: 25px;
}

.welcomeGrid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-row: 1fr 1fr;
}

.welcomeGrid div:nth-child(1n) {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 100px 0px;
}

.welcomeGrid div:nth-child(3n) {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    grid-column: 1 / -1;
    padding-bottom: 12vw;
    width: 100%;
    height: 100%;
    padding: 100px 0px;
}

.welcomeGrid img {
    width: 70%;
    min-width: 150px;
    padding: 10px 0px 0px 0px;
}

.welcomeGrid h1 {
    font-size: 12vw;
    color: white;
}

.welcomeGrid p {
    font-size: 4vw;
    font-size: 10vmin;
    color: white;
    font-weight: bolder;
}

.welcomeGrid p:nth-child(1) {
    font-size: 7vw;
    font-size: 14vmin;
    color: white;
    font-weight: bolder;
}

/* video */
video {
    width: 100%;
    height: 700px;
    padding: 4vw 0px;
}

/* all devices */
.allDevices {
    width: 100%;
}

.allDevices img {
    width: 100%;
    height: auto;
    padding: 8vw 0px;
}

/* features */
.secondaryBackground {
    width: 100%;
    background-color: rgb(242, 242, 247);
}

.doubleGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 40px 0px;
    margin: 0 auto;
}

.featureContainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
}

.featureContainer h1 {
    text-align: center;
    width: 85%;
}

.featureContainer h2 {
    text-align: center;
    width: 85%;
    opacity: 0.625;
}

.featureContainer img {
    width: 75%;
    height: auto;
}

/* big footer */
.darkBackground {
    width: 100%;
    background-color: rgb(25, 25, 25);
    padding: 3vw 0vw 3vw 0vw;
}

.tripleGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    /* padding: 10vw 0px 5vw 0px; */
    margin: 0 auto;
}

.textIcon {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
}

.textIcon img {
    width: 30%;
    height: 30%;
    object-fit: contain;
    padding-bottom: 10px;
}

.textIcon h1 {
    color: white;
    text-align: center;
    font-size: 1.5em;
}

.bigButton {
    display: flex;
    border: none;
    background-color: rgb(0,122,255);
    padding: 10px 60px;
    color: white;
    font-size: x-large;
    border-radius: 40px;
    margin: 0 auto;
    outline: none;
}

/* footer */
.footerBackground {
    width: 100%;
    background-color: rgb(10, 10, 10);
    padding: 50px 20px;
}

.footerHeader {
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
}

.footerHeader img {
    width: 60px;
    padding-right: 20px;
}

.footerHeader h1 {
    color: white;
}

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

.footerNav a {
    color: white;
    padding: 50px 20px;
}

.footerNav a:hover {
    color: rgb(0, 122, 255);
    cursor: pointer;
}

.copyrightText {
    display: flex;
    color: white;
    justify-content: center;
}

/* FAQ */
.accordionContainer {
    padding: 100px 20px;
}

.questionBackground {
    display: flex;
    flex-direction: column;
    background-color: rgb(242, 242, 247);
    border-radius: 20px;
    padding: 20px;
    margin-top: 15px;
    width: 100%;
}

.accordion {
    background-color: rgb(242, 242, 247);
    cursor: pointer;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.5s;
    font-size: large;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin: 0 auto;
}

.accordion img {
    width: 10px;
    height: 15px;
}

.active img {
    transform: rotate(90deg);
}

.panel {
  padding: 0 18px;
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

/* terms */
.termsContainer {
    padding: 100px 20px;
}

.termsContainer p {
    padding: 10px 0px;
    font-size: x-large;
}

/* contact (form) */
.formPadding {
    padding: 100px 20px;
}

.contactGrid  {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.contactGrid div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contactGrid img {
    width: 50%;
    height: auto;
    padding: 20px 0px;
}

form {
    background-color: rgb(242, 242, 247);
    padding: 30px;
    border-radius: 15px;
}

input[type=text], select, textarea {
    width: 100%; 
    padding: 12px;
    border: 1px solid #ccc; 
    border-radius: 8px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=submit] {
    background-color: rgb(0,122,255);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 20px;
}

label.error {
    color: red;
}

/* image gallery */
.galleryContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 100px;
	overflow:auto;
}

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

.slider-inner{
    display: flex;
    justify-content: center;
    align-items: center;
	height: auto;
	position: relative;
	overflow: hidden;
	float: left;
	padding: 3px;
}

.slider-inner img{
	display: none;
	width: 70%;
    height: auto;
}

.slider-inner img.active{
	display: inline-block;
}

.prev,.next{
	float: left;
	cursor: pointer;
}

.prev{
	position: relative;
    z-index: 100;
    width: 44px;
}

.next{
	position:relative;
    z-index:100;
    width: 44px;
}

/* pressKit */
@media screen and (max-width: 600px) {
    #pressKitTag {
      visibility: hidden;
      clear: both;
      float: left;
      margin: 10px auto 5px 20px;
      width: 28%;
      display: none;
    }
}

.pressKitContainer {
    max-width: 800px;
    margin: 0 auto; /* aligns to the centre */
    padding: 100px 20px;
}

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

.pressKitDownload {
    background-color: rgb(0,122,255);
    padding: 5px 30px;
    color: white;
    font-size: 14px;
    border-radius: 30px;
    outline: none;
    font-size: larger;
}