/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap"); */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');

/*=====================================
        ALL COMMON STYLE
======================================*/

* {
    padding: 0;
    margin: 0%;
}

button:focus {
    outline: none;
}


/*===== VARIABLES CSS =====*/

 :root {
    --header-height: 3rem;
    /*========== Colors ==========*/
    --main-color: #ff4747;
    --heading-color: #48455a;
    --first-color-alt: #4dbd92;
    --title-color: #393939;
    --text-color: #707070;
    --text-color-light: #A6A6A6;
    --header-color: #ffffff;
    --container-color: #FFFFFF;
    /*========== Font and typography ==========*/
    --body-font: 'Poppins', sans-serif;
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --body-font: 16px;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
    /*========== Margenes ==========*/
    --mb-1: .5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 768px) {
     :root {
        --biggest-font-size: 4rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

@media screen and (max-width:768px) {
     :root {
        --body-font: 13px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
span,
label {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}


/*========== BASE ==========*/

*,
 ::before,
 ::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #777777;
    font-size: var(--body-font);
    font-weight: 400;
    font-family: 'Nunito', sans-serif;
    line-height: 28px;
    background: #f2f4f7;
}
.main__body.pt-161 {
    padding-top: 177px;
}
.main__body.pt-113 {
    padding-top: 113px;
}

* {
    margin: 0px;
    padding: 0px;
    outline: 0px;
}

img {
    vertical-align: middle;
    height: auto;
    max-width: 100%;
}

a {
    text-decoration: none;
    display: inline-block;
}

a:hover {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

html,
body {
    scroll-behavior: smooth;
}

h4.section__title {
    /* padding: 7px 0px; */
    color: #000;
    font-weight: 700;
    font-size: 20px;
    margin-top: -3px;
}

.btn__custom {
    background-color: var(--main-color);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    transition: .3s;
    padding: 4px 23px;
    border-radius: 3px;
    border: none;
    transition: .3s;
}

.btn__custom:hover {
    background-color: #525252;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.icon-btn {
    padding: 5px 15px;
    background: var(--main-color);
    color: #fff !important;
    border-radius: 5px;
    margin: 0 4px;
}


/*===============================================================
                                                            <!-- GO TO TOP BUTTON -->
                                    ==================================================================*/

.scroll__top {
    position: fixed;
    right: 20px;
    bottom: 50px;
    z-index: 2;
    display: none;
}

.scroll__top i {
    width: 48px;
    height: 48px;
    font-size: 16px;
    color: #ffffff;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    background: var(--main-color);
    -webkit-animation: mahmud 2s infinite;
    animation: mahmud 2s infinite;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

@-webkit-keyframes mahmud {
    0% {
        margin-bottom: 0px;
    }
    50% {
        margin-bottom: 15px;
    }
}

@keyframes mahmud {
    0% {
        margin-bottom: 0px;
    }
    50% {
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .scroll__top i {
        width: 42px;
        height: 42px;
        line-height: 42px;
        font-size: 14px;
    }
}


/*===============================================================
                        <!-- GO TO TOP BUTTON END -->
==================================================================*/

.rating .fa {
    color: #e6b606;
}
