body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;

}
.container {
    max-width: 1280px;
    margin: auto;
    padding: 0;
    width: 100%;
}
.banner-row {
    display: flex;
    align-items: center;
    gap: 80px;
}
.banner-content {
    width: 50%;
}
header {
    background: #F3F3F3;
    padding: 30px 0 0 0;
}
.logo {
    display: flex;
}
.logo img {
    width: 200px;
}
.hero-banner {
    background: #F3F3F3;
    padding: 0 0 50px 0;
    display: flex;
    width: 100%;
}
.hero-banner h1 {
    color: #1E1E1E;
    font-size: 58px;
    line-height: 62px;
    font-weight: 200;
    
    margin: 0 0 20px 0;
    font-family: "Montserrat", sans-serif;
    letter-spacing: -1px;
}
.hero-banner h1 strong {
    font-weight: 700;
}
.hero-banner p {
    color: #1E1E1E;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
    font-family: "Montserrat", sans-serif;
}
.hero-banner p::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 3px;
    background: #FECD07;
    bottom: 0;
    left: 0;
}
.hero-banner .exp {
    color: #1E1E1E;
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    line-height: 38px;
    font-weight: 600;
}
.profile-img {
    flex: 1 1 300px;
    min-width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.profile-img .circle-bg {
    background: #ffd600;
    border-radius: 50%;
    width: 500px;
    height: 500px;
    position: absolute;
    z-index: 0;
    bottom: 1px;
    left: 45px;
}
.profile-img img {
    width: 90%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    margin-top: -30px;
}
.welcome-section {
    padding: 80px 0;
}
.welcome-section .row {
    display: flex;
    gap: 80px;
}
.welcome-section .col-6 {
    width: 50%;
}
.welcome-section h3,
.how-help h2 {
    color: #1E1E1E;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 15px;
}
.welcome-section h3::after,
.how-help h2::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background: #FECD07;
    bottom: 0;
    left: 0;
}
.welcome-section p {
    color: #1E1E1E;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    margin: 0 0 20px 0;
}
.section {
    background: #fff;
    margin-top: 0;
    padding: 40px 0;
}
.section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.section .col {
    flex: 1 1 300px;
    min-width: 260px;
}
.section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.section p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0;
}
.how-help {
    margin-top: 0;
    padding-bottom: 80px;
}
.how-help h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-left: 4px solid #ffd600;
    padding-left: 10px;
    display: inline-block;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
    margin-top: 20px;
}
.how-help .cards .card {
    background: transparent;
    border: 1px solid #D4D4D4;
    border-radius: 20px;
    padding: 28px;
    width: 32.3%;
    float: left;
    box-sizing: border-box;
    margin-bottom: 1%;
    position: relative;
    overflow: hidden;
}
/*.how-help .cards .card::after {
    content: "";
    position: absolute;
    background: #F3F3F3;
    width: 100%;
    height: 100%;
    z-index: -1;
    left: 0;
    top: 0;
    border-radius: 0;
    transition: all 0.3s ease;
    transform: translateY(100%);
}
.how-help .cards .card:hover::after{
    transform: translateY(0%);
}*/
.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
    background: #fff !important;
    border-radius: 100%;
}
.card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    color: #1E1E1E;
    margin-bottom: 10px;
}
.card-desc {
    font-family: "Montserrat", sans-serif;
    color: #1E1E1E;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 0;
}
footer {
    background: #222;
    color: #fff;
    padding: 0;
    margin-top: 0;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}
.upperfooter {
    padding: 60px 0;
}
.upperfooter .row {
    display: flex;
    gap: 50px;
}
.footer-left {
    font-size: 32px;
    line-height: 38px;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-weight: 300;
    width: 60%;
}
.footer-left h3 {
    font-size: 32px;
    line-height: 36px;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-weight: 200;
    margin: 0 0 20px 0;
    letter-spacing: 0;
}
.footer-left h4 {
    font-size: 36px;
    line-height: 42px;
    font-family: "Montserrat", sans-serif;
    color: #ffd600;
    font-weight: 600;
    margin: 0;
}
.footer-left p {
    font-size: 1rem;
    color: #ffd600;
    font-weight: 700;
}
.footer-right {
    margin-top: 0;
    width: 40%;
}
.footer-right h6 {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    color: #FECD07;
    padding-bottom: 20px;
    margin-bottom: 30px;
    position: relative;
}
.footer-right h6::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background: #fff;
    bottom: 0;
    left: 0;
}
.footer-right a {
    color: #fff;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    display: block;
    margin-bottom: 0;
    gap: 10px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}
.footer-right a:hover{
 color: #FECD07;   
}
.footer-bottom {
    padding: 20px 0 10px 0;
}
.footer-bottom {
    background: #FECD07;
    color: #1E1E1E;
    text-align: center;
    font-size: 14px;
    line-height: 22px;
    font-family: "Montserrat", sans-serif;
}
.contact-row img {
    width: 19px;
    height: 19px;
    vertical-align: middle;
    object-fit: contain;
}
.contact-row {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 15px;
}
.contact-row p {
    margin: 0;
    padding: 0;
    transition: 0.3s;
}

.flip {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 40px;
  position: relative;
  top: 10px;
  -moz-perspective: 500;
  -webkit-perspective: 500;
  perspective: 500;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.flip span {
  font-weight: 600;
  display: block;
  width: auto;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  -moz-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -moz-transform: rotateX(90deg);
  -ms-transform: rotateX(90deg);
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  position: absolute;
  top: -20px;
  left: 0;
}
.flip span.set {
  top: 0;
  opacity: 1;
  -moz-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.flip span.down {
  top: 40px;
  opacity: 0;
  -moz-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -moz-transform: rotateX(-90deg);
  -ms-transform: rotateX(-90deg);
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}

@media only screen and (max-width: 1350px) {
    .container{
        max-width: 90%;
    }
}
@media only screen and (max-width: 1300px) {
    .hero-banner h1 {
        font-size: 52px;
        line-height: 54px;
    }
    .footer-left h3, .footer-left h4 {
        font-size: 32px;
        line-height: 40px;
    }
}
@media only screen and (max-width: 1280px) {
    .hero-banner h1 {
        font-size: 42px;
        line-height: 45px;
    }
    .logo img {
        width: 180px;
    }
    .hero-banner .exp {
        font-size: 26px;
        line-height: 32px;
    }
    .welcome-section p br{
        display: none;
    }
    .how-help .cards .card {
        padding: 25px;
    }
    .card-title {
        font-size: 18px;
        line-height: 22px;
    }
}
@media only screen and (max-width: 1080px) {
    .footer-left h3, .footer-left h4 {
        font-size: 28px;
        line-height: 34px;
    }
    .hero-banner{
        padding-top: 30px;
    }
}
@media only screen and (max-width: 999px) {
    .banner-row {
        gap: 30px;
    }
    .hero-banner {
        padding: 30px 0 50px 0;
    }
    .welcome-section .row {
        gap: 30px;
    }
    .welcome-section h3, .how-help h2 {
        font-size: 26px;
        line-height: 32px;
        margin: 0 0 30px 0;
        padding-bottom: 15px;
    }
    .welcome-section {
        padding: 50px 0;
    }
    .upperfooter .row {
        gap: 30px;
    }
}
@media only screen and (max-width: 991px) {
    .hero-banner h1 {
        font-size: 32px;
        line-height: 36px;
    }
    .profile-img img {
        width: 100%;
    }
    .hero-banner p br{
        display: none;
    }
    .footer-left h3, .footer-left h4 {
        font-size: 24px;
        line-height: 32px;
    }
}
@media only screen and (max-width: 900px) {
    .cards {
        flex-direction: column;
    }
    .how-help .cards .card {
        width: 100%;
        margin-bottom: 15px;
    }
    .upperfooter .row {
        gap: 20px;
        flex-direction: column;
    }
    .footer-left, .footer-right {
        width: 100%;
    }
    .footer-left h3 br{
        display: none;
    }
    .footer-left h3, .footer-left h4 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 10px;
    }
    .upperfooter {
        padding: 40px 0;
    }
    .how-help {
        padding-bottom: 50px;
    }
}
@media only screen and (max-width: 768px) {
    .profile-img {
        flex: inherit;
        width: 450px !important;
    }
    .banner-row {
        gap: 30px;
        flex-direction: column;
        width: 100%;
    }
    .hero-banner h1 br {
        display: none;
    }
    .banner-content {
        width: 100%;
    }
    .welcome-section .row {
        flex-direction: column;
    }
    .welcome-section .col-6 {
        width: 100%;
    }
    .welcome-section h3, .how-help h2 {
        margin: 0 0 20px 0;
    }
    .welcome-section .row {
        gap: 0;
    }
    .welcome-section {
        padding: 50px 0 30px 0;
    }
    .profile-img img {
        margin-top: 0;
    }
}
@media only screen and (max-width: 560px) {
    .profile-img {
        width: 100% !important;
    }
    .welcome-section h3, .how-help h2 {
        font-size: 24px;
        line-height: 30px;
    }
    .hero-banner h1 {
        font-size: 28px;
        line-height: 34px;
    }
    .hero-banner .exp {
        font-size: 22px;
        line-height: 30px;
    }
    .logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .logo img {
        width: 160px;
    }
    .footer-left h3, .footer-left h4 {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 10px;
    }
    .upperfooter .row {
        gap: 10px;
    }
}