/*--------------------------------------------------------------
# body
--------------------------------------------------------------*/

:root {
  /* ===== Colors ===== */
  --bs-primary: #06165a;
  --bs-info: #2e71ae;
  --bs-success: #28b46b;
  --bs-danger: #f13d47;
  --bs-warning: #ffa030;
  --bs-blue: #82c4f5;
  --bs-info2: #d1fee8;
  --white: #fff;

  /*font*/
  --font-Droid: 'Droid Arabic Kufi', sans-serif;
}
.btn-primary {
  background: var(--bs-primary) !important;
  color: var(--white) !important;
  border: 0 !important;
}
.text-primary {
  color: var(--bs-primary) !important;
}
.bg-primary {
  background: var(--bs-primary) !important;
}
.border-primary {
  border-color: var(--bs-primary) !important;
}
.btn-info {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 28px !important;
  border-radius: 40px !important;
  transition: 0.5s;
  margin-top: 30px;
  color: var(--white) !important;
  background: var(--bs-info) !important;
  border: 1px solid var(--bs-info) !important;
}
.btn-info:hover{
  color: var(--bs-info) !important;
  background: var(--white) !important;
  border: 1px solid var(--bs-info) !important;
}
.btn-info:before {
  background: var(--white) !important;
  border-radius: 40px !important;
}
.text-info {
  color: var(--bs-info) !important;
}
.bg-info {
  background: var(--bs-info) !important;
}
.border-info {
  border-color: var(--bs-info) !important;
}
.btn-success {
  background: var(--bs-success) !important;
  color: var(--white) !important;
  border: 0 !important;
}
.text-success {
  color: var(--bs-success) !important;
}
.bg-success {
  background: var(--bs-success) !important;
}
.border-success {
  border-color: var(--bs-success) !important;
}
.btn-danger {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 28px !important;
  border-radius: 40px !important;
  transition: 0.5s;
  margin-top: 30px;
  color: var(--bs-danger) !important;
  background: var(--white) !important;
  border: 1px solid var(--bs-danger) !important;
}
.btn-danger:hover{
  color: var(--white) !important;
  background: var(--bs-danger) !important;
  border: 1px solid var(--bs-danger) !important;
}
.btn-danger:before {
  background: var(--bs-danger) !important;
  border-radius: 40px !important;
}
.text-danger {
  color: var(--bs-danger) !important;
}
.bg-danger {
  background: var(--bs-danger) !important;
}
.border-danger {
  border-color: var(--bs-danger) !important;
}
.btn-warning {
  background: var(--bs-warning) !important;
  color: var(--white) !important;
  border: 0 !important;
}
.text-warning {
  color: var(--bs-warning) !important;
}
.bg-warning {
  background: var(--bs-warning) !important;
}
.border-warning {
  border-color: var(--bs-warning) !important;
}
.btn-blue {
  background: var(--bs-blue) !important;
  color: var(--white) !important;
  border: 0 !important;
}
.text-blue {
  color: var(--bs-blue) !important;
}
.bg-blue {
  background: var(--bs-blue) !important;
}
.border-blue {
  border-color: var(--bs-blue) !important;
}
.btn-info2 {
  background: var(--bs-info2) !important;
  color: var(--white) !important;
  border: 0 !important;
}
.text-info2 {
  color: var(--bs-info2) !important;
}
.bg-info2 {
  background: var(--bs-info2) !important;
}
.border-info2 {
  border-color: var(--bs-info2) !important;
}
.bg-gradient-blue{
  background-image: linear-gradient(to top, var(--bs-blue), var(--bs-info2));
}
.btn-primary {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 28px !important;
  border-radius: 40px !important;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff !important;
  background: var(--bs-primary) !important;
  border: 1px solid var(--bs-primary) !important;
}
.btn-primary:hover{
  color: var(--bs-primary) !important;
  background: none !important;
  border: 1px solid var(--bs-primary) !important;
}
.btn-primary:before {
  background: #fff !important;
  border-radius: 40px !important;
}
.btn-outline-success {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 28px;
  border-radius: 40px !important;
  transition: 0.5s;
  margin-top: 30px;
  color: var(--bs-success);
  border: 1px solid var(--bs-success);
}
.btn-outline-success:hover{
  color: var(--white) !important;
  background: none !important;
  border: 1px solid var(--bs-success);
}
.btn-outline-success:before {
  background: var(--bs-success) !important;
  border-radius: 40px !important;
}
.btn , .link-hover{
  transition: all 0.3s ease-in-out;
}
.btn:hover ,.link-hover:hover{
  -moz-transition: all 250ms linear;
  -webkit-transition: all 250ms linear;
  -o-transition: all 250ms linear;    
  opacity: 0.8 !important;
}
.form-control ,.form-select{
  transition: all 0.3s ease-in-out;
}
.form-control:focus ,.form-select:focus{
  color: var(--bs-info);
  border-color: var(--bs-info);
  -moz-transition: all 250ms linear;
  -webkit-transition: all 250ms linear;
  -o-transition: all 250ms linear; 
}


body {
  font-family: var(--font-Droid);
  color: var(--bs-primary);
}

a {
  color: var(--bs-success);
  text-decoration: none;
}

a:hover {
  color: var(--bs-primary);
  text-decoration: none;
}

::selection{
  background: var(--bs-success);
  color: #fff;
}
body::-webkit-scrollbar {
width: 8px;
}
body::-webkit-scrollbar-track {
background-color: var(--bs-info);
}
body::-webkit-scrollbar-thumb {
background-color: var(--bs-success);
}

.whatsapp-fixed{
  position: fixed;
  z-index: 200;
  bottom: 20px;
  right: 20px;
  background-color: #00e676;
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius: 40px;
  box-shadow: 0 4px 8px 0 rgba(90, 89, 89, 0.19), 0 2px 20px 0 rgba(90, 89, 89, 0.19);
  -moz-transition: all 250ms linear;
  -webkit-transition: all 250ms linear;
  -o-transition: all 250ms linear;
}
.whatsapp-fixed i{
  line-height: 58px;
  font-size: 30px;
  color: #fff;
}
.whatsapp-fixed:hover{
  opacity: 0.7;
  transition: all 0.5s;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}
#preloader img{
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  width: 100px;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--bs-info);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--bs-primary);
  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 {
  height: 100px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;

}
#header.header-transparent {
  background: linear-gradient(to top, var(--bs-info2), var(--bs-blue)); 
}

#header.header-scrolled {
  background: linear-gradient(to top, var(--bs-info2), var(--bs-blue)); 
  box-shadow: 0px 0px 30px #696969;
  height: 105px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: var(--bs-primary);
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# 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>ul>li {
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content:space-between;
  padding: 0 3px;
  font-size: 14px;
  font-weight: 600;
  color: var(--bs-primary);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  right: 0;
  background-color: var(--bs-success);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--bs-primary);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 5px 25px;
  margin-left: 30px;
  border-radius: 40px;
  color: var(--white);
  background: var(--bs-success);
  transition: 0.3s;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid var(--bs-success);
  transition: all 0.3s ease-in-out 0s;

}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: var(--bs-success);
  border: 2px solid var(--bs-success);
  background: transparent;
}

.navbar .getstarted:before,
.navbar li:hover>.getstarted:before {
  visibility: hidden;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  right: 0px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 250px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  color:var(--bs-success);
  justify-content: right;
}

.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: var(--bs-info);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  right: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  right: 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: var(--bs-primary);
  font-size: 33px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@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(28, 47, 65, 0.9);
    transition: 0.3s;
    z-index: 999;
  }
  
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    left: 15px;
  }
  
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 4px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile>ul>li {
    padding: 0;
  }
  
  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--bs-primary);
  }
  
  .navbar-mobile a:hover:before,
  .navbar-mobile li:hover>a:before,
  .navbar-mobile .active:before {
    visibility: hidden;
  }
  
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a {
    color: var(--bs-success);
  }
  
  .navbar-mobile .getstarted,
  .navbar-mobile .getstarted:focus {
    margin: 15px;
  }
  
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px;
    z-index: 99;
    text-align: right;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: none;
  }
  
  .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: var(--bs-success);
  }
  
  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
    margin: 0px 30px;
    padding: 0px;
  }

  .navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 40px;
  justify-content: center;
  color: var(--white);
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  background: var(--bs-success);
  transition: all 0.3s ease-in-out 0s;
  border: 2px solid var(--bs-success);
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: var(--bs-success);
  background: #fff;
  border: 2px solid var(--bs-success);
}
  
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background: var(--bs-info);
  position: relative;
  padding: 250px 0 0  0;
}

#hero:before {
  content: "";
  background: url('../img/bg.png');
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  color: rgba(255, 255, 255, 0.8);
}

#hero h1 span {
  color: #fff;
  border-bottom: 4px solid var(--bs-success);
}

#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 {
    padding-top: 150px;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    max-width: 80%;
  }
}

@media (max-width: 575px) {

}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
  overflow: hidden;
}

.section-bg {
  background-color: #f5f5ff;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;  
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}




/*--------------------------------------------------------------
# breadcrumb
--------------------------------------------------------------*/
.breadcrumb {
  padding: 90px 0px 50px 0px;
  background: linear-gradient(45deg, rgb(91, 38, 105) 0%, rgb(63, 24, 81) 90%);
  min-height: 20px;
  margin-top: 0px;
}
.breadcrumb h2 {
  color: var(--bs-success);
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 600;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: #fff;
}
.breadcrumb ol li a{
  font-size: 16px;
  color: var(--bs-success);
  transition: all 0.3s ease-in-out;
}
.breadcrumb ol li a:hover{
  font-size: 16px;
  color: #fff;
}

.breadcrumb ol li+li {
  padding-right: 10px;
}

.breadcrumb ol li+li::before {
  display: inline-block;
  padding-left: 10px;
  color: #ffbb2c;
  content: "/";
}


/*--------------------------------------------------------------
# About & how to work
--------------------------------------------------------------*/
.about .card span{
  width: 100%;
  border:dashed 1px var(--bs-success);
  display: inline-block;
  margin: 10px auto;
}
.about .box-icon{
  height: 100px;
  width: 100px;
  border-radius: 35px;
  text-align: center;
  display: inline-block;
  color: #542364;
  background: var(--bs-success);
}
.about .box-icon i{
  text-align: center;
  line-height: 100px;
  font-size: 55px;
}

#about {
  background: #fff;
  padding: 10px 0;
}


#about .about-container .content {
  background: #fff;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 15px  15px 0;
  border-right: 2px dashed var(--bs-success);
  border-bottom: 2px dashed var(--bs-success);
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
}
#about .about-container .icon-box ::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  right: -9px;
  top: 0;
  background: var(--bs-success);
  border: 2px solid var(--bs-success);
}
#about .about-container .icon-box .icon {
  float: right;
  background: #fff;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid var(--bs-info);
  transition: all 0.3s ease-in-out;
}

#about .about-container .icon-box .icon i {
  color: var(--bs-info);
  font-size: 24px;
  line-height: 0;
}

#about .about-container .icon-box:hover .icon {
  background: var(--bs-info);
}

#about .about-container .icon-box:hover .icon i {
  color: #fff;
}

#about .about-container .icon-box .title {
  margin-right: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#about .about-container .icon-box .title a {
  color: var(--bs-info);
}

#about .about-container .icon-box .description {
  margin-right: 80px;
  line-height: 24px;
  font-size: 14px;
  color: var(--bs-secondary);
}

#about .about-extra {
  padding-top: 60px;
}

#about .about-extra h4 {
  font-weight: 600;
  font-size: 24px;
}
@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# services
--------------------------------------------------------------*/

.services {
  padding: 60px 0 40px 0;
}
.services .box-serv {
  border: 1px solid var(--bs-info) ;
  border-radius: 20px;
  transition: 0.5s;
}
.services .box-serv .box-icon-se {
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--bs-success);
  border: var(--bs-success) 1px solid;
  padding: 20px !important;
  margin-right: 4px;
  border-radius: 10px;
  text-align: center;
  width: 28px;
  height: 28px;
  transition: 0.5s;
}

.services .box-serv .box-icon-se i {
  line-height: 28px;
}
.services .box-serv:hover , .services .box-serv-act{
  background: var(--bs-info) !important;
}
.services .box-serv:hover .box-icon-se , .services .box-serv-act .box-icon-se {
  background: var(--bs-info);
  color: var(--white);
  border-color: var(--white);
}
.services .box-serv:hover span , 
.services .box-serv:hover h5 , 
.services .box-serv:hover p,
.services .box-serv-act span , 
.services .box-serv-act h5 , 
.services .box-serv-act p
{
  color: var(--white) !important;
}
.services .box-serv-act:hover{
  transition: 0.5s;
  background: var(--white) !important;
}
.services .box-serv-act:hover .box-icon-se {
  background: var(--white);
  color: var(--bs-info);
  border-color: var(--bs-success);
}
.services .box-serv-act:hover span
{
  color: var(--bs-success) !important;
} 
.services .box-serv-act:hover h5 
{
  color: var(--bs-info) !important;
}
.services .box-serv-act:hover p
{
  color: var(--bs-secondary) !important;
}
.services .card span{
  width: 100%;
  border:dashed 1px var(--bs-success);
  display: inline-block;
  margin: 10px auto;
}


@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  padding: 10px 10px;
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  background: #fff;
  height: 100%;
  border: 1px solid var(--bs-success);
  border-top: 4px solid var(--bs-success);
  border-radius: 15px;
}
.pricing .box-icon-se {
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--bs-success);
  border: var(--bs-success) 4px solid;
  padding: 20px !important;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 70px;
  height: 70px;
  transition: 0.5s;
}

.pricing .box-icon-se i {
  line-height: 70px;
}
.pricing .pricing-item:hover .box-icon-se {
  background: var(--bs-success);
  color: var(--white);
}
.pricing h3 {
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 22px;
  color: var(--bs-primary);
}

.pricing h4 {
  font-size: 48px;
  color: var(--bs-success);
  font-weight: 400;
  margin-bottom: 10px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
}

.pricing ul {
  padding: 1px 0;
  list-style: none;
  color: #6c757d;
  text-align: right;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 4px;
  color: var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-primary);
  transition: 0.3s;
  border: 1px solid var(--color-primary);
}

.pricing .buy-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.pricing .featured {
  border-top-color: var(--color-primary);
}

.pricing .featured .buy-btn {
  background: var(--color-primary);
  color: #fff;
}
.pricing .owl-nav{
  text-align: left !important;
}
.pricing .owl-nav .owl-prev,
.pricing .owl-nav .owl-next
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 1px solid var(--bs-success) !important;
  border-radius: 50%;
  margin: 10px 4px 10px 4px;
  transition: 0.2s linear;
}
.pricing .owl-nav .owl-prev span,
.pricing .owl-nav .owl-next span{
  font-size: 22px;
  color: var(--bs-success);
  margin: 5px;
  line-height: 36;
  transition: 0.2s linear;
}
.pricing .owl-nav .owl-prev:hover,
.pricing .owl-nav .owl-next:hover{
  background: var(--bs-success);
}
.pricing .owl-nav .owl-prev:hover span,
.pricing .owl-nav .owl-next:hover span{
  color: var(--white);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/* Clients Section
--------------------------------*/
#clients {
  padding: 60px 0;
  padding-bottom: 0px;
}

#clients .clients-wrap {
  border-top: 1px solid #d6eaff;
  border-left: 1px solid #d6eaff;
  margin-bottom: 30px;
}

#clients .client-logo {
  padding: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #d6eaff;
  border-bottom: 1px solid #d6eaff;
  overflow: hidden;
  background: #fff;
  height: 160px;
}

#clients .client-logo:hover img {
  transform: scale(1.2);
}

#clients img {
  transition: all 0.4s ease-in-out;
}

/* Portfolio Section
--------------------------------*/
#portfolio {
  padding: 60px 0 40px 0;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  border-radius: 50px;
  text-transform: uppercase;
  background: var(--bs-success);
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: var(--bs-info);
  color: var(--white);
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#portfolio .portfolio-item .portfolio-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin: 0;
}

#portfolio .portfolio-item .portfolio-wrap:hover img {
  opacity: 0.4;
  transform: scale(1.1);
  transition: 0.3s;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
  color: var(--bs-success);
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #e2effe;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 36px;
  height: 36px;
  background: var(--bs-info);
  border-radius: 50%;
  margin: 10px 4px 0 4px;
}
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
  font-size: 22px;
  color: #fff;
  line-height: 0;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
  background: var(--bs-success);
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap:hover {
  background: var(--bs-primary);
}

#portfolio .portfolio-item .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}
#portfolio .owl-nav{
  text-align: left !important;
}
#portfolio .owl-nav .owl-prev,
#portfolio .owl-nav .owl-next
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 1px solid var(--bs-info);
  border-radius: 50%;
  margin: 10px 4px 10px 4px;
  transition: 0.2s linear;
}
#portfolio .owl-nav .owl-prev span,
#portfolio .owl-nav .owl-next span{
  font-size: 22px;
  color: var(--bs-info);
  margin: 5px;
  line-height: 36;
  transition: 0.2s linear;
}
#portfolio .owl-nav .owl-prev:hover,
#portfolio .owl-nav .owl-next:hover{
  background: var(--bs-info);
}
#portfolio .owl-nav .owl-prev:hover span,
#portfolio .owl-nav .owl-next:hover span{
  color: var(--white);
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #007bff;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #007bff;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(40, 61, 80, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}


/* Contact Section
--------------------------------*/
#contact {
  padding: 10px 0;
  overflow: hidden;
  background: var(--bs-info2);
}

#contact .section-header {
  padding-bottom: 30px;
}

#contact #contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #007bff;
}

#contact #contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #007bff;
  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 #007bff;
}

#contact .social-links a:hover {
  background: #007bff;
  color: #fff;
}
#contact .info {
  width: 100%;
  background: #fff;
}

#contact .info i {
  font-size: 20px;
  color: var(--white);
  float: right;
  width: 44px;
  height: 44px;
  background: var(--bs-info);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

#contact .info h4 {
  padding: 0 60px 0 60px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--bs-info);
}

#contact .info p {
  padding: 0 60px 0 60px;
  margin: 10px;
  font-size: 14px;
  color: var(--bs-secondary);
}

#contact .info .email,
#contact .info .address,
#contact .info .time {
  margin-top: 40px;
}

#contact .info .email:hover i,
#contact .info .address:hover i,
#contact .info .time:hover i,
#contact .info .phone:hover i {
  background: var(--bs-success);
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #542364;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--bs-success);
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  border-radius: 3px;
  font-size: 14px;
}

#contact .php-email-form input:focus,
#contact .php-email-form textarea:focus {
  border-color: var(--bs-info);
}

#contact .php-email-form input {
  padding: 10px 15px;
}

#contact .php-email-form textarea {
  padding: 12px 15px;
}


@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding-top: 60px !important;
  background: var(--bs-primary);
  color: var(--white);
  font-size: 14px;
  position: relative;
}

#footer:before {
  content: "";
  background: url('../img/hero-bg.jpg');
  position: absolute;
  opacity: 0.1;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
  z-index: 10;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  color: #ecf5ff;
}

#footer .footer-top .social-links a {
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-success);
  color: #fff;
  margin-top: 10px;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 28px;
  height: 28px;
  z-index: 50 !important;
  transition: 0.5s;
}

#footer .footer-top .social-links a i {
  line-height: 0;
}

#footer .footer-top .social-links a:hover {
  background: var(--bs-info);
  color: #fff;
  z-index: 50 !important;

}

#footer .footer-top h4 {
  font-size: 17px;
  font-weight: bold;
  color: var(--white);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}
#footer .footer-top h4 span{
  padding-bottom: 5px;
  border-bottom: 2px solid var(--bs-success);
}


#footer .footer-top .footer-links {
  margin-bottom: 30px;
  z-index: 10;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
  margin-right: 0px;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--white);
  transition: 0.5s;
  padding-right: 0px;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--bs-success);
  padding-right: 8px;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
  z-index: 10;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}
#footer .footer-top .footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-contact ul li {
  padding: 8px 0;
}

#footer .footer-top .footer-contact ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-contact ul a {
  color: var(--bs-info);
  transition: 0.5s;
  padding-right: 0px;
}

#footer .footer-top .footer-contact ul a:hover{
  color: var(--bs-success);
}
#footer .bottom-footer{
  z-index: 100;
}
#footer .bottom-footer .namesite{
  color: var(--bs-info2) !important;
  transition: 0.5s;
}
#footer .bottom-footer .namesite:hover{
  color: var(--white) !important;
}
@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# pages
--------------------------------------------------------------*/
/*breadcrumb*/
.page .breadcrumb-page{
  padding-top: 150px;

}
.services-page {
  padding: 30px 0 40px 0;
}
.services-page .box-serv {
  border: 3px solid var(--bs-success) ;
  background: var(--bs-success);
  border-radius: 20px;
  transition: 0.5s;
}
.services-page .box-serv .box-icon-se {
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-info);
  color: var(--white);
  border: var(--white) 3px solid;
  padding: 20px !important;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 70px;
  height: 70px;
  transition: 0.5s;
}

.services-page .box-serv .box-icon-se i {
  line-height: 70px;
}
.services-page .box-serv:hover{
  background: var(--white) !important;
}
.services-page .box-serv:hover .box-icon-se , .services-page .box-serv-act .box-icon-se {
  background: var(--bs-info);
  color: var(--white);
  border-color: var(--white);
}
.services-page .box-serv:hover span{
  color: var(--white) !important;
} 
.services-page .box-serv:hover h5 
{
  color: var(--bs-success) !important;
}
.services-page .box-serv:hover p
{
  color: var(--bs-secondary) !important;
}
.services-page .box-serv:hover .btn-info{
  background: var(--bs-success) !important;
  color: var(--white) !important;
  border-color: var(--bs-success) !important;
}
.services-page .box-serv:hover .btn-info:hover{
  color: var(--bs-success) !important;
  background: var(--white) !important;
}
.services-page .box-serv:hover .btn-info::before{
  background: var(--white) !important;
}
.services-page  .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 15px  15px 0;
  border-right: 2px dashed var(--bs-info);
  border-bottom: 2px dashed var(--bs-info);
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
}
.services-page .about-container .icon-box ::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  right: -9px;
  top: 0;
  background: var(--bs-info);
  border: 2px solid var(--bs-info);
}
.services-page .about-container .icon-box .icon {
  float: right;
  background: #fff;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid var(--bs-info);
  transition: all 0.3s ease-in-out;
}

.services-page .about-container .icon-box .icon i {
  color: var(--bs-info);
  font-size: 24px;
  line-height: 0;
}

.services-page .about-container .icon-box:hover .icon {
  background: var(--bs-info);
}

.services-page .about-container .icon-box:hover .icon i {
  color: #fff;
}

.services-page .about-container .icon-box .title {
  margin-right: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

.services-page .about-container .icon-box .title a {
  color: var(--bs-info);
}

.services-page .about-container .icon-box .description {
  margin-right: 80px;
  line-height: 24px;
  font-size: 14px;
  color: var(--bs-secondary);
}





.services-page .card span{
  width: 100%;
  border:dashed 1px var(--bs-success);
  display: inline-block;
  margin: 10px auto;
}


#order .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#order .php-email-form .error-message br+br {
  margin-top: 25px;
}

#order .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #542364;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#order .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#order .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--bs-success);
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#order .php-email-form input,
#order .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  border-radius: 3px;
  font-size: 14px;
}

#order .php-email-form input:focus,
#order .php-email-form textarea:focus {
  border-color: var(--bs-info);
}

#order .php-email-form input {
  padding: 10px 15px;
}

#order .php-email-form textarea {
  padding: 12px 15px;
}


@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*singup&login*/
.singup .container{
  padding: 0;
  margin: 0;
  max-width: 100%;
}
.singup .col-right{
  background: var(--bs-info);
  border-bottom-left-radius: 100%;
}
.singup .col-right .btn-primary{
  background: transparent !important;
  color: var(--white) !important;
  border-color: var(--white) !important;
}
.singup .col-right .btn-primary:hover , .singup .col-right .btn-primary::before{
  background: var(--bs-primary) !important;
  color: var(--white) !important;
  border-color: var(--bs-primary) !important;
}
.singup .input-group {
  direction: ltr;
  border-radius: 30px;
  border: 1px solid var(--bs-secondary);
  font-size: 16px;
  color: var(--bs-secondary) !important;
  padding:0;
}
.input-group-active{
  border-color: var(--bs-info) !important;
  color: var(--bs-info) !important;
  -moz-transition: all 250ms linear;
  -webkit-transition: all 250ms linear;
  -o-transition: all 250ms linear; 
}
.singup .input-group .form-control{
  padding-top: 7px;
  padding-bottom: 7px;
  border-radius: 30px;
  box-shadow: none;
  border: 0;
  text-align: right;
}
.singup .input-group .input-group-text{
  background: none;
  padding-top: 7px;
  border-left: 0;
  padding-bottom: 7px;
  border: 0;
  box-shadow: none;
  color: unset;
  text-align: center !important;
}
.input-group-active .input-group-text{
  color: var(--bs-success) !important;
}
.singup .social-links {
  padding-bottom: 20px;
}

.singup .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: var(--bs-success);
  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 var(--bs-success);
}

.singup .social-links a:hover {
  background: var(--bs-success);
  color: #fff;
}

/*--------------------------------------------------------------
# ltr
--------------------------------------------------------------*/
.ltr{
  direction: ltr;
}
.ltr .text-end{
  text-align: left !important;
}
.ltr .text-start{
  text-align: right !important;
}
.ltr .navbar-mobile .mobile-nav-toggle {
  left: unset;
  right: 15px;
}
.ltr .navbar .dropdown ul {
  right: unset;
  left: 0;
}
.ltr .navbar .dropdown ul a {
  justify-content: left;
}
.ltr .navbar>ul>li>a:before {
  right: unset;
  left: 0;
}
.ltr #about .about-container .icon-box .icon{
  float: left;
}
.ltr #about .about-container .icon-box {
  padding: 15px;
  padding-right: 0;
  border-right: none;
  border-left: 2px dashed var(--bs-success);
  border-bottom: 2px dashed var(--bs-success);
}
.ltr #about .about-container .icon-box ::after{
  right: unset;
  left: -9px;
}
.ltr #about .about-container .icon-box .title{
  margin-left: 80px;
  margin-right: unset;
}
.ltr #about .about-container .icon-box .description{
  margin-left: 80px;
  margin-right: unset;
}
.ltr .services .box-serv .box-icon-se {
  margin-left: 4px;
  margin-right: 4px;
}
.ltr #contact .info i {
  float: left;
}
.ltr #portfolio .owl-nav{
  text-align: right !important;
}

.ltr .services-page .about-container .icon-box .icon{
  float: left;
}
.ltr .services-page .about-container .icon-box {
  padding: 15px;
  padding-right: 0;
  border-right: none;
  border-left: 2px dashed var(--bs-info);
  border-bottom: 2px dashed var(--bs-info);
}
.ltr .services-page .about-container .icon-box ::after{
  right: unset;
  left: -9px;
}
.ltr .services-page .about-container .icon-box .title{
  margin-left: 80px;
  margin-right: unset;
}
.ltr .services-page .about-container .icon-box .description{
  margin-left: 80px;
  margin-right: unset;
}
.ltr .pricing .owl-nav {
  text-align: right !important;
}
.ltr #footer .footer-top .footer-links ul a {
  margin-right: unset;
  margin-left: 0;
}
.ltr #footer .footer-top .footer-links ul a:hover {
  padding-right: 0;
  padding-left: 8px;
}
.ltr #footer .footer-top .footer-links ul a i{
  margin-right: 0.5rem!important;
}
.ltr .whatsapp-fixed{
  right: unset;
  left: 20px;
}
.ltr .back-to-top{
  right: 15px;
  left: unset;
}
.ltr .singup .col-right{
  border-bottom-left-radius: unset;
  border-bottom-right-radius: 100%;
}
.ltr .singup .input-group {
  direction: rtl;
}
.ltr .singup .input-group .form-control{
  text-align: left;
  margin-right: 20px;
}