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

html {
  scroll-behavior: smooth;
}

:root {
  --primary-color:rgb(255, 194, 0);
  --overlay-primary-color: rgba(255, 194,0, 0.95);
  --overlay-color: rgba(18, 124, 179,0.6);
  --secondary-color: rgb(18, 125, 179);
  --container-width: 1100px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body h2 {
  font-size: 25px;
} 



body h3 {
  font-size: 20px;
}

body h4 {
  font-size: 16px;
}

body p {
  font-size: 16px;
}

.navbar {
  width: 100%;
  background: var(--primary-color);
  position: sticky;
  top: 0;
  box-shadow: 0 3px 10px #999;
  z-index: 4;
}


.container {
  max-width: var(--container-width);
  margin: auto;
  
}

.section-header .container {
  padding: 10px 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.section-header h1,
.section-header h3 {
  font-size: 16px;
  color: #000;
  margin: 10px 0;
}

.navbar .logo {
  font-size: 20px;
  font-weight: bold;
}

/* .navbar .logo h4 {
  color: #000;
} */

.logo a {
  
  text-decoration: none;
}



.navbar .navbar-actions {
  /* flex-grow: 0; */
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.navbar .cta-buttons {
  flex-grow: 1;
}


.navbar .cta-buttons> div,
.navbar .cta-buttons> a {
  height: 50px;
  width: 50px;
  margin-left: 15px;
  color: #000;
  text-decoration: none;

}

.navbar .cta-buttons .phone-number {
  display: none;
  width: auto;
  margin-right: 20px;
}

.navbar .cta-buttons .phone-number p {

  font-size: 25px;
  font-weight: bold;
}

.navbar .cta-buttons .phone-number div 


.navbar .navbar-actions> a:first-child {
  margin-left: 0;
}

.navbar .navbar-actions> div:hover,
.navbar .navbar-actions> a:hover {
  cursor: pointer;
}


.call-btn, 
.msg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 5px;}

  .call-btn:hover,
  .msg-btn:hover {
    background: #ffffff77;
  }


  .btn-ghost:hover {
    background: #abcddc;
  }
  
  .btn-primary:hover {
    background: #ffdf77;
    border-color: #ffdf77;
  }

.hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50px;

}

.hamburger >div {
  width: 26px;
  height: 2px;
  background: #000;
  position: relative;
  top: 0;
  left: 0;
  transition: all 0.4s ease-in-out;
}

.hamburger >div::after, 
.hamburger >div::before
{
  content: '';
  width: 100%;
  height: 2px;
  background: #000; 
  position: absolute;
  top: 6px;

}

.hamburger >div::before {
  top: -6px;
}

.hamburger.opened >div::before,
.hamburger.opened >div::after {
  top: 0;
  transform: rotate(90deg);
}

.hamburger.opened >div {
  transform: rotate(135deg);
}





/* Menu overlay */

.menu {
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3;
  background: var(--overlay-primary-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 25px;
  transition: all 0.4s ease-in-out;
  /* border-radius: 100%;
  scale: 0%; */
}

.menu .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.menu .active,
.menu ul li:hover {
  background: #ffffff77;
  cursor: pointer;
}

#menu.opened {
  top: 0;
  border-radius: 0;
}

.menu .close-menu {
  position: relative;
  top: 0;
  right: 0;
}

.menu-items {
  width: 100%;
  max-width: 500px;
}

.menu ul li {
  list-style: none;
}

.menu ul li a{
  display: block;
  padding: 20px;
  width: 100%;
  border-bottom: #000 1px dashed;
}

.menu ul li:last-child {
  border-bottom: none;
}

.menu ul li a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

/* Hero Section */

.hero-section::before {
  content: '';
  background: url('../img/hero-image-min.jpg') center center/cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;

}

.hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  background: var(--overlay-color);
  

}

.hero-section .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 536px;
}

.hero-content h2 {
  margin-bottom: 38px;

}

.hero-content >p {
  margin-bottom: 15px;
}

.hero-content >p span.strong {
  font-weight: bold;
  text-transform: uppercase;
}

.hero-content > .cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  max-width: 352px;
  margin: auto;
}

.btn {
  text-align: center;
  display: block;
  width: 146px;
  padding: 10px 0;
  margin: 15px auto;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}



.btn-primary {
  color: #000;
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-ghost {
  color: #000;
  border: 2px solid #000;
}

.btn-ghost a {
  color: #000;
}


.btn-fade {
  background: rgba(129, 129, 129, 0.8);
  color: #fff;
}


.hero-section .btn-scroll {
  position: absolute;
  bottom: 50px;
}

#scroll-to-services-list-header {
  display: none;
}

#services-list-header {
  background: var(--primary-color);
  box-shadow: 0 3px 10px #999;
  margin-bottom: 40px;
}

#services-list-header .container {
  z-index: 3;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 30vh;
}

.services-item {
  color: #000;
  text-decoration: none;
  padding: 10px 36px;
  border-radius: 5px;
}


.services-item h4 {
  font-size: 25px;
  margin-bottom: 15px;
}

.services-item p {
  margin-bottom: 20px;
}

.services-item .read-more-text {
  font-weight: 700;
}


.services-item .read-more-text:hover {
  color: var(--secondary-color);
}

/* About us page */

.about-us-columns .container {
  min-height: 95vh;
  display: grid;
  grid-template-columns: 1fr;
}

.about-us h2 {
  margin-bottom: 15px;
}

.about-us p {
  margin-bottom: 10px;
}

.contact-details {
  display: none;
}




.about-us-columns .column-container {
  margin: 30px;
}

/* Service Page Styling */

.service-page-columns .container {
  min-height: 95vh;
  display: grid;
  grid-template-columns: 1fr;
}

/* .service-page-columns .column-header, */
.service-page-columns .column-footer {
  /* background: var(--overlay-color); */
  padding: 15px;
  margin: 50px 0;
  border-radius: 5px;
  box-shadow: 0 3px 10px #999;;
}

.service-description h2 {
  margin-bottom: 15px;
}

.service-description .column-container > p, 
.service-description .column-container >ul {
  margin-bottom: 10px;
}

.service-description ul li {
  margin-left: 20px;
}



.service-page-columns .column-container {
  margin: 30px;
}

.service-page-columns .cta-buttons {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 352px;

  margin: 15px auto;
}

.service-page-columns .cta-buttons .btn {
  margin: 5px auto;
}

.service-page-columns .cta-text {
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}


/* Footer */


footer {
  color: #fff;
  background: #313131;
  text-align: center;
}

footer .container {
  padding: 15px;
}

footer h4 {
  font-size: 16px;
  font-weight:normal;
  margin: 15px;
}


