@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --black-color:#000;
  --white-color:#fff;
  --gray-bg-color:#F8F8F8;
  --text-color-secondary:#434343;
  --gradian-color-first:#1BA8A7;
  --gradian-color-second:#5773B8;
  --font-family-Montserrat: "Montserrat", sans-serif;
  --font-bold-600:600;
  --font-normal-400:400;
}

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

body {
  font-family: var(--font-family-Montserrat);
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  color: #000;
}

.header-section {
  background: url("../images/banner-bg.png") center top no-repeat;
  background-size: cover;
}

.navbar {
  padding: 1rem 0;
  transition: background-color 0.3s ease;
}
.navbar .navbar-nav .nav-link {
  padding: 1rem 2rem;
}

.navbar.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0px 5px 5px #f0f0f0;
  z-index: 9;
}

.top-social-links {
  position: fixed;
  top: 150px;
  right: 6%;
  height: 300px;
  width: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 10;
}
.top-social-links .top-line {
  background: url("../images/line-1.png") no-repeat center;
  width: 20px;
  height: 125px;
}
.top-social-links .social-links {
  width: 20px;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.top-social-links .bottom-line {
  background: url("../images/line-2.png") no-repeat center;
  width: 20px;
  height: 125px;
}

.btn-sub-title {
  padding: 2px 20px;
  border-radius: 40px;
  border: 1px solid var(--black-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  font-size: 1.25rem;
}

.btn-sub-title.dark-bg {
  border: 1px solid var(--white-color);
}

.btn-gradiant {
  min-width: 100px;
  font-size: 1rem;
  font-weight: var(--font-bold-600);
  font-style: normal;
  padding: 0.625rem 1.275rem;
  background-image: linear-gradient(to right, var(--gradian-color-first), var(--gradian-color-second));
  color: #fff;
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.6s ease-in-out;
}

.btn-gradiant:hover {
  background-image: linear-gradient(to left, var(--gradian-color-first), var(--gradian-color-second));
  color: #fff;
}

.btn-gradiant.btn-contact {
  display: inline-block;
  margin-top: 6px;
}

.btn-gradiant.btn-contact svg {
  width: 20px;
  height: 20px;
}

.page-title {
  font-size: 2.75rem;
}

.banner-wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
  width: 85%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 2rem;
}

.text-desc {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin: 0;
  padding: 0;
}

.banner-wrapper h1.banner-title {
  font-size: 5.5rem;
  line-height: 100%;
  margin: 0;
  padding: 0;
}

.sec-pd-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.sec-pt-100 {
  padding-top: 100px;
}

.sec-pb-100 {
  padding-bottom: 100px;
}

.gray-bg {
  background-color: var(--gray-bg-color);
}

.gradiant-bg {
  background-image: linear-gradient(to top, var(--gradian-color-first), var(--gradian-color-second));
  color: #fff;
}

.serv-tile-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}

.serv-wrapper {
  background: #fff;
  padding: 1.25rem;
  border-radius: 1.25rem;
}

.serv-wrapper .serv-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
}

.serv-wrapper .serv-heading h3 {
  font-size: 1.375rem;
}

.serv-wrapper ul.list-items {
  list-style-image: linear-gradient(to right, var(--gradian-color-first), var(--gradian-color-second));
  list-style-type: disc;
  margin: 0;
  padding: 1.75rem 1rem;
}

.serv-wrapper ul.list-items li a {
  text-decoration: none;
  font-size: 1.25rem;
  color: var(--text-color-secondary);
  margin: 0;
  padding: 0;
}

.counter-section .counter-items {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.7);
}

.counter-item:last-child {
  border-right: 0px solid rgba(255, 255, 255, 0.7);
}

.counter-item .counter-number {
  font-size: 2.75rem;
}

.counter-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
  padding-left: 100px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.single-testimonial-item {
  position: relative;
  padding: 50px 10px 50px;
}

.single-testimonial-item .double-qoutes {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 20px;
  left: 20px;
  background: url("../images/icons/qoutes.svg") no-repeat center;
  background-size: contain;
  display: block;
}

.testimonial-content {
  background: #fff;
  box-shadow: 0px 0px 10px #e9e9e9;
  padding: 20px 10px;
  border-radius: 6px;
  min-height: 150px;
}

.testimonial-person {
  display: flex;
  align-items: flex-end;
  position: absolute;
  bottom: 0px;
  left: 20px;
  gap: 10px;
}

.testimonial-person .stars i {
  color: #ffd832;
}

.client-testimonial-carousel .owl-dots button {
  height: 5px;
  background: var(--text-color-secondary);
  width: 20px;
  display: inline-block;
  margin: 5px;
  transition: 0.2s;
  border-radius: 2px;
}

.client-testimonial-carousel button.owl-dot.active {
  background: linear-gradient(to right, var(--gradian-color-first), var(--gradian-color-second));
  width: 30px;
}

.client-testimonial-carousel .owl-dots {
  text-align: center;
  margin-top: 25px;
}

.form-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.image-wrapper {
  position: relative;
  width: 25%;
  height: 385px;
  z-index: 2;
  background-image: linear-gradient(to top, var(--gradian-color-first), var(--gradian-color-second));
}

.image-wrapper::after {
  content: "";
  position: absolute;
  width: 385px;
  height: 385px;
  border-radius: 50%;
  top: 0;
  right: -182px;
  z-index: 4;
  background: url("../images/cont.png") no-repeat center center;
  background-size: contain;
  background-position-x: -40px;
}

.image-wrapper::before {
  content: "";
  position: absolute;
  width: 385px;
  height: 385px;
  border-radius: 50%;
  top: 0;
  right: -182px;
  z-index: 3;
  background-image: linear-gradient(to top, var(--gradian-color-first), var(--gradian-color-second));
}

.form-wrapper {
  position: relative;
  width: 65%;
  height: auto;
  background: var(--gray-bg-color);
  z-index: 1;
}

.form-wrapper::before {
  content: "";
  position: absolute;
  width: 445px;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: -222px;
  background: var(--gray-bg-color);
  z-index: -1;
}

.form-wrapper .form-container {
  width: 80%;
  padding-top: 30px;
  padding-left: 10%;
}

.form-control, .form-select {
  margin-bottom: 20px;
}

.footer-section {
  background: url("../images/footer-bg1.png") right center no-repeat;
  background-size: contain;
}

.footer-wrap, .footer-logo, .footer-bottom {
  text-align: center;
}

.footer-top {
  padding-bottom: 30px;
}

.footer-bottom {
  padding-top: 10px;
}

.footer-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 40px 0 10px;
}

.footer-menu ul li {
  padding: 0px 20px;
}

.footer-menu ul li a {
  text-decoration: none;
  color: var(--black-color);
  font-size: 1rem;
}

.footer-social ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 10px;
}

.footer-social ul li {
  padding: 0px 5px;
}

.footer-social ul li a {
  text-decoration: none;
}

/* -----------------------------------
      Gallery Section
--------------------------------------*/
.portfolio-section {
  padding: 50px 0;
  background-color: var(--gray-bg-color);
}

.portfolio-section h2 {
  font-size: 2.75rem;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
}

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

.control {
  background: #000;
  color: #fff;
  padding: 5px 10px;
  border: 0px solid #343a40;
  border-radius: 3px;
  margin: 5px;
  cursor: pointer;
  transition: all 0.5s ease;
}

.control:hover {
  background-image: linear-gradient(to top, var(--gradian-color-first), var(--gradian-color-second));
}

.mixitup-control-active {
  color: #fff;
  background-image: linear-gradient(to top, var(--gradian-color-first), var(--gradian-color-second));
}

.fancybox-container button:focus {
  outline: 0;
  box-shadow: none;
}

.portfolio-item {
  list-style: none;
  padding-top: 30px;
}

.portfolio-item li {
  position: relative;
}

.pd {
  padding: 0;
  padding: 10px;
}

.pd img {
  height: 180px;
  transition: all 0.5s;
}

.portfolio-overlay {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  text-align: center;
  visibility: hidden;
  transition: all 0.5s;
  transform: scale(0);
}

.portfolio-overlay p,
.portfolio-overlay a {
  position: relative;
  z-index: 4;
}

.portfolio-overlay::before {
  content: "";
  width: 0;
  height: 0;
  border-width: 0;
  position: absolute;
  left: 10%;
  top: 10%;
  transition: 50ms height ease 150ms;
  z-index: 3;
}

.portfolio-overlay::after {
  content: "";
  width: 0;
  height: 0;
  border-width: 0;
  position: absolute;
  right: 10%;
  bottom: 10%;
  transition: 100ms width ease 200ms;
  z-index: 3;
}

.portfolio-item:hover .portfolio-overlay::before {
  width: 80%;
  height: 80%;
  border-top: 1px solid #50977f;
  border-right: 1px solid #50977f;
  transition: width 0.1s ease 0.3s, height 0.1s ease 0.5s;
}

.portfolio-item:hover .portfolio-overlay::after {
  width: 80%;
  height: 80%;
  border-bottom: 1px solid #50977f;
  border-left: 1px solid #50977f;
  transition: width 0.1s ease 0.6s, height 0.1s ease 0.7s;
}

.portfolio-item li:hover .portfolio-overlay {
  visibility: visible;
  transform: scale(1);
}

.portfolio-overlay .category {
  margin-top: 70px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.portfolio-overlay .magnify-icon {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background: #50977f;
  margin: 0 5px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s;
}

.portfolio-overlay .magnify-icon:hover {
  background: #000;
}

.portfolio-overlay .magnify-icon p span i {
  font-size: 15px;
  color: #fff;
  line-height: 40px;
  cursor: pointer;
}
 .form-control, .form-select {
    margin-bottom: 20px !important;
} 
 #mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error{
  background-color :  transparent !important;
  margin: -15px 0 1em 0 !important;
 }
#mc_embed_signup .mc-field-group label {
    display: block;
    margin-bottom: 3px;
    font-weight: 500 !important;
    color: #534d4d !important;
}
#mc_embed_signup .mc-field-group{
  padding-bottom: 0px !important;
}
#mc_embed_signup .mc-field-group select{
  text-indent: 2% !important;
}
.content-page h2{
  font-size: 1.5em;
}

.content-page h3{
  font-size: 1.5em;
}
#top-bar .navbar-nav .nav-link {
  color: #FFFFFF !important;
}
#top-bar {
  background-color: #4A7EB4 !important;
}
.footer-menu li {
  padding-bottom: 6px  !important;
}
.footer p a {
  color: #000000 !important;
  text-decoration: none !important;
}
.footer-menu li a{
  color: #000000 !important;
  text-decoration: none !important;
}
#contact-us{
  padding-bottom: 25px !important;
}

.portfolio-item li img{
    width:100% !important;
  }
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .sec-pd-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .sec-pt-100 {
    padding-top: 50px;
  }
  .sec-pb-100 {
    padding-bottom: 50px;
  }
  .navbar .navbar-nav .nav-link {
    padding: 1rem 1rem;
  }
  .banner-wrapper h1.banner-title {
    font-size: 3.5rem;
  }
  .serv-wrapper {
    margin: 20px 0;
  }
  .counter-details {
    align-items: center;
    padding-top: 20px;
  }
  .counter-details .page-title {
    text-align: center;
  }
  .form-section {
    flex-direction: column;
  }
  .form-section .image-wrapper {
    width: 100%;
  }
  .form-section .image-wrapper::before {
    display: none;
  }
  .form-section .image-wrapper::after {
    right: 182px;
  }
  .form-wrapper {
    position: relative;
    width: 100%;
    height: 445px;
    background: var(--gray-bg-color);
    z-index: 1;
  }
  .form-wrapper .form-container {
    width: 90%;
  }
  .form-wrapper .form-wrapper::before {
    display: none;
  }
}
@media only screen and (min-width: 375px) and (max-width: 812px) {
  .sec-pd-100 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .sec-pt-100 {
    padding-top: 30px;
  }
  .sec-pb-100 {
    padding-bottom: 30px;
  }
  .navbar-brand svg {
    width: 250px;
  }
  .top-social-links {
    display: none;
    position: absolute;
    top: 80px;
    right: 6%;
    height: 300px;
    z-index: 1;
  }
  .banner-wrapper h1.banner-title {
    font-size: 2.5rem;
  }
  .banner-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
    row-gap: 1rem;
  }
  .btn-sub-title {
    font-size: 1rem;
  }
  .text-desc {
    font-size: 1rem;
    line-height: 1.25rem;
  }
  .page-title {
    font-size: 1.75rem;
  }
  .serv-wrapper {
    margin: 20px 0;
  }
  .counter-details {
    align-items: center;
    padding-top: 20px;
    padding-left: 0;
  }
  .counter-details .page-title {
    text-align: center;
  }
  .counter-items {
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  .counter-items .counter-item {
    padding: 2rem 0.25rem;
  }
  .counter-items .counter-item .counter-number {
    font-size: 1.25rem;
    font-weight: 500;
  }
  
  .form-section {
    flex-direction: column;
  }
  .form-section .image-wrapper {
    width: 100%;
  }
  .form-section .image-wrapper::after {
    right: 0px;
    width: 360px;
    background-size: contain;
  }
  .form-section .image-wrapper::before {
    display: none;
  }
  .form-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--gray-bg-color);
    z-index: 1;
  }
  .form-wrapper .form-container {
    width: 90%;
  }
  .form-wrapper .form-wrapper::before {
    display: none;
  }
  .footer-menu ul {
    display: grid;
  }
  .footer-menu ul li {
     padding: 6px 15px;
  }
  .footer-menu ul li a{
    font-size: 16px;
  }
  #top-bar .navbar-nav .nav-link {
    padding: 5px 0px 0px 0px  !important;
  }
}/*# sourceMappingURL=style.css.map */