/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */


html {
  font-size: 14px;
}

.mt-5 {
  margin-top: 1.25rem;
}

/* Custom Theme Colors */
.text-primary {
  color: #0F2B46;
}

.bg-primary {
  background-color: #0F2B46;
}

.text-accent {
  color: #FF9933;
}

.bg-accent {
  background-color: #FF9933;
}

.bg-accent-dark:hover {
  background-color: #ff8800;
}

.border-accent {
  border-color: #FF9933;
}

.bg-light {
  background-color: #f5f5f7;
}

.text-orange-dark {
  color: #d97000;
}

.bg-urgent {
  background-color: #d90429;
}

.bg-primary-gradient {
  background-color: #1a3f5c;
}

/* Custom Sizing Utilities */
.max-h-90vh {
  max-height: 90vh;
}

.max-w-320 {
  max-width: 320px;
}

.rounded-3xl-custom {
  border-radius: 3rem;
}

.rounded-2xl-custom {
  border-radius: 2.5rem;
}

.max-w-80pct {
  max-width: 80%;
}

.max-w-75pct {
  max-width: 75%;
}

.min-h-400 {
  min-height: 400px;
}

.min-h-600 {
  min-height: 600px;
}