:root {
  --primary: #1F1D2B;
  --secondary: #272340;
  --filterPrimary: invert(9%) sepia(30%) saturate(726%) hue-rotate(209deg) brightness(87%) contrast(91%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Tajawal', sans-serif;
  scroll-behavior: smooth;
}

*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}

*::selection {
  background-color: var(--primary);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

body {
  direction: rtl;
  overflow-x: hidden;
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

.color-dark {
  color: #1B2021;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}

.filterPrimary {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.filterSecondary {
  -webkit-filter: var(--filterSecondary);
          filter: var(--filterSecondary);
}

.filterWhite {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-decoration: none !important;
}

a:hover {
  color: var(--primary) !important;
}

a:focus {
  outline: 0;
}

del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

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

button {
  border: none;
  padding: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

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;
}

form .form-group {
  position: relative;
}

form .form-control {
  font-size: 14px;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}

form input,
form select {
  height: 55px !important;
}

form .custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--primary);
  background-color: var(--primary);
}

form .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: var(--primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 55px;
  width: 55px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
          box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateY(130%);
          transform: translateY(130%);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: var(--primary);
  left: 13px;
  top: 13px;
  height: 30px;
  width: 30px;
  display: block;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.progress-wrap svg path {
  fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inFlex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.sec-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-end {
  text-align: end;
}

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/**********************************************
   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;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navbar.navbar-fixed-top {
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
}

.navbar.navbar-fixed-top.scrolled {
  position: fixed;
  right: 0;
  left: 0;
  top: -20px;
  opacity: .99;
  z-index: 999;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  -webkit-box-shadow: 3px 10px 30px #0002;
          box-shadow: 3px 10px 30px #0002;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  background-color: #F6F7F9;
}

.navbar.navbar-fixed-top.scrolled .logo {
  width: 100px;
}

.navbar .logo {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navbar .nav-link {
  margin: 0 10px;
  color: #333;
}

.navbar .nav-link.active {
  font-weight: bold;
  color: var(--primary);
}

.navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  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: 25px;
  height: 2px;
  background: var(--primary);
  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: 25px;
  height: 2px;
  background: var(--primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}

.navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.footer {
  background: var(--primary);
  padding: 20px 0;
}

.footer .title {
  line-height: 1.5;
  font-weight: bold;
}

.footer .social-links a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 14px;
  margin: 0 3px;
  text-align: center;
  background-color: #f5f5f5;
  border-radius: 50%;
  color: var(--primary);
  display: inline-block;
}

.footer .social-links a:hover {
  background-color: var(--secondary);
  color: #fff !important;
}

/**********************************************
    Start Public Classes
**********************************************/
.butn {
  padding: .9rem 2.5rem;
  position: relative;
  text-align: center;
  font-weight: 600;
  overflow: hidden;
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.butn.primary_butn {
  background-color: var(--primary);
  color: #eee;
}

.butn.white_butn {
  background-color: #fff;
  color: var(--primary);
}

.butn:hover {
  background-color: var(--secondary);
  color: #fff !important;
}

.underline_link {
  position: relative;
  font-weight: 600;
  padding: .3rem .5rem;
}

.underline_link::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  display: block;
  position: absolute;
  bottom: 0px;
  right: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.underline_link:hover {
  color: var(--secondary);
  font-weight: bold;
}

.underline_link:hover::after {
  width: 0;
  background-color: var(--secondary);
}

.section {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.dir-l {
  direction: ltr;
}

.modal .modal-content {
  border-radius: 25px;
  padding: 20px;
}

.modal .modal-content .modal-header {
  border-bottom: 1px solid transparent;
}

.modal .modal-content .modal-header .modal-title {
  font-weight: bolder;
}

.confirmationModal button.close {
  position: absolute;
  left: 18px;
  top: 18px;
  font-size: 25px;
  background: transparent;
}

.confirmationModal .icon {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
}

.confirmationModal .content {
  margin-top: 25px;
  text-align: center;
}

.confirmationModal .content .title {
  margin-bottom: 1.5rem;
  font-weight: bolder;
  font-size: 2.2rem;
}

.confirmationModal .content .p {
  font-size: 19px;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  background-color: #F6F7F9;
  min-height: 680px;
  position: relative;
  overflow: hidden;
}

.header .text-box {
  padding: 0px 2vw 2vw 2vw;
}

.header .text-box .title {
  font-size: calc(4vw + 35px);
  line-height: 1.4;
  font-weight: bold;
}

.header .text-box .title .underline {
  position: relative;
}

.header .text-box .title .underline::after {
  content: '';
  width: 97%;
  height: 7px;
  background-color: var(--primary);
  display: block;
  position: absolute;
  bottom: 22px;
  right: 3px;
}

.header .text-box .label {
  font-size: 12px;
  line-height: 1.3rem;
}

.header .sec-img {
  width: 50%;
  height: 750px;
  position: absolute;
  left: -150px;
  border-radius: 50%;
  top: -100px;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  z-index: 1;
}

.header .vector {
  position: absolute;
  top: 68%;
  left: 30%;
}

.header::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: #1f1d2b;
  width: 33%;
  height: 300px;
  left: unset;
  top: 0px;
}

.about-sec .item {
  opacity: 1 !important;
}

.about-sec .item .text-box {
  padding: 4vw 0vw !important;
}

.about-sec .item .custom-list .li {
  -webkit-padding-start: 25px;
  padding-inline-start: 25px;
  position: relative;
  margin: 15px 0;
  font-size: 18px;
}

.about-sec .item .custom-list .li::before {
  content: '\f0c8';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 4px;
  color: var(--secondary);
  font-size: 15px;
  opacity: .5;
}

.about-sec .item .text-box::before {
  display: none;
}

.clients-sec .clitent_logo {
  width: 80%;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: auto;
  opacity: .7;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.clients-sec .clitent_logo:hover {
  opacity: 1;
}

.services-sec .service_card {
  padding: 50px 50px;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
  position: relative;
}

.services-sec .service_card .heading .icon-outer {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F7F8FA;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.services-sec .service_card .heading .icon-outer .icon {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.services-sec .service_card .heading .title {
  font-weight: bold;
  line-height: 1.5;
}

.services-sec .service_card .arrow {
  width: 30px;
  height: 2px;
  background-color: #999;
  display: block;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  position: relative;
  margin: 0 5px;
}

.services-sec .service_card .arrow::after, .services-sec .service_card .arrow::before {
  content: '';
  width: 10px;
  height: 2px;
  left: 0;
  background-color: #999;
  display: block;
  position: absolute;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.services-sec .service_card .arrow::before {
  top: -3px;
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}

.services-sec .service_card .arrow::after {
  bottom: -3px;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}

.services-sec .service_card:hover .icon-outer {
  background-color: var(--primary);
}

.services-sec .service_card:hover .icon-outer .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.services-sec .service_card:hover .arrow {
  width: 50px;
  background-color: var(--primary);
}

.services-sec .service_card:hover .arrow::after, .services-sec .service_card:hover .arrow::before {
  background-color: var(--primary);
}

.statics-sec {
  background-color: var(--primary);
}

.statics-sec .static_card {
  text-align: center;
  margin-bottom: 25px;
}

.statics-sec .static_card .icon-outer {
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--secondary);
  border-radius: 50%;
  margin: auto;
}

.statics-sec .static_card .icon-outer .icon {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.statics-sec .static_card .icon-outer i {
  font-size: 30px;
  color: #fff;
}

.statics-sec .static_card .content {
  margin-top: 15px;
}

.statics-sec .static_card .content .num {
  font-size: calc(1vw + 35px);
}

.statics-sec .patter1,
.statics-sec .patter2 {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  opacity: 0.1;
}

.statics-sec .patter1 {
  left: 0;
}

.statics-sec .patter2 {
  right: 0;
  -webkit-transform: scale(-1);
          transform: scale(-1);
}

.feedback-sec .item {
  opacity: 0;
}

.feedback-sec .item .text-box {
  padding: 4vw;
}

.feedback-sec .item .img-box {
  height: 400px;
  position: relative;
}

.feedback-sec .item .img-box .play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #ddd;
}

.feedback-sec .item .img-box .play-btn i {
  position: relative;
  font-size: 25px;
  z-index: 5;
}

.feedback-sec .item .img-box .play-btn::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
}

.feedback-sec .item .img-box .play-btn::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: var(--secondary);
  border-radius: 50%;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.feedback-sec .item .img-box .play-btn:hover {
  color: #fff !important;
}

.feedback-sec .swiper-slide-active .item {
  opacity: 1;
}

.feedback-sec .swiper-slide-active .item .text-box {
  -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;
}

.feedback-sec .swiper-slide-active .item .img-box {
  -webkit-animation: zoomIn 1s both linear;
          animation: zoomIn 1s both linear;
}

.feedback-sec::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: #1f1d2b;
  background-color: #F6F7F9;
  width: 40%;
  right: unset;
  height: 70%;
  top: unset;
}

.feedback-sec .swiper-pagination {
  bottom: 3%;
  left: 8%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.feedback-sec .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary);
}

.blog-sec .blog_card {
  position: relative;
  margin-bottom: 45px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.blog-sec .blog_card .sec-img {
  height: 400px;
}

.blog-sec .blog_card .card-body {
  background-color: #fff;
  width: 85%;
  display: block;
  margin: -50px auto 0 auto;
  padding: 1.7rem 1.7rem 2.2rem 1.7rem;
  position: relative;
  -webkit-box-shadow: 3px 10px 15px 0 #ddd;
          box-shadow: 3px 10px 15px 0 #ddd;
}

.blog-sec .blog_card .card-body .heading .data {
  -webkit-margin-end: 13px;
          margin-inline-end: 13px;
}

.blog-sec .blog_card .card-body .heading .data i {
  color: #FF694B;
  -webkit-margin-end: 5px;
          margin-inline-end: 5px;
}

.blog-sec .blog_card .card-body .title {
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
}

.audience-sec .audience_card {
  padding: 50px;
  background-color: #f8f8f8;
  position: relative;
  margin-bottom: 25px;
}

.audience-sec .audience_card .nav .nav-link {
  color: #333;
}

.audience-sec .audience_card .nav .nav-link.active {
  color: var(--secondary);
  font-weight: bold;
  background-color: transparent;
}

.audience-sec .audience_card .content .item {
  margin-bottom: 10px;
}

.audience-sec .audience_card .content .item .label {
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  min-width: 80px;
}

.audience-sec .gender-box .circlechart {
  margin: 0 10px;
}

.audience-sec .gender-box .circlechart .success-stroke {
  stroke: var(--primary);
}

.contact-sec {
  background-color: #f9f9f9;
}

.contact-sec .contact_card {
  background-color: #fff;
  padding: 23px 45px;
  -webkit-box-shadow: 3px 6px 15px 0 #ddd;
          box-shadow: 3px 6px 15px 0 #ddd;
  position: relative;
  margin-bottom: 15px;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.contact-sec .contact_card .icon-outer {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border-radius: 50%;
  background-color: #eee;
  color: var(--primary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  font-size: 22px;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}

.contact-sec .contact_card .title {
  font-size: 1.1rem;
}

.contact-sec .contact_card .title,
.contact-sec .contact_card .det {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.contact-sec .contact_card a {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  color: #333;
}

.contact-sec .contact_card:hover .icon-outer i {
  -webkit-animation: tada 1s both;
          animation: tada 1s both;
}

.contact-sec .contact_card:hover .title {
  color: var(--secondary);
}

.contact-sec .form-wrapper {
  background-color: #fff;
  padding: 50px 70px;
  -webkit-box-shadow: 3px 6px 15px 0 #ddd;
          box-shadow: 3px 6px 15px 0 #ddd;
  position: relative;
  margin-bottom: 15px;
}

.contact-sec .form-wrapper .form-group {
  margin-bottom: 1rem;
}

.contact-sec .form-wrapper .form-group .form-control {
  border-radius: 8px;
}
/*# sourceMappingURL=style.css.map */