@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1.5;
    font-family: "Montserrat", sans-serif !important;
    background-color: #ffffff;
    position: relative;
}

a {
    color: #f95c06;
    text-decoration: none;
    background-color: transparent;
}

.main-header {
    background-color: #171616;
    padding: 12px 10px;
    position: sticky;
    top: 0;
    z-index: 2;
}

.main-header .main-logo img{
    width: 60%;
}

.cta-btn {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.cta-btn .cta-btn-icon{
    background-color: #7ac102;
    color: #ffffff;
    border-radius: 5px;
    height: 40px;
    width: 40px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-btn h6{
    color: #ffffff;
    font-size: 12px;
    margin-bottom: 0px;
}

.cta-btn h5{
    margin-bottom: 0;
}

.cta-btn h5 a{
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
}

.hero-secion {
    background-image: url("../img/hero-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 60px 10px;
}

.hero-secion .hero-img {
    text-align: right;
}

.hero-secion .hero-img img{
    width: 90%;
}

.hero-secion .sub-title {
    font-size: 14px;
    text-transform: uppercase;
    color: #f95c06;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-secion .main-heading {
    color: #333333;
    text-transform: uppercase;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 0px;
}

.hero-secion h3{
    color: #333333;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-secion p{
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}

.hero-secion .col-md-8{
    place-content: center;
}

.service-section {
    background-color: #f8f8f8;
    padding: 60px 10px;
}

.service-section.dark{
    background-color: #333333;
}

.service-section.grey{
    background-color: #f3f3f3;
}

.service-section .col-md-6 {
    place-content: center;
}

.service-section .main-heading {
    color: #333333;
    text-transform: capitalize;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-section.dark .main-heading {
    color: #ffffff;
}

.service-section .service-img img{
    width: 85%;
}

.service-section ul{
    padding-left: 24px;
}

.service-section ul li{
    text-transform: capitalize;
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
}

.service-section.dark ul li {
    color: #ffffff;
}

.form-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 10px 10px 18px #ecececb0;
    width: 80%;
    margin: auto;
}

.form-box label{
    margin-bottom: 2px;
    font-size: 12px;
}

.form-control::placeholder, .form-control {
    font-size: 12px !important;
}

.form-control:focus{
    box-shadow: unset !important;
}

.form-btn {
    background-color: #7ac102;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border: unset;
    border-radius: 8px;
    width: 100%;
    padding: 8px;
}

.sticky-contat-btn a{
    position: fixed;
    right: -45px;
    bottom: 55%;
    background-color: #f95c06;
    padding: 10px 20px;
    border-radius: 10px 10px 0 0;
    color: #ffffff;
    text-decoration: none;
    transform: rotate(270deg);
    z-index: 999;
}

.sticky-contat-btn a:hover {
 color: #ffffff;
}


.sticky-whatsapp-btn a{
    height: 50px;
    width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background-color: #7ac102;
  font-size: 22px;
  color: #ffffff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

@media (max-width: 575px){
    .cta-btn{
        display: none;
    }

    .main-header .col-md-4{
        text-align: center;
    }

    .hero-secion .hero-img {
        text-align: center;
        margin-top: 20px;
    }
    
    .hero-secion .hero-img img{
        width: 90%;
    }

    .service-section .service-img {
        text-align: center;
        margin-bottom: 30px;
    }

    .service-section .service-img img {
        width: 90%;
    }

    .service-section.dark .row {
        flex-direction: column-reverse;
    }

    .form-box {
        width: 100%;
    }
}