:root {
    --green: #7fb943;
    --white: #fff;
    --blue: #0174e1;
    --light-grey: #fafafa;
}

@media (min-width: 768px) {
    .container {
        max-width: 90%;
    }
}

h1,
h2,
h3,
h4,
h5,
p,
body {
    font-family: "Poppins", sans-serif;
}

body,
li,
a,
p {
    font-weight: 400;
}

li,
input,
button,
a {
    outline: none !important;
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="number"]::placeholder {
    opacity: 1;
    color: var(--white);
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

select{ appearance: none; background-image: url(images/arrow.png); background-repeat:no-repeat; background-position: 92% center;
    background-size: 14px;}

.section_title {
    font-family: "GiuliaPlain";
    color: #272727;
    font-weight: normal;
    font-size: 54px;
    margin-bottom: 50px;
    text-align: center;
}
.section_title span {
    color: var(--green);
}

@media (max-width: 1200px) {
    .section_title {
        font-size: 40px;
        margin-bottom: 30px;
    }
}
@media (max-width: 991px) {
    .section_title {
        font-size: 38px;
        margin-bottom: 25px;
    }
}
@media (max-width: 800px) {
    .section_title {
        font-size: 34px;
        margin-bottom: 20px;
    }
}
@media (max-width: 425px) {
    .section_title {
        font-size: 30px;
        margin-bottom: 30px;
    }
}
/** Header **/
header {
    padding: 10px 0px;
}
header .row {
    align-items: center;
}
header .logo_img {
    width: 100%;
    max-width: 120px;
    display: block;
}
header .logo_img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: left;
}
header .top_contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
header .top_contact ul {
    padding-inline-start: 0px;
    margin: 0px;
    margin-left: 40px;
}
header .top_contact ul li {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    color: #282828;
}
header .top_contact ul li i {
    font-size: 25px;
    margin-right: 10px;
    vertical-align: middle;
}
header .top_contact ul li span {
    display: block;
    text-align: left;
    color: #c9c9c9;
    font-weight: 600;
    margin-bottom: 5px;
}
header .top_contact ul li a {
    color: inherit;
    text-decoration: none;
}
header .top_contact ul:first-child {
    margin-left: 0px;
}
@media (max-width: 767px) {
    header .logo_img {
        max-width: 90px;
    }
    header .top_contact ul li {
        font-size: 13px;
        line-height: 13px;
    }
    header .top_contact ul li i {
        font-size: 16px;
        margin-right: 5px;
    }
}
@media (max-width: 575px) {
    header .logo_img {
        max-width: 90px;
        margin: 0px auto;
        margin-bottom: 10px;
    }
    header .top_contact {
        justify-content: center;
    }
    header .top_contact ul li {
        font-size: 13px;
        line-height: 13px;
    }
    header .top_contact ul li i {
        font-size: 16px;
        margin-right: 5px;
    }
}

.banner_wrap {
    position: relative;
    background-color: #000;
    height: 660px;
    padding: 50px 0px;
}
.banner_wrap .bg_img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    opacity: 0.3;
}
.banner_wrap .row {
    align-items: center;
}
.banner_wrap .banner_content {
    position: relative;
}
.banner_wrap .banner_content .shape {
    position: absolute;
    bottom: 10px;
    left: 10px;
    height: 175px;
    object-fit: contain;
    object-position: center;
}
.banner_wrap .banner_content h1 {
    font-family: "GiuliaPlain";
    color: var(--white);
    font-weight: normal;
    font-size: 70px;
    margin-bottom: 5px;
}
.banner_wrap .banner_content h6{
       color: #7fb943;
    font-size: 40px;
    font-family: "GiuliaPlain";
    margin-bottom: 20px;
}
.banner_wrap .banner_content h1 span {
    color: var(--green);
    display: block;
}
.banner_wrap .banner_content ul {
    margin: 0;
    padding-inline-start: 70px;
}
.banner_wrap .banner_content ul li {
    display: block;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 20px;
}

.banner_wrap .banner_right {
    text-align: right;
    position: relative;
}
.banner_wrap .banner_right .banner_form {
    width: 100%;
    max-width: 505px;
    padding: 20px 35px;
    background-color: var(--blue);
    text-align: center;
    margin: 0px auto;
    margin-right: 0px;
    border-radius: 10px;
}
.banner_wrap .banner_right .banner_form h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgb(255 255 255 / 50%);
    text-align: left;
}
.banner_wrap .banner_right .banner_form .form_input {
    width: 100%;
    background-color: transparent;
    border: solid 1px var(--white);
    margin-bottom: 25px;
    border-radius: 28px;
    padding: 10px 30px;
    font-size: 18px;
    color: var(--white);
    height: 54px;
    outline: none;

}

.banner_wrap .banner_right .banner_form .form_input option{ color: #000; }

input[type="time" i]::-webkit-calendar-picker-indicator{filter: invert(1);}
.banner_wrap .banner_right .banner_form input[type="submit"] {
    display: inline-block;
    margin: 0px auto;
    width: 165px;
    border: none;
    background-color: var(--white);
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--blue);
    padding: 10px;
    border-radius: 50px;
    cursor: pointer;
    outline: none;
    border: 1px solid #fff;
}
.banner_wrap .banner_right .banner_form input[type="submit"]:hover{ color: #fff; background: transparent;border: 1px solid #fff; }

@media (max-width: 1200px) {
    .banner_wrap {
        height: 580px;
    }
    .banner_wrap .banner_content h1 {
        font-size: 55px;
        margin-bottom: 25px;
    }
    .banner_wrap .banner_content ul li {
        font-size: 18px;
    }
    .banner_wrap .banner_right .banner_form {
        max-width: 465px;
        padding: 20px 25px;
    }
    .banner_wrap .banner_right .banner_form h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .banner_wrap .banner_right .banner_form .form_input {
        margin-bottom: 20px;
        padding: 12px 30px;
        font-size: 16px;
        height: 48px;
        padding-top: 10px;
    }
    .banner_wrap .banner_right .banner_form button {
        width: 145px;
        font-size: 22px;
        padding: 8px;
    }
}
@media (max-width: 800px) {
    .banner_wrap .banner_content h1 {
        font-size: 50px;
    }
    .banner_wrap .banner_content ul li {
        font-size: 15px;
        margin-bottom: 10px;
    }
}
@media (max-width: 767px) {
    .banner_wrap {
        height: auto;
        padding: 50px 0px;
        padding-top: 30px;
    }
    .banner_wrap .banner_content h1 {
        font-size: 36px;
        text-align: center;
        margin-bottom: 15px;
    }
    .banner_wrap .banner_content h1 span {
        display: inline-block;
        margin-right: 10px;
    }
    .banner_wrap .banner_content .shape {
        display: none;
    }
    .banner_wrap .banner_content ul {
        padding-inline-start: 0px;
        text-align: center;
        margin-bottom: 20px;
    }
    .banner_wrap .banner_content ul li {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .banner_wrap .banner_right .banner_form {
        max-width: 100%;
        padding: 20px 25px;
    }
    .banner_wrap .banner_right .banner_form h2 {
        font-size: 28px;
        text-align: center;
    }
}
@media (max-width: 425px) {
    .banner_wrap .banner_content h1 {
        font-size: 30px;
    }
    .banner_wrap .banner_right .banner_form h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .banner_wrap .banner_right .banner_form .form_input {
        margin-bottom: 15px;
        padding: 12px 25px;
        font-size: 15px;
        height: 45px;
        padding-top: 9px;
    }
    .banner_wrap .banner_right .banner_form button {
        width: 130px;
        font-size: 18px;
    }
}

/** Why to Expect **/
.wh_exp_wrap {
    padding-top: 100px;
    padding-bottom: 200px;
    position: relative;
}
.wh_exp_wrap .shape {
    position: absolute;
    left: 0;
    bottom: 80px;
}
.wh_exp_wrap .wh_exp_inner {
    width: 100%;
    max-width: 1100px;
    margin: 0px auto;
}
.wh_exp_wrap .wh_exp_inner .row {
    align-items: center;
}
.wh_exp_wrap .wh_exp_inner ul {
    padding-inline-start: 0px;
    margin: 0px;
}
.wh_exp_wrap .wh_exp_inner ul li {
    display: block;
    font-size: 17px;
    color: #2c2c2c;
    margin-bottom: 50px;
}
.wh_exp_wrap .wh_exp_inner ul li:last-child {
    margin-bottom: 0px;
}
.wh_exp_wrap .wh_exp_inner ul li span {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
}
.wh_exp_wrap .wh_exp_inner .left_content {
    text-align: right;
}
.wh_exp_wrap .wh_exp_inner .right_content {
    text-align: left;
}
.wh_exp_wrap .wh_exp_inner figure {
    width: 100%;
    margin: 0px auto;
}
.wh_exp_wrap .wh_exp_inner figure img {
    width: 100%;
    object-fit: contain;
    object-position: center;
}
@media (max-width: 1200px){
    .wh_exp_wrap {
        padding-top: 30px;
        padding-bottom: 100px;
    }
}
@media (max-width: 991px){
    .wh_exp_wrap {
        padding-top: 30px;
        padding-bottom: 70px;
    }
    .wh_exp_wrap .wh_exp_inner ul li {
        font-size: 14px;
        margin-bottom: 40px;
    }
    .wh_exp_wrap .shape {
        bottom: 30px;
    }
}
@media (max-width: 767px){
    .wh_exp_wrap {
        padding-top: 30px;
        padding-bottom: 50px;
    }
    .wh_exp_wrap .wh_exp_inner ul li {
        font-size: 14px;
        margin-bottom: 40px;
    }
    .wh_exp_wrap .wh_exp_inner .left_content {
        text-align: left;
        order: 2;
    }
    .wh_exp_wrap .wh_exp_inner .right_content {
        order: 3;
    }
    .wh_exp_wrap .wh_exp_inner figure {
        width: 45%;
        margin: 0px auto;
        margin-bottom: 20px;
    }
    .wh_exp_wrap .wh_exp_inner ul li {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .wh_exp_wrap .wh_exp_inner ul li:last-child {
        margin-bottom: 10px;
    }
}

.does_wrap {
    padding: 95px 0px;
    position: relative;
    background-color: var(--green);
}
.does_wrap .shape1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.does_wrap .does_wrap_inner {
    position: relative;
}
.does_wrap .shape2 {
    position: absolute;
    top: -250px;
    width: 530px;
    right: 0;
}
.does_wrap .does_wrap_inner h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}
.does_wrap .does_wrap_inner h3 {
    font-size: 30px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 15px;
}
.does_wrap .does_wrap_inner p {
    width: 100%;
    max-width: 520px;
    font-size: 20px;
    color: var(--white);
    padding-left: 50px;
    position: relative;
}
.does_wrap .does_wrap_inner p img {
    position: absolute;
    bottom: 0px;
    left: 15px;
    height: 85px;
}
@media (max-width: 1200px){
    .does_wrap {
        padding: 70px 0px;
    }
    .does_wrap .shape2 {
        top: -140px;
        width: 340px;
    }
    .does_wrap .does_wrap_inner h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .does_wrap .does_wrap_inner h3 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    .does_wrap .does_wrap_inner p {
        max-width: 475px;
        font-size: 15px;
        padding-left: 35px;
    }
    .does_wrap .does_wrap_inner p img {
        left: 5px;
        height: 65px;
    }
}
@media (max-width: 991px){
    .does_wrap .shape2 {
        top: -105px;
        width: 280px;
    }
}
@media (max-width: 880px){
    .does_wrap .does_wrap_inner h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .does_wrap .does_wrap_inner h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .does_wrap .does_wrap_inner p {
        max-width: 370px;
        font-size: 14px;
        padding-left: 30px;
    }
}
@media (max-width: 767px){
    .does_wrap {
        padding: 15px 0px;
        padding-top: 40px;
    }
    .does_wrap .shape2 {
        position: relative;
        top: auto;
        left: auto;
        display: block;
        margin: 0px auto;
        margin-bottom: 20px;
    }
    .does_wrap .does_wrap_inner h2 {
        font-size: 24px;
    }
    .does_wrap .does_wrap_inner h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
}

.why_choose_wrap {
    background-color: var(--light-grey);
    padding: 75px 0px;
    padding-top: 250px;
}
.why_choose_wrap .why_choose_block {
    border: solid 1px #929292;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background-color: var(--white);
    transition: all 200ms ease-in-out;
    margin-bottom: 25px;
}
.why_choose_wrap .why_choose_block figure {
    width: 50%;
    height: 290px;
    overflow: hidden;
    margin: 0px;
}
.why_choose_wrap .why_choose_block figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}
.why_choose_wrap .why_choose_block .why_content {
    width: 50%;
}
.why_choose_wrap .why_choose_block .why_content h3 {
    font-family: "GiuliaPlain";
    font-weight: normal;
    color: #535353;
    margin-bottom: 15px;
    font-size: 26px;
}
.why_choose_wrap .why_choose_block .why_content p {
    font-size: 14px;
    margin: 0px;
    padding-right: 8px;
    color: #535353;
}
.why_choose_wrap .why_choose_block:hover {
    background-color: var(--blue);
}
.why_choose_wrap .why_choose_block:hover .why_content h3 {
    color: var(--white);
}
.why_choose_wrap .why_choose_block:hover .why_content p {
    color: var(--white);
}
@media (max-width: 1200px){
    .why_choose_wrap {
        padding: 35px 0px;
        padding-top: 125px;
    }
    .why_choose_wrap .why_choose_block .why_content h3 {
        margin-bottom: 10px;
        font-size: 20px;
    }
    .why_choose_wrap .why_choose_block figure {
        height: 270px;
    }
}
@media (max-width: 991px){
    .why_choose_wrap {
        padding: 35px 0px;
        padding-top: 65px;
    }
    .why_choose_wrap .why_choose_block figure {
        height: 235px;
    }
    .why_choose_wrap .row{
        justify-content: center;
    }
}
@media (max-width: 935px){
    .why_choose_wrap .why_choose_block .why_content h3 {
        margin-bottom: 5px;
        font-size: 17px;
    }
    .why_choose_wrap .why_choose_block .why_content p {
        font-size: 13px;
    }
}
@media (max-width: 767px){
    .why_choose_wrap {
        padding: 30px 0px;
    }
    .why_choose_wrap .why_choose_block figure {
        height: 200px;
    }
}

.newsletter_wrap {
    padding: 75px 0px;
    text-align: center;
    position: relative;
}
.newsletter_wrap h2 {
    margin-bottom: 15px;
}
.newsletter_wrap p {
    font-size: 18px;
    color: #414141;
    width: 100%;
    max-width: 600px;
    margin: 0px auto;
    margin-bottom: 30px;
}
.newsletter_wrap .newsletter_input {
    width: 100%;
    max-width: 385px;
    margin: 0px auto;
    border: solid 1px #272727;
    height: 65px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}
.newsletter_wrap .newsletter_input input {
    font-size: 18px;
    color: #272727;
    background-color: var(--white);
    border: none;
    padding: 18px 35px;
    width: 100%;
    text-transform: uppercase;
    padding-right: 65px;
}
.newsletter_wrap .newsletter_input input::placeholder {
    opacity: 1;
    color: #272727;
}
.newsletter_wrap .newsletter_input button {
    background-color: #272727;
    border: none;
    color: var(--white);
    height: 55px;
    width: 55px;
    border-radius: 50%;
    padding: 0px;
    font-size: 26px;
    position: absolute;
    top: 4px;
    right: 4px;
}
@media (max-width: 800px){
    .newsletter_wrap {
        padding: 30px 0px;
        padding-bottom: 40px;
    }
    .newsletter_wrap p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .newsletter_wrap .newsletter_input {
        height: 50px;
    }
    .newsletter_wrap .newsletter_input input {
        font-size: 16px;
        padding: 13px 25px;
        padding-right: 50px;
    }
    .newsletter_wrap .newsletter_input button {
        height: 40px;
        width: 40px;
        font-size: 18px;
    }
}

footer {
    background-color: var(--blue);
    padding: 10px 0px;
}
footer .row {
    align-items: center;
}
footer p {
    font-size: 15px;
    color: var(--white);
    margin: 0px;
}
footer p a {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
}
footer p a:hover {
    color: #000;
    text-decoration: underline;
}
footer ul {
    padding-inline-start: 0px;
    margin: 0px;
    text-align: right;
}
footer ul li {
    display: block;
    width: 100%;
}
footer ul li a {
    font-size: 16px;
    color: var(--white);
    display: block;
    text-align: center;
    margin-left: 5px;
    text-decoration: none;
}
footer ul li a:hover {
    color: rgb(255 255 255 / 60%);
}
@media(max-width: 575px){
    footer p {
        font-size: 13px;
    }
}
