/*
Theme Name: Ontario Dyanamics
Author: Evolisyss

*/


:root {
  --clr-primary: #3e63dd;

  --transition-base: all 0.3s linear;

  --rounded-20: 20px;
  --rounded-12: 12px;
  --rounded-24: 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
  padding-left: 0;
}

figure {
  margin-bottom: 0;
}

img.cover {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

img.fill {
  height: 100%;
  width: 100%;
  object-fit: fill;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

section {
  overflow: hidden;
}

.section-padding {
  padding: 7rem 0;
}

.hero-heading {
  font-size: clamp(30px, 3vw, 48px);
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Manrope", "sans-serif";
  color: #fff;
}

.section-heading {
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #3e63dd;
  text-transform: capitalize;	
  font-family: "Manrope", "sans-serif";
  text-align: center;
}

.section-subheading {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.17px;
  text-align: center;
}

.desc {
  font-size: clamp(15px, 1.2vw, 18px);
}

.card-heading {
  font-weight: 600;
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 16px;
  color: #18181a;
  line-height: 1.3;
  font-family: "Manrope", "sans-serif";
  height: 46px;
}

.button {
  cursor: pointer;
  border: none;
  outline: none;
  white-space: nowrap;
  padding: 14px 30px;
  border-radius: var(--rounded-12);
  display: inline-block;
  transition: var(--transition-base);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(65, 105, 225, 0.3);
}

.primary-btn {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  background-color: var(--clr-primary);
}

.grid-cols-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: center;
}

/* //////////////////// HELPER CLASSES ////////////////////// */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* //////////////////// UTILITY CLASSES ////////////////// */
.rounded-20 {
  border-radius: var(--rounded-20);
}
.rounded-12 {
  border-radius: var(--rounded-12);
}

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

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

.mb-3 {
  margin-bottom: 30px;
}

[data-animate] {
  opacity: 0;
}

[data-animate].animated {
  opacity: 1;
}

.fast-animation {
  --animate-duration: 0.5s;
}

.slow-animation {
  --animate-duration: 2s;
}

@media (min-width: 1600px) {
  html {
    font-size: 110%;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 2.4rem 0;
  }
}

