@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: SF Pro, system-ui, -apple-system, Helvetica, Arial, sans-serif;
    /* font-family: Rubik, sans-serif, sans-serif; */
    font-weight: 400;
    accent-color: black;
}

body {
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; */
    height: 100vh;
    width: 100vw;
}

header {
    height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid black;
    border-style: none none solid none; */
}

.logo {
    height: 2.5em;
    margin: 2.5em;
}

/* ul {
    display: flex;
    flex-direction: row;
    padding: 1em;
}

ul li {
    display: flex;
    align-items: center;
    list-style: none;
}
        
ul li a {
    padding: 1em;
    margin: 0.25em;
    display: flex;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    color: black;
    transition: 200ms ease;
    border-radius: 1em;
}

ul li a:hover {
    color: black;
    background-color: #f6f5f5;
} */

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

.product {
    height: 25em;
    border-radius: 1em;
    margin: 2.5em;
    margin-top: 0;
}

.checked {
    color: rgb(133, 133, 133);
}

.formwrapper {
    display: flex;
    height: 100vh;
    width: 100%;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(46, 46, 46);
}

.strip {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10em;
    padding: 3em;
    background: white;
    /* border: 1px solid red; */
}

.partner1 {
    font-size: 1.5em;
    margin: 1em;
    height: 1em;
    opacity: 0.25;
    transition: 600ms;
}
.partner2 {
    font-size: 1.5em;
    margin: 1em;
    height: 1em;
    opacity: 0.25;
    transition: 600ms;
}
.partner3 {
    font-size: 1.5em;
    margin: 1em;
    height: 1em;
    opacity: 0.25;
    transition: 600ms;
}
.partner4 {
    font-size: 1.5em;
    margin: 1em;
    height: 1em;
    opacity: 0.25;
    transition: 600ms;
}
.partner1:hover {
    opacity: 0.9;
    fill: #BC3D96;
}
.partner2:hover {
    opacity: 0.9;
    fill: #0069ff;
}
.partner3:hover {
    opacity: 0.9;
    fill: #FFCC00;
}
.partner4:hover {
    opacity: 0.9;
    fill: #000000;
}


/* MARQUEE ELEMENT START */

.marquee-horizontal {
    position: relative;
    z-index: 200;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 40px;
    justify-content: flex-start;
    align-items: center;
    background-color: #f6f5f5;
    margin-bottom: 2.5em;
  }
  .marquee-text {
    margin-right: 8vw;
    flex: none;
    color: black;
    text-transform: uppercase;
    font-family: SF Pro, system-ui, -apple-system, Helvetica, Arial, sans-serif;
    font-weight: 400;
  }
  .track-horizontal {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-horizontal 40s linear infinite;
  }
  .track-horizontal-alt {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-horizontal-alt 40s linear infinite;
  }
  @keyframes marquee-horizontal {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes marquee-horizontal-alt {
    from { transform: translateX(-50%); }
    to { transform: translateX(0%); }
  }

  /* FOOTER CSS */

  footer {
	background: white;
    padding: 2.5em 0;
}
.footer-container{
	max-width: 1170px;
	margin:auto;
}
.footer-row{
	display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1em;
}
.ada {
	height: 30vh;
}
.footer-col{
   width: 100%;
   padding: 0 1em;
   /* border: 1px solid red; */
}
.footer-col h4{
	font-size: 18px;
	color: black;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 800;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: black;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li {
	margin-bottom: 10px;
	text-decoration: none;
    list-style: none;
}
.footer-col ul li a {
	font-size: 16px;
	color: white;
	text-decoration: none;
    text-transform: capitalize;
	font-weight: 400;
	color: black;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: black;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: black;
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: white;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: white;
	background-color: rgb(158, 158, 158);
}
.footer-logo {
    margin: 1em;
    margin-left: 0em;
    height: 3em;
    opacity: 0.1;
}






.social {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1em;
    width: fit-content;
    font-size: 1em;
}

.social a {
    border-radius: 50%;
    background-color: black;
    padding: 0.3em;
    transition: 300ms;
}

.social a:hover {
    border-radius: 50%;
    opacity: 0.5;
    padding: 0.3em;
}

.social img {
    display: flex;
    height: 1.5em;
    width: 1.5em;
    /* background-color: black; */
    margin: 0.5em;
}













/* .social {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 1em;
}

.social a {
    border-radius: 50%;
    background-color: black;
    padding: 0.3em;
    transition: 300ms;
    margin-inline: 1em;
    margin-inline: 1em;
}

.social a:hover {
    border-radius: 50%;
    opacity: 0.5;
    padding: 0.3em;
}

.social img {
    display: flex;
    height: 1.5em;
    width: 1.5em;
    /* background-color: black; */
    margin: 0.5em;
} */

.ad {
    display: flex;
    height: 20em;
    width: 20em;
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1em;
    border: 1px solid black;
    border-style: solid none solid none;
}

.card {
    line-height: 1.7;
    font-size: 1rem;
    text-align: center;
    margin: 1em;
    font-weight: 400;
}
  
.number {
    font-family: SF Pro, system-ui, -apple-system, Helvetica, Arial, sans-serif;
    font-size: 3rem;
    font-weight: 900;
}


@media (max-width: 480) {
    .footer-row{
        display: grid;
        background-color: #000000;
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {
    header {
        justify-content: center;
    }
    .container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 1em;
        border: 1px solid black;
        border-style: solid none solid none;
    }
    .strip {
        flex-direction: column;
        height: fit-content;
    }
    .footer-row{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 750px) {

}

@media (max-width: 900px) {
    .logo {
        height: 2em;
        margin: 2.5em;
        opacity: 0.5;
    }
    .page {
        flex-direction: column;
    }
}

@media (max-width: 1200px) {
    .page {
        flex-direction: column;
    }
    .social {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
}
