*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* custom scroll bar */

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}
::selection{
  background: rgb(0,123,255,0.3);
}
.content{
  max-width: 1250px;
  margin: auto;
  padding: 0 30px;
}
.navbar{
  position: fixed;
  width: 100%;
  z-index: 2;
  padding: 25px 0;
  transition: all 0.3s ease;
}
.navbar.sticky{
  background: #1b1b1b;
  padding: 10px 0;
  box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
}
.navbar .content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo{
  height: 60px;
  width: 250px;
}
.navbar .menu-list{
  display: inline-flex;
}
.menu-list li{
  list-style: none;
}
.menu-list li a{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-left: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.menu-list li a:hover{
  color: #007bff;
}
.icon{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.menu-list .cancel-btn{
  position: absolute;
  right: 30px;
  top: 20px;
}
@media (max-width: 1230px) {
  .content{
    padding: 0 60px;
  }
}
@media (max-width: 1100px) {
  .content{
    padding: 0 40px;
  }
}
@media (max-width: 900px) {
  .content{
    padding: 0 30px;
  }
}
@media (max-width: 868px) {
  body.disabled{
    overflow: hidden;
  }
  .icon{
    display: block;
  }
  .icon.hide{
    display: none;
  }
  .navbar .logo{
    height: 45px;
    width: 188px;
  }
  .navbar .menu-list{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 400px;
    left: -100%;
    top: 0px;
    display: block;
    padding: 40px 0;
    text-align: center;
    background: #222;
    transition: all 0.3s ease;
  }
  .navbar.show .menu-list{
    left: 0%;
  }
  .navbar .menu-list li{
    margin-top: 45px;
  }
  .navbar .menu-list li a{
    font-size: 23px;
    margin-left: -100%;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .navbar.show .menu-list li a{
    margin-left: 0px;
  }
}
@media (max-width: 520px) {
  .navbar .logo{
    height: 30px;
    width: 125px;
  }
}

/* Home Page Animation */

.banner{
  background: url("img/hero.jpg") no-repeat;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.home-intro {
  position: relative;
  width: 100%;
  height: 100%;
  background: url(img/hero-butterfly-blue.png) repeat fixed;
  background-position: center;
  background-size: cover;
}
svg text {
  stroke: #fff;
  text-align: center;
  font-size: 900%;
  stroke-width: 3;
  color: #fff;
  letter-spacing: 2px;
  animation: textAnimate 8s infinite alternate;
  animation-delay: 0s;
}
@keyframes textAnimate {
  0% {
    stroke-dasharray: 0 50%;
    stroke-dashoffset: 20%;
  }
  100% {
    stroke-dasharray: 50% 0;
    stroke-dashoffset: -20%;
  }
}

/* Page Sections */

.page-hero{
  background-size: cover;
  background-position: center;
  display: flex;
  height: 0;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 520px;
}
.page-hero p{
  text-align: center;
  font-size: 46px;
  font-weight: 700;
  color: #007bff;
}
.pagesection{
  padding: 10px 40px;
}
.pagesection p{
  padding-bottom: 10px;
  text-align: justify;
  font-weight: 500;
}
.pagesection a{
  text-decoration: none;
  color: #007bff;
  font-weight: 600;
}
.h1{
  font-size: 38px;
  font-weight: 700;
  padding-bottom: 15px
}
.h2{
  font-size: 25px;
  font-weight: 600;
  color: #007bff;
  padding-bottom: 20px;
}
.page-header{
  max-width: 1250px;
  margin: auto;
  padding: 15px 20px;
}
.page-contentbox{
  max-width: 1250px;
  margin: auto;
  padding: 15px 20px;
  background-color: #196de5;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-contentbox .h2{
  color: white;
}
.page-contentbox a{
  color: black;
}
.contentbox-img{
  max-width: 300px;
  flex: 0 0 300px;
  margin-left: 20px;
}
.contentbox-img img{
  max-width: 100%;
}
.page-content{
  max-width: 1250px;
  margin: auto;
  padding: 15px 20px;
}

@media (max-width: 1100px) {
  .page-hero{
    min-height: 400px;
  }
  .pagesection{
    padding: 10px 30px;
  }
}
@media (max-width: 868px) {
  .page-hero{
    min-height: 300px;
  }
  .pagesection{
    padding: 5px 20px;
  }
}
@media (max-width: 720px) {
  .page-contentbox{
    flex-direction: column;
  }
  .contentbox-img{
    max-width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 520px) {
  .page-hero{
    min-height: 250px;
  }
  .pagesection{
    padding: 0 10px;
  }
}
@media (max-width: 440px) {
  
  .pagesection{
    padding: 0 0;
  }
}

/* Contact Form */

.form-container{
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  padding: 20px;
  background-color: #196de5;
  color: white;
}
.input-row{
  margin-bottom: 10px;
}
.input-row label{
  margin-bottom: 3px;
  display: block;
}
.input-row input,
.input-row textarea{
  width: 100%;
  padding: 10px;
  border: 0;
  border-radius: 3px;
  outline: 0;
  margin-bottom: 3px;
  /*font-size: 20px;
  font-family: arial;*/
}
.input-row textarea{
  height: 100px;
}
.input-row input[type="submit"]{
  width: 100px;
  display: block;
  margin: 0 auto;
  text-align: center;
  color: white;
  cursor: pointer;
  background: #1b1b1b;
}
.success{
  background: #9fd2a1;
  padding: 5px 10px;
  text-align: center;
  color: #326b07;
  border-radius: 3px;
  font-synthesis: 14px;
  margin-top: 10px;
}

/* Footer */

footer{
  background: #1b1b1b;
  height: auto;
  width: 100vw;
  color: white;
}
.footer-content{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px 0;
}
.footer-content h3{
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 3rem;
}
.footer-content .logo-section{
  padding: 10px 0;
}
.footer-content .logo{
  height: 45px;
  width: 188px;
}
.footer-content p{
  max-width: 500px;
  margin: 0 auto;
  line-height: 28px;
  font-size: 14px;
}
.footer-bottom{
  background: black;
  width: 100vw;
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p{
  font-size: 14px;
  word-spacing: 2px;
  text-transform: capitalize;
}