@font-face {
  font-family: Carmina;
  src: url("../fonts/Carmina-Bold-BT.woff2") format("woff2"),
    url("../fonts/Carmina-Bold-BT.woff") format("woff"),
    url("../fonts/Carmina-Bold-BT.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: DMSans;
  src: url("../fonts/DMSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: DMSans;
  src: url("../fonts/DMSans-Regular.woff2") format("woff2"),
    url("../fonts/DMSans-Regular.woff") format("woff"),
    url("../fonts/DMSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: DMSans;
  src: url("../fonts/DMSans-Bold.woff2") format("woff2"),
    url("../fonts/DMSans-Bold.woff") format("woff"),
    url("../fonts/DMSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: DMSans;
  src: url("../fonts/DMSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: DMSans;
  src: url("../fonts/DMSans-Black.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
}
/* Base style */
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: DMSans, sans-serif;
  overflow-x: hidden;
  font-size: 1.6rem;
  padding: 0;
  font-weight: 400;
  color: #3d3d3d;
  background-color: #fff;
}
body .text-light-grey {
  color: #707070;
}

#site-header {
  padding-top: 20px;
}

.freet {
  width: 115px;
}

.dropdown-item {
  width: 96%;
}

.btn {
  cursor: pointer;
  display: inline-flex;
  -webkit-border-radius: 1.2rem;
  -moz-border-radius: 1.2rem;
  border-radius: 1.2rem;
  border: 0.2rem solid transparent;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-family: DMSans, sans-serif;
  font-weight: 400;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.btn svg {
  height: 1.7rem;
  width: auto;
  margin-right: 1rem;
}
.btn.btn-yellow {
  color: #f7931f;
  border-color: #fbdbb4;
  background-color: #fcf7f0;
}
.btn.btn-yellow:hover,
.btn.btn-yellow:active,
.btn.btn-yellow:focus {
  color: #f7931f;
  border-color: #fbdbb4;
  background-color: #fcf7f0;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.12);
}
.btn.btn-black {
  color: #fff;
  border-color: #1c262e;
  background-color: #1c262e;
}
.btn.btn-black:hover,
.btn.btn-black:active,
.btn.btn-black:focus {
  color: #fff;
  border-color: #1c262e;
  background-color: #1c262e;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
}
.btn.angle-down:after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url(../assets/images/SVG/angle-down.svg) no-repeat center;
  background-size: 100%;
  margin-left: 0.5rem;
}

h1,
h2 {
  font-family: Carmina, sans-serif;
  font-weight: 700;
  margin-bottom: 2rem;
}

h3,
h4,
h5,
h6 {
  font-family: DMSans, sans-serif;
  font-weight: 700;
  margin-bottom: 2rem;
}

h1 {
  font-size: 7rem;
  line-height: 1.1;
}
h1 span {
  background: url(../assets/images/SVG/word-bg.svg) no-repeat center;
  background-size: 100%;
  padding: 0.6rem 2.4rem;
  color: #fff;
}

h2 {
  font-size: 5rem;
  line-height: 1.2;
}

h3 {
  font-size: 2.4rem;
}

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

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

p {
  margin-bottom: 2rem;
}

.transition {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}

.radius {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.transformCenter {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.row {
  margin: 0 -1.5rem;
}
.row div[class^="col-"] {
  padding: 0 1.5rem;
}

.mt-60 {
  margin-top: 6rem;
}

.container,
.container-fluid {
  padding: 0 1.5rem;
}

.bg-light {
  background-color: #ecf2f6 !important;
}

.size-full {
  width: 100%;
  display: block;
  height: auto;
}

.radius {
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
}

.drop-shadow {
  -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.12);
}

/* End Base style */
.sec-pad-sm {
  padding: 4rem 0;
}

.sec-pad-md {
  padding: 6rem 0;
}

.sec-pad-lg {
  padding: 8rem 0;
}

.navbar .navbar-toggler {
  border-color: transparent;
  color: #000;
}
.navbar .navbar-toggler:focus {
  outline: 0;
  box-shadow: none;
}
.navbar .navbar-toggler-icon {
  background-image: none;
  width: 3rem;
  height: 3rem;
  position: relative;
}
.navbar .navbar-toggler-icon span {
  position: absolute;
  height: 0.3rem;
  width: 100%;
  top: 50%;
  left: 0px;
  margin-top: -0.15rem;
  background: #f7931f;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.navbar .navbar-toggler-icon span:nth-of-type(1) {
  margin-top: -0.9rem;
}
.navbar .navbar-toggler-icon span:nth-of-type(3) {
  margin-top: 0.7rem;
}
.navbar
  .navbar-toggler[aria-expanded="true"]
  .navbar-toggler-icon
  span:nth-of-type(1) {
  margin-top: -0.8rem;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 2rem;
}
.navbar
  .navbar-toggler[aria-expanded="true"]
  .navbar-toggler-icon
  span:nth-of-type(3) {
  margin-top: 0.6rem;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0.6rem;
  left: 0;
}
.navbar
  .navbar-toggler[aria-expanded="true"]
  .navbar-toggler-icon
  span:nth-of-type(2) {
  display: none;
}
.navbar .navbar-brand img {
  height: 4.8rem;
  width: auto;
}
.navbar .navbar-nav .menu-item {
  margin: 0 2.5rem;
}
.navbar .navbar-nav .menu-item > a {
  font-size: 1.8rem;
  color: #1e272f;
  padding: 0;
}
.navbar .navbar-nav .menu-item.active > a {
  font-weight: 700;
}
.navbar .navbar-cta {
  padding-left: 3.5rem;
}
.navbar .navbar-cta a {
  margin: 0 0.5rem;
}
.navbar ul.dropdown-menu {
  min-width: 16rem;
  font-size: 1.7rem;
  border-radius: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.12);
}
.navbar ul.dropdown-menu a {
  padding: 1rem 1rem;
  border-bottom: 0.1rem solid #fbdbb4;
}
.navbar ul.dropdown-menu a:hover {
  background-color: #fbdbb4;
}

.hero-sec {
  padding-top: 8rem;
  padding-bottom: 4rem;
}
.hero-sec img {
  width: 100%;
  height: auto;
}
.hero-sec p {
  font-size: 2.4rem;
  color: #707070;
  text-transform: uppercase;
  font-weight: 600;
}

.icon-div {
  margin-bottom: 3rem;
}
.icon-div .thumb {
  padding: 1.5rem 0;
  border-bottom: 0.1rem solid rgba(112, 112, 112, 0.25);
  margin-bottom: 1.5rem;
}
.icon-div .thumb img {
  height: 4rem;
  width: auto;
}
.icon-div h3,
.icon-div h2 {
  font-size: 1.8rem;
  color: #20313d;
  margin-bottom: 1rem;
}
.icon-div p {
  font-size: 1.4rem;
  text-transform: none;
}

.sec-title {
  margin-bottom: 4rem;
}
.sec-title h2,
.sec-title h1 {
  position: relative;
}
.sec-title.size-lg h2,
.sec-title.size-lg h1 {
  font-size: 6.8rem;
}

.sec-title-small h2,
.sec-title-small h1 {
  font-size: 5rem !important;
}
.sec-title.arrow h2,
.sec-title.arrow h1 {
  display: inline-block;
}
.sec-title.arrow.arrow-right-down h2:after,
.sec-title.arrow.arrow-right-down h1:after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  margin-left: 3rem;
  width: 6rem;
  height: 4.5rem;
  background-image: url(../assets/images/SVG/arrow-right-down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
}
.sec-title.arrow.arrow-right h2:after,
.sec-title.arrow.arrow-right h1:after {
  content: "";
  position: absolute;
  left: 100%;
  top: 15%;
  width: 6rem;
  height: 4.5rem;
  background-image: url(../assets/images/SVG/arrow-right-down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-left: -1.5rem;
}
.sec-title.arrow.arrow-left h2:after,
.sec-title.arrow.arrow-left h1:after {
  content: "";
  position: absolute;
  right: 100%;
  top: 15%;
  width: 6rem;
  height: 4.5rem;
  background-image: url(../assets/images/SVG/arrow-left-down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: -1.5rem;
}
.sec-title.arrow.arrow-left-down h2:after,
.sec-title.arrow.arrow-left-down h1:after {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  margin-right: 4rem;
  width: 6rem;
  height: 4.5rem;
  background-image: url(../assets/images/SVG/arrow-left-down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
}
.sec-title.arrow.star-top-right h2:before,
.sec-title.arrow.star-top-right h1:before {
  content: "";
  position: absolute;
  left: 100%;
  top: -4rem;
  margin-left: 1rem;
  width: 3.5rem;
  height: 7rem;
  background-image: url(../assets/images/SVG/star-1.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.sec-title.arrow.star-top-left h2:before,
.sec-title.arrow.star-top-left h1:before {
  content: "";
  position: absolute;
  right: 100%;
  top: -4rem;
  margin-left: 1rem;
  width: 3.5rem;
  height: 7rem;
  background-image: url(../assets/images/SVG/star-1.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.sec-title.arrow.arrow-static h2:after,
.sec-title.arrow.arrow-static h1:after {
  position: static;
  display: inline-block;
  margin-bottom: -2rem;
}

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

.partnerSlider {
  padding: 0 4rem;
  position: relative;
}
.partnerSlider:after {
  content: "";
  width: 10.9rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05), white);
  z-index: 2;
}
.partnerSlider:before {
  content: "";
  width: 10.9rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0.05), white);
  z-index: 2;
}

.partner-single {
  text-align: center;
}
.partner-single .thumb {
  margin-bottom: 1.5rem;
  height: 4.4rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.partner-single .thumb img {
  max-height: 4.4rem;
  width: auto;
  max-width: 100%;
}
.partner-single .title {
  font-size: 1.4rem;
  line-height: 1;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: #f7931f;
  font-weight: 700;
  font-size: 3rem;
  z-index: 9;
}

.video-wrapper .y-video {
  position: relative;
  display: block;
  cursor: pointer;
}
.video-wrapper .y-video:before {
  content: "";
  width: 3rem;
  height: 3rem;
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: url(../assets/images/SVG/play-btn.svg) no-repeat center;
  background-size: 100%;
}
.video-wrapper img {
  -webkit-border-radius: 1.5rem;
  -moz-border-radius: 1.5rem;
  border-radius: 1.5rem;
  width: 100%;
  height: auto;
}

.testimonial-wrap {
  padding: 3rem 2rem;
  padding-bottom: 3rem;
}
.testimonial-wrap h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #244f75;
  margin-bottom: 2rem;
  font-family: DMSans, sans-serif;
}

.testimonialSlider {
  height: 35.5rem;
}
.testimonialSlider .testimonial-single .thumb {
  width: 11.4rem;
}
.testimonialSlider .testimonial-single .thumb img {
  width: 100%;
  height: auto;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  border-radius: 0.8rem;
}
.testimonialSlider .testimonial-single .info {
  width: calc(100% - 11.4rem);
  padding-left: 1.2rem;
}
.testimonialSlider .testimonial-single .info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1c262e;
  margin-bottom: 0.5rem;
}
.testimonialSlider .testimonial-single .info p {
  margin-bottom: 0;
  font-size: 1.1rem;
}
.testimonialSlider .video-wrapper a:before {
  width: 3rem;
  height: 3rem;
  background-size: 2.5rem;
  bottom: 0.5rem;
  right: 0.5rem;
}

.next-slide {
  color: #707070;
  font-size: 1.1rem;
  margin-bottom: -1.3rem;
  position: relative;
  bottom: -0.5rem;
  display: block;
}
.next-slide img {
  width: 1rem;
}

img.size-full {
  width: 100%;
  display: block;
  margin-bottom: 3rem;
}

main ul {
  margin-bottom: 3rem;
}
main ul li {
  font-size: 1.8rem;
  padding-left: 3rem;
  background-image: url(../assets/images/SVG/check-circle-green.svg);
  background-repeat: no-repeat;
  background-position: top 0.3rem left;
  background-size: 2rem;
  margin-bottom: 1rem;
}

.counter-wrap {
  padding-top: 5rem;
}
.counter-wrap .counter-single {
  border: 0.1rem solid #30a7bc;
  background-color: #f0f6f5;
  padding: 2.5rem 0.5rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  text-align: center;
  min-height: calc(100% - 3rem);
  margin-bottom: 3rem;
}
.counter-wrap .counter-single .thumb {
  margin-bottom: 3rem;
  text-align: center;
}
.counter-wrap .counter-single .thumb img {
  height: 6.3rem;
  width: auto;
}
.counter-wrap .counter-single .title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #30a7bc;
  margin-bottom: 0.5rem;
}
.counter-wrap .counter-single p {
  font-weight: 300;
  color: #30a7bc;
  font-size: 1.5rem;
}
.counter-wrap .col-6:nth-of-type(even) .counter-single {
  border-color: #f7931f;
  background-color: #fcf7f0;
}
.counter-wrap .col-6:nth-of-type(even) .counter-single .title {
  color: #f7931f;
}
.counter-wrap .col-6:nth-of-type(even) .counter-single p {
  color: #f7931f;
}

.image-banner-sec {
  position: relative;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-border-radius: 1.5rem 1.5rem 0 0;
  overflow: hidden;
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 14rem 0;
}
.image-banner-sec:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.image-banner-sec .container {
  position: relative;
  z-index: 9;
}
.image-banner-sec p,
.image-banner-sec h2,
.image-banner-sec h3 {
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 300;
  font-family: DMSans, sans-serif;
}
.image-banner-sec p strong,
.image-banner-sec h2 strong,
.image-banner-sec h3 strong {
  font-weight: 700;
}

footer#site-footer {
  background-color: #ecf2f6;
  padding-top: 6rem;
  padding-bottom: 3rem;
}
footer#site-footer .social-links {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  flex-direction: column;
  width: 9rem;
}
footer#site-footer .social-links a {
  width: 4rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
footer#site-footer .social-links a svg {
  width: auto;
  height: 2.5rem;
}
footer#site-footer .social-links a svg path {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
footer#site-footer .social-links a:hover svg path,
footer#site-footer .social-links a:hover svg rect {
  fill: #f7931f;
}
footer#site-footer .title {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: DMSans, sans-serif;
  color: #20313d;
  margin-bottom: 2.5rem;
}
footer#site-footer address,
footer#site-footer p {
  font-size: 1.4rem;
  color: #20313d;
  margin-bottom: 2rem;
  font-weight: 400;
}
footer#site-footer ul.menu li {
  margin-bottom: 1.2rem;
}
footer#site-footer ul.menu li a {
  font-size: 1.8rem;
  font-weight: 400;
  color: #20313d;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
footer#site-footer ul.menu li a:hover {
  color: #f7931f;
}
footer#site-footer img {
  margin-bottom: 2rem;
}
footer#site-footer .footer-item {
  margin-bottom: 3rem;
}

.swiper-pagination-bullet {
  color: #f7931f;
  background-color: #f7931f;
}

.Marquees {
  overflow-x: hidden;
  position: relative;
}
.Marquees:after {
  content: "";
  width: 10.9rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05), white);
  z-index: 2;
}
.Marquees:before {
  content: "";
  width: 10.9rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0.05), white);
  z-index: 2;
}

.Marquee {
  display: flex;
  align-items: center;
  width: 1368rem;
}

.marquee {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem;
  width: 18rem;
}

.SecondRow {
  animation: Scroll 120s linear infinite;
  animation-direction: reverse;
}

@-webkit-keyframes Scroll {
  0% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes Scroll {
  0% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
}
@keyframes Scroll {
  0% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
}
.video-wrapper.parent-container {
  position: relative;
  padding-bottom: 60%;
  -webkit-border-radius: 1.5rem;
  -moz-border-radius: 1.5rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
.video-wrapper.parent-container iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.card {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.12);
  border: none;
  padding: 2rem 1rem;
  -webkit-border-radius: 0.6rem;
  -moz-border-radius: 0.6rem;
  border-radius: 0.6rem;
  min-height: calc(100% - 3rem);
  margin-bottom: 3rem;
}
.card .card-title {
  font-size: 2rem;
  color: #1c262e;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.card p {
  color: #707070;
}

.card-video {
  position: relative;
  padding-bottom: 72%;
  -webkit-border-radius: 1.5rem;
  -moz-border-radius: 1.5rem;
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 3rem;
}
.card-video iframe,
.card-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  border-radius: 1.5rem;
 
  top: 0;
  left: 0;
}
.card-video .video-controls span {
  position: absolute;
}
.card-video .video-controls span.play {
  width: 6.2rem;
  height: 6.2rem;
  bottom: 1.5rem;
  right: 1.5rem;
  background: url(../assets/images/SVG/play-btn.svg) no-repeat center;
  background-size: 100%;
  cursor: pointer;
}
.card-video .video-controls span.play.playing {
  background-image: url(../assets/images/paused-1.png);
}
.card-video .video-controls span.expand {
  width: 1.9rem;
  height: 1.9rem;
  top: 1.5rem;
  right: 1.5rem;
  background: url(../assets/images/SVG/expand.svg) no-repeat center;
  background-size: 100%;
  cursor: pointer;
  z-index: 9;
}

.view-more-down-arrow {
  text-decoration: none;
  font-size: 1.4rem;
  color: #707070;
  display: inline-block;
  position: relative;
  padding-right: 2rem;
}
.view-more-down-arrow:after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background: url(../assets/images/SVG/angle-down.svg) no-repeat center;
  background-size: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.5rem;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}

.view-more-block .view-more-toggle {
  text-decoration: none;
  font-size: 1.4rem;
  color: #707070;
  display: inline-block;
  position: relative;
  padding-right: 2rem;
}
.view-more-block .view-more-toggle:after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background: url(../assets/images/SVG/angle-down.svg) no-repeat center;
  background-size: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.5rem;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.view-more-block .view-more-toggle.active:after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.view-more-block .view-more-content {
  padding-top: 1.5rem;
  display: none;
}
.view-more-block .view-more-content p:nth-last-of-type(1) {
  margin-bottom: 0;
}

ul.pagination {
  list-style: none;
  margin-top: 4rem;
}
ul.pagination li {
  background-image: none;
  padding-left: 0;
  margin: 0 0.3rem;
}
ul.pagination li a,
ul.pagination li span {
  font-size: 1.8rem;
  color: #707070;
  border: 0.1rem solid transparent;
  -webkit-border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  border-radius: 0.4rem;
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  background-color: transparent;
}
ul.pagination li img {
  max-width: 100%;
  height: 1.3rem;
}
ul.pagination li.active a,
ul.pagination li.active span,
ul.pagination li:hover a,
ul.pagination li:hover span {
  background-color: transparent;
  border-color: #707070;
  color: #707070;
}

.blog-card {
  background-color: #fff;
  -webkit-border-radius: 1.5rem;
  -moz-border-radius: 1.5rem;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 0 2rem rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 0 2rem rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.12);
  padding: 4.3rem 9rem;
  margin-bottom: 8rem;
}
.blog-card .thumb,
.blog-card .info {
  width: 50%;
}
.blog-card .thumb img {
  width: 100%;
  height: auto;
}
.blog-card:nth-of-type(odd) .thumb {
  padding-right: 10rem;
}
.blog-card:nth-of-type(even) {
  flex-direction: row-reverse;
}
.blog-card:nth-of-type(even) .thumb {
  padding-left: 10rem;
}
.blog-card:last-child {
  margin-bottom: 4rem;
}
.blog-card .info {
  padding-bottom: 7rem;
  position: relative;
}
.blog-card .info p {
  color: #707070;
}
.blog-card .info h2,
.blog-card .info h3 {
  color: #f7931f;
  font-size: 2.5rem;
  font-family: Carmina, sans-serif;
  font-weight: 700;
}
.blog-card .info h2 a,
.blog-card .info h3 a {
  color: #f7931f;
  text-decoration: none;
}
.blog-card .info h2 + p,
.blog-card .info h3 + p {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1c262e;
  font-family: DMSans, sans-serif;
}
.blog-card .blog-card-footer {
  border-top: 0.1rem solid #f7931f;
  padding-top: 1rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.blog-card .blog-card-footer span {
  color: #3b96db;
  font-size: 1.8rem;
}
.blog-card .blog-card-footer .meta {
  padding-right: 3rem;
}

.icon-div-wrap .icon-div-single {
  width: calc(20% - 3rem);
  margin: 0 1.5rem;
  margin-bottom: 3rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.12);
  -webkit-border-radius: 0.6rem;
  -moz-border-radius: 0.6rem;
  border-radius: 0.6rem;
  margin-top: 5rem;
}
.icon-div-wrap .icon-div-single .thumb {
  width: 9.5rem;
  height: 9.5rem;
  background-color: #f7931f;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
  margin-top: -4.7rem;
}
.icon-div-wrap .icon-div-single .thumb img {
  width: 100%;
  max-height: 5.8rem;
}
.icon-div-wrap .icon-div-single .info {
  padding: 3rem 2rem;
  text-align: center;
}
.icon-div-wrap .icon-div-single .info .title {
  font-size: 2.4rem;
  color: #1c262e;
  font-weight: 700;
  min-height: 8.7rem;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.bg-grey {
  background-color: rgba(28, 38, 46, 0.05);
}

.bottom-bg {
  position: relative;
}
.bottom-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20rem;
  background-color: rgba(28, 38, 46, 0.05);
  z-index: -1;
}
.bottom-bg .container {
  position: relative;
}

ul.random-icon-list li {
  padding-left: 0;
  background-image: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
ul.random-icon-list li .icon {
  width: 2.3rem;
}
ul.random-icon-list li .icon img {
  width: 1005;
}
ul.random-icon-list li span:last-child {
  flex: 1;
  padding-left: 2rem;
}

.quote-single {
  margin-bottom: 5rem;
}
.quote-single blockquote {
  font-size: 1.2rem;
  color: #3d3d3d;
  padding: 3rem 3.5rem;
  -webkit-border-radius: 0.6rem;
  -moz-border-radius: 0.6rem;
  border-radius: 0.6rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0 2rem rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 0 2rem rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.12);
  margin-bottom: 2.5rem;
  min-height: 15rem;
  position: relative;
}
.quote-single blockquote:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 3rem;
  width: 0;
  height: 0;
  border-left: 1.5rem solid transparent;
  border-right: 1.5rem solid transparent;
  border-top: 1.5rem solid #fff;
}
.quote-single p {
  padding-left: 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #f7931f;
  margin-bottom: 0;
}
.quote-single p span {
  font-weight: 400;
}
.quote-single span {
  font-size: 1.35rem;
  color: #f7931f;
}

.gallery-1 .gallery-single {
  position: relative;
  padding-bottom: 31%;
  width: 50%;
}
.gallery-1 .gallery-single img {
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0.5rem;
}
.gallery-1 .gallery-single:nth-of-type(2)::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 3.5rem;
  height: 7rem;
  background-image: url(../assets/images/SVG/star-1.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.gallery-1 .gallery-single:nth-of-type(2) img {
  height: calc(100% - 3rem);
  width: calc(100% - 9rem);
}
.gallery-1 .gallery-single:nth-of-type(3),
.gallery-1 .gallery-single:nth-of-type(4) {
  width: 25%;
}
.gallery-1 .gallery-single:nth-of-type(3) {
  padding-bottom: 25%;
}

.sec-title.arrow.arrow-right-down.fix-1 h2:after {
  top: 86%;
  margin-left: 0rem;
  -webkit-transform: rotate(56deg);
  transform: rotate(56deg);
}

.sec-title.arrow.arrow-left-down.fix-2 h2::after {
  top: 72%;
  margin-right: 2rem;
  -webkit-transform: rotate(-47deg);
  transform: rotate(-47deg);
}

.gallery-2 .row {
  margin: 0 -1rem;
}
.gallery-2 .row div[class^="col-"] {
  padding: 0 0.5rem;
}
.gallery-2 .gallery-single {
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 82%;
}
.gallery-2 .gallery-single img {
  width: 100%;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.gallery-2 .gallery-single.img-2,
.gallery-2 .gallery-single.img-3 {
  padding-bottom: 68%;
}
.gallery-2 .gallery-single.img-4 {
  padding-bottom: 125%;
}
.gallery-2 .gallery-single.img-5 {
  padding-bottom: 67%;
}

.team-single {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.12);
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  border-radius: 1rem;
  margin-top: 15rem;
}
.team-single .thumb {
  text-align: center;
  margin-bottom: 3rem;
}
.team-single .thumb img {
  margin-top: -16rem;
  max-width: 15.4rem;
}
.team-single .info {
  text-align: center;
  padding: 2.5rem;
  padding-top: 0;
}
.team-single .info h4 {
  margin-bottom: 0.2rem;
  font-size: 1.8rem;
  font-weight: 600;
}
.team-single .info h4 + p {
  font-size: 1.4rem;
  font-weight: 300;
  color: #707070;
}
.team-single .info a.linkedin {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.team-single .info a.linkedin svg {
  width: 3.4rem;
  height: auto;
}
.team-single .info .view-more-content p {
  font-size: 1.4rem;
  text-align: left;
  color: #707070;
}

.color-orange {
  color: #f7931f !important;
}

@media only screen and (min-width: 768px) {
  .mobile-visible {
    display: none !important;
  }
}
@media only screen and (min-width: 993px) {
  .testimonialSlider .swiper-pagination {
    display: none;
  }
  .testimonialSlider .swiper-button-next,
  .testimonialSlider .swiper-button-prev {
    display: none;
  }

  .mt--50 {
    margin-top: -5rem !important;
  }

  .mt--200 {
    margin-top: -20rem !important;
  }

  .mt--340 {
    margin-top: -34rem !important;
  }

  .mt--100 {
    margin-top: -10rem !important;
  }
}
@media only screen and (min-width: 1024px) {
  .pl-60 {
    padding-left: 6rem !important;
  }

  .pl-120 {
    padding-left: 12rem !important;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 119rem;
  }
}
@media only screen and (max-width: 1024px) {
  .freet {
    width: 75px;
  }

  .testimonialSlider .testimonial-single .info p {
    height: 3rem;
    overflow: hidden;
  }

  .testimonialSlider {
    height: 27rem;
  }

  .sec-pad-md {
    padding: 5rem 0;
  }

  .sec-title.size-lg h2,
  .sec-title.size-lg h1 {
    font-size: 4.8rem;
  }

  .image-banner-sec p,
  .image-banner-sec h2,
  .image-banner-sec h3 {
    font-size: 2.5rem;
  }

  .navbar .navbar-brand img {
    height: 4rem;
    width: auto;
  }

  .navbar-nav .dropdown-menu {
    position: static;
    float: none;
    padding: 0px;
    background: transparent;
    border-color: transparent;
  }

  div#navbarSupportedContent {
    position: absolute;
    width: 100%;
    top: 100%;
    left: auto;
    right: 0;
    z-index: 999999;
    background-color: transparent;
    min-height: calc(100vh - 5.7rem);
  }
  div#navbarSupportedContent .navbar-nav {
    width: 16rem;
    background: rgba(28, 38, 46, 0.9);
    height: 100%;
    overflow-y: auto;
    position: absolute;
    top: 0;
    right: -18rem;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 1rem 0 0 0;
    padding: 3rem 2rem;
  }
  div#navbarSupportedContent .navbar-nav li {
    margin: 0;
    margin-bottom: 1rem;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.25);
  }
  div#navbarSupportedContent .navbar-nav li a {
    padding: 1rem 0;
    font-size: 1.6rem;
  }
  div#navbarSupportedContent .navbar-nav li.mobile-visible {
    border-bottom: none;
  }
  div#navbarSupportedContent.show .navbar-nav {
    right: 0;
  }
  div#navbarSupportedContent .title {
    color: #a8a8a8;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 3rem;
  }
  div#navbarSupportedContent .social-links a {
    display: inline-block;
    margin-right: 1rem;
  }
  div#navbarSupportedContent .social-links a svg {
    height: 1.5rem;
  }
  div#navbarSupportedContent .social-links a svg path {
    fill: #a8a8a8;
  }

  .navbar ul.dropdown-menu {
    min-width: 100%;
    font-size: 1.2rem;
    box-shadow: none;
  }
  .navbar ul.dropdown-menu li {
    border-bottom: none;
    margin-bottom: 0;
  }
  .navbar ul.dropdown-menu li a {
    color: #fff;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.25) !important;
  }

  .navbar-toggler {
    padding: 1.2rem 1rem;
    border-radius: 1rem 1rem 0 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
  }
  .navbar-toggler[aria-expanded="true"] {
    background: rgba(28, 38, 46, 0.9);
  }

  .navbar-light .navbar-nav .nav-link {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .navbar {
    padding: 0;
    padding-top: 1rem;
  }
  .navbar .container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding-right: 0;
  }
  .navbar .btn {
    padding: 0.5rem 0.5rem;
    font-size: 1rem;
    -webkit-border-radius: 0.6rem;
    -moz-border-radius: 0.6rem;
    border-radius: 0.6rem;
  }
  .navbar .btn svg {
    width: 1rem;
    height: auto;
  }

  .navbar .navbar-cta {
    padding-left: 0;
  }

  .navbar .navbar-nav .menu-item > a {
    color: #fff;
  }

  .navbar .container {
    justify-content: flex-end;
  }

  .navbar-brand {
    flex: 1;
    text-align: center;
  }

  .navbar .container {
    max-width: 100%;
  }

  .blog-card {
    padding: 4rem 4rem;
    margin-bottom: 5rem;
  }

  .icon-div-wrap .icon-div-single .info .title {
    font-size: 1.8rem;
    min-height: 5.7rem;
  }

  .sec-title.arrow.arrow-right-down.fix-1 h2:after {
    margin-left: -4rem;
  }
}
@media only screen and (max-width: 992px) {
  .freet {
    width: 75px;
  }

  .hero-sec {
    padding-top: 4rem;
  }
  .hero-sec h1 {
    text-align: center;
  }
  .hero-sec h1 br {
    display: none;
  }
  .hero-sec p {
    text-align: center;
  }

  .icon-div {
    text-align: center;
    width: 100%;
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
  }

  .video-wrapper {
    margin-bottom: 4rem;
  }

  .testimonialSlider {
    height: auto;
  }

  .next-slide {
    display: none;
  }

  footer#site-footer .footer-item {
    padding-top: 4rem;
  }

  .image-banner-sec {
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    border-radius: 1.5rem;
  }

  .testimonial-wrap.radius.drop-shadow {
    border-radius: 0;
    box-shadow: none;
  }

  .testimonialSlider {
    padding: 2rem 5rem;
    position: relative;
  }
  .testimonialSlider:before {
    content: "";
    width: 10.9rem;
    height: 100%;
    position: absolute;
    top: 0;
    left: -0.2rem;
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.1), white);
    z-index: 2;
  }
  .testimonialSlider:after {
    content: "";
    width: 10.9rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: -0.2rem;
    background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.1),
      white
    );
    z-index: 2;
  }
  .testimonialSlider .swiper-button-next,
  .testimonialSlider .swiper-button-prev {
    z-index: 9;
  }

  .testimonial-single {
    -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.12);
    padding: 2.5rem;
  }

  .testimonial-wrap h2 {
    display: none;
  }

  .testimonialSlider .testimonial-single .thumb {
    width: 50%;
  }
  .testimonialSlider .testimonial-single .info {
    width: 50%;
  }
  .testimonialSlider .testimonial-single p {
    height: auto !important;
  }

  .align-center-on-mobile {
    text-align: center;
  }

  .sec-title {
    text-align: center;
  }
  .sec-title .text-right {
    text-align: center;
  }

  .sec-title.arrow.arrow-static.arrow-flip-on-mobile h2:after,
  .sec-title.arrow.arrow-right h2:after,
  .sec-title.arrow.arrow-static.arrow-flip-on-mobile h1:after,
  .sec-title.arrow.arrow-right h1:after {
    left: 0;
    position: absolute;
    background-image: url(../assets/images/SVG/arrow-1.svg);
    background-size: 2rem;
    height: 6rem;
    top: auto;
    bottom: -2.6rem;
    transform: none;
  }

  .sec-title.arrow.star-top-right h2:before,
  .sec-title.arrow.star-top-right h1:before {
    left: auto;
    right: 100%;
  }

  .sec-title.arrow.arrow-left-down.star-top-right.arrow-flip-on-mobile h2:after,
  .sec-title.arrow.arrow-left-down.star-top-right.arrow-flip-on-mobile h1:after,
  .sec-title.arrow.arrow-left.arrow-flip-on-mobile h2:after,
  .sec-title.arrow.arrow-left.arrow-flip-on-mobile h1:after {
    left: 100%;
    background-image: url(../assets/images/SVG/arrow-right-down.svg);
    margin-right: 0;
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -o-transform: rotate(15deg);
    transform: rotate(15deg);
    transform: none;
    top: auto;
    bottom: 0;
    margin-left: 1rem;
  }

  .blog-card .thumb,
  .blog-card .info {
    width: 100%;
  }

  .blog-card:nth-of-type(odd) .thumb {
    padding-right: 0;
  }

  .blog-card:nth-of-type(even) .thumb {
    padding-left: 0;
  }

  .blog-card .thumb {
    margin-bottom: 3rem;
  }

  .icon-div-wrap .icon-div-single {
    width: calc(50% - 3rem);
  }

  .icon-div-wrap {
    justify-content: center;
  }

  .sec-title.arrow.arrow-left-down.fix-2 h2::after {
    right: 90%;
    top: 84%;
  }

  .sec-title.arrow.arrow-right-down h2:after,
  .sec-title.arrow.arrow-right-down h1:after {
    transform: rotate(45deg);
  }

  .sec-title.arrow.arrow-left-down h2:after,
  .sec-title.arrow.arrow-left-down h1:after {
    margin-right: -3rem;
  }
}
@media only screen and (max-width: 767px) {
  .mobile-hidden {
    display: none !important;
  }

  h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }

  h1 span {
    margin-top: 0.2rem;
    display: inline-block;
  }

  .hero-sec {
    padding-bottom: 2rem;
  }
  .hero-sec p {
    font-size: 1rem;
  }

  .mt-60 {
    margin-top: 3rem;
  }

  .icon-div .thumb {
    max-width: 15rem;
    margin-left: auto;
    margin-right: auto;
  }

  h2 {
    font-size: 2.4rem;
  }

  .sec-pad-md {
    padding: 3rem 0;
  }

  .sec-title.arrow.arrow-right-down h2:after,
  .sec-title.arrow.arrow-right-down h1:after {
    margin-left: 2rem;
    width: 4rem;
  }

  .partner-single .title {
    font-size: 0.9rem;
    line-height: 1.1;
    display: block;
  }

  .video-wrapper a:before {
    width: 4rem;
    height: 4rem;
    bottom: 1rem;
    right: 1rem;
    background-size: 3.5rem;
  }

  .video-wrapper {
    margin-bottom: 2rem;
  }

  .testimonial-wrap {
    padding: 0;
  }

  .testimonialSlider {
    padding: 2rem 4rem;
  }

  .sec-title.size-lg h2 {
    font-size: 2.4rem;
  }

  main ul li {
    font-size: 1.3rem;
    background-size: 1.3rem;
    padding-left: 2rem;
  }

  .testimonialSlider .testimonial-single .info h3 {
    font-size: 1.1rem;
  }
  .testimonialSlider .testimonial-single .info p {
    font-size: 0.8rem;
  }

  .counter-wrap .counter-single .title {
    font-size: 1rem;
  }
  .counter-wrap .counter-single p {
    font-size: 0.9rem;
  }

  .image-banner-sec p,
  .image-banner-sec h2,
  .image-banner-sec h3 {
    font-size: 1.6rem;
  }

  .image-banner-sec {
    padding: 6rem 0;
  }

  footer#site-footer .footer-item {
    padding-top: 0;
  }

  .copyright {
    border-top: 0.1rem solid #000;
    display: inline-block;
    padding-top: 1.5rem;
  }

  footer#site-footer .social-links {
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
  }
  footer#site-footer .social-links .title {
    white-space: nowrap;
    margin-bottom: 0;
    margin-right: 1.5rem;
    color: #757575;
  }
  footer#site-footer .social-links a {
    margin-bottom: 0;
    margin-right: 1.5rem;
  }

  footer#site-footer ul.menu li a {
    font-size: 1.4rem;
  }

  .Marquee {
    width: 912rem;
  }

  .marquee {
    width: 12rem;
  }

  .size-full {
    margin-bottom: 3rem;
  }

  .sec-title.arrow.arrow-static.arrow-flip-on-mobile h2:after,
  .sec-title.arrow.arrow-right h2:after,
  .sec-title.arrow.arrow-static.arrow-flip-on-mobile h1:after,
  .sec-title.arrow.arrow-right h1:after {
    bottom: -1.6rem;
  }

  .blog-card {
    padding: 3rem 2rem;
    margin-bottom: 3rem;
  }

  .blog-card .info h2,
  .blog-card .info h3 {
    font-size: 2rem;
  }

  .blog-card .info h2 + p,
  .blog-card .info h3 + p {
    font-size: 1.7rem;
  }

  .blog-card .blog-card-footer span {
    font-size: 1.6rem;
  }

  .blog-card .blog-card-footer .cta {
    white-space: nowrap;
  }

  .blog-card .info {
    padding-bottom: 0;
  }
  .blog-card .info .blog-card-footer {
    position: relative;
  }

  .sec-title.arrow.arrow-left-down.mobile-fix h2:after {
    right: 88%;
    transform: rotate(-46deg);
    top: 92%;
  }

  h3 {
    font-size: 1.8rem;
  }

  .gallery-1 .gallery-single:nth-of-type(2) img {
    width: calc(100% - 5rem);
  }

  .sec-title.size-lg h2,
  .sec-title.size-lg h1 {
    font-size: 2.8rem;
  }

  .sec-title-small h2,
  .sec-title-small h1 {
    font-size: 2.8rem !important;
  }

  .freet {
    width: 75px;
  }

  .sec-title.arrow.arrow-right-down.fix-1 h2:after {
    margin-left: -1rem;
  }
}
@media only screen and (max-width: 420px) {
  .sec-title.arrow.star-top-left h2:before,
  .sec-title.arrow.star-top-left h1:before {
    right: auto;
    top: -2rem;
    left: -1.5rem;
  }

  .icon-div-wrap .icon-div-single {
    width: calc(100% - 3rem);
  }

  .sec-title.arrow.arrow-left-down.fix-2 h2::after {
    margin-right: -1rem;
  }

  .sec-title.arrow.arrow-right-down h2:after,
  .sec-title.arrow.arrow-right-down h1:after {
    margin-left: -2rem;
    transform: rotate(45deg);
  }

  h1 br {
    display: none;
  }

  .sec-title.arrow.arrow-right-down.fix-1 h2:after {
    margin-left: -2rem;
  }
}

/*# sourceMappingURL=style.css.map */
@media only screen and (max-width: 576px) {
  .container {
    display: flex;
    flex-direction: column;
  }
}
