/* Base CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: "Raleway", sans-serif;
}
.container {
    max-width: 1225px;
    padding: 0px 20px;
    margin: auto;
}
.theme__btn {
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    padding: 16px 40px;
    color: #fff;
    background-color: #70B900;
    display: inline-block;
    text-decoration: none;
    transition: all .3s;

}
.theme__btn:hover {
    background-color: #1A161B;
}
/* header area css start */
.header__area {
    background: url('../img/header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 30px;
    position: relative;
}
.header__area::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
}

.menu__area {
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.menu__area a.logo{
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    font-weight: 700;
    color: #FFFFFF;
    display: inline-block;
    letter-spacing: 2.6px;
    text-decoration: none;
}
.menu__btn {
    display: flex;
    gap: 20px;
}
.menu__btn a {
    padding: 16px 30px;
}
.menu__btn .call__btn {
    background-color: #1A161B;
}
.menu__btn .call__btn:hover {
    background-color: #70B900;
}
.hero__area {
    padding: 116px 0px 205px;
    position: relative;
    z-index: 1;
    height: 71vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__wrapper {
    text-align: center;
}
.hero__wrapper .hero__icon {
    width: 148px;
    margin-bottom: 12px;
}
.hero__title {
    color: #fff;
    font-size: 64px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 67px;
    letter-spacing: 20px;
    margin-bottom: 14px;
}
.hero__desc {
    color: #fff;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0.5px;
}
/* header area css end */

/* content area css start */
.content_area {
    padding: 75px 0px;    
}

.content_area .image {
  float: left;
  margin-left: 12.5%;
  width: 25%;
}

.content_area .content {
  float: left;
  padding-top: 100px;
  margin-left: 50px;
  width: 50%;
}

.content_area .image img {
  max-width: 100%;
  border-radius: 50%;
}

.clear {
  clear: both;
  width: 100%;
  height: 20px;
}
/* content area css end */

/* download area css start */
.downlaod__area {
    padding: 75px 0px;
}
.download__btn__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
/* download area css end */

/* footer area css start */
.footer__area {
    padding-top: 85px;
    background-color: #1A161B;
}
.footer__wrapper {
    padding-bottom: 88px;
    display: flex;
    justify-content: space-between;
}

.footer__logo img {
    width: 110px;
    margin-bottom: 17px;
}
.footer__widget__desc {
    font-family: 'Inter', sans-serif;
    color: #ffff;
    font-size: 14px;
    line-height: 21px;
    max-width: 291px;
}

.footer__widget__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 2.6px;
    margin: 14px 0px 28px;
    color: #fff;
    text-transform: uppercase;
}
.footer__widget ul li {
    list-style-type: none;
    color: #ffff;
    font-size: 16px;
    line-height: 38px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all .3s;
}
.footer__widget ul li a {
    color: #ffff;
    font-size: 16px;
    line-height: 38px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all .3s;
}
.footer__widget ul li a span{
    transition: all .3s;
}
.footer__widget ul li a:hover span {
    color: #70B900;

}
.footer__widget ul li a:hover {
    opacity: 0.6;
}
.footer__widget ul li a.contact:hover {
    opacity: 1;
}
.footer__social ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer__social ul li {
    margin-bottom: 20px;
}
.footer__social ul li a .social__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #D9D9D9;
}
.footer__social ul li a:hover {
    opacity: 1;
}
.footer__social ul li a:hover .social__icon {
    background-color: #70B900;
    opacity: 1;
}

.copyright__area {
    padding: 11px 0px;
    background-color: #000;
}
.copyright__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyright__wrapper p,
.copyright__wrapper a {
    font-size: 14px;
    line-height: 38px;
    letter-spacing: 0.5px;
    transition: all .3s;
    color: #fff;
    text-decoration: none;
}
.copyright__wrapper a:hover {
    opacity: .6;
}
/* footer area css end */