@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto";
}
:root{
    --prime-blue : #002B74;
    --dom-black : #000000;
    --body-Text : #333;
    --heading-text : #003366;
    --pure-white : #ffffff;
    --rob18-D : 14px;
    --rob28-H : 3rem;
    --thin-D : 100;
    --regular-H : 400;
    --medium-I : 500;
    --semiBold-W : 600;
    --bold-A : 700;
}
.sectionPadding{
    padding: 50px 0;
}
.commonHd{
    font-size: var(--rob28-H);
    color: var(--heading-text);
    font-weight: var(--bold-A);
    margin-bottom: 16px;
    text-align: center;
}
.commonDes{
    font-size: var(--rob18-D);
    color: var(--body-Text);
    font-weight: var(--regular-H);
    padding: 12px 0;
   line-height: 24px;
}
.investObjWCCnt{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.investObjWCCnt .investBox{
    filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 0.12));
    padding: 12px;
    background-color: var(--pure-white);
    text-align: center;
    border-radius: 18px;
}
.investObjWCCnt .investBox p{
    font-size: var(--rob18-D);
    font-weight: var(--regular-H);
    color: var(--body-Text);
    margin-bottom: 0;
    padding: 10px;
}
/* Portfolio Section */
.portfolioSec{
    background-color: #ECF0F3;
}
.portfolioSec .portFolioImg{
    text-align: center;
    padding-top: 15px;
}
/* Weather Portfolio Section */

/* filter Section */
.filterSec .filterAllImgCnt{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    position: relative;
    margin-bottom: 34px;
}
.filterTouch01{
    position: absolute;
    left: 33%;
}
.filterTouch02{
    position: absolute;
    right: 34%;
}
.filterSec .commonHd{
    margin-bottom: 50px;
}
.filterSec .commonDes{
    color: var(--prime-blue);
    text-align: center;
    margin: 0;
}
.reasonContent{
    /* background-color: #ECF0F3; */
    background: rgb(255,255,255);
    background: linear-gradient(140deg, rgba(255,255,255,1) 0%, rgba(231,231,231,1) 20%);
    padding: 18px 16px 18px 56px;
    border-radius: 24px;
    position: relative;
    width: 27%;
    box-shadow: 0px 0px 12px #b1b1b1;
    /* border: 3px solid transparent; 
    border-image: linear-gradient(to right, green, lightgreen); 
    border-image-slice: 1; */
}
.reasonImages{
    position: absolute;
    top: 25%;
    left: -10%;
}
.reasonsWCCnt{
    /* display: grid;
    grid-template-columns: repeat(3, 1fr); */
    grid-gap: 28px 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.reasonToInvestSec .commonHd {
    margin-bottom: 50px;
}
.fundDetailWCCnt .fundInfo,.keyInfo{
    background-color: #ECF0F3;
    padding: 8px;
    border-radius: 60px;
    width: 48%;
    border: 15px solid transparent;
  background: 
    linear-gradient(to right, white, white), 
    linear-gradient(to right, rgb(221, 221, 221) , rgb(249, 249, 249)); 
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
}
.infoCnt{
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 10px 18px;
}
.infoCnt:not(:last-child){
    border-bottom: 1px solid #D7DAE3;
}
.infoCnt .labelInfo{
    font-size: 16px;
    color: #FF7F2A;
    margin-bottom: 0;
    width: 24%;
}
.infoCnt .valueInfo{
    font-size: 16px;
    color: var(--prime-blue);
    margin-bottom: 0;
}
.fundDetailWCCnt{
    display: flex;
    justify-content: space-between;
}
.fundDetailSec .commonHd {
    margin-bottom: 28px;
}
.leadFormSec{
    background-color: var(--prime-blue);
}
.leadFormSec .commonHd{
    margin-bottom: 24px;
}
.leadFormSec .commonDes{
    margin-bottom: 0px;
    color: var(--pure-white);
    font-size: 16px;
    font-weight: 300;
}
.leadForm form input{
    outline: none;
    padding: 12px;
    border-radius: 12px;
    border: none;
    width: 246px;
}
.leadForm form button{
    padding: 12px 30px;
    border-radius: 12px;
    border: none;
    background-color: #FF7F2A;
    color: var(--pure-white)
}
.leadForm form{
    display: flex    ;
    align-items: center;
    gap: 45px;
    margin-bottom: 30px;
}
.leadFormSec .commonHd{
    color: var(--pure-white);
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button{
    -webkit-appearance: none;
}
.Weather-Des-top-Padd{
    padding-top: 9% !important;
}
.GrayBG{
    background: #ecf0f3;
}

.sectiontopBottmargin{
    margin: 0;
    padding: 30px 0;
}

/* Media Query */
@media screen and (max-width: 480px){
    .leadForm form {
        gap: 28px;
    }
    .infoCnt{
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .infoCnt .labelInfo {
        width: 100%;
    }
    .investObjWCCnt {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    .leadForm form div{
        width: 90%;
    }
    .leadForm form{
        row-gap: 28px;
        flex-wrap: nowrap;
        flex-direction: column;
    }
}
@media screen and (max-width: 575.9px){
    .leadForm form {
        flex-wrap: wrap;
        row-gap: 28px;
    }
    .leadForm form input{
        width: 100%;
    }
    .fundDetailWCCnt {
        flex-direction: column;
        gap: 24px;
    }
    .fundDetailWCCnt .fundInfo, .keyInfo {
        width: 100%;
    }
    .filterTouch01,.filterTouch02{
        display: none;
    }
    .filterSec .filterAllImgCnt{
        flex-direction: column;
        gap: 24px;
    }
    .investObjWCCnt {
        grid-template-columns: repeat(1, 1fr);
    }
    .reasonsWCCnt {
        gap: 24px;
    }
    .reasonContent {
        width: 76%;
    }
    .leadForm form div{
        width: 90%;
    }
    .leadForm form{
        row-gap: 28px;
        flex-wrap: nowrap;
        flex-direction: column;
    }
    .weatherRow {
        flex-direction: column;
        row-gap: 24px;
    }
    .infoCnt {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .infoCnt .labelInfo {
        width: 100%;
    }
    .commonHd{
        font-size: 24px;
    }
    .investObjWCCnt .investBox p {
        font-size: 16px;
    }
    .commonDes {
        font-size: 16px;
    }
    .sectionPadding {
        padding: 30px 0;
    }
    .sectionPadding {
        padding: 0px 0;
      }
      .Weather-Des-top-Padd {
        padding :0 !important;
      }
}
@media screen and (min-width: 576px) and (max-width: 767.9px){
    .sectionPadding {
        padding: 0px 0;
      }
      .Weather-Des-top-Padd {
        padding :0 !important;
      }
    .leadForm form {
        flex-wrap: wrap;
        row-gap: 28px;
    }
    .leadForm form input{
        width: 100%;
    }
    .fundDetailWCCnt {
        flex-direction: column;
        gap: 24px;
    }
    .fundDetailWCCnt .fundInfo, .keyInfo {
        width: 100%;
    }
    .reasonContent{
        width: 76%;
    }
    .reasonsWCCnt {
        gap: 24px;
    }
    .filterTouch01,.filterTouch02{
        display: none;
    }
    .filterSec .filterAllImgCnt{
        flex-direction: column;
        gap: 24px;
    }
    .investObjWCCnt {
        grid-template-columns: repeat(2, 1fr);
    }
    .weatherRow {
        flex-direction: column;
        row-gap: 24px;
    }
}
@media screen and (min-width: 768px) and (max-width: 991.9px){
    .leadForm form{
        flex-wrap: wrap;
        row-gap: 28px;
    }
    .fundDetailWCCnt {
        flex-direction: column;
        gap: 24px;
    }
    .fundDetailWCCnt .fundInfo, .keyInfo {
        width: 100%;
    }
    .reasonContent {
        width: 42%;
    }
    .reasonsWCCnt{
        gap: 46px;
    }
    .filterSec .filterAllImgCnt{
        gap: 24px;
    }
    .filterTouch01,.filterTouch02{
        display: none;
    }
    .weatherRow{
        flex-direction: column;
        row-gap: 24px;
    }
    .weatherPortfolioSec.sectionPadding{
        padding: 24px 0;
    }
    .investObjWCCnt{
        grid-template-columns: repeat(3, 1fr);
    }
    .Weather-Des-top-Padd{
        padding: 0 !important;
        text-align: center;
    }
    .sectionPadding {
        padding: 0px 0;
      }
    .padd768{
        margin-top: 40px;
      }
}
@media screen and (min-width: 992px) and (max-width: 1199.9px){
    .leadForm form{
        flex-wrap: wrap;
        row-gap: 28px;
    }
    .reasonsWCCnt{
        gap: 140px;
        row-gap: 50px;
    }
    .filterTouch01 {
        position: absolute;
        left: 29%;
    }
    .filterTouch02 {
        position: absolute;
        right: 31%;
    }
    .reasonContent{
        width: 38%;
    }
}
@media screen and (min-width: 1200px) and (max-width: 1399.9px){

}
@media screen and (min-width: 1400px){
    .mapCircleImg img{
        width: -webkit-fill-available;
    }
    .filterTouch01 {
        position: absolute;
        left: 35%;
    }
    .filterTouch02 {
        position: absolute;
        right: 36%;
    }
}