@font-face {
  font-family: "light";
  src: url(../Fonts/helvetica/HelveticaNeue-Thin.ttf);
}

@font-face {
  font-family: "regular";
  src: url(../Fonts/helvetica/HelveticaNeue-Light.ttf);
}

@font-face {
  font-family: "medium";
  src: url(../Fonts/helvetica/HelveticaNeue-Medium.ttf);
}

@font-face {
  font-family: "bold";
  src: url(../Fonts/helvetica/HelveticaNeu-Bold.ttf);
}

@font-face {
  font-family: "roboto";
  src: url(../Fonts/roboto/Roboto-Regular.ttf);
}

@font-face {
  font-family: "lora-bold";
  src: url(../Fonts/lora/Lora-Bold.ttf);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  direction: ltr;
  text-decoration: none;
  font-family: 'regular';
  scroll-behavior: smooth;
}

::-moz-selection {
  background-color: #982E36;
  color: #fff;
}

::selection {
  background-color: #982E36;
  color: #fff;
}

/***************************** Global Style *****************************/
h1, h2, h3 {
  font-family: "bold";
}

h4, h5, h6 {
  font-family: "medium";
}

p {
  font-size: 12px;
  font-family: 'regular';
  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;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #982E36;
}

.scroll-top-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: linear-gradient(-135deg, #983f46, #982E36);
  color: #000;
  text-align: center;
  line-height: 40px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn:hover {
  border-radius: 50%;
  color: #fff;
}

/***************************** Animations *****************************/
@-webkit-keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes focus-in-expand {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.focus-in-expand {
  -webkit-animation: focus-in-expand 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: focus-in-expand 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
            transform: rotateX(-100deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
  }
}

@keyframes swing-in-top-fwd {
  0% {
    -webkit-transform: rotateX(-100deg);
            transform: rotateX(-100deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
  }
}

.swing-in-top-fwd {
  -webkit-animation: swing-in-top-fwd 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
          animation: swing-in-top-fwd 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@-webkit-keyframes pulsecust {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulsecust {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/***************************** Start Edit Navbar & Footer *****************************/
.navs-container {
  -webkit-box-shadow: 0px 3px 60px 0px #eee;
          box-shadow: 0px 3px 60px 0px #eee;
}

.navs-container .top-nav {
  padding: 15px 0px;
  border-bottom: 1px solid #eee;
}

.navs-container .top-nav .links {
  line-height: 40px;
}

.navs-container .top-nav .links a {
  margin-right: 15px;
  font-size: 12px;
  color: #555;
}

.navs-container .top-nav .links a i {
  color: #333;
}

.navs-container .top-nav .links a:hover {
  color: #982E36;
}

.navs-container .top-nav .butn {
  background-color: #982E36;
  color: #fff;
  display: block;
  border-radius: 5px;
  width: 150px;
  text-align: center;
  float: right;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
}

.navs-container .navbar {
  padding: 1rem;
}

.navs-container .navbar .navbar-brand img {
  width: 200px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .navbar .navbar-nav {
  position: relative;
}

.navs-container .navbar .navbar-nav .nav-link {
  margin: 0px 7px;
  color: #999;
  position: relative;
  font-family: 'regular';
  text-align: center;
  text-transform: capitalize;
}

.navs-container .navbar .navbar-nav .nav-link::after {
  content: '';
  width: 0%;
  height: 1px;
  display: block;
  position: absolute;
  top: 37px;
  left: 0;
  background-color: #982E36;
  opacity: 0;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

.navs-container .navbar .navbar-nav .nav-link:hover, .navs-container .navbar .navbar-nav .nav-link.active {
  color: #982E36;
}

.navs-container .navbar .navbar-nav .nav-link:hover::after, .navs-container .navbar .navbar-nav .nav-link.active::after {
  width: 100%;
  opacity: 1;
}

.navs-container .navbar .navbar-nav .dropdown {
  margin-left: 55px;
  padding: 0.5rem 1rem;
  text-align: center;
}

.navs-container .navbar .navbar-nav .dropdown::before {
  content: '';
  width: 40px;
  height: 1px;
  display: block;
  background-color: #982E36;
  left: -47px;
  top: 22px;
  position: absolute;
}

.navs-container .navbar .navbar-nav .dropdown .dropdown-toggle {
  font-size: 14px;
  color: #333;
}

.navs-container .navbar .navbar-nav .dropdown .dropdown-item {
  font-size: 12px;
}

.navs-container .navbar .navbar-toggler {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
}

.navs-container .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);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 15px;
  height: 2px;
  background: #982E36;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #982E36;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -5px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 5px;
  right: 0px;
}

footer {
  padding-top: 70px;
  border-top: 1px solid #ddd;
}

footer .content {
  margin-bottom: 25px;
}

footer .content .logo {
  width: 150px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}

footer .content p {
  line-height: 1.7rem;
  font-size: 13px;
}

footer .content h6 {
  margin-bottom: 25px;
}

footer .content .links a {
  display: block;
  margin: 10px 0px;
  font-size: 13px;
}

footer .content .links a:hover {
  color: #982E36;
  font-weight: bold;
}

footer .copyright {
  padding: 15px 0px;
  background-color: #982E36;
}

footer .copyright p {
  margin-bottom: 0;
  color: #fff;
}

/***************************** Start Edit Home Page *****************************/
.header {
  padding: 50px 0px;
  height: 600px;
  position: relative;
}

.header .header-img {
  width: 100%;
  height: 500px;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

.header .text {
  position: relative;
  top: 50%;
  z-index: 9;
}

.header .text h2 {
  font-family: 'regular';
  font-weight: 500;
  font-size: 2.5rem;
}

.header .text p {
  font-size: 17px;
  line-height: 1.8rem;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.header .vr-links {
  position: absolute;
  right: 0;
  padding: 0px 10px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.header .vr-links::after {
  content: '';
  background-color: #982E36;
  display: block;
  width: 100%;
  height: 1px;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  width: 530px;
  position: absolute;
  left: -100px;
}

.header .vr-links .inner {
  background-color: #fff;
  z-index: 9;
  position: relative;
  padding: 0px 15px;
}

.header .vr-links .inner a {
  margin: 0px 5px;
  color: #888;
  font-weight: 500;
}

.header .vr-links .inner a:hover {
  color: #982E36;
}

.partners-wrapper {
  margin-top: -100px;
}

.partners-wrapper .item {
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 10px 0px #ddd;
          box-shadow: 0px 3px 10px 0px #ddd;
  vertical-align: middle;
  margin-bottom: 25px;
  padding: .5rem 0rem;
}

.partners-wrapper .item img {
  width: 75px;
  height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  display: block;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.partners-wrapper .item:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

section .text-heading {
  text-transform: capitalize;
  margin-bottom: 50px;
  position: relative;
}

section .text-heading h4, section .text-heading h1, section .text-heading h2, section .text-heading h3 {
  font-family: 'regular';
  color: #982E36;
  text-transform: uppercase !important;
}

section .text-heading span {
  font-size: 80px;
  /* line-height: 80px; */
  font-weight: 600;
  font-family: "Teko", sans-serif;
  -webkit-text-stroke-width: 2px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #777;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -52px;
  opacity: 0.1;
  z-index: -1;
  text-align: center;
  text-transform: uppercase !important;
}

section .butn {
  border: 1px solid #982E36;
  background-color: #982E36;
  color: #fff;
  display: block;
  border-radius: 5px;
  width: 150px;
  text-align: center;
  height: 45px;
  line-height: 45px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

section .butn::after {
  content: '';
  height: 100%;
  left: -35%;
  top: 0;
  -webkit-transform: skew(50deg);
          transform: skew(50deg);
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  width: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #fff;
  position: absolute;
  z-index: 0;
}

section .butn span {
  position: relative;
  z-index: 9;
}

section .butn:hover {
  color: #982E36;
}

section .butn:hover::after {
  height: 100%;
  width: 135%;
}

section .pagination-wrapper {
  margin-top: 40px;
}

section .pagination-wrapper .pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

section .pagination-wrapper .pagination .page-link {
  width: 40px;
  height: 40px;
  text-align: center;
  color: #333;
  background-color: #f9f9f9;
  border-radius: 10px;
  margin: 0px 2px;
}

section .pagination-wrapper .pagination .page-link:hover {
  background-color: #982E36;
  color: #fff;
}

section .contact-card {
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  border: 1px solid #ddd;
}

section .contact-card .item {
  border-bottom: 1px solid #ddd;
  padding: 17px 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
}

section .contact-card .item:last-child {
  border-bottom: 1px solid transparent;
}

section .contact-card .item .icon {
  color: #982E36;
}

section .contact-card .item .text {
  padding-left: 15px;
}

section .contact-card .item .text h6 {
  color: #555;
  margin-bottom: .8rem;
}

section .contact-card .item .text p {
  font-size: 14px;
  font-family: 'roboto';
  margin-bottom: 0;
}

.about-sec {
  padding: 70px 0px;
}

.about-sec .nav {
  border-right: 1px solid #ccc;
}

.about-sec .nav .nav-link {
  font-size: 15px;
  padding: 0.5rem 1.2rem;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.about-sec .nav .nav-link::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  display: block;
  position: absolute;
  right: -15px;
  top: 25px;
}

.about-sec .nav .nav-link.active {
  background-color: #982E36;
}

.about-sec .nav .nav-link.active::after {
  background-color: #982E36;
}

.about-sec .text {
  margin-bottom: 20px;
}

.about-sec .text h6 {
  font-family: 'bold';
}

.about-sec .text span {
  font-size: 13px;
  color: #888;
  font-weight: 500;
}

.about-sec .text p {
  font-size: 14px;
  line-height: 1.6rem;
  color: #000;
  margin-bottom: .5rem;
  font-family: "roboto";
}

.about-sec .about-img {
  width: 100%;
  height: 230px;
  -o-object-fit: contain;
     object-fit: contain;
}

.leadership-sec {
  padding: 70px 0px;
}

.leadership-sec .card {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border-radius: 20px;
}

.leadership-sec .card img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0px 0px;
}

.leadership-sec .card .card-body {
  text-align: center;
}

.leadership-sec .card .card-body h5 {
  text-transform: capitalize;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.leadership-sec .card .card-body h6 {
  font-family: 'bold';
  color: #666;
}

.leadership-sec .card:hover {
  -webkit-box-shadow: 0px 3px 15px 0px #ddd;
          box-shadow: 0px 3px 15px 0px #ddd;
}

.leadership-sec .card:hover h5 {
  color: #982E36;
}

.services-sec {
  padding: 70px 0px;
}

.services-sec .text-heading span {
  left: 0%;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.services-sec .text {
  margin-bottom: 25px;
}

.services-sec .text .services-img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}

.services-sec .text h4 {
  font-family: 'regular';
  font-weight: 500;
  margin-bottom: 1.3rem;
}

.services-sec .text p {
  line-height: 1.6rem;
  color: #666;
}

.services-sec .text p span {
  color: #982E36;
  font-weight: 600;
}

.services-sec .card {
  padding: 2.5rem 1.3rem;
  text-align: center;
  border-radius: 20px;
  border: none;
  -webkit-box-shadow: 0px 3px 50px 0px #ddd;
          box-shadow: 0px 3px 50px 0px #ddd;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.services-sec .card::after {
  content: '';
  height: 100%;
  left: -160%;
  top: 0;
  -webkit-transform: skew(50deg);
          transform: skew(50deg);
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  width: 0;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  background: #982E36;
  position: absolute;
  z-index: 0;
}

.services-sec .card.middle {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.services-sec .card .inner {
  position: relative;
  z-index: 9;
}

.services-sec .card .inner h5 {
  margin-bottom: 1.5rem;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  color: #444;
  font-size: 1rem;
}

.services-sec .card .inner p {
  line-height: 1.6rem;
  margin-bottom: 2rem;
  font-size: 13px;
  font-family: "roboto";
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

.services-sec .card .inner a {
  color: #982E36;
  font-family: 'regular';
  font-size: 15px;
  font-weight: 600;
}

.services-sec .card:hover::after {
  height: 100%;
  width: 300%;
}

.services-sec .card:hover h5, .services-sec .card:hover a {
  color: #fff;
}

.services-sec .card:hover p {
  color: #ddd;
}

.statics {
  padding: 100px 0px;
  background-color: #EFEFEF;
}

.statics .item {
  width: 100%;
  padding: 1.375rem .5rem;
  background-color: #fff;
  border-radius: 3px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

.statics .item .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
  background-color: #982E36;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

.statics .item .icon img {
  width: 25px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  display: block;
  position: relative;
  top: 10px;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

.statics .item .counter {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 50px;
  margin: 0px 15px;
  color: #982E36;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  width: 30px;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

.statics .item .title {
  padding-left: 10px;
  font-size: 14px;
  letter-spacing: 1.5px;
  border-left: 1px solid #ddd;
  text-transform: uppercase;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  font-family: 'roboto';
}

.statics .item:hover {
  background-color: #982E36;
  -webkit-box-shadow: 0px 3px 10px 0px #ddd;
          box-shadow: 0px 3px 10px 0px #ddd;
}

.statics .item:hover .icon {
  background-color: #fff;
}

.statics .item:hover .icon img {
  -webkit-filter: invert(41%) sepia(90%) saturate(2095%) hue-rotate(321deg) brightness(64%) contrast(122%);
          filter: invert(41%) sepia(90%) saturate(2095%) hue-rotate(321deg) brightness(64%) contrast(122%);
}

.statics .item:hover .counter, .statics .item:hover .title {
  color: #fff;
}

.company-works {
  padding: 70px 0px;
}

.company-works .text-heading span {
  font-size: 65px;
  top: -20px;
}

.company-works .works-img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.company-works .works-img.small {
  height: 200px;
}

.company-works .works-img.lg {
  height: 300px;
}

.company-works .text h4 {
  font-family: 'regular';
  margin-bottom: 1rem;
}

.company-works .text p {
  line-height: 1.8rem;
  font-size: 13px;
}

.company-works .text ul {
  padding-left: 25px;
  border-left: 2px solid #ccc;
  margin-top: 50px;
}

.company-works .text ul li {
  text-transform: uppercase;
  font-size: 13px;
  color: #555;
  font-weight: 600;
  position: relative;
  margin: 30px 0px;
}

.company-works .text ul li.active {
  color: #982E36;
}

.company-works .text ul li.active::before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: #982E36;
  border-radius: 50%;
  position: absolute;
  left: -31px;
  top: 5px;
}

.works {
  padding: 200px 0px 100px 0px;
  position: relative;
  background: url(../images/work.png);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-align: center;
}

.works::after {
  content: '';
  background-color: #222;
  opacity: .5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.works h1 {
  text-align: center;
  color: #999;
  opacity: .5;
  position: absolute;
  left: 50%;
  top: 80px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 140px;
  z-index: 8;
  pointer-events: none;
}

.works p {
  position: relative;
  z-index: 9;
  font-size: 14px;
  line-height: 1.8rem;
  letter-spacing: 1.5px;
  text-align: center;
  color: #ddd;
  font-weight: bold;
  margin-bottom: 8rem;
}

.works .play-btn {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  color: #982E36;
  display: block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 9;
}

.works .play-btn::before {
  content: '';
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: -5px;
  background-color: #fff;
  display: block;
  opacity: .5;
  z-index: -1;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

.works .play-btn:hover {
  background-color: #982E36;
  color: #fff;
  z-index: 9;
}

.works .play-btn:hover::before {
  background-color: #982E36;
}

.news-sec {
  padding: 70px 0px;
  position: relative;
}

.news-sec .text-heading span {
  font-size: 72px;
  top: -20px;
  letter-spacing: 2px;
}

.news-sec .card {
  border: 1px solid #ddd;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  border-radius: 10px;
}

.news-sec .card .image-container {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.news-sec .card .image-container img {
  width: 100%;
  height: 100%;
  background-size: cover;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.news-sec .card .card-body .details {
  padding: 10px 0px;
}

.news-sec .card .card-body .details img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: inline-block;
}

.news-sec .card .card-body .details p {
  display: inline-block;
  font-weight: bold;
  font-size: 13px;
  color: #222;
}

.news-sec .card .card-body .details span {
  font-size: 13px;
  text-align: center;
  position: relative;
  top: 10px;
  color: #777;
}

.news-sec .card .card-body p {
  font-family: "roboto";
  color: #777;
}

.news-sec .card .card-footer {
  background-color: transparent;
}

.news-sec .card .card-footer a {
  font-size: 14px;
  color: #555;
  text-align: center;
  margin-right: 20px;
}

.news-sec .card .card-footer a i {
  margin-right: 5px;
}

.news-sec .card .card-footer a:hover {
  color: #982E36;
  font-weight: bold;
}

.news-sec .card:hover {
  -webkit-box-shadow: 0px 3px 10px 0px #ddd;
          box-shadow: 0px 3px 10px 0px #ddd;
}

.news-sec .card:hover .image-container img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.news-sec .card:hover h6 {
  color: #982E36;
}

.news-sec .butn {
  margin: 25px auto 0px auto;
}

.news-sec .pttern {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: -1;
}

.newsletter {
  padding: 70px 0px;
  text-align: center;
  overflow: hidden;
}

.newsletter span {
  color: #982E36;
  letter-spacing: 1.5px;
}

.newsletter h3 {
  margin-top: .8rem;
}

.newsletter .form-group {
  position: relative;
  margin-top: 20px;
}

.newsletter .form-group .form-control {
  height: 50px;
  font-size: 12px;
}

.newsletter .form-group .submit-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 150px;
  font-size: 13px;
  height: 40px;
  border: 1px solid #982E36;
  background-color: #982E36;
  border-radius: 5px;
}

.newsletter .form-group .submit-btn span {
  color: #fff;
}

.newsletter .form-group .submit-btn:hover {
  background-color: #fff;
}

.newsletter .form-group .submit-btn:hover span {
  color: #982E36;
}

/***************************** Start Edit Contact Page *****************************/
.page-heading {
  background-color: #f9f9f9;
  background: url(../images/page-heading.jpg);
  background-size: cover;
  padding: 40px 0px;
  text-align: center;
  position: relative;
}

.page-heading::after {
  content: '';
  background-color: #f9f9f9;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .7;
}

.page-heading .breadcrumb {
  background-color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: auto;
  position: relative;
  z-index: 9;
}

.page-heading .breadcrumb .breadcrumb-item {
  font-weight: bold;
  font-size: 14px;
}

.page-heading .breadcrumb .breadcrumb-item:first-child::before {
  opacity: 0;
}

.page-heading .breadcrumb .breadcrumb-item::before {
  content: '|';
}

.contact-pg {
  padding: 70px 0px;
}

.contact-pg .contact-form h5 {
  margin-bottom: 1.3rem;
  color: #555;
}

.contact-pg .contact-form .form-group .form-control {
  height: 50px;
  font-size: 12px;
}

.contact-pg .contact-form .form-group textarea {
  height: 250px !important;
  resize: none;
}

.contact-pg .contact-form .form-group .butn {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2.5px;
}

/***************************** Start Edit Gallery Page *****************************/
.gallery-pg {
  padding: 70px 0px;
}

.gallery-pg .text-heading span {
  font-size: 65px;
  top: -40px;
}

.gallery-pg .tabs-wrapper {
  margin-bottom: 50px;
}

.gallery-pg .tabs-wrapper .nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.gallery-pg .tabs-wrapper .nav .nav-link {
  padding: .4rem 2rem;
  text-transform: uppercase;
  font-family: 'medium';
  letter-spacing: 2px;
  background-color: #f7f7f7;
  margin: 0px 5px;
}

.gallery-pg .tabs-wrapper .nav .nav-link.active {
  background-color: #982E36;
}

.gallery-pg .card {
  height: 270px;
  position: relative;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  border-radius: 10px;
  margin-bottom: 30px;
}

.gallery-pg .card .gallery-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.gallery-pg .card::after {
  content: '';
  width: 0%;
  height: 100%;
  background-color: #982E36;
  opacity: .7;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all .4s ease-in;
  transition: all .4s ease-in;
  border-radius: 0px 10px 10px 0px;
}

.gallery-pg .card::before {
  content: '';
  width: 0%;
  height: 100%;
  background-color: #982E36;
  opacity: .7;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all .4s ease-in;
  transition: all .4s ease-in;
  border-radius: 10px 0px 0px 10px;
}

.gallery-pg .card .text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  width: 100%;
  text-align: center;
  z-index: 9;
  color: #fff;
  opacity: 0;
  -webkit-transition: all .6s ease-in;
  transition: all .6s ease-in;
}

.gallery-pg .card .text h5 {
  font-size: 1.5rem;
}

.gallery-pg .card .text i {
  font-weight: bold;
  font-size: 14px;
}

.gallery-pg .card .text a i {
  color: #fff;
  display: block;
  margin-top: 10px;
  font-size: 18px;
}

.gallery-pg .card:hover {
  -webkit-box-shadow: 0px 3px 20px 0px #ccc;
          box-shadow: 0px 3px 20px 0px #ccc;
}

.gallery-pg .card:hover::after {
  width: 50%;
}

.gallery-pg .card:hover::before {
  width: 50%;
}

.gallery-pg .card:hover .text {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}

/***************************** Start Edit About Page *****************************/
.about-pg {
  padding: 70px 0px;
}

.about-pg .text {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about-pg .text .heading {
  padding-left: 20px;
  border-left: 2px solid #982E36;
}

.about-pg .text .heading h6 {
  color: #888;
  font-size: .8rem;
}

.about-pg .text .heading h2 {
  font-family: 'medium';
  margin-bottom: 1.5rem;
}

.about-pg .text p {
  font-family: 'roboto';
  font-size: 15px;
  line-height: 1.7rem;
}

.about-pg .image-content {
  position: relative;
  height: 440px;
}

.about-pg .image-content .about-pg-img {
  width: 100%;
  height: 100%;
}

.about-pg .image-content .play-btn {
  width: 80px;
  height: 80px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.about-pg .image-content .play-btn:before, .about-pg .image-content .play-btn:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #982E36;
}

.about-pg .image-content .play-btn:before {
  z-index: 1;
}

.about-pg .image-content .play-btn:after {
  overflow: hidden;
  z-index: 0;
  opacity: 1;
  visibility: visible;
  -webkit-animation: pulsecust 1.8s linear;
          animation: pulsecust 1.8s linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-transition: visibility 0.1s ease-out, opacity 0.2s ease-out;
  transition: visibility 0.1s ease-out, opacity 0.2s ease-out;
  background-color: #fff;
}

.about-pg .image-content .play-btn i {
  font-size: 1.5rem;
  color: #fff;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.team {
  padding: 70px 0px;
}

.team .heading {
  padding-left: 20px;
  border-left: 2px solid #982E36;
  margin-bottom: 50px;
}

.team .heading h6 {
  color: #888;
  font-size: .8rem;
}

.team .heading h2 {
  font-family: 'medium';
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.team .team-carousel.owl-theme .owl-dots .owl-dot.active span {
  background: #982E36;
}

.team .team-carousel .card {
  position: relative;
  border: none;
  height: 370px;
}

.team .team-carousel .card img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.team .team-carousel .card .card-body {
  text-align: center;
  position: relative;
  width: 90%;
  margin: -50px auto 0px auto;
  background: #f6f6f6;
  border-radius: 15px;
  padding: 2rem 1.25rem;
}

.team .team-carousel .card .card-body h6 {
  color: #982E36;
}

.team .team-carousel .card .card-body .links {
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-top: 15px;
}

.team .team-carousel .card .card-body .links a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  color: #982E36;
  background: rgba(196, 196, 196, 0.3);
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  z-index: 1;
  margin: 0 5px;
  position: relative;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.team .team-carousel .card .card-body .links a:hover {
  background-color: #982E36;
  color: #fff;
}

/***************************** Start Edit partners Page *****************************/
.partners-pg {
  padding: 70px 0px;
}

.partners-pg .partners-carousel {
  margin-bottom: 40px;
}

.partners-pg .partners-carousel .card-img {
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 10px 0px #ddd;
          box-shadow: 0px 3px 10px 0px #ddd;
  vertical-align: middle;
  margin: 2px 2px 25px 2px;
  padding: .5rem 0rem;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.partners-pg .partners-carousel .card-img img {
  width: 75px;
  height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  display: block;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.partners-pg .details .item {
  margin-bottom: 100px;
}

.partners-pg .details .item .text .heading {
  padding-left: 20px;
  border-left: 2px solid #982E36;
  margin-bottom: 30px;
}

.partners-pg .details .item .text .heading img {
  margin-bottom: 15px;
}

.partners-pg .details .item .text .heading h3 {
  font-family: 'medium';
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.partners-pg .details .item .text .heading a:hover h3 {
  color: #982E36;
}

.partners-pg .details .item .text p {
  font-size: 15px;
  line-height: 1.8rem;
  font-family: 'roboto';
}

.partners-pg .details .item .text ul {
  padding-left: 30px;
}

.partners-pg .details .item .text ul li {
  font-family: 'roboto';
  color: #555;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6rem;
  position: relative;
}

.partners-pg .details .item .text ul li::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  content: '\f105';
  color: #982E36;
  position: absolute;
  top: -1px;
  left: -15px;
}

.partners-pg .details .item .text ul li a {
  color: #333;
}

.partners-pg .details .item .text ul li a:hover h6 {
  color: #982E36;
}

.partners-pg .details .item .image-content {
  width: 100%;
  height: 300px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0.9);
          transform: translateY(-50%) scale(0.9);
  padding: 15px;
}

.partners-pg .details .item .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  position: relative;
  z-index: 9;
}

.partners-pg .details .item .image-content::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #f4f4f4;
  display: block;
  border-radius: 15px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

/***************************** Start Edit blog Page *****************************/
.blog-pg {
  padding: 70px 0px;
}

.blog-pg .blog-carousel {
  position: relative;
  margin-bottom: 30px;
}

.blog-pg .blog-carousel.owl-theme .owl-nav {
  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;
  position: absolute;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.blog-pg .blog-carousel.owl-theme .owl-nav button {
  width: 50px;
  height: 50px;
  background-color: #ccc;
  border-radius: 50%;
  color: #333;
  line-height: 50px;
  font-size: 30px;
  opacity: .5;
}

.blog-pg .blog-carousel.owl-theme .owl-nav button span {
  font-family: monospace;
}

.blog-pg .blog-carousel.owl-theme .owl-nav button:hover {
  opacity: 1;
  background-color: #982E36;
  color: #fff;
}

.blog-pg .blog-carousel .blog-card {
  height: 441px;
  border-radius: 10px;
  position: relative;
}

.blog-pg .blog-carousel .blog-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.blog-pg .blog-carousel .blog-card .text {
  position: absolute;
  bottom: 0;
  color: #fff;
  z-index: 9;
  padding: 10px 50px;
  border-radius: 0px 0px 10px 10px;
}

.blog-pg .blog-carousel .blog-card .text::after {
  content: '';
  background-color: #202020;
  opacity: .7;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0px 0px 10px 10px;
  height: 100%;
  z-index: -1;
}

.blog-pg .blog-carousel .blog-card .text span {
  color: #eee;
}

.blog-pg .blog-carousel .blog-card .text h6 {
  margin: 1rem 0rem;
  color: #fff;
}

.blog-pg .blog-carousel .blog-card .text p {
  color: #ccc;
}

.blog-pg .card {
  border: 1px solid #ddd;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
  border-radius: 10px;
  margin-bottom: 30px;
}

.blog-pg .card .image-container {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
}

.blog-pg .card .image-container img {
  width: 100%;
  height: 100%;
  background-size: cover;
  border-radius: 10px 10px 0px 0px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.blog-pg .card .card-body .details {
  padding: 10px 0px;
}

.blog-pg .card .card-body .details img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: inline-block;
}

.blog-pg .card .card-body .details p {
  display: inline-block;
  font-weight: bold;
  font-size: 13px;
  color: #222;
}

.blog-pg .card .card-body .details span {
  font-size: 13px;
  text-align: center;
  position: relative;
  top: 10px;
  color: #777;
}

.blog-pg .card .card-body p {
  font-family: "roboto";
  color: #777;
}

.blog-pg .card .card-footer {
  background-color: transparent;
}

.blog-pg .card .card-footer a {
  font-size: 14px;
  color: #555;
  text-align: center;
  margin-right: 20px;
}

.blog-pg .card .card-footer a i {
  margin-right: 5px;
}

.blog-pg .card .card-footer a:hover {
  color: #982E36;
  font-weight: bold;
}

.blog-pg .card:hover {
  -webkit-box-shadow: 0px 3px 10px 0px #ddd;
          box-shadow: 0px 3px 10px 0px #ddd;
}

.blog-pg .card:hover .image-container img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.blog-pg .card:hover h6 {
  color: #982E36;
}

/***************************** Start Edit single-blog Page *****************************/
.single-blog {
  padding: 70px 0px;
}

.single-blog .single-blog-inner {
  margin-bottom: 35px;
}

.single-blog .single-blog-inner .blog-img {
  width: 100%;
  height: 350px;
  border-radius: 10px 10px 0px 0px;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-blog .single-blog-inner .inner {
  padding: 0px 35px;
  border: 1px solid #ddd;
  border-radius: 0px 0px 10px 10px;
}

.single-blog .single-blog-inner .inner h4 {
  margin: 25px 0px 0px 0px;
}

.single-blog .single-blog-inner .inner .details {
  margin: 25px 0px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.single-blog .single-blog-inner .inner .details .author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: inline-block;
}

.single-blog .single-blog-inner .inner .details .author p {
  display: inline-block;
  font-weight: bold;
  font-size: 13px;
  color: #222;
}

.single-blog .single-blog-inner .inner .details .author span {
  font-size: 13px;
  text-align: center;
  position: relative;
  top: 10px;
  color: #777;
}

.single-blog .single-blog-inner .inner .details .date p {
  margin-bottom: 0;
  position: relative;
  top: 15px;
  margin-left: 40px;
}

.single-blog .single-blog-inner .inner .desc {
  font-size: 15px;
  line-height: 1.8rem;
  font-family: "roboto";
}

.single-blog .reviews-wrapper {
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.single-blog .reviews-wrapper .reviews-header {
  border-bottom: 1px solid #ddd;
  padding-bottom: 25px;
  position: relative;
}

.single-blog .reviews-wrapper .reviews-header h4 {
  margin-bottom: 15px;
}

.single-blog .reviews-wrapper .reviews-header h6 {
  margin-bottom: 0;
  font-family: 'regular';
}

.single-blog .reviews-wrapper .reviews-header .reviews-inner-nav .nav {
  border-bottom: 0px;
}

.single-blog .reviews-wrapper .reviews-header .reviews-inner-nav .nav .nav-link {
  border: none;
  position: absolute;
  bottom: 20px;
  right: 0px;
}

.single-blog .reviews-wrapper .reviews-header .reviews-inner-nav .nav .nav-link.active {
  background-color: transparent;
  font-weight: bold;
}

.single-blog .reviews-wrapper .reviews-card {
  padding: 35px 0px;
  border-bottom: 1px solid #ddd;
}

.single-blog .reviews-wrapper .reviews-card:last-child {
  border-bottom: 1px solid transparent;
  padding-bottom: 10px;
}

.single-blog .reviews-wrapper .reviews-card h6 {
  font-weight: bold;
  color: #777;
}

.single-blog .reviews-wrapper .reviews-card .rate i {
  font-size: 12px;
}

.single-blog .reviews-wrapper .reviews-card .title {
  margin-bottom: .4rem;
  font-size: 15px;
  font-weight: bold;
  margin-top: .5rem;
}

.single-blog .reviews-wrapper .form-container {
  margin-top: 30px;
}

.single-blog .reviews-wrapper .form-container .form-group {
  margin-bottom: 20px;
}

.single-blog .reviews-wrapper .form-container .form-group label {
  font-weight: bold;
  color: #888;
  font-size: 14px;
  margin-bottom: 10px;
}

.single-blog .reviews-wrapper .form-container .form-group input, .single-blog .reviews-wrapper .form-container .form-group textarea {
  background-color: transparent;
  font-size: 12px;
}

.single-blog .reviews-wrapper .form-container .form-group input {
  height: 50px;
}

.single-blog .reviews-wrapper .form-container .butn {
  margin: 25px auto 0px auto;
}

.single-blog .related-news {
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 25px;
}

.single-blog .related-news h5 {
  padding-left: 20px;
  border-left: 2px solid #982E36;
  margin-bottom: 20px;
}

.single-blog .related-news .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 20px 0px;
  border-bottom: 1px solid #ddd;
}

.single-blog .related-news .item:last-child {
  border-bottom: 1px solid transparent;
  padding: 20px 0px 0px 0px;
}

.single-blog .related-news .item img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.single-blog .related-news .item .text {
  padding-left: 15px;
}

.single-blog .related-news .item:hover h6 {
  color: #982E36;
}

.single-blog .contact-card h5 {
  padding-left: 20px;
  border-left: 2px solid #982E36;
  margin-bottom: 20px;
}

/***************************** Start Edit Services Page *****************************/
.services-pg {
  padding: 70px 0px;
}

.services-pg .item {
  margin-bottom: 50px;
}

.services-pg .item:last-child {
  margin-bottom: 0;
}

.services-pg .item .text {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.services-pg .item .text .heading {
  padding-left: 20px;
  border-left: 2px solid #982E36;
}

.services-pg .item .text .heading h6 {
  color: #888;
  font-size: .8rem;
}

.services-pg .item .text .heading h2 {
  font-family: 'medium';
  margin-bottom: 1.5rem;
}

.services-pg .item .text p {
  font-family: 'roboto';
  font-size: 15px;
  line-height: 1.7rem;
}

.services-pg .item .image-content {
  width: 100%;
  height: 300px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0.9);
          transform: translateY(-50%) scale(0.9);
  padding: 15px;
}

.services-pg .item .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  position: relative;
  z-index: 9;
}

.services-pg .item .image-content::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #f4f4f4;
  display: block;
  border-radius: 15px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
/*# sourceMappingURL=style.css.map */