/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #1977cc;
  text-decoration: none;
}

a:hover {
  color: #3291e6;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}

/* bootstrap-icon more closely matches boxicon behaviors */
.bi { display:inline-block; }



/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #1977cc;
  height: 10px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 996;
}
#topbar.topbar-scrolled {
  top: -10px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 10px;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}
#header.header-scrolled {
  top: 0;
}

#header .logo-text {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  display:block;
}
#header .logo-img img {
  display:none;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 0px) { 
  #header .logo-text {
    display:none;
  }
  #header .logo-img img {
    display:block;
  }
  
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) { 
  #header .logo-text {
    font-size: 30px;
    display:block;
  }
  #header .logo-img img {
    display:none;
  }
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 991px) { 
  #header .logo-text {
    font-size: 24px;
    display:block;
  }
  #header .logo-img img {
    display:none;
  }
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1199px) { 
  #header .logo-text {
    font-size: 38px;
    display:block;
  }
  #header .logo-img img {
    display:none;
  }
}

#header .logo-text a {
  color: #1977cc;
}


/**
* Portal Button *

.portal-btn {
  margin-left: 25px;
  background: #1977cc;
  color: #fff;
  
  padding: 10px 15px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  display: inline-block;
}
.portal-btn:hover {
  background: #166ab5;
  color: #fff;
}
*/

.portal-btn {
  /*
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  */
  display: inline-block;
  padding: 10px 15px;
  border-radius: 5px;
  transition: 0.5s;
  margin-left: 25px;
  background: #1977cc;
  color: #fff;
  text-align: center;
}
.portal-btn i {
  font-size: 14px;
}
.portal-btn:hover {
  background: #3894E3;
  color: #fff;
}


@media (max-width: 768px) {
  .portal-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: #2c4964;
  white-space: nowrap;
  transition: 0.3s;
  border-bottom: 2px solid #fff;
  padding: 5px 2px;
  font-weight: 600;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #1977cc;
  border-color: #1977cc;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  color: #082744;
  border: none;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #1977cc;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
  color: #2c4964;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  padding: 0px 10px;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2c4964;
  border: none;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #1977cc;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #1977cc;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 60vh;
  background: url("../images/hero-wh925b.jpg") top center;
  background-size: cover;
  margin-bottom: -200px;
}
#hero .container {
  position: relative;
}
#hero h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #2c4964;
}
#hero h1 span {
  color: #1977cc;
}
#hero h2 {
  color: #2c4964;
  margin: 10px 0 0 0;
  font-size: 24px;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 992px) {
  #hero {
    margin-bottom: 0;
    height: 40vh;
  }
  #hero .container {
    padding-bottom: 0px;
    text-align: center;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
    margin-top: 40px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
@media (max-height: 600px) {
  #hero {
    height: 110vh;
  }
}

/*--------------------------------------------------------------
# Pool Promo
--------------------------------------------------------------*/

.pool-promo {
  background-color: #f1f7fc;
}

.pool-promo { 
  padding-top: 75px; 
  padding-bottom: 75px;
}

.pool-promo .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.pool-promo .content ul {
  list-style: none;
  padding: 0;
}

.pool-promo .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.pool-promo .content ul i {
  font-size: 40px;
  color: #1977cc;
  margin-right: 20px;
}

.pool-promo .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.pool-promo .content ul p {
  font-size: 15px;
}

.pool-promo .content p:last-child {
  margin-bottom: 0;
}


.pool-promo .content .more-btn {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 20px 0;
  background: #1977cc;
  color: #fff;
  text-align: center;
}
.pool-promo .content .more-btn i {
  font-size: 14px;
}
.pool-promo .content .more-btn:hover {
  background: #3894E3;
  color: #fff;
}




/*--------------------------------------------------------------
# Quote Section
--------------------------------------------------------------*/
/* .quotes {
  background-color: #1463A3;
}
.quotation-mark{
    
  margin-top: -10px;
  font-weight: bold;
  font-size:100px;
  color: #1463A3;
  font-family: "Times New Roman", Georgia, Serif;
} */

.quotes {
  padding-top: 75px;
}

.blockquote-custom {
  position: relative;
  font-size: 1.1rem;

}

.blockquote-custom-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -25px;
  left: 50px;
  background-color: #3894E3;
}


/*--------------------------------------------------------------
# Retailers Section
--------------------------------------------------------------*/
.retailers {
  background-color: #f1f7fc;
  padding-top: 75px;
}

/* .retail-img {
  width: 300px;
} */


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 140px 0 40px 0;
  overflow: hidden;
  margin-bottom: 0px;
}

.section-bg {
  background-color: #f1f7fd;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c4964;
}
.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #1977cc;
  bottom: 0;
  left: calc(50% - 20px);
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
  padding-left: 25px;
  padding-right: 25px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: #1977cc;
  margin-right: 20px;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.about .content ul p {
  font-size: 15px;
}



/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 30px;
  background: #1977cc;
  border-radius: 4px;
  color: #fff;
}
@media (max-width: 992px) {
  .why-us {
    padding-top: 10px;
  }

}

.why-us .content h3 {
  font-weight: 700;
  font-size: 28px;
  margin: 15px 0 30px 0;
}
.why-us .content p {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .why-us .content {
    text-align: center;
  }
}
.why-us .content .more-btn {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.why-us .content .more-btn i {
  font-size: 14px;
}
.why-us .content .more-btn:hover {
  background: #fff;
  color: #2487ce;
}
.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
}
.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #1977cc;
  margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}
.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}



/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.team .member .pic {
  overflow: hidden;
}
.team .member .member-info {
  position: absolute;
  top: 85%;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #2f4d5a;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  max-height: 95px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #2f4d5a;
  position: relative;
  padding-bottom: 10px;
}
.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b1cbd7;
  bottom: 0;
  left: calc(50% - 25px);
}
.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
@media (max-width: 992px) {
  .team .member {
    margin-bottom: 110px;
  }
}




/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #d5e1ed;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #1977cc;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}
.services .icon-box .icon i {
  color: #fff;
}
.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #badaf7;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}
.services .icon-box h4 {
  font-weight: 700;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 15px;
  font-size: 24px;
}
.services .icon-box h4 a {
  color: #2c4964;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 16px;
  margin: 0 10px;
}
.services .icon-box:hover {
  background: #1977cc;
  border-color: #1977cc;
}
.services .icon-box:hover .icon {
  background: #fff;
}
.services .icon-box:hover .icon i {
  color: #1977cc;
}
.services .icon-box:hover .icon::before {
  background: #3291e6;
}
.services .icon-box:hover h4 a, .services .icon-box:hover p {
  color: #fff;
}



/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  /* color: var(--contrast-color);
  background-color: var(--accent-color); */
  color: #FFF;
  background-color: #1977cc;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  /* background-color: var(--surface-color); */
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 32px;
  display: block;
  margin: 10px 0;
  font-weight: 700;
  /* color: var(--heading-color); */
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  /* font-family: var(--heading-font); */
  font-size: 16px;
}


/*--------------------------------------------------------------
# Directions
--------------------------------------------------------------*/
.directions .btn-map {

  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #2487ce;
  width: 100%;
  margin: 5px 0 25px 0;
}
.directions .btn-map:hover {
  background: #3194db;
}
.directions .info {
  width: 100%;
  background: #fff;
}
.directions .info i {
  font-size: 20px;
  color: #1977cc;
  float: left;
  width: 44px;
  height: 44px;
  background: #d6e9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.directions .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  line-height:44px;
  margin-bottom: 5px;
  color: #2c4964;
}
.directions .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
}
.directions .info .email, .directions .info .phone {
  margin-top: 40px;
}
.directions .info .email:hover i, .directions .info .address:hover i, .directions .info .phone:hover i {
  background: #1977cc;
  color: #fff;
}



/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #1977cc; 
  background-size: cover;
  padding: 60px 0;
}
.cta {
  background: linear-gradient(rgba(32,122,201, 0.9), rgba(32,122,201, 0.95)), url("../images/render-small.JPG") fixed center center;
  background-size: cover;
  padding: 120px 0;
}
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
.cta h3, .cta h4, .cta h5 {
  color: #fff;
}
.cta p {
  margin: 20px 150px;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 992px) {
  .cta p {
    margin: 20px 50px;
  }
}

.cta .cta-btn {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}
.cta .cta-btn:hover {
  background: #fff;
  color: #2487ce;
}





/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 10px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #1977cc;
  border-radius: 50%;
  padding: 8px;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #2c4964;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 20px;
  margin-bottom: 0;
}
.contact .info-box a {
  padding: 0;
  line-height: 24px;
  font-size: 20px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #1977cc;
  padding: 0 0 0 0;
  color: white;
  font-size: 14px;
}