
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
  --main-transition: 0.5s linear;
  --main-color: #d35c2f;
}

body {	
     font-family:"Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;    
	background: #fff;
	color: #333333;	
}

a:hover {
    text-decoration: none;
}

a{
    text-decoration: none;
}

img, picture,svg{
  max-width: 100%;
  display: block;
}

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

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

::selection {
    color: white; 
    background: #ff7675;
}

::-webkit-selection {
    color: white; 
    background: #ff7675;
}

::-moz-selection {
    color: white; 
    background: #ff7675;
}

.scrolltotop {
    z-index: 999;
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 0 0;
    background: #d35c2f;   
    text-align: center;
    padding-top: 8px;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.scrolltotop:hover {   
    background: #d35c2f;
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,.5);   
}


.main {
    position: relative;
    overflow: hidden;
}


/*--- header-area start ---*/
.header-area {
  padding: 30px 0px;
  position: relative;
  z-index: 9999;
  padding-bottom: 0px;
}

.header-area .container {
  position: relative;
}

.header-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-part .right {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.right .header-nav {
  margin: auto;
}

.header-logo {
  width: 20%;
}

.header-logo img {
  width: 154px;
  height: 64px;
  display: block;
}

.header-nav ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.header-nav ul li {
  display: inline-block;
  padding-right: 35px;
}

.header-nav ul li a {
  color: #888888;
  font-size: 15px;
  font-weight: 500;
  display: block;
  transition: 0.2s all ease;
}

.header-nav ul li.active a {
  color: #d35c2f;
}

.header-nav ul li a:hover {
  color: #d35c2f;
}

.header-nav ul li .head-tag {
  color: #fff;
  background-color: #d35c2f;
  padding: 3px 15px;
  border-radius: 17px;
}

.header-nav ul li a.head-tag:hover {
  color: #fff;
  background-color: #d35c2f;
}

.header-nav ul li.tag1 {
  padding-right: 10px;
}

.header-right ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  text-align: right;
}

.header-right ul li {
  display: inline-block;
  padding-left: 25px;
}

.header-right ul li:nth-child(1) a {
  width: 37px;
  height: 37px;
  display: inline-block;
  background-color: #fec7bd;
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
  line-height: 37px;
  text-align: center;
}

.header-right ul li:nth-child(2) a {
  color: #5a5a5a;
  font-size: 16px;
  font-weight: 600;
}

.container {
  max-width: 1320px;
  display: block;
  margin: auto;
  padding: 0;
}

.circal1 {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 46%;
}

.search-part input {
  color: #ffff;
  font-size: 16px;
  font-weight: 400;
  width: 306px;
  height: 62px;
  border-radius: 8px;
  padding: 10px 20px;
  border: none;
  background: #d35c2f;
  outline: none;
  position: absolute;
  top: 64px;
  right: 0;
  z-index: 9999;
  display: none;
}

.search-part input::placeholder {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.icon1 {
  display: none;
}

.side-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  padding: 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 100vh;
  box-shadow: -3px -5px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateX(100%); 
  transition: transform 0.5s ease;
  z-index: 999;
}

.side-nav .main-nav {
  display: flex;
  flex-direction: column;
}
.side-nav ul li {
  margin-bottom: 15px;
}

.side-nav .header-right ul {
  display: flex;
  /* flex-direction: column; */
  gap: 20px;
  padding: 0;
  margin: 0;
  
}
.side-nav .header-right ul li{
  
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
  
}

.icon1, .icon2{
  cursor: pointer;
}


.icon2 {
  display: block ;
  margin-bottom: 30px;
}

.side-nav .right-side {
  display: flex;
  flex-direction: column;
}

/* .side-nav .main-nav .list-item {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s linear;
    }

    .side-nav .main-nav .list-item.show {
        opacity: 1;
        transform: translateY(0);
    } */

.header-nav .main-nav li {
  position: relative;
  transition: all 0.3s linear;
}


/*
====================================
start service submenu
====================================
*/

.header-nav .main-nav > li.service-menu {
  position: relative;
}

.header-nav .main-nav > li.service-menu:hover .service-link,
.header-nav .main-nav > li.service-menu:focus .service-link,
.header-nav .main-nav > li.service-menu:active .service-link {
  color: var(--main-color);
}
.service-submenu a {
  text-transform: capitalize !important;
  font-size: 15px;
}


.header-nav .main-nav > li.service-menu:hover .service-submenu {
  opacity: 1;
  z-index: 9999999;
  top: calc(100% + 1px);
}

.header-nav .service-submenu .links {
  min-width: 250px;
  flex: 1;
}

.header-nav .service-submenu .links li {
  position: relative;
}

/* .header-nav .service-submenu .links li:not(:last-child) {
    border-bottom: 1px solid #e9e6e6;
} */

.header-nav .service-submenu .links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  background-color: #fafafa;
  transition: var(--main-transition);
}

.header-nav .service-submenu .links li:hover::before {
  width: 100%;
}

.header-nav .service-submenu .links li a {
  display: block;
  padding: 10px;
}



/*--- hero-area start ---*/
.hero-area {
    padding: 0px 0;
    position: relative;
    z-index: 999;
}

.hero-text-part h1 {
    color: #5A5A5A;
    font-size: 58px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    line-height: 80px;
    margin-right: -49px;
    position: relative;
    z-index: 999;
    padding-bottom: 25px;
}


.hero-text-part ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.hero-text-part ul li {
    display: inline-block;
    padding-right: 20px;
}






.contactus-text-part {
    padding: 80px 0;
}


.contactus-text-part h1 {
    color: #5A5A5A;
    font-size: 58px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    z-index: 999;
}

.contactus-text-part h2 {
    color: #5A5A5A;
    font-size: 36px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    z-index: 999;
}




.contactus-text-part img {
    max-width: 100%;
    display: none;
    margin: auto;
}


.contactus-text-part p {
    color: #888888;
    font-size: 15px;
    text-align: justify;
    margin: 0;
    padding-top: 16px;
    line-height: 27px;
}



.contactusform_part {
    padding-top: 30px;
}

.contactusform_part input {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #D9D9D9;
    border-radius: 16px;
    width: 100%;
    background: #fff;
    padding: 17px 20px;
    outline: none;
}


.contactusform_part input::placeholder {
   color: #888888;
   font-size: 16px; 
   font-weight: 400;
}



.inner_contact_item {
        display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    align-items: center;
    justify-content: space-around;
    grid-row-gap: 20px;
    padding-top: 25px;
    padding-bottom: 25px;
}




.contactusform_part textarea {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #D9D9D9;
    border-radius: 16px;
    width: 100%;
    background: #fff;
    padding: 17px 20px;
    outline: none;
    height: 212px;
}


.contactusform_part textarea::placeholder {
   color: #888888;
   font-size: 16px; 
   font-weight: 400;
}




.contactusform_part input[type="submit"] {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #948AFF;
    border-radius: 16px;
    width: inherit;
    background: #948AFF;
    padding: 17px 30px;
    outline: none;
    margin-top: 25px;
    transition: 0.2s all ease;
}

.contactusform_part input[type="submit"]:hover {
    background-color: #000;
    border: 1px solid #000;
}





/*--- aboutus-area start ---*/
.aboutus-area {
    background: none ;
    padding: 181px 0;
    padding-top: 0px;
    position: relative;
    z-index: 9999;
}


.aboutus-img img {
    max-width: 100%;
    display: block;

}

.aboutus-text {
  margin-left: -49px;  
}

.aboutus-text h2 {
    color: #5A5A5A;
    font-size: 38px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.aboutus-text p {
    color: #888888;
    font-size: 16px;
    margin: 0;
    line-height: 25px;
    font-weight: 400;
    text-align: justify;   
}
/*--- Download-area start ---*/
.Download-area {
    background: none !important;
    padding: 60px 0;
}

.Download-left-part h2 {
    color: #5A5A5A;
    font-size: 50px;
    font-weight: 600;
    margin: 0;
    padding-bottom: 13px;
}
.Download-left-part p {
    color: #888888;
    font-size: 18px;
    margin: 0;
    text-align: justify;
    width: 442px;
    line-height: 25px;
    padding-bottom: 50px;    
}
.Download-left-part ul {
    padding: 0;
    margin: 0; 
    list-style-type: none;
}
.Download-left-part ul li {
    display: inline-block;
}
.Download-left-part ul li img {
    width: 278px;
    display: block;
    margin-right: 16px;
}
.Download-right-part img {
    max-width: 100%;
    display: block;
    margin: auto;
    margin-right: 0px;
}
/*--- Subscribe-area start ---*/
.Subscribe-area {
    background: #fff;
    padding: 90px 0;
    padding-top: 30px;
}
.Subscribe-part {
    border-radius: 16px;
    box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
    border: 15px solid #ffff;
}
.innerSubscribe-part {
    background: rgb(255,159,123);
    background: linear-gradient(250deg, rgba(255,159,123,1) 0%, rgba(255,181,154,1) 100%);
    padding: 60px 60px;
    border-radius: 6px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.Subscribe__text h2 {
    color: #fff;
    font-size: 30px;
    margin: 0;
    font-weight: 500;    
}
.Subscribe__form_part input[type="email"] {
    color: #888888;
    font-size: 18px;
    font-weight: 400;
    width: 430px;
    height: 62px;
    border-radius: 16px;
    padding: 10px 20px;
    border: none;
    margin-right: 9px;
}
.Subscribe__form_part input[type="email"]::placeholder {
    color: #888888;
    font-size: 18px;
    font-weight: 400;
}
.Subscribe__form_part input[type="submit"] {
    width: 200px;
    height: 62px;
    border-radius: 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    outline: none;
    border: none;
    background-color: #958AFF;
}
/*--- services-area start ---*/
.services-area {
    padding: 60px 0;
    position: relative;
    z-index: 99999;
}
.servicess-top {
    position: relative;
}

.servicess-top h2 {
    color: #5A5A5A;
    font-size: 38px;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 42px;
    font-weight: 600;    
}

.servicess-top img {
    position: absolute;
    top: -140px;
    width: 268px;    
}

.services-top {
    padding-bottom: 100px;
    position: relative;
}

.services-top h2 {
    color: #5A5A5A;
    font-size: 38px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;   
}







.servicestop-img1 {
    position: absolute;
    bottom: -77px;
    left: -104px;
    max-width: 30%;
}


.servicestop-img2 {
    position: absolute;
    bottom: -69px;
    max-width: 32%;
    right: -137px;
}


.services-partbg {
   box-shadow: 0px 0px 50px rgb(214 214 255);
   background: rgb(222 222 255 / 54%);  
}


.services-partbg2 {
   box-shadow: 0px 0px 50px rgb(255 249 240);
   background: rgb(250, 244, 233 / 54%);  
}





.whatupimg {
    position: absolute;
    height: 100px;
    left: -251px;
    top: 27px;
}







/*--- footer-area start ---*/
.footer-area {
    background: #fafafa;
    padding: 80px 0;
    position: relative;
    z-index: 99;
}


.footer-part {
    display: flex;

}

.footer-logo-part {
   width: 539px;
}

.footer-logo-part img {
    width: 180px;
}

.footer-logo-inner-part {
    display: flex;
    padding-top: 25px;
}

.footer-logo-inner-text {
    padding-right: 18px;
}

.footer-logo-inner-text h4 {
    color: #888888;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    padding-bottom: 14px;
}

.footer-logo-inner-text p {
    color: #888888;
    font-size: 14px;
    margin: 0;
    padding-bottom: 16px;
}





.footer-link {
    width: 189px;
}

.footer-link h3 {
    color: #5A5A5A;
    font-size: 18px;
    margin: 0;
    padding-bottom: 20px;
    padding-left: 20px;
}

.footer-link ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    border-left: 1px solid #D9D9D9;
    padding-left: 20px;
}

.footer-link ul li {
    display: block;
    padding-top: 27px;
}

.footer-link ul li a {
    color: #888888;
    font-size: 14px;
    display: block;
}











.footer-two-part {
    display: flex;
}


.footer-facilities h3 {
    color: #5A5A5A;
    font-size: 18px;
    margin: 0;
    padding-bottom: 20px;
    padding-left: 20px;  
}



.inner-footer-facilities {
    border-left: 1px solid #D9D9D9;
    padding-left: 7px;
    position: relative;
    border-right: 1px solid #D9D9D9;
    height: 191px;
    padding-right: 4px;
}


.inner-footer-facilities img {
    width: 302px;
    height: 216px;
}



.text1 {
    color: #888888;
    font-size: 9px;
    margin: 0;
    position: absolute;
    top: 9px;
    right: 69px;
    line-height: 15px;
}


.text2 {
    color: #888888;
    font-size: 9px;
    margin: 0;
    position: absolute;
    top: 54px;
    right: 113px;
    line-height: 14px;   
}


.text3 {
   color: #888888;
    font-size: 9px;
    margin: 0;
    position: absolute;
    top: 92px;
    left: 24px;
    line-height: 14px;  
}










.footer-info {
    width: 291px;
}

.footer-info h3 {
    color: #5A5A5A;
    font-size: 18px;
    margin: 0;
    padding-bottom: 20px;
    padding-left: 20px;
}


.footer-info-item ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    padding-top: 20px; 
}

.footer-info-item ul li {
    display: block;
    padding-bottom: 18px;
}

.footer-info-item ul li p {
    margin: 0;
}

.footer-info-item ul li p img {
    height: 16px;
}

.footer-info-item ul li:nth-child(1) p {
    display: flex;
    align-items: start;
}

.footer-info-item ul li:nth-child(1) p img {
    height: 19px;
    margin-top: 4px;
    margin-right: 10px;
}


.footer-info-item ul li p a {
    color: #888888;
    font-size: 14px; 
}


.footer-info-item {
    padding-left: 20px;
}


.footer-social {
    padding-left: 20px;
}

.footer-social ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.footer-social ul li {
    display: inline-block;
}

.footer-social ul li a img {
    margin-right: 8px;
    height: 16px;
}






/*--- last-area start ---*/
.last-area {
    background: #5A5A5A;
    padding: 30px 0;
}


.last-part p {
    color: #fff;
    font-size: 14px;
    text-align: center;
    margin: 0;
}



.container {
    max-width: 1320px;
    display: block;
    margin: auto;
    padding: 0;
}


.circal1 {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 46%;  
}



.search-part input {
    color: #ffff;
    font-size: 16px;
    font-weight: 400;
    width: 306px;
    height: 62px;
    border-radius: 8px;
    padding: 10px 20px;
    border: none;
    background: #d35c2f;
    outline: none;
    position: absolute;
    top: 64px;
    right: 0;
    z-index: 9999;
    display: none;

}

.search-part input::placeholder {
    color: #fff;
    font-size: 16px;
    font-weight: 400;    
}

.menu-part {
    display: none;
}

.menu-part i {
    color: #000000;
    font-size: 28px;
}


.Download-img2 {
    display: none;
}

.mobile-bg {
    display: none;
}


/*--- Facilities-area start ---*/
.Facilities-area {
    padding: 130px 0;
    padding-bottom: 100px;
    position: relative;
    z-index: 999;
}




.Facilities-left-text p {
    color: #000000;
    font-size: 15px;
    text-align: justify;
    margin: 0;
    line-height: 29px;
    padding-bottom: 12px; 
}

.Facilities-right {
    padding-left: 15px;
}

.Facilities-big-img img {
    width: 100%;
    border-radius: 25px;
}



.Facilities-imgs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding-top: 30px;
    justify-content: space-around;
}


.Facilities-imgs-item img {
    width: 100%;
    display: block;
    margin: auto;
    border-radius: 15px;
}











.Facilities-info-item ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    padding-top: 20px; 
}

.Facilities-info-item ul li {
    display: block;
    padding-bottom: 18px;
}

.Facilities-info-item ul li p {
    margin: 0;
}

.Facilities-info-item ul li p img {
    height: 16px;
}

.Facilities-info-item ul li:nth-child(1) p {
    display: flex;
    align-items: start;
    width: 250px;
}

.Facilities-info-item ul li:nth-child(1) p img {
    height: 19px;
    margin-top: 4px;
    margin-right: 10px;
}


.Facilities-info-item ul li p a {
    color: #888888;
    font-size: 14px; 
}


.Facilities-info-item {
    padding-left: 0px;
}


.Facilities-social {
    padding-left: 0px;
}

.Facilities-social ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.Facilities-social ul li {
    display: inline-block;
}

.Facilities-social ul li a img {
    margin-right: 17px;
    height: 18px;
}

.Facilities-btn {
    padding-top: 20px;
}

.Facilities-btn a {
    color: #fff;
    font-size: 16px;
    width: 144px;
    height: 65px;
    display: block;
    background-color: #D35C2F;
    line-height: 65px;
    text-align: center;
    border-radius: 25px;
    transition: 0.2s all ease;
}

.Facilities-btn a:hover {
   background-color: #000;
   color: #fff;
}





.Facilities-fag-part {
    padding-bottom: 62px;
    display: flex;
}




.Facilities-fag {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.Facilities-fag-img img {
    width: 54px;
    height: 31px;
    margin-right: 8px;
}

.Facilities-fag-text h4 {
    color: #000;
    font-size: 14px;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
}

.Facilities-fag-text p {
    color: #000;
    font-size: 11px;
    margin: 0;
    font-weight: 300;
    text-transform: uppercase;   
}




/*--- whatarea start ---*/
.whatarea {
    padding: 60px 0;
    background: #fff;
}

.whatarea-part {
    position: relative;
}

.whatarea-part h2 {
    color: #D35C2F;
    font-size: 53px;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    font-weight: 600;
    padding-bottom: 12px;
    letter-spacing: -2px;
}

.whatarea-part p {
    color: #888888;
    font-size: 25px;
    text-align: center;
    font-weight: 400;
    margin: 0;
    padding-bottom: 20px; 
}

.whatarea-part ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: center;
}


.whatarea-part ul li {
    display: inline-block;
    margin: 0 10px;
}

.whatarea-part ul li a {
    color: #fff;
    width: 155px;
    height: 60px;
    display: block;
    background-color: #948AFF;
    line-height: 60px;
    text-align: center;
    border-radius: 22px;
    transition: 0.2s all ease;
}

.whatarea-part ul li a:hover {
    background-color: #ff9d78;
}

.circalss1 {
    width: 110px;
    height: 110px;
    background: #a69feb;
    border-radius: 50%;
    position: absolute;
    top: 0px;
    left: 220px;
}

.circalss2 {
    width: 60px;
    height: 60px;
    background-color: #ff9d78;
    border-radius: 50%;
    position: absolute;
    right: 208px;
    bottom: 20px;   
}




/*--- roll-area start ---*/
.roll-area {
    padding: 10px 0;
    background: #fff;
}

.roll-top h2 {
    color: #5A5A5A;
    font-size: 38px;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 54px;
    font-weight: 600;    
}


.roll-part {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 25px;
    justify-content: center;
    grid-row-gap: 25px;
    width: 1082px;
    margin: auto;    
}


.roll-item-part {
   width: 325px;
   height: 400px;
   display: block;
   border: 1px solid #EEEEEE;
   border-radius: 16px;
   padding: 30px;
   background-color: #fff;
   box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
   position: relative;
   overflow: hidden;
}


.roll-text h2 {
    color: #5A5A5A;
    font-size: 22px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: -1px;
}

.roll-text p {
    color: #888888;
    font-size: 14px;
    margin: 0;
    padding-bottom: 8px;
    padding-top: 4px;   
}

.roll-text ul {
    list-style-type: disc;
    padding-left: 27px;
}

.roll-text ul li {
    color: #888888;
    font-size: 18px;
    padding-bottom: 10px;
}

.roll-text ul li span {
 font-size: 14px;   
}


.roll-down-circal h3 {
    color: #fff;
    font-size: 37px;
    background-color: #FF9D78;
    text-align: center;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: absolute;
    bottom: -80px;
    right: -51px;
    margin: 0;
    line-height: 16px;
    padding-top: 61px;
    padding-right: 17px;
}

.roll-down-circal h3 span {
    font-size: 11px;
    font-weight: 400;
}

.innerroll-item-part {
    background: #ff9d79;
}
.innerroll-item-part .roll-down-circal h3 {
   background: #a49de8;
}
.innerroll-item-part .roll-text h2 {
    color: #fff;
}
.innerroll-item-part .roll-text p {
    color: #fff;
}
.innerroll-item-part .roll-text ul li {
    color: #fff;
}
.servicess-area {
   padding-top: 0px;
   margin-top: -163px;
}
.services-part img{
    object-fit: contain;;
}
.section_title {
    font-size: 2.1rem !important;
    font-weight: 500 !important;
    text-align:center;
}
.services-items h3 {
    font-size: 14px !important;
}
.hero-area {
    padding-top:5px !important;
}