@import url('https://fonts.googleapis.com/css2?family=Krona+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kufam:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Paytone+One&display=swap');

@font-face {
    font-family: 'MilkywayDemo';
    src: url('../fonts/Milkyway\ DEMO.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.pt-30{
    padding-top: 30%;
}

.navbar-nav  .navbar-brand {
  font-size: 50px;
  font-weight: bold;
  color: black;
  padding-bottom: 15px;
}
.navbar-nav {
  align-items: center;
}
.navbar .navbar-nav .nav-link {
  color: #5E7E65;
  font-size: 15px;
  padding: 0.5em 5em;
  font-family: "Krona One", sans-serif;
}

.custom-toggler {
    border: none;
    background: transparent;
    padding: 0.5rem;
    outline: none;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background-color: #333; /* Customize color */
    border-radius: 2px;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),
                opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1),
                background-color 0.3s ease;
    display: block;
    position: relative;
}


/* Animation when toggled */
.custom-toggler.collapsed .hamburger span:nth-child(1) {
    transform: rotate(0deg) translateY(0);
}

.custom-toggler:not(.collapsed) .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler:not(.collapsed) .hamburger span:nth-child(2) {
    opacity: 0;
}

.custom-toggler:not(.collapsed) .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.banner .b-content {
    position: absolute;
    top: 40%;
    left: 15%;        
}

.banner .b-content h1{
    color: white;
    font-size: 75px;
    font-family: "Kufam", sans-serif;
    font-weight: bold;
    text-align: left;
    text-shadow: 10px 10px 5px rgba(0, 0, 0, 0.3);
}

.banner .b-content p{
    color: white;
    font-size: 20px;
    font-family: "Kufam", sans-serif;
    font-weight: 600;
    text-align: left;
}

.banner .b-content span{
    color: white;
    font-size: 30px;
    font-family: "Kufam", sans-serif;
    font-weight: bold;
    text-align: left;
}

.con-form{
    padding: 70px 0px;
}

.con-form .contact-details .box img{
    background: #2F5C5C;
    padding: 10px;
    border-radius: 100%;
    width: 40px;
    height: auto;
    margin-right: 15px;
}

.con-form .contact-details .box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.con-form .contact-details .box p,
.con-form .contact-details .box a {
    margin: 0;
    line-height: 1.5;
    display: block;
    font-family: "Kufam", sans-serif;
    font-size: 18px;
    color: #0B0B0B;
    text-decoration: none;
}

.con-form .contact-details .box a:hover{
    color: #2F5C5C;
}

.con-form .contact-details .box:first-child {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
}

.con-form .contact-details .box:first-child img {
    margin: 0 0 10px 0;
}

.map iframe{
    width: 100%;
    height: 400px;
}

.faqs{
    padding-top: 50px;
    padding-bottom: 50px;;
}

.faqs h2, .home-blog h2{
    font-size: 65px;
    font-family: 'MilkywayDemo', sans-serif;
    color: #2F5C5C;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.faqs .left-side{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.faqs .left-side h3{
    font-size: 40px;
    font-family: 'MilkywayDemo', sans-serif;
    color: #0B0B0B;
}

.faqs .left-side p{
    font-size: 15px;
    font-family: "Krona One", sans-serif;
    color: #0B0B0B;
}

.faqs .left-side a{
    font-size: 15px;
    font-family: "Krona One", sans-serif;
    color: #0B0B0B;
    border: 2px solid #0B0B0B;
    border-radius: 25px;
    padding: 10px 20px;
    width: fit-content;
    text-decoration: none;
}

.faqs .right-side .accordion h3 .accordion-button{
    font-size: 20px;
    font-family: "Krona One", sans-serif;
    color: #0B0B0B;
    padding: 20px 10px;
}

.faqs .right-side .accordion h3 .accordion-button:not(.collapsed){
    background-color: #fff;
}

.faqs .right-side .accordion p{
    font-size: 15px;
    font-family: "Krona One", sans-serif;
    color: #0B0B0B;
}

.faqs .right-side .accordion .accordion-item{
    border-bottom: 1px solid #696666;
}

.faqs .right-side .accordion .accordion-item:last-child {
  border-bottom: none;
}

.faqs .right-side .accordion-button::after {
  content: '+';
  font-size: 1.2rem;
  margin-left: auto;
  background-image: none !important;
  transform: none !important;
}

.faqs .right-side .accordion-button[aria-expanded="true"]::after {
  content: '-';
}

footer{
    background-color: #2F5C5C;
    color: #fff;
}

footer .one{
    padding: 70px 0px 35px 0px;
}

footer .one p, footer .one ul li a, footer .two p{
    font-family: "Krona One", sans-serif;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
}

footer .one ul li a:hover{
    color: #ffc34d;
}

footer .one h3{
    font-family: "Krona One", sans-serif;
    font-size: 20px;
    color: #fff;
}

footer .one ul{
    list-style: none;
    padding-left: 0px;
}

footer .one p{
    line-height: 22px;
}

footer .one ul{
    line-height: 28px;
}

footer .the-company{
    padding-left: 6rem;
}

footer .two{
    padding: 20px 0px 0px 0px;
    border-top: 1px solid #fff;
}

input[type="text"], input[type="email"], input[type="tel"], textarea {
    width: 100%;
    padding: 20px 25px;
    border-radius: 35px;
}

input.wpcf7-form-control.wpcf7-submit {
    border-radius: 35px;
    padding: 20px 40px;
    color: #fff;
    background: #2F5C5C;
    font-size: 20px;
    font-weight: bold;
}