@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400&display=swap');

*{
    margin : 0;
    padding : 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
#landing-section{
    width: 100%;
    height : 100vh;
    background : url('https://cee-tenant-advisors.com/wp-content/uploads/2021/04/clay-leconey-XSONkHbAHkU-unsplash-scaled.jpg') no-repeat;
    background-size: cover;
}
#heading{
    width : 100%;
    height : 20vh;
    padding : 1% 3%;
    display: flex;
    align-items: center;
}
#navigation{
    width : 100%;
    display : flex;
    align-items: center;
    justify-content: space-between;
}
#img-wrapper {
    max-width: 10rem;
    padding : 1%;
    cursor : pointer;
    width : 30%;
    transition : all 0.3s;
}
#img-wrapper:hover{
    transform : scale(1.1,1.1);
}
#img{
    width : 100%;
}
.menu-item{
    color : white;
    font-size : 15px;
    font-weight : 600;
    margin-right : 16px;
    padding : 2px ;
    text-transform: capitalize;
    text-decoration: none;
    transition : text-decoration 0.3s;
}
.menu-item:hover{
    text-decoration: underline;
}
#hamberger-icon-wrapper {
    font-size : 24px;
    cursor : pointer;
    color : white;
    display: none;
}
#phone-logo-wrapper{
    position : relative;
}
#phone-logo {
    width : 20px;
    margin-right : 6px;
    position : relative;
    top : 3px;
}
.menu-item > i {
    font-size : 13px;
    margin-left : 3px;
}
.btn {
    font-size : 12px;
    padding : 8px 14px;
    color : #fff;
    background-color: rgb(250, 117, 117);
    font-weight : 400;
    outline : none;
    cursor : pointer;
    border : none;
    line-height: 24px;
    transition : all 0.3s;
}
.menu-item:hover > .btn{
    transform : translateY(-2px);
}
.btn > i {
    margin-left : 3px;
}
.btn:hover {
    background-color: rgb(117, 255, 135);
}
#menu{
    display : flex;
    align-items: center;
    justify-content: center;
}
#main-section{
    width : 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#heading1{
    font-size : 58px;
    color : white;
    margin : 5px 0;
    text-transform: capitalize; 
    text-shadow: 2px 5px 5px #ccc;  
    transition: all 0.3s;
}
#heading1 > span{
    color :#F15F61;
}
#heading1:hover{
    color :#F15F61;
}
#heading1:hover span{
    color : #fff;
}
#heading2 {
    width : 64%;
    font-size : 22px;
    margin : 15px 0;
    padding : 10px 14px;
    text-align: center;
    color : white;
    line-height: 2.5rem;
    text-shadow: 2px 5px 5px #ccc;  
}
#company-name{
    width : 50%;
    font-size : 22px;
    margin-bottom : 10px;
    padding : 10px 24px;
    outline : none;
    border : none;
    border-radius: 8px;
}
#company-name::placeholder{
    font-size : 24px;
    text-align: center;
}
#company-name:read-write{
    text-align : center;
}
.btn-main{
    width: 30%;
    font-size : 14px;
    margin : 10px 0;
}
#heading4{
    font-size : 18px;
    color : white;
    margin : 30px 0 10px 0;
    text-transform: capitalize;
    font-weight: 100;
}
#logo-wrapper{
    width : 60%;
    margin: 15px 0;
    overflow: hidden;
}
.logo-item {    
    width : 100%;
    overflow: hidden;
}
#desc-section{
    width : 100%;
    height : 125vh;
    padding : 3.5rem 1rem;
    background: #FAFAFA;
}
#main-heading{
    width : 70%;
    font-size : 38px;
    color : #031043;
    margin : 5px auto;
    text-transform: capitalize;
    text-align: center;
}
#sub-heading {
    width : 90%;
    font-size : 15px;
    margin : 15px auto;
    padding : 10px 12px;
    text-align: center;
    color : #55626A;
    line-height: 1.5rem;
}
#card-wrapper{
    width : 100%;
    height : 75vh;
    margin : 10px;
    padding : 12px 16px;
    display : flex;
    flex-wrap : wrap;
}
.card{
    width : 30%;
    height : 100%;
    margin : 0 15px;
    border : 1px solid #ccc;
    border-radius : 6px;
    box-shadow: 3px 5px 5px #ccc;
    display : flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s;
}
.card:hover{
    transform : scale(1.02,1.02);
}
.card > img {
    width : 100%;
    border-radius : 6px 6px 0 0;
}
.card-heading {
    font-size : 24px;
    text-align : center;
    margin : 15px 0 5px 0;
    padding : 6px 12px;
    letter-spacing: 1.5px;
}
.card-para{
    font-size : 16px;
    padding : 8px 16px;
    font-weight : 300;
    text-align: center;
}
.card-btn{
    font-size : 14px;
    margin :5px auto;
    border : none;
    color : #F15F61;
    background: none;
    cursor : pointer;
}
.card-btn:hover{
    text-decoration: underline;
}
#followup-section {
    width : 100%;
    height : 100vh;
    padding : 5% 0;
    display : flex;
}
#followup-desc{
    width : 60%;
    margin : 20px 40px;
    display : flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
#followup-heading {
    font-size : 56px;
    font-weight : bold;
    color : #031043;
    margin : 0;
}
#followup-heading > i {
    font-size : 72px;
    color : #F15F61;
    margin-left : 10px;
    transform : rotate(-45deg);
    transition : all 0.5s;
}
#followup-heading:hover > i{
    transform: rotateZ(315deg);
    color :rgb(117, 255, 135);
}
#followup-sub-heading{
    font-size : 20px;
}
#followup-para{
    font-size : 28px;
    margin : 2% 0;
    padding : 12px 0px;
}
#followup-desc > img {
    width : 200px;
}
#followup-link-wrapper{
    margin : 4% 0;
    display : flex;
    align-items: center;
}
#followup-link-wrapper > p {
    font-size : 14px;
    margin-right : 10px;
}
.followup-link{
    font-size : 18px;
    margin-right : 10px;
    padding : 6px 10px;
    border : none;
    border-radius : 18px;
    color : #fff;
    border : 1px solid rgb(250, 117, 117);
    background-color :rgb(250, 117, 117);
    outline : none;
    cursor : pointer;
    transition : all 0.3s;
}
.followup-link:hover{
    color :rgb(250, 117, 117);
    background-color : #fff;
    border : 1px solid rgb(250, 117, 117);
}
#followup-image{
    width : 40%;
    height : 100%;
    transition : all 0.3s;
}
#followup-image:hover{
    transform : scale(1.1,1.1);
}
#followup-image > img {
    width : 100%;
}
#owner-section {
    width: 100%;
    height: 60vh;
    padding : 5px 10px;
    background: #031043;
    display : flex;
    flex-direction: row;
    
}
#owner-desc{
    width : 30%;
    margin : 5%;
    display : flex;
    flex-direction: column;
    align-items: center;
}
#owner-desc > img{
    width: 200px;
    border-radius: 50%;
}
#owner-desc > h2{
    color : #fff;
    font-size : 24px;
    margin : 5px 0 0 0;
    letter-spacing: 1.1px;
}
#owner-desc > p{
    color : #fff;
    font-size : 16px;
    letter-spacing: 0.9px;
    font-style: italic;
}
#contact{
    width : 70%;
    color : white;
    padding : 4% 15% 4% 0;
    display : flex;
    flex-direction: column;
    justify-content: center;
}
#contact > h2{
    font-size : 32px; 
    text-transform: capitalize;
    margin-bottom: 0.2em;
}
#contact > p{
    margin : 5px 0;
    padding : 0 4% 0 0;
}
#mobile {
    display : flex;
    flex-direction: column;
    justify-content: center;
    font-size : 16px;
}
#mobile p:last-child:hover .fa-whatsapp {
    color : #25D366;
    transform : translate(0,-2px);
}
.fa-whatsapp{
    transition : all 0.3s;
}
#mobile > p > img{
    width : 25px;
}
#mobile > p > i{
    font-size : 28px;
}
#mobile > p > img, #mobile > p > i{
    margin-right : 5px;
}
#mobile > p{
    margin : 2px 0;
}
#social-media-link{
    font-size : 14px;
    display : flex;
    align-items: center;
}
#social-media-link > p {
    margin : 10px 10px 5px 0;
}
.social-media-page {
    text-decoration: none;
    margin-right : 15px;
    color : white;
    padding : 4px 10px;
    border-radius: 6px;
    transition : all 0.3s;
}
.linkedin{
    background-color: #0077b5;
    border : 1.5px solid #0077b5;
}
.twitter{
    background: #1DA1F2;
    border : 1.5px solid #1DA1F2;
}
.facebook{
    background-color: #4267B2;
    border : 1.5px solid #4267B2;
}
.codepen{
    background: #000000;
    border : 1.5px solid #000000;
}
.linkedin:hover{
    background: #fff;
    color : #0077b5;
}
.twitter:hover{
    background: #fff;
    color : #1DA1F2;
}
.facebook:hover{
    background: #fff;
    color : #4267B2;
}
.codepen:hover{
    background: #fff;
    color : #000000;
}



@media (max-width : 600px) {
    *{
        margin : 0;
        padding : 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }
    #landing-section{
        width: 100%;
        height : 100vh;
        background : url('https://cee-tenant-advisors.com/wp-content/uploads/2021/04/clay-leconey-XSONkHbAHkU-unsplash-scaled.jpg') no-repeat;
        background-size: cover;
        overflow: hidden;
        
    }
    #heading{
        width : 100%;
        height : 20vh;
        padding : 0;
        display: flex;
        align-items: center;
       
    }
    #navigation{
        width : 100%;
        height : 100%;
        display : flex;
        align-items: center;
        justify-content: space-around;
    }
    #img-wrapper {
        padding : 1%;
        cursor : pointer;
        width : 35%;
        height : 40%;
    }
    #img{
        width : 100%;
        height : 100%;
    }
    #menu{
        width : 100%;
        display : flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position : absolute;
        top : 100px;
        right : 0px;
        margin-top : 15px;
        background : rgba(101, 159, 214, 0.4);
        display : none;
    }
    .menu-item{
        color : white;
        font-size : 16px;
        margin-right : 16px;
        padding : 2px ;
        text-transform: capitalize;
        text-decoration: none;
        transition : text-decoration 0.3s;
    }
    .menu-item:hover{
        text-decoration: underline;
    }
    #phone-logo-wrapper{
        position : relative;
    }
    #phone-logo {
        width : 20px;
        margin-right : 6px;
        position : relative;
        top : 3px;
    }
    .menu-item > i {
        font-size : 13px;
        margin-left : 3px;
        transform : rotateZ(-90deg);
    }
    .btn {
        font-size : 12px;
        padding : 8px 14px;
        color : #fff;
        background-color: rgb(250, 117, 117);
        font-weight : 400;
        outline : none;
        cursor : pointer;
        border : none;
        line-height: 24px;
        transition : all 0.3s;
    }
    .menu-item:hover > .btn{
        transform : translateY(-2px);
    }
    .btn > i {
        margin-left : 3px;
    }
    .btn:hover {
        background-color: rgb(117, 255, 135);
    }
    #hamberger-icon-wrapper {
        font-size : 28px;
        cursor : pointer;
        color : white;
        display: block;
    }
    #main-section{
        width : 100%;
        height : 80vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #heading1{
        font-size : 42px;
        color : white;
        margin : 6px 0;
        text-transform: capitalize;
    }
    #heading2 {
        width : 90%;
        font-size : 22px;
        margin : 25px 0;
        padding : 10px 14px;
        text-align: center;
        color : white;
        line-height: 2.5rem;
    }
    #company-name{
        width : 90%;
        font-size : 22px;
        margin-bottom : 10px;
        padding : 14px 24px;
        outline : none;
        border : none;
        border-radius: 8px;
    }
    #company-name::placeholder{
        font-size : 24px;
        text-align: center;
    }
    #company-name:read-write{
        text-align : center;
    }
    .btn-main{
        width:60%;
        font-size : 14px;
        margin : 10px 0;
        padding : 12px 24px;
    }
    #heading4{
        font-size : 18px;
        color : white;
        margin : 100px 0 50px 0;
        text-transform: capitalize;
        font-weight: 100;
    }
    #logo-wrapper{
        width : 96%;
        height : 70px;
        margin: 15px 0;
        overflow: hidden;
    }
    .logo-item {    
        width : 100%;
        height : 50%;
        overflow: hidden;
    }
}