body,
html {
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    color: #000
}

#home-banner h1,
#home-banner h2,
#home-banner h3,
#home-banner h4 {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    color: #fff
}

ul {
    margin: 0;
    padding: 0;
    list-style: none
}

a {
    color: #fff
}

a:hover {
    color: #fff
}

.btn:focus,
.form-control:focus,
a,
a:active,
a:focus,
a:hover,
button:focus {
    outline: 0!important;
    text-decoration: none!important;
    box-shadow: none!important
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 100px
}





#home-banner,
.banner-content {
    position: relative;
    width: 100%;
    height: 700px
}

.banner-content .banner-info {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100%;
    margin-top: -100px
}




.section-title{
    text-align: center;
    margin-bottom: 50px;
}



.cute-robot-v1{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;

    * {
        box-sizing: border-box;
    }

    .circle-bg {
       
        width: 80px;
        height: 55px;
        border-radius: 100%;
        border: 3px solid #195272;
        position: relative;

        &:after {
            content: "";
            position: absolute;
            z-index: 2;
            height: 100%;
            width: 100%;
            top: -1px;
            left: 0;
            border-radius: 100%;
            border-bottom: 4px solid #195272;
        }
      
        &:hover {
          .logo-robot-face {
              top: 12px !important;
          }

          .logo-eyes {
              top: 10px !important;
          }

          .logo-mouth {
              background: #195272;
              border: none;
              clip-path: polygon(0% 30%, 100% 30%, 100% 100%, 0% 100%);

              &:after{
                  content: "";
                  position: absolute;
                  height: 80%;
                  width: 80%;
                  bottom: -30%;
                  left: 50%;
                  transform: translateX(-50%);
                  background: #f9bbbb;
                  border-radius: 100%;
              }
          }
        }

        .logo-robot-head {
            height: 64px;
            width: 64px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: -7px;
            border: 3px solid #195272;
            border-radius: 27px/ 20px;
            background: #ffffff;
            z-index: 4;
            &:after {
                content: "";
                position: absolute;
                top: -10px;
                height: 10px;
                width: 3px;
                left: 50%;
                transform: translateX(-50%);
                background: #195272;
            }
            &:before {
                content: "";
                position: absolute;
                top: -20px;
                left: 50%;
                transform: translateX(-50%);
                height: 10px;
                width: 10px;
                background: #cedbdd;
                border: 3px solid #195272;
                border-radius: 100%;
            }

            .logo-robot-face {
                height: 40px;
                width: 50px;
                background: #cedbdd;
                position: absolute;
                top: 15px;
                left: 50%;
                transform: translateX(-50%);
                border: 3px solid #195272;
                transition: all 200ms;
                border-radius: 15px;

                .logo-eyes {
                    height: 7px;
                    width: 7px;
                    background: #195272;
                    border-radius: 100%;
                    position: absolute;
                    transition: all 200ms;
                    top: 12px;

                    &.left {
                        left: 10px;
                    }
                    &.right {
                        right: 10px;
                    }
                }

                .logo-mouth {
                    height: 15px;
                    width: 15px;
                    border-radius: 100%;
                    border: 3px solid transparent;
                    border-bottom-color: #195272;
                    position: absolute;
                    left: 50%;
                    transform: translateX(-50%);
                    top: 16px;
                    overflow: hidden;
                }
            }
        }

        .logo-robot-ear {
            position: absolute;
            height: 32px;
            width: 32px;
            border-radius: 100%;
            background: #ffffff;
            border: 3px solid #195272;
            z-index: 3;
            top: 10px;

            &.left {
                left: -7px;
            }
            &.right {
                right: -7px;
            }
        }
    }
}
#roast-bubble {
    background: #dedede;
    color: #333;
    border-radius: 1rem;
    position: absolute;
    left: 8.5rem;
    min-width: 200px;
    max-width: 300px;
    padding: 5px;
    text-align: center;
    display: none;
  }
  #roast-bubble:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-width: 6.5px 19px 6.5px 0;
    border-color: transparent #dedede transparent transparent;
    border-style: solid;
    position: absolute;
    top: 50%;
    left: -0.5rem;
    transform: translate(-50%, -50%);
  }