* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Tajawal', sans-serif;
}

*::-moz-selection {
  background-color: #C96742;
  color: #fff;
}

*::selection {
  background-color: #C96742;
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: #C96742;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #ac583a;
}

/**********************************************
   Start Global Style
**********************************************/
p {
  font-size: 15px;
  color: #555;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
  padding: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn.focus, .btn:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-link:hover {
  text-decoration: none;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #C96742;
}

.scroll-top-btn {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: linear-gradient(-135deg, #a45336, #C96742);
  text-align: center;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 1000;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn img {
  width: 25px;
  -webkit-filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
          filter: invert(99%) sepia(1%) saturate(0%) hue-rotate(163deg) brightness(116%) contrast(100%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.scroll-top-btn:hover img {
  -webkit-animation: floating-y .5s infinite alternate;
          animation: floating-y .5s infinite alternate;
}


/* Start Edit Modal */
.modal-content {
  border-radius: 45px;
  padding: 25px;
}

.modal-content button.close {
  text-align: end;
}

.modal-content .modal-footer {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal-content .modal-footer .btn-secondary {
  border-radius: 15px;
  width: 100px;
  height: 45px;
}

/*state-modal*/
.state-modal .modal-body {
  padding: 3rem 1rem;
}

.state-modal .text-box {
  text-align: center;
}

.state-modal .text-box .icon {
    width: 280px;
    height: 280px;
  -o-object-fit: contain;
     object-fit: contain;
}

.state-modal .text-box .title {
  font-weight: bold;
  color: #013030;
  text-transform: capitalize;
}

.state-modal .text-box .p {
  margin-bottom: 0;
  font-size: 16px;
  color: #666;
}

.state-modal .text-box .p b {
  color: #C96742;
}

.state-modal .main-butn {
  width: 180px;
  height: 45px;
  line-height: 45px;
  padding: 0;
  border: 1px solid #C96742;
  color: #fff;
  font-weight: bold;
  background-color: #C96742;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  display: block;
  margin: 15px 2px 0 2px;
  border-radius: 10px;
}

.state-modal .main-butn:hover {
  background-color: #ac583a;
}
/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.text-focus-in {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navbar {
  position: relative;
  z-index: 9;
}

.navbar.navbar-fixed-top.scrolled {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 999;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  background-color: rgba(201, 103, 66, 0.95);
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
}

.navbar.navbar-fixed-top.scrolled .navbar-brand img {
  width: 80px;
}

.navbar .navbar-brand img {
  width: 135px;
}

.navbar .nav-link {
  color: #ddd;
  font-weight: bold;
  margin: 0 5px;
  font-size: 15px;
  text-align: center;
}

.navbar .nav-link.active {
  color: #fff;
}

.navbar .main-butn {
  padding: 0 1.5rem;
  height: 45px;
  line-height: 45px;
  background-color: #fff;
  color: #C96742;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  display: block;
}

.navbar .main-butn:hover {
  background-color: #ac583a;
  color: #fff;
}

.navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after, .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

footer {
  background-color: #C96742;
  padding: 45px 0;
}

footer .social-links a {
  color: #ddd;
  margin: 0 4px;
  font-weight: bold;
  line-height: 50px;
}

footer .social-links a:hover {
  color: #fff;
}

footer .logo {
  width: 200px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

footer .p {
  text-align: end;
  color: #fff;
  margin-bottom: 0;
  line-height: 50px;
  font-size: 13px;
}
footer .p a{
    color: #fff;
}
/**********************************************
    Start Public Classes
**********************************************/
.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sec-title {
  position: relative;
  color: #C96742;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.sec-title::after {
  content: '';
  position: relative;
  display: block;
  width: 45px;
  height: 33px;
  background: url(../images/icons/title-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
header {
  position: relative;
  background-color: #F5F6F8;
  overflow: hidden;
}

header .header-content {
  position: relative;
  z-index: 1;
}

header .header-content .header-img {
  width: 100%;
  height: 550px;
  -o-object-fit: contain;
     object-fit: contain;
}

header .header-content .text-box {
  padding: 50px 0;
}

header .header-content .text-box .subtitle {
  color: #fff;
}

header .header-content .text-box .title {
  color: #fff;
  font-weight: bold;
}

header .header-content .text-box .p {
  color: #ddd;
  line-height: 1.7rem;
}

header .header-content .text-box .main-btn {
  border: 1px solid #fff;
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 150px;
  height: 45px;
  line-height: 45px;
  display: block;
  border-radius: 5px;
}

header .header-content .text-box .main-btn:hover {
  border: 1px solid #ac583a;
  background-color: #ac583a;
}

header .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-position: top;
     object-position: top;
}

.header2 {
  background-color: #C96742;
}

.header2 .cuurve {
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 0;
  right: 0;
}

.about-sec {
  position: relative;
  padding: 70px 0;
  background-color: #F5F6F8;
  overflow: hidden;
}

.about-sec .text-box {
  position: relative;
  z-index: 1;
}

.about-sec .text-box .title {
  color: #000;
  font-weight: bold;
  line-height: 3.5rem;
}

.about-sec .text-box .title b {
  color: #A0A895;
  font-weight: bold;
}

.about-sec .text-box .title span {
  font-weight: bold;
  color: #C96742;
}

.about-sec .text-box .p {
  line-height: 2rem;
}

.about-sec .text-box .download-btns .store-img {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 5px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.about-sec .text-box .download-btns .store-img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.about-sec .main-img {
  width: 100%;
  height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 1;
}

.about-sec .pattern {
  position: absolute;
  left: -50px;
  top: 90px;
  width: 51%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 80%;
}

.services-sec {
  position: relative;
  background-color: #F5F6F8;
  overflow: hidden;
}

.services-sec .inner {
  background-color: #fff;
  padding: 70px 0;
  border-radius: 100px;
}

.services-sec .inner .sec-title::after {
  margin: auto;
}

.services-sec .inner .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  height: 100%;
  position: relative;
}

.services-sec .inner .content .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 15px;
}

.services-sec .inner .content .item .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  line-height: 80px;
  background-color: #E9EBEA;
  display: block;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.services-sec .inner .content .item .icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.services-sec .inner .content .item .text-box {
  padding: 0 10px;
  width: 80%;
}

.services-sec .inner .content .item .text-box .title {
  font-weight: bold;
  color: #000;
  margin-bottom: .7rem;
}

.services-sec .inner .content .item .text-box .p {
  line-height: 1.7rem;
}

.services-sec .inner .content .item:hover .icon {
  background-color: #C96742;
}

.services-sec .inner .content .item:hover .icon img {
  -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(153%) contrast(103%);
          filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(153%) contrast(103%);
  -webkit-animation: tada 2s both;
          animation: tada 2s both;
}

.services-sec .inner .content .item:hover .title {
  color: #C96742;
}

.services-sec .inner .main-img {
  width: 100%;
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}

.faq-sec {
  padding: 100px 0;
  position: relative;
  background-color: #F5F6F8;
}

.faq-sec .text-box .title {
  font-weight: bold;
  color: #101010;
  font-size: calc(35px + 1vw);
}

.faq-sec .text-box .p {
  line-height: 1.8rem;
}

.faq-sec .text-box .accordion .card {
  background-color: transparent;
  border: transparent;
}

.faq-sec .text-box .accordion .card .card-header {
  background-color: transparent;
  border: transparent;
}

.faq-sec .text-box .accordion .card .card-header .btn {
  font-weight: bold;
  color: #C96742;
  font-size: 1.3rem;
  padding: 0;
  text-decoration: none !important;
}

.faq-sec .text-box .accordion .card .card-body {
  padding: 0rem 1.25rem;
}

.faq-sec .main-img {
  width: 100%;
  height: 550px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-sec {
  position: relative;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f6f8), to(#C96742));
  background-image: linear-gradient(to bottom, #f5f6f8, #C96742);
  background-color: #F5F6F8;
}

.contact-sec .inner {
  background-color: #fff;
  padding: 70px 0;
  border-radius: 100px;
}

.contact-sec .inner .sec-title::after {
  margin: auto;
}

.contact-sec .inner .main-img {
  width: 100%;
  height: 380px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-sec .inner .form-container {
  padding: 25px 0;
}

.contact-sec .inner .form-container .form-control {
  font-size: 13px;
  background-color: #f8f8f8;
  border: 1px solid #f8f8f8;
}

.contact-sec .inner .form-container select, .contact-sec .inner .form-container input {
  height: 55px;
}

.contact-sec .inner .form-container .submit-btn {
  width: 160px;
  height: 45px;
  border: 1px solid #C96742;
  background-color: #C96742;
  color: #fff;
  display: block;
  margin: auto;
}

.contact-sec .inner .form-container .submit-btn:hover {
  background-color: #ac583a;
  border: 1px solid #ac583a;
}

.contact-sec .inner .contact_item {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.contact-sec .inner .contact_item .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: #C96742;
  color: #Fff;
}

.contact-sec .inner .contact_item .text-box {
  padding: 0 10px;
}

.contact-sec .inner .contact_item .text-box .title {
  font-weight: bold;
}

/**********************************************
    Start Edit Dark theme 
**********************************************/
.themeToggler {
    margin: 8px 15px 0 15px;
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
}

.themeToggler .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 45px;
}

.themeToggler .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.themeToggler .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.themeToggler .slider:before {
  position: absolute;
  content: "Dark";
   height: 45px;
   width: 45px;
   line-height: 45px;
  text-align: center;
  font-weight: bold;
  font-size: 11px;
  left: -5px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid #8e3f23;
  background-color: #0F0F08;
  color: #C96742;
  -webkit-box-shadow: 0 0px 15px #2020203d;
          box-shadow: 0 0px 15px #2020203d;
}

.themeToggler input:checked + .slider {
  background-color: #eee;
}

.themeToggler input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #C96742;
          box-shadow: 0 0 1px #C96742;
}

.themeToggler input:checked + .slider:before {
  -webkit-transform: translateX(28px);
          transform: translateX(28px);
  content: "Light";
  background-color: #C96742;
  border: 1px solid #C96742;
  color: #fff;
}

.themeToggler .slider.round {
  border-radius: 8px;
}

.themeToggler .slider.round:before {
  border-radius: 10px;
}

.theme-dark .p, .theme-dark p {
  color: #ccc;
}

.theme-dark .header2 {
  background-color: #C96742;
}

.theme-dark .header2 .cuurve {
  -webkit-filter: invert(7%) sepia(9%) saturate(48%) hue-rotate(355deg) brightness(7%) contrast(100%);
          filter: invert(7%) sepia(9%) saturate(48%) hue-rotate(355deg) brightness(7%) contrast(100%);
}

.theme-dark header,
.theme-dark .about-sec,
.theme-dark .services-sec,
.theme-dark .faq-sec {
  background-color: #101010;
}

.theme-dark .about-sec .text-box .title {
  color: #fff;
}

.theme-dark .about-sec .pattern {
  opacity: .1;
}

.theme-dark .services-sec .inner,
.theme-dark .contact-sec .inner {
  background-color: #202020;
}

.theme-dark .services-sec .inner .content .item .text-box .title,
.theme-dark .contact-sec .inner .content .item .text-box .title {
  color: #fff;
}

.theme-dark .services-sec .inner .content .item .icon,
.theme-dark .contact-sec .inner .content .item .icon {
  background-color: #101010;
}

.theme-dark .faq-sec .text-box .title {
  color: #fff;
}

.theme-dark .contact-sec {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#101010), to(#C96742));
  background-image: linear-gradient(to bottom, #101010, #C96742);
}

.theme-dark .contact-sec .form-container .form-control {
  background-color: #1d1c1c;
  border: 1px solid #1d1c1c;
  color: #eee;
}

.theme-dark .contact-sec .contact_item .text-box .title {
  color: #fff;
}
/*# sourceMappingURL=style.css.map */