/* common styles */
:root {
    scroll-behavior: smooth;
}
  
:root {
  --swiper-theme-color: #007aff
}
  
:root {
    --swiper-navigation-size: 44px
}

@font-face {
    font-family: 'IBMPlexSans-Bold';
    font-weight: 700;
    src: url('../fonts/IBMPlexSans-Bold.ttf');
    font-display: swap;
}
@font-face {
    font-family: 'IBMPlexSans-Medium';
    font-weight: 700;
    src: url('../fonts/IBMPlexSans-Medium.ttf');
    font-display: swap;
}
@font-face {
    font-family: 'IBMPlexSans-Regular';
    font-weight: 700;
    src: url('../fonts/IBMPlexSans-Regular.ttf');
    font-display: swap;
}
@font-face {
    font-family: 'IBMPlexSans-SemiBold';
    font-weight: 700;
    src: url('../fonts/IBMPlexSans-SemiBold.ttf');
    font-display: swap;
}

body{
  font-family: IBMPlexSans-Regular;
}
a {
  color: #4154f1;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #4154f1;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #6776f4;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}



  /*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 1;
  padding: 20px 0;
}

.header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 45px;
  margin-right: 6px;
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  /* font-family: "Nunito", sans-serif; */
  margin-top: 3px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/


.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  padding: 10px 0 10px 30px;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #207DFF;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #4154f1;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #5969f3;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #4154f1;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

.nav_padding{
    padding-left: 5%;
    padding-right: 41%;
}

.nav_span{
    padding-left: 8%;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #012970;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  z-index: 0;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }

    .nav_padding{
        padding-left: 4%;
        padding-right: 4%;
    }
}

@media screen and (min-width:768px) and (max-width:1023px){
    .nav_padding{
        padding-left: 2%;
        padding-right: 2%;
    }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgb(39 50 72 / 28%);
  transition: 0.3s;
  z-index: 1;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  height: 50%;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #012970;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #4154f1;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #4154f1;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/* common styles */

img{
    resize: both !important;
}

.heading_text{
    font-family: IBMPlexSans-Bold !important;
    font-size: 45px;
    line-height: 49px;
    letter-spacing: 0em;
    text-align: left;
    font-weight: 700;
}

.sub_text{
    font-family: IBMPlexSans-Regular;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
}

.sub_text_head{
    font-family: IBMPlexSans-SemiBold;
    font-size: 20px;
    line-height: 16px;
    letter-spacing: 0em;
}

.sub_text_li{
    font-family: IBMPlexSans-Regular;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: justified;
}
.small_heading_text{
    font-family: IBMPlexSans-Bold;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 0em;
}

.sub_heading_text{
    font-family: IBMPlexSans-Bold !important;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 0em;
}

.btn-custom{
    height: 55px;
    width: 180px;
    left: 79px;
    top: 463px;
    border-radius: 0px;
    background: rgba(54, 213, 170, 1);
    /* box-shadow: 0px 3px 3px 0px black; */
    box-shadow: 5px 5px #A2A2A2;
    box-shadow: 5px 5px #a2a2a2;
    font-family: IBMPlexSans-SemiBold;
    font-size: 19px;
    line-height: 15px;
    color: #fff;
}

.benifits__div_text{
    font-family: IBMPlexSans-SemiBold !important;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0em;
}

.benifits__div_content{
    font-family: IBMPlexSans-Regular;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0em;
}

.benifit_content_box{
    border: 1px solid rgba(32, 125, 255, 1);
    border-radius: 10px;
}
.w-85{
    width: 85%;
}

.w-80{
    width: 80%;
}

.w-73{
    width: 73% !important;
}

.w-90{
    width: 90%;
}

.w-95{
    width: 95%;
}
.w-1000{
    width: 100vh;
}


.w-70 {
    width: 70%;
}


.btn-custom:hover {
    color: white;
    text-decoration: none; 
}

.benifit_box{
    background-color: #fffcfc;
    border-radius: 13.5px;
    min-height:144px;
}

.message_box_clk{
    background-color: rgba(32, 125, 255, 1);
    border-radius: 13.5px;
}

.hide_benifit_content_box{
    display: none;
}

.arrow-bottom:after {
    content: "";
    display: block;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: rgba(32, 125, 255, 1) transparent transparent;
    margin-left: -10px;
    position: absolute;
    bottom: 16px;
    left: 50%;
}

.lets_connect_background{
    background-image: url(../images/lets_connect.svg);
    background-repeat: no-repeat;
    background-size:100%;
    min-height: 500px !important;
     
}

.lets_connect{
    font-family: IBMPlexSans-Bold;
    font-size: 45px;
    line-height: 55px;
    letter-spacing: 0em;
    text-align: left;  
    width: 80%;
}

.lets_connect_content{
    font-family: IBMPlexSans-Regular;
    font-size: 20px;
    line-height: 33px;
    letter-spacing: 0em;
    width: 85%;
}

.div_shadow_background{
    background-color: rgba(248, 248, 248, 1);
}

.mobile_bef_div{
    display: none;
}

.desktop_bef_div{
    display: block;
}

@media screen and (min-width:1920px){
    .heading_text {
        font-family: IBMPlexSans-Bold !important;
        font-size: 57px !important;
        line-height: 59px !important;
        letter-spacing: 0em;
        text-align: left;
        font-weight: 700;
        width: 79% ;
    }

    .sub_text {
        font-family: IBMPlexSans-Regular;
        font-size: 23px;
        line-height: 35px;
        letter-spacing: 0em;
        text-align: left;
        width: 90%;
    }

    .w-70 {
        width: 84%;
        margin-left: 45%;
    }

    .lets_connect {
        font-family: IBMPlexSans-Bold;
        font-size: 57px;
        line-height: 57px;
        letter-spacing: 0em;
        text-align: left;
        width: 74%;
    }

    .lets_connect_content {
        font-family: IBMPlexSans-Regular;
        font-size: 25px;
        line-height: 38px;
        letter-spacing: 0em;
        width: 85%;
    }

    .sub_text_li {
        font-family: IBMPlexSans-Regular;
        font-size: 23px;
        line-height: 36px;
        letter-spacing: 0em;
        text-align: justified;
    }

    .benifits__div_text {
        font-family: IBMPlexSans-SemiBold !important;
        font-size: 23px;
        line-height: 24px;
        letter-spacing: 0em;
    }

    .benifits__div_content {
        font-family: IBMPlexSans-Regular;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0em;
    }
    
}
@media screen and (min-width:1024px){
    .head_image_margin{
        margin-left: 5rem!important;
    }
    
}
@media screen and (min-width:768px) and (max-width:1023px){
    .heading_text{
        font-family: IBMPlexSans-Bold !important;
        font-size: 30px;
        line-height: 34px;
        letter-spacing: 0em;
        text-align: left;
        font-weight: 700;
        width: 100% !important;
    }

    .small_heading_text {
        font-family: IBMPlexSans-Bold;
        font-size: 32px;
        line-height: 50px;
        letter-spacing: 0em;
    }
    
    .sub_heading_text {
        font-family: IBMPlexSans-Bold !important;
        font-size: 21px;
        line-height: 24px;
        letter-spacing: 0em;
    }

    .sub_text{
        font-family: IBMPlexSans-Regular !important;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0em;
        text-align: left;
        color: #4C4C4C;
        width: 100% !important;
    }

    .sub_text_head{
        font-family: IBMPlexSans-SemiBold;
        font-size: 16px;
        line-height: 16px;
        letter-spacing: 0em;
    }

    .sub_text_li {
        font-family: IBMPlexSans-Regular;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0em;
        text-align: justified;
    }

    .btn-custom{
        height: 40px;
        width: 140px;
        left: 79px;
        top: 463px;
        border-radius: 0px;
        background: rgba(54, 213, 170, 1);
        /* box-shadow: 0px 3px 3px 0px black; */
        box-shadow: 5px 5px #a2a2a2;
        font-family: IBMPlexSans-SemiBold;
        font-size: 16px;
        line-height: 15px;
        color: #fff;

    }

    .benifits__div_content {
        font-family: IBMPlexSans-Regular;
        font-size: 12px;
        line-height: 22px;
        letter-spacing: 0em;
    }

    .benifits__div_text {
        font-family: IBMPlexSans-SemiBold !important;
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0em;
        width: 100% !important;
    }

    .arrow-bottom:after {
        content: "";
        display: block;
        border-width: 10px 10px 0;
        border-style: solid;
        border-color: rgba(32, 125, 255, 1) transparent transparent;
        margin-left: -10px;
        position: absolute;
        bottom: 16px;
        left: 50%;
    }

    .lets_connect_background {
        background-image: url(../images/lets_connect_mobile.svg);
        min-height: 350px !important;
        background-repeat: no-repeat;
        background-size:auto;
    }

    .lets_connect {
        font-family: IBMPlexSans-Bold;
        font-size: 45px;
        line-height: 55px;
        letter-spacing: 0em;
        text-align: left;
        width: 70%;
    }

    .benifit_box{
        min-height: 138px;
    }

    .mobile_bef_div{
        display: none;
    }

    .desktop_bef_div{
        display: block;
    }
    
}


@media screen and (max-width:767px){

    .lets_connect_background {
        background-image: url(../images/lets_connect_mobile.svg);
        min-height: 350px !important;
        background-repeat: no-repeat;
        background-size:auto;
    }
    .heading_text{
        font-family: IBMPlexSans-Bold !important;
        font-size: 27px;
        line-height: 29px;
        letter-spacing: 0em;
        text-align: left;
        font-weight: 700;
        width: 100% !important;
    }
    .sub_text{
        font-family: IBMPlexSans-Regular !important;
        font-size: 14px;
        line-height: 21px;
        letter-spacing: 0em;
        text-align: left;
        color: #4C4C4C;
        width: 100% !important;
    }

    .sub_text_head{
        font-family: IBMPlexSans-SemiBold;
        font-size: 16px;
        line-height: 16px;
        letter-spacing: 0em;
    }

    .sub_heading_text {
        font-family: IBMPlexSans-Bold !important;
        font-size: 21px;
        line-height: 24px;
        letter-spacing: 0em;
    }

    .small_heading_text {
        font-family: IBMPlexSans-Bold;
        font-size: 24px;
        line-height: 50px;
        letter-spacing: 0em;
    }

    .sub_text_li {
        font-family: IBMPlexSans-Regular;
        font-size: 14px;
        line-height: 28px;
        letter-spacing: 0em;
        text-align: justified;
    }

    .btn-custom{
        height: 40px;
        width: 140px;
        left: 79px;
        top: 463px;
        border-radius: 0px;
        background: rgba(54, 213, 170, 1);
        /* box-shadow: 0px 3px 3px 0px black; */
        box-shadow: 5px 5px #a2a2a2;
        box-shadow: 5px 5px #a2a2a2;
        font-family: IBMPlexSans-SemiBold;
        font-size: 16px;
        line-height: 15px;
        color: #fff;
    }

    .benifits__div_text {
        font-family: IBMPlexSans-SemiBold !important;
        font-size: 14px;
        line-height: 19px;
        letter-spacing: 0em;
        /* width: 100% !important; */
    }

    .lets_connect {
        font-family: IBMPlexSans-Bold;
        font-size: 41px;
        line-height: 55px;
        letter-spacing: 0em;
        text-align: left;
        width: 100%;
    }

    .lets_connect_content {
        font-family: IBMPlexSans-Regular;
        font-size: 19px;
        line-height: 27px;
        letter-spacing: 0em;
        width: 100%;
    }

    .mobile_bef_div{
        display: block;
    }

    .desktop_bef_div{
        display: none;
    }
    .arrow-bottom:after {
        content: "";
        display: block;
        border-width: 10px 10px 0;
        border-style: solid;
        border-color: rgba(32, 125, 255, 1) transparent transparent;
        margin-left: -10px;
        position: absolute;
        bottom: -9px;
        left: 50%;
    }

    .benifits__div_content {
        font-family: IBMPlexSans-Regular;
        font-size: 10px;
        line-height: 20px;
        letter-spacing: 0em;
    }
}


/* appointment css */


@media screen and (min-width:1024px)
{
    .appointment_conf_desktop{
        display: block;
    }
    .appointment_conf_mobile{
        display: none ;
    }

}


@media screen and (min-width:768px) and (max-width:1023px){
    .appointment_conf_desktop{
        display: flex;
    }
    .appointment_conf_mobile{
        display: none;
    }
}


@media screen and (max-width:767px){
    .appointment_conf_mobile{
        display: block !important;
    }
    .appointment_conf_desktop{
        display: none !important;
    }
}


/* medical records */

.ul_padding_left{
    padding-left: 4%;
}

@media screen and (max-width:767px){
    .ul_padding_left{
        padding-left: 5%;
    }
}


/* pharmacy css */
.sub_text_li_pharmacy{
    font-family: IBMPlexSans-Regular;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0em;
}

@media screen and (max-width:767px){
    .sub_text_li_pharmacy {
        font-family: IBMPlexSans-Regular;
        font-size: 16px;
        line-height: 32px;
        letter-spacing: 0em;
    }
}

/* about */
.sub_text_about{
    font-family: IBMPlexSans-Regular;
    font-size: 20px;
    line-height: 31px;
    letter-spacing: 0em;
    text-align: justified;
}
.heading_text_about{
    font-family: IBMPlexSans-Bold;
    font-size: 30px;
    line-height: 33px;
    letter-spacing: 0em;
    width: 50%;
}

.check_box_ul{
    list-style-image: url('../images/about/li_check.svg');
    font-size: 20px !important;
}
.check_box_ul li::marker {
    font-size: 1.5rem; /* You can use px, but I think rem is more respecful */
  }
.check_box_ul_text{
    font-family: IBMPlexSans-Regular;
    font-size: 20px;
    font-weight: 400;
    line-height: 57px;
    letter-spacing: 0em;
    padding-left: 2%;
}


@media screen and (max-width:767px){
    .heading_text_about {
        font-family: IBMPlexSans-Bold;
        font-size: 23px;
        line-height: 33px;
        letter-spacing: 0em;
        width: 100%;
    }

    .sub_text_about {
        font-family: IBMPlexSans-Regular;
        font-size: 14px;
        line-height: 31px;
        letter-spacing: 0em;
        text-align: justified;
    }

    .check_box_ul_text {
        font-family: IBMPlexSans-Regular;
        font-size: 15px;
        line-height: 33px;
        letter-spacing: 0em;
        padding-left: 2%;
    }
}

@media screen and (min-width:768px) and (max-width:1023px){
    .sub_text_about {
        font-family: IBMPlexSans-Regular;
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0em;
        text-align: justified;
    }

    .heading_text_about {
        font-family: IBMPlexSans-Bold;
        font-size: 25px;
        line-height: 33px;
        letter-spacing: 0em;
        width: 100%;
    }

    .check_box_ul_text {
        font-family: IBMPlexSans-Regular;
        font-size: 14px;
        font-weight: 400;
        line-height: 32px;
        letter-spacing: 0em;
        padding-left: 2%;
    }
}



/* footer */

.footer_content{
    font-family: IBMPlexSans-Regular;
    font-size: 20px;
    line-height: 31px;
    letter-spacing: 0em;
    text-align: justified;
    color: #fff;
}

.footer_content_head{
    font-family: IBMPlexSans-Bold;
    font-size: 25px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0em;
    color: #fff;
}

.footer_tag{
    font-family: IBMPlexSans-Regular !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0em;
    color: #fff;
}

.footer_tag:hover{
    color:#207DFF;
}

.copy_right {
    text-align: right;
}


/* privacy policy */

.padding_margin{
    padding: 0px !important;
    margin: 0px !important;

}

.privacy_container_div{
    padding-left:3%;
    padding-right:3%;
}

.privacy_content_sub{
    font-family: IBMPlexSans-Regular;
    font-size: 16px;
    line-height: 35px;
    letter-spacing: 0em;
    text-align: justified;
}

.privacy_content{
    font-family: IBMPlexSans-Regular;
    font-size: 20px;
    line-height: 35px;
    letter-spacing: 0em;
    text-align: justified;
}

.privacy_content_head{
    font-family: IBMPlexSans-Bold;
    font-size: 45px;
    line-height: 45px;
    letter-spacing: 0px;
    text-align: left;
}

.privacy_content_head_sub{
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0px;
    text-align: justified;
}

.privacy_opacity{
    opacity: 50%;
}

.border_div{
    border-left: 2px solid black;
}

.privacy_link_head{
    
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: left;
}

.privacy_link{
    
    font-size: 17px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0px;
    text-align: left;
    color:  rgba(116, 118, 120, 1);

    margin-top: 14%;
}
.privacy_link_id{
    color:  rgba(116, 118, 120, 1);
}
.privacy_link_id:hover{
    color:  rgba(116, 118, 120, 1);
    text-decoration: none;
}
@media only screen and (max-width: 576px) {
    .privacy_hide_div{
        display: none;
    }

    .privacy_container{
        width: 100%;
        padding-right: 0px;
        padding-left: 0px;
        margin-right: 0;
        margin-left: 0;
    }
    .privacy_container_div{
        padding-left:1%;
         padding-right:1%;
    }

    .privacy_content{
        font-size: 14px;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: 0em;
        text-align: justified;
        color: rgba(35, 35, 35, 1);
    }

    .privacy_content_sub {
        font-family: IBMPlexSans-Regular;
        font-size: 14px;
        line-height: 30px;
        letter-spacing: 0em;
        text-align: justified;
    }

    .privacy_content_head{
        font-size: 25px;
        font-weight: 700;
        line-height: 33px;
        letter-spacing: 0em;
        text-align: left;
        color: #232323;
        text-transform: uppercase;
    }
}



/* scroll top */
.scrollup {
    width:150px;
    height:50px;
    opacity:1;
    position:fixed;
    bottom:20px;
    right:10px;
    z-index: 1;
    display:none;
    text-indent:-9999px;
    background: url(../images/lets_talk_icon_desk.svg) no-repeat;
}

@media only screen and (max-width: 576px) {
    .scrollup {
        width:50px;
        height:50px;
        opacity:1;
        position:fixed;
        bottom:30px;
        z-index: 1;
        right:20px;
        display:none;
        text-indent:-9999px;
        background: url(../images/lets_talk_icon_mob.svg) no-repeat;
        /* background-image: url(../images/lets_connect_mobile.svg); */
    }
}
/* scroll top */

