/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/**
 * Custom CSS
 */


/* Base styles */
* {
    font-family: "Afacad Flux", sans-serif !important;
    font-optical-sizing: auto !important;
    font-style: normal !important;
}

a {
    color: rgb(101, 0, 195);
    /* text-decoration: none; */
}

a:hover {
    color: rgb(64, 1, 122);
    text-decoration: underline;
}

.container {
    margin: 2em auto;
    width: 90%;
}

.padding-content {
    padding: 0 2em;
}

.title {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.subtitle {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.bg-light-grey {
    background-color: #f4f4f4;
}

.bg-dark-purple {
    background-color: rgba(48,0,92,1);
}

.text-white {
    color: white;
}

.text-center {
    text-align: center;
}

.text-small {
    font-size: 0.75em;
    margin-bottom: 0.5em;
}

.text-medium {
    font-size: 1.25em;
    margin-bottom: 0.5em;
}

.text-mediumish {
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

.text-large {
    font-size: 1.75em;
    margin-bottom: 0.5em;
}

.text-x-large {
    font-size: 2.25em;
    margin-bottom: 0.5em;
}

.text-2x-large {
    font-size: 2.75em;
    margin-bottom: 0.5em;
}

.text-bold {
    font-weight: bold;
}

.margin-x-auto {
    margin: 0 auto;
}

.margin-y-auto {
    margin: auto 0;
}

.margin-top-2 {
    margin-top: 2em;
}

.margin-top-5 {
    margin-top: 5em;
}

.margin-bottom-5 {
    margin-bottom: 5em;
}

.margin-bottom-2 {
    margin-bottom: 2em;
}

.padding-top-5 {
    padding-top: 5em;
}

.padding-top-2 {
    padding-top: 2em;
}

.padding-bottom-5 {
    padding-bottom: 5em;
}

.padding-bottom-2 {
    padding-bottom: 2em;
}

.italic {
    font-style: italic;
}


/**
 * Hero styles
 */
.hero {
	height: 95vh;
    /* TODO: Download image locally */
	background: linear-gradient(-45deg, rgba(229,93,135,.7), rgba(95,195,228,.7)), url(https://picsum.photos/g/2000/1200?image=443) center center / cover no-repeat;
}

.hero-landing {
    max-height: 100vh;
    right: 0;
    bottom: 0;
    min-width: 100%;
    background-color: #000;
}

.hero-landing video {
    max-height: 100vh;
    min-width: 100%;
    opacity: 0.5;
}

.hero h1, .hero-landing h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font : normal 600 72px/1 'Open Sans', sans-serif;
    text-align: center;
    white-space: nowrap;
}

.hero h3, .hero-landing h3 {
    position: absolute;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font : normal 600 36px/1 'Open Sans', sans-serif;
    text-align: center;
    white-space: nowrap;
}

/**
 * Logo styles
 */

.logo-img {
    height: 150px;
    width: 150px;
}

/* grid of 3 columns using the grid */
.row-4-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1em;
}

/* grid of 3 columns using the grid */
.row-3-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1em;
}

/* grid of 2 columns using the grid */
.row-2-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1em;
}


/* Navbar styles */
.navbar {
    align-items: center;
    /* background-color: #333; */
    background-color: rgba(48,0,92,1);
    display: flex;
    height: 60px;
    justify-content: space-between;
    padding: 0 20px;
}
  
.navbar-brand {
    font-size: 1.5em;
    font-weight: bold;
}

.navbar-brand a {
    color: #fff;
    text-decoration: none;
}
  
.navbar-links {
    display: flex;
    gap: 15px;
}
  
.navbar-links a {
    color: #fff;
    font-size: 1.5em;
    text-decoration: none;
}
  
.navbar-links a:hover {
    text-decoration: underline;
}

/**
 * Button Styles
 */
.btn {
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
} 

.btn:hover .btn-slide-show-text1 {
    margin-left: 65px;
} 

.btn-rect-to-round {
    height: 55px;
    width: 200px;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    transition: 0.5s ease-in;
} 

.btn-rect-to-round:hover {
    border-radius: 60px;
    color: rgb(255, 255, 255) !important;
} 

.btn-rect-to-round--pink {
    border: 2px solid rgb(255, 99, 146);
    color: rgb(255, 99, 146) !important;
} 

.btn-rect-to-round--pink:hover {
    border-color: rgb(255, 99, 146);
    background: rgb(255, 99, 146);
}

.btn-rect-to-round--blue {
    border: 2px solid rgb(58, 134, 255);
    color: rgb(58, 134, 255) !important;
} 
   
.btn-rect-to-round--blue:hover {
    border-color: rgb(58, 134, 255);
    background: rgb(58, 134, 255);
}


/**
 * Contact form styles
 */
.form-container {
    margin: 0 auto;
    max-width: 400px;
}

.label {
    margin-bottom: 0.5em;
}

.form-group {
    margin-bottom: 1em;
}

.form-input {
    font-size: 1.25rem;
    width: 100%;
}

.form-textarea {
    font-size: 1.25rem;
    height: 200px;
    width: 100%;
}

/**
 * Template card styles
 */
.template-card {
    /* background-image: linear-gradient(to right, rgba(47,1,89,1) 0%, rgba(143,21,255,1) 35%); */
    /* background-image: linear-gradient(to right, rgba(47,1,89,1) 0%, rgba(98,26,163,1) 35%); */
    background-image: linear-gradient(74deg, rgba(143,21,255,1) 0%, rgba(48,0,92,1) 85%);
    border: 1px solid rgba(47,1,89,1) 0%;
    border-radius: 5px;
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2em;
    padding: 2em;
}

.template-card-image {
    height: 400px;
    width: 320px;
}

/**
 * Stats table styles
 */
.stats-table {
    background-color: #f4f4f4;
    border: 1px solid #d1d1d1;
    border-collapse: collapse;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    width: 100%;
}

.stats-table th {
    border: 1px solid #d1d1d1;
    font-size: 2.25em;
    padding: 0.5em;
}

.stats-table td {
    border: 1px solid #d1d1d1;
    font-size: 2.25em;
    font-style: italic !important;
    padding: 0.5em;
}

/**
 * Testimonial styles
 */
.testimonial-img {
    border-radius: 5%;
    height: 500px;
    margin-bottom: 1em;
    width: 700px;
}


/**
 * Footer styles
 */
footer {
    /* background-color: #333; */
    background-color: rgba(48,0,92,1);
    color: white;
    padding: 1em 0;
}

.footer-fixed {
    bottom: 0;
    position: fixed;
    width: 100%;
}

footer li {
    margin-bottom: 0.25em;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}