HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/WPProfessionalCleaning/wp-content/themes/professional-cleaning/scss/common.scss
@import "partials";
html {
    font-size: 20px;
}
body {
    font-family: $primaryFont;
    font-weight: 400;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
    transition: all 0.5s ease;
}
.custom-container {
    @media (min-width:1400px) {
        max-width: 1320px;
    }
    @media (min-width: 1600px) {
        max-width: 1406px;
    }
    @media ($sm-767) {
        max-width: 100%;
    }
}

.title{
    color: $titlePrimary;
    font-size: 72px;
    line-height: 92px;
    font-weight: 700;
    position: relative;
    padding-top: 10px;
    margin: 0;
    @media($sm-1679){
        font-size: 62px;
        line-height: 72px;
    }
    @media($sm-1481){
        font-size: 52px;
    }
    @media($sm-1199){
        font-size: 42px;
    }
    @media($sm-991){
        font-size: 32px;
    }
    &::after{
        content: "";
        background: url(../img/title-star.svg) no-repeat center;
        background-size: contain;
        width: 62px;
        height: 56px;
        display: inline-block;
        position: absolute;
        top: -5px;
        @media($sm-991){
            width: 32px;
        }
    }
    span{
        color: $titleSecondary;
        font-weight: 300;
    }
}
.para{
    font-size: 20px;
    color: $textGray;
    margin-bottom: 22px;
    line-height: 32px;
    @media ($sm-1679){
        font-size: 18px;
        line-height: 28px;
    }
    @media ($sm-1441){
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 10px;
    }
    @media($sm-991){
        font-size: 14px;
        line-height: 24px;
     
    }
}

.btn-primry{
    height: 63px;
    background-color: $btnYellow;
    font-weight: 700;
    color: $titlePrimary;
    padding: 19px 16px 19px 36px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 31px;
    letter-spacing: 0px;
    font-size: 18px;
    font-weight: 700;

    @media ($sm-1679){
        font-size: 18px;
        height: 53px;
    }
    @media ($sm-1441){
        font-size: 16px;
    }
    @media($sm-991){
        font-size: 14px;
        height: 47px;
    }
    &.arrow{
        &::after{
            content: "";
            width: 24px;
            height: 24px;
            background: url(../img/arrow-right-btn.svg) no-repeat center;
            background-size: contain;
        }
    }
}