
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Raleway-Bold";
  color: #201212
}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  color: #330606;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
   font-family: "Fira Sans", sans-serif;
}
p{
   font-family: "Raleway-Bold";  
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 14px;
  bottom: 58px;
  z-index: 996;
  background: #FB7B37;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #330606;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  padding: 7px 0;
  background: White;
}
#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}
#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #222222;
  text-decoration: none;
}
#header .logo img {
  padding: 3px;
  margin: 0;
  max-height: 59px;
  width: 104%;
  background-color: #fff;
}

/*--------------------------------------------------------------
# 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;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 20px;
  font-weight: 400;
  color: black;
  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: #FB7B37;
}
.navbar .getstarted, .navbar .getstarted:focus {
  background: #FB7B37;
  padding: 10px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  
  font-size: inherit;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #5a0303;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  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: 14px;
}
.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: #FB7B37;
}
.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%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #f3ebeb;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.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: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #FB7B37;
}
.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: 99;
  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: #FB7B37;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh;
  margin-top: 70px;
}
#hero h1 {
  margin: -37px 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #1c0404e6;
}
#hero h2 {
  color: #484848;
  margin-bottom: 50px;
  font-size: 24px;
}
#hero h5{
  font-size:24px;
}
#hero .btn-get-started {
  font-family:serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #392728;
  font-weight: bold;
  border: 2px solid #FB7B37;
}
#hero .btn-get-started:hover {
  background: #FB7B37;
  color: #fff;
}
#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 991px) {
  #hero {
    height: 100vh;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  #hero {
    margin-top: 20px;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 13px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7fbfe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  
  position: relative;
  color: #222222;
}
.section-title h2::before, .section-title h2::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #FB7B37;
  display: inline-block;
}
.section-title h2::before {
  margin: 0 15px 10px 0;
}
.section-title h2::after {
  margin: 0 0 10px 15px;
}
.section-title p {
  margin: 15px 0 0 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #f3f9fd;
  padding: 10px 0;
  text-align: center;
}
.clients .col-lg-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients img {
  width: 50%;
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 10px 0;
}
.clients img:hover {
  filter: none;
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .clients img {
    width: 40%;
  }
}
@media (max-width: 575px) {
  .clients img {
    width: 30%;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}
.counts .content {
  padding: 0;
  margin-top: -80px;
}
.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #222222;
}
.counts .content p {
  margin-bottom: 0;
}
.counts .content .count-box {
  padding: 42px 0;
  width: 97%;
}
.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #FB7B37;
  float: left;
  line-height: 0;
}
.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #222222;
  margin-left: 50px;
}
.counts .content .count-box p {
  padding: 13px 5px 18px 4px;
  margin: -3px 7px -3px 80px;
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  color: #201212;
  font-weight: lighter;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #484848;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}
.counts .content .count-box a:hover {
  color: #300202;
}
@media (max-width: 1024px) {
  .counts .image {
    text-align: center;
  }
  .counts .image img {
    max-width: 70%;
  }
}
@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  margin-bottom: 18px;
}
.services .icon-box::before {
  content: "";
  position: absolute;
  background: #FFD9D4;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}
.services .icon-box:hover::before {
  background: #FB7B37;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}
.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;

  transition: all 0.3s ease-in-out;
}
.services .img{
  text-align: center;
}
.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}
.services .title {
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  color: #201212;
}
.services .title a {
  color: #201212;
}
.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
.services .icon-box:hover .title a, .services .icon-box:hover .description {
  color: #fff;
}
.services .icon-box:hover .icon {
  background: #fff;
}
.services .icon-box:hover .icon i {
  color: #FB7B37;
}
.services .schedulenow{
  
  background: #f07b3d;
  padding: 8px 25px;
  border-radius: 30px;
  margin-top: 100px;
  color: white;
  border-color: none;
  border: none;

 
}
.services .schedulenow:hover{
 background: #300202;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f6f6f6;
  transition: ease-in-out 0.3s;
}
.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}
.features .icon-box h3 {
  font-weight: 500;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  color:#201212;
}
.features .icon-box h3 a {
  color: #201212;
  transition: ease-in-out 0.3s;
}
.features .icon-box h3 a:hover {
  color: #FB7B37;
}
.features .icon-box:hover {
  background: #b3dcf1;
}
.features .scheduleNow:hover{
  background: #300202;
}


/*--------------------------------------------------------------
# counts
--------------------------------------------------------------*/
.counts .counts-about h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  color: #222222;
}
.counts .counts-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Raleway", sans-serif;
  color: #888;
}
.counts .social-links {
  padding-bottom: 20px;
}
.counts .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #FB7B37;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #FB7B37;
}
.counts .social-links a:hover {
  background: #FB7B37;
  color: #fff;
}
.counts .info {
  color: #444444;
}
.counts .info i {
  font-size: 32px;
  color: #FB7B37;
  float: left;
  line-height: 1;
}
.counts .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
}
.counts .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.counts .php-email-form .error-message br + br {
  margin-top: 25px;
}
.counts .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.counts .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.counts .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.counts .php-email-form .form-group {
  margin-bottom: 20px;
}
.counts .php-email-form input, .counts .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px 15px;
}
.counts .php-email-form input:focus, .counts .php-email-form textarea:focus {
  border-color: #FB7B37;
}
.counts .php-email-form button[type=submit] {
  background: #FB7B37;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.counts .php-email-form button[type=submit]:hover {
  background: #220107;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

               
.Shadow1{
  border-radius: 30px;
  border-color:rgb(231, 230, 230);
  
  
}
.features .scheduleNow{
  background: #FB7B37;
    padding: 8px 25px;
    margin-left: 555px;
    border-radius: 50px;
    color: #fff;
}
#features .scheduleNow a:hover{
  color: #300202;
}
#services .btn{
  background: #FB7B37;
  padding: 8px 25px;
  margin-left: 590px;
  border-radius: 50px;
  color: #fff;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 2.25rem;
    margin-top: 20px;
    border-color: pink;
}
.button{
  color:#57aae1
}
.call{
  border-radius: 30px;
  border-color: #2383c4;
  background-color: white;
}
#demo{
  background: url("../img/esankalan\ footer.png");
  padding: 30px 0;
}
#demo .copy{
  font-weight: bold;
  text-align: left;
  font-size: 30px;
  color: #fff;
  position: sticky;
  top: 0;
}
#demo .democopy{
  float: right;
  background-color: #FB7B37;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 20px;
  font-family:Arial, Helvetica, sans-serif;
  font-weight: bold;
}
#demo .democopy:hover{
  background: #300202;
}

.elementor-button-wrapper{
  display: none;
  background: #23c0e2;
  padding: 8px 25px;
  text-align: center;
  margin-top: 100px;
  color: white;
  border-color: none;
  border: none;
  
}
.elementor-button{
  display: none;
  background: #392728;
  padding: 8px 25px;
  text-align: center;
  margin-top: 100px;
  color: white;
  border-color: none;
  border: none;
  
}


/* Smartphone Portrait and Landscape */
@media screen and (max-width: 500px)   {
  .elementor-button-wrapper{
    display: block;
    width: 50%;
    position: fixed;
    bottom: 0;
    left: 45%;
    margin: 0 0 0 -20%;
    margin-left: 20px;
  }
}
@media screen and (max-width: 500px)   {
  .elementor-button{
    display: block;
    width: 50%;
    position: fixed;
    bottom: 0;
    left:20%;
    margin: 0 0 0 -20%;
  }
}
elementor-button-text{
  color: #111;
}
@media (min-width: 992px) {
  .demo {
    background-color:#FFD9D4;
  padding: 30px 0;
  }
}

#footer {
  font-size: 14px;
  background: #FB7B37;
}

#footer .footer-newsletter {
  padding: 50px 0;
/*background: #f3f5fa;
*/text-align: center;
  font-size: 15px;
  color: #f9f9f9;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-newsletter form {
 margin: 31px 0px 0px 98px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
  width: 378px;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #47b2e4;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #209dd8;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background:#FB7B37;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 25px;
  margin: 0 0 10px -161px;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 600;
  color: #ffff;
  font-family: "smoolthan";
  text-align: center;

}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "smoolthan";
  color: #FFFF;
}

#footer .footer-top h4 {
  font-size: 23px;
  font-weight: bold;
  color: #FFFF;
  position: relative;
  padding-bottom: 12px;
  font-family: "smoolthan";
  margin: 12px 0px 0px -38px;
}



#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links1 ul a {
  color: #FFF;
  transition: 0.3s;
  display: inline-block;
  line-height: 2;
  font-size: 18px;

}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #47b2e4;
  font-size: 18px;
  line-height: 1;

}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #FFF;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 18px;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #47b2e4;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #47b2e4;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 500px) {
#footer {
  font-size: 17px;
  background: #37517e;
  width: 413px;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links {
margin: 3px 0px -4px 295px;
}

#footer .footer-top .footer-links1 {
margin: -224px 17px 7px 172px;
  list-style: none;

}
#footer .footer-top .footer-links1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-contact h3 {
  font-size: 25px;
  margin: 0 0 10px -36px;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 600;
  color: #ffff;
  font-family: "smoolthan";
  text-align: center;

}
#footer .footer-top .footer-contact h5 {
  font-size: 25px;
  margin: 0 0 10px -59px;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 600;
  color: #ffff;
  font-family: "smoolthan";
  text-align: center;

}
#footer .footer-top .footer-contact h6 {
  font-size: 25px;
  margin: 2px 22px 2px 0px;
  padding: 2px 25px 2px 0;
  line-height: 1;
  font-weight: 600;
  color: #ffff;
  font-family: "smoolthan";
  text-align: center;

}
 #footer .mb-4
 {
    margin:0px 0px 0px 107px;
 }
}
