@charset "UTF-8";

/*-----------------------------------------------------------------------------------

    Project Name 	:  Mossa – IT Solution & Web Security HTML5 Template
    Version 		:  1.0.0
    Author 			:  Hamina-Themes (https://themeforest.net/user/hamina-themes/portfolio)
    Developed By    :   Md Tofajjal Hossen
-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    01. Theme default CSS
	02. variables
    03. mixins
    04. common
    05. overlay
    06. header
    07. breadcrumb 
    08. header
    08. mobile-menu
    09. typography
    10. custom-animation
    11. btn
    12. section-title
    13. theme-banner
    14. speciality
    15. about 
    16. counter
    17. choose-us
    18. process
    19. testimonial
    20. contact
    21. blog
    22. faq
    23. service
    24. team
    25. project
    26. price
    27. video
    28. widget
    29. coming-soon
    30. specing
    31. error
    32. footer

-----------------------------------------------------------------------------------*/
/*----------------------------------------*/
/*  01. Theme default CSS
/*----------------------------------------*/
/* 1. Theme default css */
body {
  font-family: "cera_proregular";
  font-size: 17px;
  line-height: 30px;
  font-weight: 400;
  font-style: normal;
  color: #494d59;
}

.main-page-wrapper {
  overflow-x: hidden;
  background-color: #fff;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

a,
.button {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

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

a,
button {
  color: inherit;
  outline: medium none;
  text-decoration: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "cera_probold";
  color: #1b212f;
  line-height: 1.1;
  margin-top: 0px;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 700;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  text-decoration: none;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

.list-none {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

p {
  font-size: 17px;
  font-weight: 400;
  line-height: 30px;
  font-family: "cera_proregular";
  color: #494d59;
  margin-bottom: 0;
}

label {
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

*::-moz-selection {
  background: #000;
  color: #ffffff;
  text-shadow: none;
}

::-moz-selection {
  background: #000;
  color: #ffffff;
  text-shadow: none;
}

::selection {
  background: #000;
  color: #ffffff;
  text-shadow: none;
}

/*--
    - Input Placeholder
-----------------------------------------*/
*::-moz-placeholder {
  color: #000;
  font-size: 14px;
  opacity: 1;
}

*::-webkit-input-placeholder {
  color: #000;
  font-size: 14px;
  opacity: 1;
}

*:-ms-input-placeholder {
  color: #000;
  font-size: 14px;
  opacity: 1;
}

*::-ms-input-placeholder {
  color: #000;
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: #000;
  font-size: 14px;
  opacity: 1;
}

/*--
    - position Classes
-----------------------------------------*/
.pos-rel {
  position: relative;
}

.pos-abl {
  position: absolute;
}

/*--
    - Common Classes
-----------------------------------------*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.overlay-bg {
  position: relative;
  z-index: 2;
}

.overlay-bg::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.dark #preloader {
  background-color: #232323;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f7f7f7;
  z-index: 999999;
}

.preloader {
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
}

.preloader span {
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #f7bd01;
  -webkit-animation: preloader 1.3s linear infinite;
  animation: preloader 1.3s linear infinite;
}

.preloader span:last-child {
  animation-delay: -0.8s;
  -webkit-animation-delay: -0.8s;
}

@keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.5;
  }

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

@-webkit-keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }

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

#scrollUp {
  background: #f7bd01;
  width: 45px;
  height: 45px;
  position: absolute;
  right: 20px;
  bottom: 5%;
  border-radius: 50%;
  line-height: 45px;
  text-align: center;
}

#scrollUp i {
  color: #ffffff;
}

.underline_text_hover {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, from(currentColor), to(currentColor));
  background-image: -webkit-linear-gradient(left, currentColor 0%, currentColor 100%);
  background-image: -o-linear-gradient(left, currentColor 0%, currentColor 100%);
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.underline_text_hover:hover {
  background-size: 100% 2px;
}

/*--
    - Overlay
------------------------------------------*/
.overlay-soft {
  position: relative;
  z-index: 1;
}

.overlay-soft::after {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

[data-overlay] {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
}

/*-- Overlay Color --*/
[data-overlay="light"]::before {
  background-color: #ffffff;
}

[data-overlay="dark"]::before {
  background-color: #f7bd01;
}

/*-- Overlay Opacity --*/
[data-opacity="1"]::before {
  opacity: 0.1;
}

[data-opacity="2"]::before {
  opacity: 0.2;
}

[data-opacity="3"]::before {
  opacity: 0.3;
}

[data-opacity="4"]::before {
  opacity: 0.4;
}

[data-opacity="5"]::before {
  opacity: 0.5;
}

[data-opacity="6"]::before {
  opacity: 0.6;
}

[data-opacity="7"]::before {
  opacity: 0.7;
}

[data-opacity="8"]::before {
  opacity: 0.8;
}

[data-opacity="9"]::before {
  opacity: 0.9;
}

.page_title_area {
  background: url(../img/bg/about-bg1.png) no-repeat center/cover;
  padding: 200px 0 95px;
}

@media only screen and (max-width: 1200px) {
  .page_title_area {
    padding: 200px 0 110px;
  }
}

@media (max-width: 767px) {
  .page_title_area {
    padding: 150px 0 70px;
  }
}

.page_title_area .page_title_wrapper .page_title {
  font-size: 48px;
  font-family: "cera_probold";
  color: #000000;
  text-transform: capitalize;
}

@media only screen and (max-width: 991px) {
  .page_title_area .page_title_wrapper .page_title {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .page_title_area .page_title_wrapper .page_title {
    font-size: 30px;
  }
}

ul.breadcrumb li {
  display: inline-block;
}

ul.breadcrumb li a {
  color: #000000;
  font-size: 24px;
  display: inline-block;
  padding-right: 10px;
  margin-right: 10px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 991px) {
  ul.breadcrumb li a {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  ul.breadcrumb li a {
    font-size: 18px;
  }
}

ul.breadcrumb li a::before {
  content: "";
  position: absolute;
  background: #000000;
  width: 5px;
  height: 2px;
  right: -4px;
  top: 50%;
  z-index: 1;
}

ul.breadcrumb li.active {
  font-size: 24px;
  color: #f7bd01;
}

@media only screen and (max-width: 991px) {
  ul.breadcrumb li.active {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  ul.breadcrumb li.active {
    font-size: 18px;
  }
}

.main-header-area {
  position: relative;
  width: 100%;
  left: 0;
  z-index: 999;
}

.logo-area img {
  max-width: 125%;
}

.logo-area .front {
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.logo-area .back {
  display: none;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  width: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.main-menu {
  position: relative;
  z-index: 11;
}

.main-menu ul {
  margin: 0;
}

.main-menu ul li {
  list-style: none;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.main-menu ul li:last-child a {
  margin-right: 0;
}

.main-menu ul li:last-child a:before {
  display: none;
}

.main-menu ul li.active {
  color: #0082d7;
}

.main-menu ul li.active a {
  color: #1b212f;
}

.main-menu ul li a {
  color: #000000;
  font-family: "cera_promedium";
  font-size: 16px;
  text-transform: capitalize;
  line-height: 1;
  display: inline-block;
  position: relative;
  margin: 0 50px 0 0;
  padding: 19px 0 20px 0;
}

@media only screen and (max-width: 1200px) {
  .main-menu ul li a {
    margin: 0 40px 0 0;
  }
}

.dropdown-icon a::before {
  content: "\F282";
  font-family: "bootstrap-icons";
  font-weight: 700;
  position: absolute;
  font-size: 12px;
  right: -16px;
  top: 23px;
  z-index: 1;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media only screen and (max-width: 1200px) {
  .dropdown-icon a::before {
    display: none;
  }
}

.main-menu ul li a::after {
  display: none;
}

.main-menu ul li a:hover {
  color: #f7bd01;
}

.main-menu ul li a i {
  font-size: 10px;
}

.main-menu ul li:hover::before {
  width: 100px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#086ad8), to(#378cff));
  background-image: -webkit-linear-gradient(bottom, #086ad8 0%, #378cff 100%);
  background-image: -o-linear-gradient(bottom, #086ad8 0%, #378cff 100%);
  background-image: linear-gradient(0deg, #086ad8 0%, #378cff 100%);
}

.main-menu ul li:hover>a {
  color: #0082d7;
}

.main-menu ul li ul.sub-menu {
  border: 0;
  position: absolute;
  z-index: 5;
  background-color: #fff;
  border-radius: 0;
  display: block;
  right: 0;
  left: 0;
  padding: 0;
  top: 100%;
  visibility: hidden;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  opacity: 0;
  min-width: 270px;
  -webkit-box-shadow: 0px 30px 70px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 30px 70px 0px rgba(0, 0, 0, 0.05);
  margin: 0;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li ul.sub-menu li {
  display: block;
}

.main-menu ul li ul.sub-menu li a {
  color: #1b212f;
  font-size: 14px;
  font-family: "cera_promedium";
  font-weight: 500;
  padding: 14px 25px;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li ul.sub-menu li a::before {
  display: none;
}

.main-menu ul li ul.sub-menu li a:hover,
.main-menu ul li ul.sub-menu li a.active {
  color: #ffffff;
  background-color: transparent;
  background: #f7bd01;
}

.main-menu ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.sticky-menu {
  position: fixed;
  background: #1b212f;
  background: #0082d7;
  background: #1b212f;
  top: 0;
  -webkit-animation: 400ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 400ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  padding-top: 5px;
  padding-bottom: 5px;
}

.sticky-menu .logo-area .front {
  display: none;
}

.sticky-menu .logo-area .back {
  display: inline-block;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  width: 100%;
}

.sticky-menu ul li a {
  color: #ffffff;
}

.sticky-menu .hamburger-menu {
  top: 17px;
}

@media only screen and (max-width: 991px) {
  .sticky-menu .hamburger-menu {
    top: 35px;
  }
}

.theme-main-menu {
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  border-bottom: 1px solid #0082d7;
}

.theme-main-menu .sticky-menu .mobile-menu .meanmenu-reveal {
  top: 15px;
  background: #ffffff;
  border-radius: 50%;
}

@media (max-width: 991.98px) {
  .theme-main-menu .sticky-menu {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media (max-width: 580px) {
  .theme-main-menu .menu_contact_btn .theme_btn {
    display: none;
  }
}

.theme-menu-one.theme-menu-three ul li a {
  color: #ffffff;
}

.theme-menu-one.theme-menu-three .menu_contact_btn a.theme_btn {
  background: #f7bd01;
  border-radius: 5px;
  -webkit-box-shadow: 0px 25px 88.35px 6.65px rgba(27, 33, 47, 0.15);
  box-shadow: 0px 25px 88.35px 6.65px rgba(27, 33, 47, 0.15);
}

.theme-menu-one.theme-menu-three.theme_menu_four .menu_contact_btn a.theme_btn {
  border-radius: 50px;
}

@media (max-width: 840px) {
  .menu_contact_btn a.theme_btn {
    margin-right: 40px;
  }
}

@media (max-width: 780px) {
  .menu_contact_btn a.theme_btn {
    margin-right: 60px;
  }
}

.slide-bar {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: -370px;
  width: 350px;
  padding: 25px 30px;
  height: 100%;
  display: block;
  background-color: #1b212f;
  z-index: 1900;
  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slide-bar {
    width: 350px;
  }
}

@media (max-width: 767px) {
  .slide-bar {
    width: 310px;
    padding: 25px 20px;
  }
}

.slide-bar.show {
  right: 0;
}

.open-mobile-menu {
  display: inline-block;
}

.open-mobile-menu a {
  display: block;
  width: 50px;
  height: 50px;
  background: #212121;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  margin-left: 20px;
  color: #fff;
}

.open-mobile-menu a:hover {
  background: #f7bd01;
}

.open-mobile-menu a.active {
  background: #f7bd01;
}

.close-mobile-menu a {
  color: #ffffff;
  position: relative;
  z-index: 2;
  font-size: 16px;
  top: -10px;
  left: 0;
}

.close-mobile-menu a:hover {
  color: #ff0000;
}

.on-side {
  overflow: hidden;
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1010;
  left: 0;
  opacity: 0;
  display: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.body-overlay.active {
  opacity: 1;
  display: block;
}

.side-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-mobile-menu ul li a {
  padding: 13px 0;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}

.side-mobile-menu ul li a:hover {
  color: #f7bd01;
  padding-left: 5px;
}

.side-mobile-menu ul li a[aria-expanded="true"] {
  color: #f7bd01;
}

.side-mobile-menu ul li a[aria-expanded="true"]:before {
  background: #f7bd01;
  border-color: #f7bd01;
}

.side-mobile-menu ul li ul {
  padding-left: 0;
  list-style: none;
}

.side-mobile-menu ul li ul li {
  padding-left: 15px;
}

.side-mobile-menu ul li ul li:hover>a {
  color: #f7bd01;
  padding-left: 20px;
}

.side-mobile-menu ul li ul li:hover>a:before {
  background: #f7bd01;
  border-color: #f7bd01;
}

.side-mobile-menu ul li ul li a {
  position: relative;
  padding-left: 15px;
  text-transform: capitalize;
  font-size: 16px;
}

.side-mobile-menu ul li ul li a:before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.side-mobile-menu ul li ul li a[aria-expanded="true"] {
  padding-left: 20px;
}

.side-mobile-menu ul li.has-dropdown>a:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px 0 0 2px;
  border-style: solid;
  border-color: initial;
  right: 16px;
  top: 50%;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  -ms-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.side-mobile-menu ul li.has-dropdown a[aria-expanded="true"]:after {
  -webkit-transform: rotate(-135deg) translateY(-50%);
  -ms-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}

.offset-widget.offset-logo {
  border-bottom: 1px solid #eeecec;
  padding-bottom: 20px;
}

.offset-widget .info-widget .offset-title {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

.offset-widget .info-widget p {
  color: #ffffff;
}

.offset-widget .info-widget.info-widget2 p {
  margin-bottom: 15px;
}

.offset-widget .info-widget.info-widget2 p i {
  margin-right: 7px;
  color: #ffffff;
}

.fw-bold {
  font-weight: 700;
}

.fw-semi {
  font-weight: 600;
}

.fw-medium {
  font-weight: 500;
}

.fw-normal {
  font-weight: 400;
}

.fw-light {
  font-weight: 300;
}

.fw-thin {
  font-weight: 100;
}

.fs-20 {
  font-size: 20px;
}

.fs-18 {
  font-size: 18px;
}

.fs-17 {
  font-size: 17px !important;
}

.fs-14 {
  font-size: 14px;
}

.fs-12 {
  font-size: 12px;
}

/*--
    - Background color
-----------------------------------------*/
.gradient-bg {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 76, 186, 0.1)), to(rgba(16, 76, 186, 0)));
  background: -webkit-linear-gradient(top, rgba(16, 76, 186, 0.1) 0%, rgba(16, 76, 186, 0));
  background: -o-linear-gradient(top, rgba(16, 76, 186, 0.1) 0%, rgba(16, 76, 186, 0));
  background: linear-gradient(to bottom, rgba(16, 76, 186, 0.1) 0%, rgba(16, 76, 186, 0));
}

.white-bg {
  background: #ffffff;
}

.black-bg {
  background: #000;
}

/*--
    - color
-----------------------------------------*/
.text-white {
  color: #ffffff;
}

.text-prime {
  color: #0082d7;
}

.text-black {
  color: #000;
}

.text-theme {
  color: #f7bd01;
}

/*--
    - fonts
-----------------------------------------*/
.body-font {
  font-family: "cera_proregular";
}

.heding-font {
  font-family: "cera_probold";
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.capitalize {
  text-transform: lowercase;
}

.bg-none {
  background: none;
}

/*========================= pulseBig keyframes ====================*/
@-webkit-keyframes pulseBig {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  }

  50% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes pulseBig {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  }

  50% {
    -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/*========================= pulseBigplay keyframes ====================*/
@-webkit-keyframes pulseBigplay {
  0% {
    -webkit-box-shadow: 0 0 0 0 #f7bd01;
    box-shadow: 0 0 0 0 #f7bd01;
  }

  50% {
    -webkit-box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
    box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}

@keyframes pulseBigplay {
  0% {
    -webkit-box-shadow: 0 0 0 0 #f7bd01;
    box-shadow: 0 0 0 0 #f7bd01;
  }

  50% {
    -webkit-box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
    box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}

/*========================= circlemove keyframes ====================*/
@-webkit-keyframes circlemove {
  0% {
    -webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
    transform: rotate(0deg) translate(-10px) rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
    transform: rotate(360deg) translate(-10px) rotate(-360deg);
  }
}

@keyframes circlemove {
  0% {
    -webkit-transform: rotate(0deg) translate(-10px) rotate(0deg);
    transform: rotate(0deg) translate(-10px) rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
    transform: rotate(360deg) translate(-10px) rotate(-360deg);
  }
}

/*========================= roundshape keyframes ====================*/
@-webkit-keyframes roundshape {

  0%,
  100% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }

  34% {
    border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
    -webkit-transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
    transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
  }

  50% {
    -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }

  67% {
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    -webkit-transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
    transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
  }
}

@keyframes roundshape {

  0%,
  100% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }

  34% {
    border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
    -webkit-transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
    transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
  }

  50% {
    -webkit-transform: translate3d(0, 0, 0) rotateZ(0.01deg);
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }

  67% {
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    -webkit-transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
    transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
  }
}

/*========================= updown  keyframes ====================*/
@-webkit-keyframes updown {

  0%,
  100% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }

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

@keyframes updown {

  0%,
  100% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }

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

/*========================= fltleftright  keyframes ====================*/
@-webkit-keyframes fltleftright {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    -webkit-transform: translate(10px, -5px) rotate(0deg);
    transform: translate(10px, -5px) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes fltleftright {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    -webkit-transform: translate(10px, -5px) rotate(0deg);
    transform: translate(10px, -5px) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}

/*========================= pulse  keyframes ====================*/
@-webkit-keyframes pulse {
  100% {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
}

@keyframes pulse {
  100% {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }
}

/*========================= rotate  keyframes ====================*/
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: translatez(0) rotate(0);
    transform: translatez(0) rotate(0);
  }

  100% {
    -webkit-transform: translatez(0) rotate(360deg);
    transform: translatez(0) rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: translatez(0) rotate(0);
    transform: translatez(0) rotate(0);
  }

  100% {
    -webkit-transform: translatez(0) rotate(360deg);
    transform: translatez(0) rotate(360deg);
  }
}

/*========================= leftright  keyframes ====================*/
@-webkit-keyframes leftright {

  0%,
  100% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
}

@keyframes leftright {

  0%,
  100% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
}

/*--
	-theme-btn
----------------------------------------*/
.theme_btn {
  overflow: hidden;
  color: #ffffff;
  background-image: -webkit-linear-gradient(30deg, #0082d7 29%, #68bdf4 99%);
  background-image: -o-linear-gradient(30deg, #0082d7 29%, #68bdf4 99%);
  background-image: linear-gradient(60deg, #0082d7 29%, #68bdf4 99%);
  font-size: 14px;
  font-family: "cera_probold";
  font-weight: 600;
  line-height: 1;
  padding: 15px 25px;
  display: inline-block;
  position: relative;
  z-index: 17;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border-radius: 50px;
  text-transform: uppercase;
}

.theme_btn:hover {
  color: #ffffff;
  background-image: -webkit-linear-gradient(265deg, #68bdf4 29%, #0082d7 99%);
  background-image: -o-linear-gradient(265deg, #68bdf4 29%, #0082d7 99%);
  background-image: linear-gradient(-175deg, #68bdf4 29%, #0082d7 99%);
}

.theme_btn:hover i {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}

.Secondary_Btn_two {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  font-family: "cera_probold";
  line-height: 24px;
  padding: 11px 32px;
  text-transform: capitalize;
  border: 2px solid #f7bd01;
  border-radius: 50px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  outline: none;
  text-align: center;
  z-index: 2;
}

.Secondary_Btn_two::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 0;
  background: #f7bd01;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
  border-radius: 50px;
  z-index: -1;
}

.Secondary_Btn_two:hover:before {
  width: 100%;
  opacity: 1;
  visibility: visible;
  left: 0;
  right: auto;
}

.Secondary_Btn_two:hover {
  color: #000;
}

.mossa_shutter_out_horizontal {
  position: relative;
  display: inline-block;
  font-family: "cera_probold";
  color: #494d59;
  font-size: 16px;
  line-height: 24px;
  padding: 13px 25px;
  background: #ffffff;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  border-radius: 50px;
  z-index: 2;
}

.mossa_shutter_out_horizontal::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0082d7;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 50px;
  z-index: -1;
}

.mossa_shutter_out_horizontal:hover {
  color: #ffffff;
}

.mossa_shutter_out_horizontal:hover::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.section_title {
  position: relative;
  z-index: 1;
}

.sect_title {
  font-size: 36px;
  color: #1b212f;
  line-height: 1.17;
  font-family: "cera_promedium";
}

@media only screen and (max-width: 1600px) {
  .sect_title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .sect_title {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .sect_title {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .sect_title {
    font-size: 16px;
  }
}

.sect_sub_title {
  font-size: 35px;
  color: #0082d7;
  font-family: "cera_promedium";
  line-height: 1.2;
  text-transform: uppercase;
}

.sect-title-two {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
}

@media only screen and (max-width: 1600px) {
  .sect-title-two {
    font-size: 28px;
  }
}

@media only screen and (max-width: 1200px) {
  .sect-title-two {
    font-size: 22px;
  }
}

@media only screen and (max-width: 991px) {
  .sect-title-two {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .sect-title-two {
    font-size: 20px;
  }
}

.sub-title {
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
}

.sub-title-two {
  color: #0082d7;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 500;
}

.section-title-two .sub-title {
  color: #f7bd01;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  display: inline-block;
  margin-bottom: 12px;
}

@media only screen and (max-width: 1600px) {
  .blog-title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .blog-title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .blog-title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .blog-title {
    font-size: 20px;
  }
}

.blog-title:hover {
  color: #ffffff;
}

.semi-title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
}

@media only screen and (max-width: 1200px) {
  .semi-title {
    font-size: 18px;
  }
}

.post-title {
  font-size: 40px;
  color: #ffffff;
}

@media only screen and (max-width: 1600px) {
  .post-title {
    font-size: 28px;
  }
}

@media only screen and (max-width: 1200px) {
  .post-title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .post-title {
    font-size: 24px;
  }
}

.theme_banner_one {
  padding: 235px 0 500px;
  background: url(../img/banner/ba1.png) no-repeat center/cover;
}

@media only screen and (max-width: 1200px) {
  .theme_banner_one {
    padding: 235px 0 450px;
  }
}

@media only screen and (max-width: 991px) {
  .theme_banner_one {
    padding: 220px 0 60px;
  }
}

.banner_hero_top_content {
  position: absolute;
  top: 47%;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}


.theme_banner_img_slider .banner_hero_top_content h1 {
  font-size: 60px;
  line-height: 75px;
  font-family: "cera_problack";
  color: #ffffff;
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  .theme_banner_img_slider .banner_hero_top_content h1 {
    font-size: 40px;
    line-height: 60px;
  }
}

.service_section .service-content-video {
  position: absolute;
  bottom: 15%;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.service_section .service-content-video h1 {
  font-size: 60px;
  line-height: 75px;
  font-family: "cera_problack";
  color: #ffffff;
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  .service_section .service-content-video h1 {
    font-size: 40px;
    line-height: 60px;
  }
}

.service_banner_top_content {
  position: relative;
  top: 5%;
  text-align: center;
}

@media (max-width: 767px) {
  .service_section .service_banner_top_content{
    display: none;
  }
}

.service_section .service_banner_top_content h1 {
  font-size: 60px;
  line-height: 75px;
  font-family: "cera_problack";
  color: #ffffff;
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  .service_section .service_banner_top_content h1 {
    font-size: 40px;
    line-height: 60px;
  }
}

@media only screen and (max-width: 575.98px) {
  .service_section .service_banner_top_content h1 {
    font-size: 35px;
    line-height: 45px;
  }
}


@media only screen and (max-width: 575.98px) {
  .service_section .service_banner_top_content h1 {
    font-size: 35px;
    line-height: 45px;
  }
}

/* .theme_banner_img_slider .banner_hero_top_content a {
  display: inline-block;
} */

.theme_banner_img_slider .banner_hero_top_content a .video_btn {
  position: relative;
  display: inline-block;
  background: #f7bd01;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  z-index: 1;
  -webkit-animation: pulseBigplay infinite 3s linear;
  animation: pulseBigplay infinite 3s linear;
}

.service_section .service-content-video a .video_btn {
  position: relative;
  display: inline-block;
  background: #f7bd01;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  z-index: 1;
  -webkit-animation: pulseBigplay infinite 3s linear;
  animation: pulseBigplay infinite 3s linear;
}

.blog_inner_content a .video_btn {
  position: relative;
  display: inline-block;
  background: #f7bd01;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  z-index: 1;
  -webkit-animation: pulseBigplay infinite 2s linear;
  animation: pulseBigplay infinite 2s linear;
}

.theme_banner_img_slider .banner_hero_top_content a .get_started {
  font-size: 18px;
  font-family: "cera_probold";
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: underline;
  margin-left: 20px;
}

@media only screen and (max-width: 991px) {
  .theme_banner_img_slider .banner_hero_top_content {
    text-align: center;
  }
}

.theme_banner_one .theme_social_icon ul {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.theme_banner_one .theme_social_icon ul li {
  margin-right: 20px;
}

.theme_banner_one .theme_social_icon ul li:last-child {
  margin-right: 0;
}

.theme_banner_one .theme_social_icon ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #dae8f1;
  color: #1b212f;
  width: 50px;
  height: 50px;
  font-size: 20px;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.theme_banner_one .theme_social_icon ul li a:hover {
  background: #f7bd01;
  color: #ffffff;
}

@media only screen and (max-width: 991px) {
  .theme_banner_one .theme_social_icon ul {
    margin-top: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.theme_banner_img_slider {
  /* margin-top: -400px; */
  padding-bottom: 55px;
}

@media only screen and (max-width: 1200px) {
  .theme_banner_img_slider {
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .theme_banner_img_slider {
    /* padding-top: 60px; */
    margin-top: 0;
  }
}

.theme_banner_img_slider .slider_img_active .slider_item img {
  display: inline-block;
  border-radius: 20px;
}

.theme_banner_img_slider .slider_img_active .swiper_button_container .swiper-button-prev,
.theme_banner_img_slider .slider_img_active .swiper_button_container .swiper-button-next {
  position: absolute;
  display: inline-table;
  width: 0;
  height: 0;
}

.theme_banner_img_slider .slider_img_active .swiper_button_container .swiper-button-prev .Arrow_left_icon,
.theme_banner_img_slider .slider_img_active .swiper_button_container .swiper-button-prev .Arrow_right_icon,
.theme_banner_img_slider .slider_img_active .swiper_button_container .swiper-button-next .Arrow_left_icon,
.theme_banner_img_slider .slider_img_active .swiper_button_container .swiper-button-next .Arrow_right_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  color: #f7bd01;
  z-index: 3;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media only screen and (max-width: 575.98px) {

  .theme_banner_img_slider .slider_img_active .swiper_button_container .swiper-button-prev .Arrow_left_icon,
  .theme_banner_img_slider .slider_img_active .swiper_button_container .swiper-button-prev .Arrow_right_icon,
  .theme_banner_img_slider .slider_img_active .swiper_button_container .swiper-button-next .Arrow_left_icon,
  .theme_banner_img_slider .slider_img_active .swiper_button_container .swiper-button-next .Arrow_right_icon {
    width: 40px;
    height: 40px;
  }
}

.theme_banner_img_slider .slider_img_active .swiper_button_container .swiper-button-prev .Arrow_left_icon:hover,
.theme_banner_img_slider .slider_img_active .swiper_button_container .swiper-button-prev .Arrow_right_icon:hover,
.theme_banner_img_slider .slider_img_active .swiper_button_container .swiper-button-next .Arrow_left_icon:hover,
.theme_banner_img_slider .slider_img_active .swiper_button_container .swiper-button-next .Arrow_right_icon:hover {
  background: #f7bd01;
  color: #ffffff;
  -webkit-box-shadow: 0px 25px 88.35px 6.65px rgba(27, 33, 47, 0.1);
  box-shadow: 0px 25px 88.35px 6.65px rgba(27, 33, 47, 0.1);
}

.theme_banner_img_slider .slider_img_active .swiper_button_container .swiper-button-prev::after,
.theme_banner_img_slider .slider_img_active .swiper_button_container .swiper-button-next::after {
  display: none;
}

.theme_banner_img_slider .slider_img_active .swiper-button-prev {
  left: 5%;
}

.theme_banner_img_slider .slider_img_active .swiper-button-next {
  right: 5%;
}

.theme_banner_img_slider .swiper-pagination .swiper-pagination-bullet {
  width: 4px;
  height: 30px;
  background-color: #ffffff;
  opacity: 0.8;
  border-radius: 10px;
  margin: 6px;
}

.theme_banner_img_slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 4px;
  height: 50px;
  background-color: #f7bd01;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.theme_banner_two {
  background: url(../img/banner/home-two-hero-bg.jpg) no-repeat center/cover;
  overflow-x: hidden;
}

.theme_banner_two .banner_hero_top_content_two {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.theme_banner_two .banner_hero_top_content_two h1 {
  font-size: 60px;
  line-height: 75px;
  font-family: "cera_problack";
  color: #ffffff;
  text-transform: capitalize;
  display: inline-block;
}

@media (max-width: 767px) {
  .theme_banner_two .banner_hero_top_content_two h1 {
    font-size: 40px;
    line-height: 60px;
  }
}

@media only screen and (max-width: 575.98px) {
  .theme_banner_two .banner_hero_top_content_two h1 {
    font-size: 35px;
    line-height: 45px;
  }
}

.theme_banner_two .banner_hero_top_content_two .hero_btn_wrap ul {
  margin: 0;
  padding: 0;
}

.theme_banner_two .banner_hero_top_content_two .hero_btn_wrap ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 20px;
}

.theme_banner_two .banner_hero_top_content_two .hero_btn_wrap ul li:last-child {
  margin-right: 0;
}

.theme_banner_two .banner_hero_top_content_two a {
  display: inline-block;
}

.theme_banner_two .banner_hero_top_content_two a .video_btn {
  position: relative;
  display: inline-block;
  background: #f7bd01;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  z-index: 1;
  -webkit-animation: pulseBigplay infinite 5s linear;
  animation: pulseBigplay infinite 5s linear;
}

.theme_banner_two .banner_hero_top_content_two a .get_started {
  font-size: 18px;
  font-family: "cera_probold";
  color: #494d59;
  text-transform: uppercase;
  text-decoration: underline;
  margin-left: 20px;
}

.theme_banner_two.theme_banner_three {
  padding: 340px 0 380px;
  background: url(../img/Home-three/banner/banner3.png) no-repeat center/cover;
  position: relative;
  z-index: 5;
}

@media only screen and (max-width: 1600px) {
  .theme_banner_two.theme_banner_three {
    padding-top: 260px;
  }
}

@media only screen and (max-width: 991px) {
  .theme_banner_two.theme_banner_three {
    padding: 250px 0 170px;
  }
}

@media (max-width: 767px) {
  .theme_banner_two.theme_banner_three {
    padding: 200px 0 120px;
  }
}

.theme_banner_two.theme_banner_three::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

.theme_banner_two.theme_banner_three .banner_hero_top_content_two p {
  color: #ffffff;
}

.our_speciality_feature {
  padding: 10px 0 30px;
}

@media only screen and (max-width: 1200px) {
  .our_speciality_feature {
    padding: 30px 0 20px;
  }
}

.our_speciality_feature .section_title .sect_sub_title {
  margin-bottom: 30px;
}

@media only screen and (max-width: 575.98px) {
  .our_speciality_feature .section_title .sect_sub_title {
    margin-bottom: 15px;
  }
}

.our_speciality_feature .section_title .sect_title {
  font-family: "cera_probold";
}

.our_speciality_feature .section_title p {
  font-size: 16px;
  line-height: 24px;
}

.our_speciality_feature .single_speciality_feature_box {
  position: relative;
  padding: 50px 30px 40px;
  border-radius: 5px;
  background-image: -webkit-linear-gradient(30deg, rgba(0, 130, 215, 0.05) 29%, rgba(104, 189, 244, 0.05) 99%);
  background-image: -o-linear-gradient(30deg, rgba(0, 130, 215, 0.05) 29%, rgba(104, 189, 244, 0.05) 99%);
  background-image: linear-gradient(60deg, rgba(0, 130, 215, 0.05) 29%, rgba(104, 189, 244, 0.05) 99%);
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media only screen and (max-width: 575.98px) {
  .our_speciality_feature .single_speciality_feature_box {
    padding: 40px 15px 30px;
  }
}

.our_speciality_feature .single_speciality_feature_box:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  top: 0;
  right: 0;
  background-image: -webkit-linear-gradient(30deg, #0082d7 29%, #68bdf4 99%);
  background-image: -o-linear-gradient(30deg, #0082d7 29%, #68bdf4 99%);
  background-image: linear-gradient(60deg, #0082d7 29%, #68bdf4 99%);
  -webkit-transition: all 0.8s ease 0s;
  -moz-transition: all 0.8s ease 0s;
  -ms-transition: all 0.8s ease 0s;
  -o-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  overflow: hidden;
  z-index: -1;
}

.our_speciality_feature .single_speciality_feature_box img {
  margin-bottom: 25px;
}

.our_speciality_feature .single_speciality_feature_box .feature_box_title {
  font-size: 26px;
  line-height: 24px;
  text-transform: capitalize;
}

@media only screen and (max-width: 1200px) {
  .our_speciality_feature .single_speciality_feature_box .feature_box_title {
    font-size: 21px;
  }
}

.our_speciality_feature .single_speciality_feature_box .single_speciality_feature_pra {
  font-size: 16px;
  line-height: 24px;
}

.our_speciality_feature .single_speciality_feature_box .theme_btn {
  font-family: "cera_promedium";
  padding: 8px 22.5px;
  line-height: 24px;
  background-image: -webkit-linear-gradient(265deg, #0082d7 29%, #68bdf4 99%);
  background-image: -o-linear-gradient(265deg, #0082d7 29%, #68bdf4 99%);
  background-image: linear-gradient(-175deg, #0082d7 29%, #68bdf4 99%);
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.our_speciality_feature .single_speciality_feature_box:hover .feature_box_title {
  color: #ffffff;
}

.our_speciality_feature .single_speciality_feature_box:hover img {
  -webkit-filter: brightness(0%) contrast(198%) invert(100%);
  filter: brightness(0%) contrast(198%) invert(100%);
}

.our_speciality_feature .single_speciality_feature_box:hover .single_speciality_feature_pra {
  color: #ffffff;
}

.our_speciality_feature .single_speciality_feature_box:hover .theme_btn {
  background: rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0px 25px 88.35px 6.65px rgba(27, 33, 47, 0.16);
  box-shadow: 0px 25px 88.35px 6.65px rgba(27, 33, 47, 0.16);
}

.our_speciality_feature .single_speciality_feature_box:hover:before {
  left: 0;
  right: auto;
  width: 100%;
}

.our_speciality_two {
  position: relative;
  z-index: 2;
}

.our_speciality_two .our_specialit_shape_one {
  position: absolute;
  top: 25px;
  left: 252px;
  border-radius: 22px;
  background-color: rgba(240, 84, 95, 0.102);
  width: 150px;
  height: 121px;
  -webkit-animation: fltleftright 2s linear infinite;
  animation: fltleftright 2s linear infinite;
  z-index: -1;
}

@media only screen and (max-width: 1200px) {
  .our_speciality_two .our_specialit_shape_one {
    top: 25px;
    left: 80px;
  }
}

@media (max-width: 767px) {
  .our_speciality_two .our_specialit_shape_one {
    width: 80px;
    height: 80px;
    top: 25px;
    left: 30px;
  }
}

.our_speciality_two .our_specialit_shape_two {
  position: absolute;
  left: -26px;
  bottom: 128px;
  border-radius: 50%;
  background-color: rgba(31, 227, 127, 0.051);
  width: 192px;
  height: 192px;
  border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
  will-change: border-radius, transform, opacity;
  -webkit-animation: roundshape 5s linear infinite;
  animation: roundshape 5s linear infinite;
  z-index: -1;
}

@media only screen and (max-width: 1600px) {
  .our_speciality_two .our_specialit_shape_two {
    width: 140px;
    height: 140px;
  }
}

.our_speciality_two .our_specialit_shape_three {
  position: absolute;
  top: 105px;
  right: 269px;
  background-color: rgba(131, 97, 200, 0.051);
  width: 119px;
  height: 97px;
  border-radius: 0 0 50px 0;
  -webkit-animation: updown 3s linear infinite;
  animation: updown 3s linear infinite;
  z-index: -1;
}

.our_speciality_two .our_specialit_shape_three::before {
  position: absolute;
  content: "";
  top: 28px;
  right: -25px;
  background-color: rgba(131, 97, 200, 0.051);
  width: 119px;
  height: 97px;
  border-radius: 0 0 50px 0;
}

@media only screen and (max-width: 1200px) {
  .our_speciality_two .our_specialit_shape_three {
    top: 100px;
    right: 100px;
  }
}

@media (max-width: 767px) {
  .our_speciality_two .our_specialit_shape_three {
    display: none;
  }
}

.our_speciality_two .our_specialit_shape_four {
  position: absolute;
  content: "";
  background-color: rgba(240, 84, 95, 0.051);
  width: 185px;
  height: 178px;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media only screen and (max-width: 1600px) {
  .our_speciality_two .our_specialit_shape_four {
    width: 100px;
    height: 100px;
  }
}

.our_speciality_two .section_title .sect_title {
  font-family: "cera_probold";
}

.our_speciality_two .single_speciality_feature_box {
  position: relative;
  padding: 50px 30px 40px;
  border-radius: 5px;
  border-width: 1px;
  border-color: #c5e8ff;
  border-style: solid;
  border-radius: 5px;
  background-color: white;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media only screen and (max-width: 575.98px) {
  .our_speciality_two .single_speciality_feature_box {
    padding: 40px 15px 30px;
  }
}

.our_speciality_two .single_speciality_feature_box .ingle_speciality_feature_img {
  position: relative;
}

.our_speciality_two .single_speciality_feature_box .ingle_speciality_feature_img img {
  margin-bottom: 25px;
}

.our_speciality_two .single_speciality_feature_box .ingle_speciality_feature_img::before {
  position: absolute;
  content: "";
  background-image: -webkit-linear-gradient(30deg, rgba(0, 130, 215, 0.149) 29%, rgba(104, 189, 244, 0.149) 99%);
  background-image: -o-linear-gradient(30deg, rgba(0, 130, 215, 0.149) 29%, rgba(104, 189, 244, 0.149) 99%);
  background-image: linear-gradient(60deg, rgba(0, 130, 215, 0.149) 29%, rgba(104, 189, 244, 0.149) 99%);
  width: 80px;
  height: 80px;
  left: -20%;
  top: -16%;
  border-radius: 50%;
}

.our_speciality_two .single_speciality_feature_box .feature_box_title {
  font-size: 26px;
  line-height: 24px;
  text-transform: capitalize;
}

@media only screen and (max-width: 1200px) {
  .our_speciality_two .single_speciality_feature_box .feature_box_title {
    font-size: 21px;
  }
}

.our_speciality_two .single_speciality_feature_box .feature_box_line {
  position: relative;
  background: #0082d7;
  width: 150px;
  height: 4px;
  border-radius: 5px;
}

.our_speciality_two .single_speciality_feature_box .feature_box_line::before,
.our_speciality_two .single_speciality_feature_box .feature_box_line::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background: #0082d7;
  border-radius: 50%;
}

.our_speciality_two .single_speciality_feature_box .feature_box_line::before {
  left: -14px;
}

.our_speciality_two .single_speciality_feature_box .feature_box_line::after {
  right: -14px;
}

.our_speciality_two .single_speciality_feature_box .single_speciality_feature_pra {
  font-size: 16px;
  line-height: 24px;
}

.our_speciality_two .single_speciality_feature_box .theme_btn {
  font-family: "cera_promedium";
  padding: 6px 20px;
  line-height: 24px;
  border-width: 2px;
  border-color: #d1cfce;
  border-style: solid;
  background: #ffffff;
  color: #494d59;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.our_speciality_two .single_speciality_feature_box:hover {
  background: #ffffff;
  -webkit-box-shadow: 0px 25px 88.35px 6.65px rgba(0, 130, 215, 0.1);
  box-shadow: 0px 25px 88.35px 6.65px rgba(0, 130, 215, 0.1);
  border-color: #ffffff;
}

.our_speciality_two .single_speciality_feature_box:hover .theme_btn {
  color: #ffffff;
  background: #0082d7;
  border-color: #0082d7;
}

.our_feature_box_three {
  position: relative;
  margin-top: -260px;
  z-index: 12;
}

@media only screen and (max-width: 991px) {
  .our_feature_box_three {
    margin-top: 0;
  }
}

.our_feature_box_three .single_feature_box {
  position: relative;
  padding: 50px 30px;
  border-radius: 10px;
  background: #ffffff;
  -webkit-box-shadow: 0px 25px 88.35px 6.65px rgba(27, 33, 47, 0.06);
  box-shadow: 0px 25px 88.35px 6.65px rgba(27, 33, 47, 0.06);
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media only screen and (max-width: 575.98px) {
  .our_feature_box_three .single_feature_box {
    padding: 35px 15px;
  }
}

.our_feature_box_three .single_feature_box .sect_title {
  font-family: "cera_probold";
  line-height: 24px;
}

.our_feature_box_three .single_feature_box .feature_box_title {
  font-size: 26px;
  line-height: 24px;
  color: #1b212f;
}

@media only screen and (max-width: 1200px) {
  .our_feature_box_three .single_feature_box .feature_box_title {
    font-size: 22px;
  }
}

.our_feature_box_three .single_feature_box .single_speciality_feature_pra {
  font-size: 16px;
  line-height: 24px;
}

.our_feature_box_three .single_feature_box .mossa_shutter_out_horizontal {
  font-family: "cera_promedium";
  text-transform: uppercase;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  background: #f7bd01;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.our_feature_box_three .single_feature_box .mossa_shutter_out_horizontal::before {
  border-radius: 5px;
  background: transparent;
}

.our_feature_box_three .single_feature_box .mossa_shutter_out_horizontal:hover::before {
  background: transparent;
}

.our_feature_box_three .single_feature_box::before {
  position: absolute;
  content: "";
  background: #0082d7;
  width: 100%;
  height: 0;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  z-index: -1;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.our_feature_box_three .single_feature_box:hover::before {
  height: 100%;
}

.our_feature_box_three .single_feature_box:hover .sect_title,
.our_feature_box_three .single_feature_box:hover .feature_box_title,
.our_feature_box_three .single_feature_box:hover .single_speciality_feature_pra,
.our_feature_box_three .single_feature_box:hover .mossa_shutter_out_horizontal {
  color: #ffffff;
}

.our_speciality_two.our_speciality_three .our_specialit_shape_three {
  position: absolute;
  right: 140px;
}

@media only screen and (max-width: 1900px) {
  .our_speciality_two.our_speciality_three .our_specialit_shape_three {
    top: 100px;
    right: 100px;
  }
}

@media only screen and (max-width: 1800px) {
  .our_speciality_two.our_speciality_three .our_specialit_shape_three {
    right: 60px;
  }
}

@media only screen and (max-width: 1600px) {
  .our_speciality_two.our_speciality_three .our_specialit_shape_three {
    right: 40px;
  }
}

@media (max-width: 767px) {
  .our_speciality_two.our_speciality_three .our_specialit_shape_three {
    display: none;
  }
}

.about_area_wrap {
  padding: 80px 0;
  overflow-x: hidden;
}

@media only screen and (max-width: 1200px) {
  .about_area_wrap {
    padding: 30px 0 40px;
  }
}

.about_area_wrap .about_company_details .sect_sub_title {
  margin-bottom: 23px;
}

@media (max-width: 1440px) {
  .about_area_wrap .about_company_details .sect_sub_title {
    margin-bottom: 10px;
  }
}

.about_area_wrap .about_company_details .sect_title {
  font-family: "cera_probold";
  line-height: 50px;
  margin-bottom: 12px;
}

@media (max-width: 1440px) {
  .about_area_wrap .about_company_details .sect_title {
    line-height: 40px;
  }
}

@media only screen and (max-width: 575.98px) {
  .about_area_wrap .about_company_details .sect_title {
    line-height: 30px;
  }
}

.about_area_wrap .about_company_details p {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 55px;
}

@media (max-width: 991px) {
  .about_area_wrap .about_company_details {
    margin-top: 60px;
  }
}

@media (max-width: 1440px) {
  .about_area_wrap .about_company_details p {
    margin-bottom: 30px;
  }
}

.about_area_wrap .about_company_img {
  margin-left: -110px;
  position: relative;
}

@media (max-width: 1440px) {
  .about_area_wrap .about_company_img {
    margin-left: 0;
  }
}

@media (max-width: 1440px) {
  .about_area_wrap .about_company_img img {
    max-width: 100%;
  }
}

.about_area_wrap .about_company_img .about_company_two {
  position: absolute;
  right: 85px;
  top: 80px;
  z-index: 2;
  border-radius: 5px;
}

@media only screen and (max-width: 1200px) {
  .about_area_wrap .about_company_img .about_company_two {
    top: 30px;
    right: 40px;
  }
}

@media only screen and (max-width: 1200px) and (max-width: 991px) {
  .about_area_wrap .about_company_img .about_company_two {
    top: 80px;
    right: 90px;
  }
}

@media only screen and (max-width: 1200px) and (max-width: 991px) and (max-width: 767px) {
  .about_area_wrap .about_company_img .about_company_two {
    display: none;
  }
}

.about_area_wrap .about_company_img .about_company_three {
  position: absolute;
  right: 332px;
  top: 275px;
  z-index: 3;
  border-radius: 5px;
}

@media (max-width: 1366px) {
  .about_area_wrap .about_company_img .about_company_three {
    top: 210px;
    right: 270px;
  }
}

@media only screen and (max-width: 1366px) and (max-width: 1200px) {
  .about_area_wrap .about_company_img .about_company_three {
    top: 70px;
    right: 160px;
  }
}

@media only screen and (max-width: 1366px) and (max-width: 1200px) and (max-width: 991px) {
  .about_area_wrap .about_company_img .about_company_three {
    right: 300px;
    top: 110px;
  }
}

@media only screen and (max-width: 1366px) and (max-width: 1200px) and (max-width: 991px) and (max-width: 767px) {
  .about_area_wrap .about_company_img .about_company_three {
    right: 100px;
    top: 25px;
  }
}

@media only screen and (max-width: 1366px) and (max-width: 1200px) and (max-width: 991px) and (max-width: 767px) and (max-width: 575.98px) {
  .about_area_wrap .about_company_img .about_company_three {
    max-width: 80%;
    right: 50px;
  }
}

@media only screen and (max-width: 1366px) and (max-width: 1200px) and (max-width: 991px) and (max-width: 767px) and (max-width: 575.98px) and (max-width: 425px) {
  .about_area_wrap .about_company_img .about_company_three {
    right: 45px;
    max-width: 82%;
  }
}

.about_area_wrap_two {
  padding: 60px 0 220px;
}

@media only screen and (max-width: 1200px) {
  .about_area_wrap_two {
    padding: 30px 0 180px;
  }
}

@media (max-width: 470px) {
  .about_area_wrap_two {
    padding: 20px 0 130px;
  }
}

.about_area_wrap_two .about_company_details {
  max-width: 485px;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .about_area_wrap_two .about_company_details {
    max-width: 100%;
    margin-bottom: 30px;
  }
}

.about_area_wrap_two .about_company_details .sect_title {
  font-family: "cera_probold";
  margin-bottom: 35px;
}

@media only screen and (max-width: 1600px) {
  .about_area_wrap_two .about_company_details .sect_title {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 575.98px) {
  .about_area_wrap_two .about_company_details .sect_title {
    margin-bottom: 10px;
  }
}

.about_area_wrap_two .about_company_details .sect_title_under .underline_text_hover {
  font-size: 24px;
  line-height: 38px;
  font-family: "cera_probold";
  color: #494d59;
}

.about_area_wrap_two .about_company_details .sect_title_under .underline_text_hover:hover {
  background-size: 100% 2px;
}

@media only screen and (max-width: 1200px) {
  .about_area_wrap_two .about_company_details .sect_title_under .underline_text_hover {
    font-size: 20px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .about_area_wrap_two .about_company_details .sect_title_under .underline_text_hover {
    font-size: 18px;
    line-height: 30px;
  }
}

.about_area_wrap_two .about_company_details .about_company_des {
  font-size: 18px;
  line-height: 26px;
  color: #494d59;
  font-family: "cera_proregular";
}

.about_area_wrap_two .about_company_details .mossa_shutter_out_horizontal {
  background: #f7bd01;
  color: #ffffff;
  text-transform: uppercase;
}

.about_area_wrap_two .about_company_img {
  position: relative;
  z-index: 1;
}

.about_area_wrap_two .about_company_img .about_company_one {
  margin-left: -165px;
}

@media only screen and (max-width: 1600px) {
  .about_area_wrap_two .about_company_img .about_company_one {
    margin-left: 0;
  }
}

@media (max-width: 1440px) {
  .about_area_wrap_two .about_company_img .about_company_one {
    max-width: 100%;
  }
}

.about_area_wrap_two .about_company_img .about_company_video .video_btn {
  position: absolute;
  left: 33%;
  top: 68%;
  display: inline-block;
  background: #f7bd01;
  height: 60px;
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  z-index: 5;
  -webkit-animation: pulseBigplay infinite 5s linear;
  animation: pulseBigplay infinite 5s linear;
}

@media (max-width: 1440px) {
  .about_area_wrap_two .about_company_img .about_company_video .video_btn {
    left: 42%;
    top: 60%;
  }
}

.about_area_wrap_two .about_company_img .about_company_two {
  position: absolute;
  left: -100px;
  top: 40px;
}

@media only screen and (max-width: 1600px) {
  .about_area_wrap_two .about_company_img .about_company_two {
    left: -70px;
  }
}

@media (max-width: 1440px) {
  .about_area_wrap_two .about_company_img .about_company_two {
    left: -20px;
  }
}

@media (max-width: 480px) {
  .about_area_wrap_two .about_company_img .about_company_two {
    left: 0;
    max-width: 50%;
  }
}

.about_area_wrap_two .about_company_img .about_company_three {
  position: absolute;
  left: -58px;
  top: 85px;
}

@media only screen and (max-width: 1600px) {
  .about_area_wrap_two .about_company_img .about_company_three {
    left: 0;
  }
}

@media (max-width: 1440px) {
  .about_area_wrap_two .about_company_img .about_company_three {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .about_area_wrap_two .about_company_img .about_company_three {
    top: 30px;
  }
}

.about_area_wrap_two .about_company_img .about_company_four {
  position: absolute;
  background-color: rgba(255, 161, 131, 0.102);
  width: 220px;
  height: 178px;
  right: 55px;
  bottom: -160px;
  z-index: -1;
}

@media only screen and (max-width: 1600px) {
  .about_area_wrap_two .about_company_img .about_company_four {
    right: 0;
  }
}

@media only screen and (max-width: 1200px) {
  .about_area_wrap_two .about_company_img .about_company_four {
    right: -20px;
  }
}

@media (max-width: 580px) {
  .about_area_wrap_two .about_company_img .about_company_four {
    right: 0;
  }
}

@media (max-width: 480px) {
  .about_area_wrap_two .about_company_img .about_company_four {
    bottom: -100px;
  }
}

.about_area_wrap_three {
  padding: 60px 0 60px;
}

@media only screen and (max-width: 1200px) {
  .about_area_wrap_three {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

.about_area_wrap_three .sect_sub_title {
  font-size: 18px;
  line-height: 40px;
  font-family: "cera_promedium";
  text-decoration: underline;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .about_area_wrap_three .sect_sub_title {
    font-size: 16px;
    line-height: 15px;
  }
}

.about_area_wrap_three .sect_title .underline_text_hover {
  font-family: "cera_probold";
  line-height: 50px;
}

@media (max-width: 1440px) {
  .about_area_wrap_three .sect_title .underline_text_hover {
    line-height: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .about_area_wrap_three .sect_title .underline_text_hover {
    line-height: 30px;
  }
}

.about_area_wrap_three .mossa_shutter_out_horizontal {
  background: #f7bd01;
  border-radius: 5px;
  color: #ffffff;
  text-transform: uppercase;
}

.about_area_wrap_three .mossa_shutter_out_horizontal::before {
  border-radius: 5px;
}

.about_area_wrap_three .about_company_img {
  position: relative;
  z-index: 5;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .about_area_wrap_three .about_company_img {
    margin-top: 30px;
  }
}

.about_area_wrap_three .about_company_img .about_company_one {
  border-radius: 5px;
  width: 100%;
}

.about_area_wrap_three .about_company_img .about_company_two {
  margin-top: 120px;
  border-radius: 5px;
}

@media (max-width: 1400px) {
  .about_area_wrap_three .about_company_img .about_company_two {
    margin-top: 70px;
  }
}

@media only screen and (max-width: 1200px) {
  .about_area_wrap_three .about_company_img .about_company_two {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .about_area_wrap_three .about_company_img .about_company_two {
    margin-top: 0;
    width: 100%;
  }
}

.about_area_wrap_three .about_company_img .about_company_three {
  margin-left: 175px;
  border-radius: 5px;
}

@media (max-width: 1400px) {
  .about_area_wrap_three .about_company_img .about_company_three {
    margin-left: 95px;
  }
}

@media only screen and (max-width: 1200px) {
  .about_area_wrap_three .about_company_img .about_company_three {
    margin-left: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .about_area_wrap_three .about_company_img .about_company_three {
    margin-left: 0;
    width: 100%;
  }
}

.about_area_wrap_three .about_company_img .about_company_four {
  border-radius: 5px;
  width: 100%;
  margin-left: 30px;
}

@media (max-width: 1400px) {
  .about_area_wrap_three .about_company_img .about_company_four {
    margin-left: 0;
  }
}

.about_area_wrap_about_page.about_area_wrap_two {
  padding: 60px 0 280px;
}

@media only screen and (max-width: 1200px) {
  .about_area_wrap_about_page.about_area_wrap_two {
    padding: 30px 0 220px;
  }
}

@media only screen and (max-width: 1200px) and (max-width: 480px) {
  .about_area_wrap_about_page.about_area_wrap_two {
    padding: 30px 0 170px;
  }
}

.about_area_wrap.about_page_two a {
  border-radius: 5px;
  background: #f7bd01;
  color: #ffffff;
}

.about_area_wrap.about_page_two a::before {
  border-radius: 5px;
}

@media only screen and (max-width: 575.98px) {
  .about_area_wrap.about_page_two .about_company_img .about_company_three {
    right: 80px;
    max-width: 70%;
  }
}

.counter_area_wrap {
  padding: 60px 0 30px;
  background-color: rgba(0, 130, 215, 0.051);
}

@media only screen and (max-width: 1200px) {
  .counter_area_wrap {
    padding: 30px 0 10px;
  }
}

.counter_area_wrap .sect_sub_title {
  margin-bottom: 25px;
}

@media (max-width: 1440px) {
  .counter_area_wrap .sect_sub_title {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .counter_area_wrap .sect_sub_title {
    margin-bottom: 15px;
  }
}

.counter_area_wrap .sect_title {
  max-width: 680px;
  width: 100%;
  margin: 0 auto 40px;
  line-height: 50px;
}

@media (max-width: 1440px) {
  .counter_area_wrap .sect_title {
    line-height: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .counter_area_wrap .sect_title {
    line-height: 30px;
  }
}

@media (max-width: 767px) {
  .counter_area_wrap .sect_title {
    margin-bottom: 30px;
  }
}

.counter_area_wrap .counter_style_one h2 {
  font-size: 60px;
  line-height: 50px;
  color: #0082d7;
  font-family: "cera_probold";
  margin-bottom: 25px;
}

@media only screen and (max-width: 1600px) {
  .counter_area_wrap .counter_style_one h2 {
    font-size: 45px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 1200px) {
  .counter_area_wrap .counter_style_one h2 {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .counter_area_wrap .counter_style_one h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

.counter_area_wrap .counter_style_one h4 {
  display: inline-block;
  font-size: 24px;
  line-height: 1;
  color: #494d59;
  text-transform: capitalize;
  border-bottom: 1px solid #494d59;
}

@media only screen and (max-width: 1200px) {
  .counter_area_wrap .counter_style_one h4 {
    font-size: 20px;
  }
}

.counter_area_wrap_two {
  background: url(../img/bg/paralax1.jpg) no-repeat center/cover;
  z-index: 3;
}

.counter_area_wrap_two::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(30deg, #0082d7 29%, #68bdf4 99%);
  background-image: -o-linear-gradient(30deg, #0082d7 29%, #68bdf4 99%);
  background-image: linear-gradient(60deg, #0082d7 29%, #68bdf4 99%);
  opacity: 0.8;
}

.counter_area_wrap_two .sect_title {
  max-width: 685px;
  width: 100%;
  color: #ffffff;
  line-height: 50px;
  margin: 0 auto;
}

@media only screen and (max-width: 1600px) {
  .counter_area_wrap_two .sect_title {
    line-height: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .counter_area_wrap_two .sect_title {
    line-height: 35px;
  }
}

.counter_style_two .counter_main_title {
  position: relative;
  font-size: 20px;
  font-family: "cera_promedium";
  color: #ffffff;
  margin-bottom: 40px;
  z-index: 1;
}

@media only screen and (max-width: 1600px) {
  .counter_style_two .counter_main_title {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 1200px) {
  .counter_style_two .counter_main_title {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .counter_style_two .counter_main_title {
    font-size: 16px;
  }
}

.counter_style_two .dot_border {
  width: 76px;
  margin: 0 auto 35px;
  border-bottom: 4px dashed #ffffff;
}

@media only screen and (max-width: 1600px) {
  .counter_style_two .dot_border {
    margin-bottom: 15px;
  }
}

.counter_style_two h2 {
  font-family: "cera_probold";
  font-size: 60px;
  line-height: 50px;
  color: #ffffff;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1600px) {
  .counter_style_two h2 {
    font-size: 50px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .counter_style_two h2 {
    font-size: 40px;
    line-height: 40px;
  }
}

.counter_area_wrap_three {
  background: #ffffff;
}

.counter_area_wrap_three .counter_style_three {
  background-color: rgba(255, 107, 79, 0.102);
  border-radius: 50% 50% 50% 0;
  width: 220px;
  height: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto 40px;
}

@media only screen and (max-width: 1200px) {
  .counter_area_wrap_three .counter_style_three {
    width: 200px;
    height: 200px;
  }
}

@media only screen and (max-width: 991px) {
  .counter_area_wrap_three .counter_style_three {
    width: 220px;
    height: 220px;
  }
}

.counter_area_wrap_three .counter_style_three .counter_main_title {
  font-size: 16px;
  line-height: 50px;
  color: #494d59;
}

@media only screen and (max-width: 1200px) {
  .counter_area_wrap_three .counter_style_three .counter_main_title {
    font-size: 14px;
  }
}

.counter_area_wrap_three .counter_style_three .counter_main_title h2 {
  font-family: "cera_probold";
  font-size: 60px;
  line-height: 50px;
  color: #ffffff;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1600px) {
  .counter_area_wrap_three .counter_style_three .counter_main_title h2 {
    font-size: 50px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .counter_area_wrap_three .counter_style_three .counter_main_title h2 {
    font-size: 40px;
    line-height: 40px;
  }
}

.counter_area_wrap_three .counter_style_three.bg_two {
  background-color: rgba(34, 199, 169, 0.102);
}

.counter_area_wrap_three .counter_style_three.bg_three {
  background-color: rgba(247, 189, 1, 0.102);
}

.counter_area_wrap_three .counter_style_three.bg_four {
  background-color: rgba(111, 159, 241, 0.102);
}

.counter_area_wrap_three .stacticties_text {
  max-width: 540px;
  padding-left: 50px;
}

@media only screen and (max-width: 991px) {
  .counter_area_wrap_three .stacticties_text {
    padding-left: 0;
    width: 100%;
    max-width: 100%;
  }
}

.counter_area_wrap_three .stacticties_text .sect_sub_title {
  font-size: 18px;
  line-height: 40px;
  font-family: "cera_promedium";
  text-decoration: underline;
  text-transform: capitalize;
  color: #0082d7;
}

@media (max-width: 767px) {
  .counter_area_wrap_three .stacticties_text .sect_sub_title {
    font-size: 16px;
    line-height: 15px;
  }
}

.counter_area_wrap_three .stacticties_text .sect_title .underline_text_hover {
  font-family: "cera_probold";
  line-height: 50px;
}

@media (max-width: 1440px) {
  .counter_area_wrap_three .stacticties_text .sect_title .underline_text_hover {
    line-height: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .counter_area_wrap_three .stacticties_text .sect_title .underline_text_hover {
    line-height: 30px;
  }
}

.counter_area_wrap_three .stacticties_text p {
  font-size: 16px;
  line-height: 26px;
}

.counter_area_wrap_three .stacticties_text .mossa_shutter_out_horizontal {
  background: #f7bd01;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 24px;
  font-family: "cera_probold";
  border-radius: 5px;
  -webkit-box-shadow: -4.77px 24.541px 87.4px 7.6px rgba(247, 189, 1, 0.1);
  box-shadow: -4.77px 24.541px 87.4px 7.6px rgba(247, 189, 1, 0.1);
}

.counter_area_wrap_three .stacticties_text .mossa_shutter_out_horizontal::before {
  border-radius: 5px;
}

.counter_area_wrap_two.counter_area_wrap_four .counter_style_two .counter_main_title {
  font-weight: 400;
}

.counter_about_page_two .counter_main_title {
  color: #1b212f;
}

.counter_about_page_two .dot_border {
  border-bottom: 4px dashed #a4a6ac;
}

.counter_about_page_two h2 {
  color: #1b212f;
}

@media only screen and (max-width: 575.98px) {
  .counter_about_page_two h2 {
    font-size: 26px;
  }
}

.why_choose_us_wrap {
  padding: 10px 0 120px;
  position: relative;
  z-index: 4;
}

@media only screen and (max-width: 1200px) {
  .why_choose_us_wrap {
    padding: 20px 0 50px;
  }
}

.why_choose_us_wrap .choose_wrap .sect_sub_title {
  font-family: "cera_proregular";
  margin-bottom: 25px;
}

@media only screen and (max-width: 575.98px) {
  .why_choose_us_wrap .choose_wrap .sect_sub_title {
    margin-bottom: 10px;
  }
}

.why_choose_us_wrap .choose_wrap .sect_title {
  line-height: 50px;
  margin-bottom: 20px;
}

@media (max-width: 1440px) {
  .why_choose_us_wrap .choose_wrap .sect_title {
    line-height: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .why_choose_us_wrap .choose_wrap .sect_title {
    line-height: 30px;
  }
}

.why_choose_us_wrap .choose_wrap p {
  font-family: "cera_proregular";
  font-size: 18px;
  color: #1b212f;
  line-height: 26px;
  margin-bottom: 55px;
}

@media only screen and (max-width: 991px) {
  .why_choose_us_wrap .choose_wrap p {
    font-size: 16px;
    margin-bottom: 35px;
  }
}

.why_choose_us_wrap .choose_img {
  margin-left: 45px;
  position: relative;
}

@media (max-width: 1440px) {
  .why_choose_us_wrap .choose_img {
    margin-left: 0;
  }
}

@media (max-width: 1440px) {
  .why_choose_us_wrap .choose_img img {
    max-width: 100%;
  }
}

.why_choose_us_wrap .choose_img .choose_img_one {
  -webkit-animation: circlemove 6s linear infinite;
  animation: circlemove 6s linear infinite;
}

.why_choose_us_wrap .choose_img .choose_img_two {
  position: absolute;
  top: 140px;
  left: 240px;
  z-index: 3;
}

@media only screen and (max-width: 1200px) {
  .why_choose_us_wrap .choose_img .choose_img_two {
    top: 40px;
    max-width: 80%;
  }
}

@media (max-width: 767px) {
  .why_choose_us_wrap .choose_img .choose_img_two {
    left: 180px;
  }
}

@media (max-width: 600px) {
  .why_choose_us_wrap .choose_img .choose_img_two {
    max-width: 70%;
  }
}

@media (max-width: 470px) {
  .why_choose_us_wrap .choose_img .choose_img_two {
    max-width: 65%;
    left: 120px;
  }
}

.why_choose_us_wrap .choose_img .choose_img_three {
  position: absolute;
  left: -60px;
  top: 80px;
  z-index: 1;
}

@media (max-width: 1440px) {
  .why_choose_us_wrap .choose_img .choose_img_three {
    left: 0;
  }
}

@media only screen and (max-width: 1200px) {
  .why_choose_us_wrap .choose_img .choose_img_three {
    top: 40px;
    max-width: 80%;
    width: auto;
  }
}

@media only screen and (max-width: 991px) {
  .why_choose_us_wrap .choose_img .choose_img_three {
    top: 80px;
  }
}

@media (max-width: 600px) {
  .why_choose_us_wrap .choose_img .choose_img_three {
    max-width: 65%;
    left: 0;
  }
}

.why_choose_us_wrap_two {
  z-index: 5;
}

.why_choose_us_wrap_two .choose_wrap .sect_title {
  font-family: "cera_probold";
  text-transform: capitalize;
  margin-bottom: 25px;
}

@media only screen and (max-width: 1600px) {
  .why_choose_us_wrap_two .choose_wrap .sect_title {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 575.98px) {
  .why_choose_us_wrap_two .choose_wrap .sect_title {
    margin-bottom: 10px;
  }
}

.why_choose_us_wrap_two .choose_wrap .sect_title_under {
  max-width: 510px;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .why_choose_us_wrap_two .choose_wrap .sect_title_under {
    max-width: 100%;
    width: 100%;
  }
}

.why_choose_us_wrap_two .choose_wrap .sect_title_under .underline_text_hover {
  font-family: "cera_probold";
  font-size: 24px;
  line-height: 38px;
  color: #1b212f;
}

@media only screen and (max-width: 1200px) {
  .why_choose_us_wrap_two .choose_wrap .sect_title_under .underline_text_hover {
    font-size: 20px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .why_choose_us_wrap_two .choose_wrap .sect_title_under .underline_text_hover {
    font-size: 18px;
    line-height: 30px;
  }
}

.why_choose_us_wrap_two .choose_wrap p {
  font-size: 18px;
  font-family: "cera_proregular";
  line-height: 26px;
  color: #1b212f;
  margin-bottom: 20px;
}

.why_choose_us_wrap_two .choose_wrap .choose_list {
  padding: 0;
}

.why_choose_us_wrap_two .choose_wrap .choose_list li a {
  position: relative;
  display: inline-block;
  padding-left: 40px;
  font-size: 18px;
  font-family: "cera_promedium";
  line-height: 26px;
  color: #1b212f;
  margin-bottom: 15px;
  -webkit-transition: all 0.6s ease 0s;
  -moz-transition: all 0.6s ease 0s;
  -ms-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}

@media only screen and (max-width: 575.98px) {
  .why_choose_us_wrap_two .choose_wrap .choose_list li a {
    font-size: 16px;
  }
}

.why_choose_us_wrap_two .choose_wrap .choose_list li a::before {
  position: absolute;
  content: "\f272";
  font-family: bootstrap-icons;
  background: rgba(0, 130, 215, 0.102);
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #0082d7;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.why_choose_us_wrap_two .choose_wrap .choose_list li a:hover {
  margin-left: 10px;
}

.why_choose_us_wrap_two .choose_wrap .mossa_shutter_out_horizontal {
  background: #f7bd01;
  color: #ffffff;
  text-transform: uppercase;
}

@media only screen and (max-width: 1600px) {
  .why_choose_us_wrap_two .choose_img_wrap {
    max-width: 100%;
  }
}

.why_choose_us_wrap_two .choose_img_wrap .choose_img_one {
  right: -140px;
  top: 130px;
  border-radius: 10px;
}

@media only screen and (max-width: 1600px) {
  .why_choose_us_wrap_two .choose_img_wrap .choose_img_one {
    right: 0;
    max-width: 50%;
  }
}

@media (max-width: 450px) {
  .why_choose_us_wrap_two .choose_img_wrap .choose_img_one {
    top: 80px;
  }
}

.why_choose_us_wrap_two .choose_img_wrap .choose_img_two {
  top: 40px;
  left: 15px;
  border-radius: 10px;
}

@media only screen and (max-width: 1600px) {
  .why_choose_us_wrap_two .choose_img_wrap .choose_img_two {
    max-width: 45%;
  }
}

@media only screen and (max-width: 575.98px) {
  .why_choose_us_wrap_two .choose_img_wrap .choose_img_two {
    top: 25px;
    left: 0;
  }
}

.why_choose_us_wrap_two .choose_img_wrap .choose_img_three {
  left: 15px;
  bottom: 0;
  border-radius: 10px;
}

@media only screen and (max-width: 1600px) {
  .why_choose_us_wrap_two .choose_img_wrap .choose_img_three {
    max-width: 45%;
    bottom: -10px;
  }
}

@media only screen and (max-width: 575.98px) {
  .why_choose_us_wrap_two .choose_img_wrap .choose_img_three {
    left: 0;
  }
}

.why_choose_us_wrap_two .choose_img_wrap .choose_round_one {
  right: -115px;
  bottom: -62px;
  border-radius: 50%;
  background-color: rgba(175, 47, 178, 0.102);
  width: 134px;
  height: 134px;
  z-index: -1;
  -webkit-animation: pulse 1s linear infinite alternate;
  animation: pulse 1s linear infinite alternate;
}

@media only screen and (max-width: 1600px) {
  .why_choose_us_wrap_two .choose_img_wrap .choose_round_one {
    right: 0;
    bottom: -50px;
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 767px) {
  .why_choose_us_wrap_two .choose_img_wrap .choose_round_one {
    display: none;
  }
}

.why_choose_us_wrap_two .choose_img_wrap .choose_round_two {
  left: -50px;
  top: 0px;
  border-radius: 50%;
  background-color: rgba(247, 189, 1, 0.102);
  width: 134px;
  height: 134px;
  z-index: -1;
  -webkit-animation: leftright 10s linear infinite;
  animation: leftright 10s linear infinite;
}

@media (max-width: 1440px) {
  .why_choose_us_wrap_two .choose_img_wrap .choose_round_two {
    left: 20px;
    width: 80px;
    height: 80px;
  }
}

@media only screen and (max-width: 575.98px) {
  .why_choose_us_wrap_two .choose_img_wrap .choose_round_two {
    left: 30px;
  }
}

.why_choose_us_wrap_three {
  padding: 150px 0 60px;
  position: relative;
}

@media only screen and (max-width: 1600px) {
  .why_choose_us_wrap_three {
    padding: 120px 0 60px;
  }
}

@media only screen and (max-width: 1200px) {
  .why_choose_us_wrap_three {
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 575.98px) {
  .why_choose_us_wrap_three {
    padding: 50px 0 60px;
  }
}

.why_choose_us_wrap_three .chosse_us_bg {
  position: relative;
}

.why_choose_us_wrap_three .chosse_us_bg::before {
  position: absolute;
  content: "";
  top: -90px;
  left: -100px;
  width: 1050px;
  padding: 280px 0;
  margin: 0 auto;
  border-radius: 5px;
  background-color: rgba(25, 142, 219, 0.031);
}

@media only screen and (max-width: 1600px) {
  .why_choose_us_wrap_three .chosse_us_bg::before {
    top: -60px;
    padding: 240px;
  }
}

@media only screen and (max-width: 1200px) {
  .why_choose_us_wrap_three .chosse_us_bg::before {
    top: -40px;
    padding: 220px;
  }
}

@media only screen and (max-width: 991px) {
  .why_choose_us_wrap_three .chosse_us_bg::before {
    padding: 220px;
  }
}

.why_choose_us_wrap_three .choose_wrap {
  max-width: 520px;
}

@media only screen and (max-width: 991px) {
  .why_choose_us_wrap_three .choose_wrap {
    width: 100%;
    max-width: 100%;
  }
}

.why_choose_us_wrap_three .choose_wrap .sect_sub_title {
  font-size: 18px;
  line-height: 40px;
  font-family: "cera_promedium";
  text-decoration: underline;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .why_choose_us_wrap_three .choose_wrap .sect_sub_title {
    font-size: 16px;
    line-height: 15px;
  }
}

.why_choose_us_wrap_three .choose_wrap .sect_title .underline_text_hover {
  font-family: "cera_probold";
  line-height: 50px;
}

@media (max-width: 1440px) {
  .why_choose_us_wrap_three .choose_wrap .sect_title .underline_text_hover {
    line-height: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .why_choose_us_wrap_three .choose_wrap .sect_title .underline_text_hover {
    line-height: 30px;
  }
}

.why_choose_us_wrap_three .choose_wrap p {
  font-size: 16px;
  line-height: 26px;
}

.why_choose_us_wrap_three .choose_wrap .mossa_shutter_out_horizontal {
  background: #f7bd01;
  border-radius: 5px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 24px;
  font-family: "cera_probold";
  border-radius: 5px;
  -webkit-box-shadow: -4.77px 24.541px 87.4px 7.6px rgba(247, 189, 1, 0.1);
  box-shadow: -4.77px 24.541px 87.4px 7.6px rgba(247, 189, 1, 0.1);
}

.why_choose_us_wrap_three .choose_wrap .mossa_shutter_out_horizontal::before {
  border-radius: 5px;
}

.why_choose_us_wrap_three .choose_img_wrap {
  margin-left: 85px;
}

@media only screen and (max-width: 991px) {
  .why_choose_us_wrap_three .choose_img_wrap {
    margin-left: 0;
  }
}

.why_choose_us_wrap_three .choose_img_wrap img {
  border-radius: 0 0 190px 5px;
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  .why_choose_us_wrap_three .choose_img_wrap img {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .why_choose_us_wrap_three.choose_us_about_page_two {
    padding: 50px 0 30px;
  }
}

.why_choose_us_wrap_three.choose_us_about_page_two .chosse_us_bg::before {
  background: #e8f3fb;
}

.work_process_wrap {
  position: relative;
  padding: 65px 0 30px;
  z-index: 2;
}

@media only screen and (max-width: 1200px) {
  .work_process_wrap {
    padding: 60px 0 10px;
  }
}

.work_process_wrap .shape_one {
  position: absolute;
  background: url(../img/proces/shape_one-.png) no-repeat left top;
  left: -300px;
  top: 160px;
  width: 530px;
  height: 453px;
  z-index: -1;
}

@media only screen and (max-width: 1800px) {
  .work_process_wrap .shape_one {
    left: -350px;
  }
}

@media only screen and (max-width: 1600px) {
  .work_process_wrap .shape_one {
    left: -400px;
  }
}

@media only screen and (max-width: 1200px) {
  .work_process_wrap .shape_one {
    left: -420px;
  }
}

@media only screen and (max-width: 991px) {
  .work_process_wrap .shape_one {
    display: none;
  }
}

.work_process_wrap .shape_two {
  position: absolute;
  background: url(../img/proces/shape_two-.png) no-repeat right bottom;
  right: -220px;
  bottom: -200px;
  width: 510px;
  height: 520px;
  z-index: -1;
}

@media only screen and (max-width: 1600px) {
  .work_process_wrap .shape_two {
    right: -320px;
    bottom: -200px;
  }
}

@media only screen and (max-width: 1200px) {
  .work_process_wrap .shape_two {
    right: -400px;
    bottom: -200px;
  }
}

@media only screen and (max-width: 991px) {
  .work_process_wrap .shape_two {
    display: none;
  }
}

.work_process_wrap .sect_sub_title {
  font-weight: 500;
  margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .work_process_wrap .sect_sub_title {
    margin-bottom: 10px;
  }
}

.work_process_wrap .sect_title {
  line-height: 50px;
}

@media only screen and (max-width: 991px) {
  .work_process_wrap .sect_title {
    line-height: 40px;
  }
}

@media (max-width: 767px) {
  .work_process_wrap .sect_title {
    line-height: 30px;
  }
}

.process_box {
  position: relative;
  padding: 40px 30px;
  border-radius: 5px;
  background-color: #f7fbfe;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  z-index: 2;
}

.process_box::before {
  position: absolute;
  content: "";
  background-image: -webkit-linear-gradient(265deg, #0082d7 29%, #68bdf4 99%);
  background-image: -o-linear-gradient(265deg, #0082d7 29%, #68bdf4 99%);
  background-image: linear-gradient(-175deg, #0082d7 29%, #68bdf4 99%);
  height: 4px;
  left: 50%;
  right: 50%;
  bottom: 0;
  border-radius: 5px 5px 0 0;
  z-index: -1;
  -webkit-transition-property: left, right;
  -o-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.process_box h2 {
  font-size: 48px;
  line-height: 24px;
  font-family: "cera_probold";
  color: rgba(0, 130, 215, 0.2);
  text-align: left !important;
}

.process_box img {
  margin-bottom: 40px;
}

.process_box h4 {
  font-family: "cera_probold";
  font-size: 26px;
  line-height: 24px;
  color: #1b212f;
  text-transform: capitalize;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1200px) {
  .process_box h4 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 575.98px) {
  .process_box h4 {
    font-size: 20px;
  }
}

.process_box p {
  font-family: "cera_proregular";
  font-size: 16px;
  line-height: 24px;
  color: #494d59;
}

.process_box:hover {
  background: #ffffff;
  -webkit-box-shadow: 0px 25px 88.35px 6.65px rgba(27, 33, 47, 0.1);
  box-shadow: 0px 25px 88.35px 6.65px rgba(27, 33, 47, 0.1);
}

.process_box:hover::before {
  left: 0;
  right: 0;
}

.work_process_wrap_two .sect_title {
  font-family: "cera_probold";
  margin-bottom: 10px;
}

@media only screen and (max-width: 991px) {
  .work_process_wrap_two .sect_title {
    line-height: 40px;
  }
}

@media (max-width: 767px) {
  .work_process_wrap_two .sect_title {
    line-height: 30px;
  }
}

.work_process_wrap_two p {
  font-size: 18px;
  line-height: 24px;
  max-width: 660px;
  width: 100%;
  margin: 0 auto;
  font-style: italic;
}

.work_process_wrap_two .process_box {
  position: relative;
  padding: 40px 35px 30px;
  border-radius: 5px;
  background-color: #f7fbfe;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  z-index: 2;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.work_process_wrap_two .process_box::before {
  position: absolute;
  content: "";
  background-image: -webkit-linear-gradient(265deg, #0082d7 29%, #68bdf4 99%);
  background-image: -o-linear-gradient(265deg, #0082d7 29%, #68bdf4 99%);
  background-image: linear-gradient(-175deg, #0082d7 29%, #68bdf4 99%);
  height: 4px;
  left: 50%;
  right: 50%;
  bottom: 0;
  border-radius: 5px 5px 0 0;
  z-index: -1;
  -webkit-transition-property: left, right;
  -o-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.work_process_wrap_two .process_box h2 {
  font-size: 48px;
  line-height: 24px;
  font-family: "cera_probold";
  color: rgba(0, 130, 215, 0.2);
  text-align: center !important;
}

.work_process_wrap_two .process_box img {
  margin-bottom: 40px;
}

.work_process_wrap_two .process_box h4 {
  font-family: "cera_probold";
  font-size: 24px;
  line-height: 24px;
  color: #1b212f;
  text-transform: capitalize;
  margin-bottom: 20px;
  margin-top: auto;
}

@media only screen and (max-width: 1200px) {
  .work_process_wrap_two .process_box h4 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 575.98px) {
  .work_process_wrap_two .process_box h4 {
    font-size: 20px;
  }
}

.work_process_wrap_two .process_box:hover {
  background: #ffffff;
  -webkit-box-shadow: 0px 25px 88.35px 6.65px rgba(27, 33, 47, 0.1);
  box-shadow: 0px 25px 88.35px 6.65px rgba(27, 33, 47, 0.1);
}

.work_process_wrap_two .process_box:hover::before {
  left: 0;
  right: 0;
}

.work_process_wrap_three .sect_sub_title {
  font-size: 18px;
  line-height: 40px;
  font-family: "cera_promedium";
  text-decoration: underline;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 15px;
}

@media only screen and (max-width: 1200px) {
  .work_process_wrap_three .sect_sub_title {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .work_process_wrap_three .sect_sub_title {
    font-size: 16px;
    line-height: 30px;
  }
}

.work_process_wrap_three .sect_title {
  line-height: 50px;
}

@media only screen and (max-width: 1200px) {
  .work_process_wrap_three .sect_title {
    line-height: 40px;
  }
}

@media (max-width: 767px) {
  .work_process_wrap_three .sect_title {
    line-height: 30px;
  }
}

@media only screen and (max-width: 575.98px) {
  .work_process_wrap_three .process_box h4 {
    font-size: 20px;
  }
}

.work_process_wrap_three .process_box_two {
  margin-top: -100px;
}

@media only screen and (max-width: 991px) {
  .work_process_wrap_three .process_box_two {
    margin-top: 0;
  }
}

.work_process_wrap_three .process_box_three {
  margin-top: -200px;
}

@media only screen and (max-width: 991px) {
  .work_process_wrap_three .process_box_three {
    margin-top: 0;
  }
}

.testimonial_wrap {
  position: relative;
  z-index: 2;
  padding: 55px 0 30px;
}

@media only screen and (max-width: 1200px) {
  .testimonial_wrap {
    padding: 20px 0 10px;
  }
}

.testimonial_wrap .testimonial_shape_one {
  position: absolute;
  background: url(../img/testimonial/testimonial_shap_one.png) no-repeat left top;
  left: -300px;
  top: 220px;
  width: 535px;
  height: 504px;
  z-index: -1;
}

@media only screen and (max-width: 1600px) {
  .testimonial_wrap .testimonial_shape_one {
    left: -430px;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial_wrap .testimonial_shape_one {
    left: -460px;
  }
}

@media (max-width: 640px) {
  .testimonial_wrap .testimonial_shape_one {
    display: none;
  }
}

.testimonial_wrap .sect_sub_title {
  font-weight: 500;
  margin-bottom: 30px;
}

@media only screen and (max-width: 575.98px) {
  .testimonial_wrap .sect_sub_title {
    margin-bottom: 12px;
  }
}

.testimonial_wrap .sect_title {
  text-transform: capitalize;
}

.testimonial_wrap .sect_title span {
  color: #0082d7;
}

.testimonial_wrap .testimonial_swipper_slider_active {
  position: initial;
}

.testimonial_wrap .testimonial_swipper_slider_active .swiper-wrapper .swiper-slide .slider_content {
  max-width: 515px;
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .testimonial_wrap .testimonial_swipper_slider_active .swiper-wrapper .swiper-slide .slider_content {
    max-width: 100%;
  }
}

.testimonial_wrap .testimonial_swipper_slider_active .swiper-wrapper .swiper-slide .slider_content .quote_icon i {
  font-size: 50px;
  color: #0082d7;
  margin-bottom: 50px;
}

@media only screen and (max-width: 575.98px) {
  .testimonial_wrap .testimonial_swipper_slider_active .swiper-wrapper .swiper-slide .slider_content .quote_icon i {
    margin-bottom: 30px;
  }
}

.testimonial_wrap .testimonial_swipper_slider_active .swiper-wrapper .swiper-slide .slider_content p {
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
}

.testimonial_wrap .testimonial_swipper_slider_active .swiper-wrapper .swiper-slide .slider_content .star_icon a {
  display: inline-block;
  color: #f7bd01;
}

.testimonial_wrap .testimonial_swipper_slider_active .swiper-wrapper .swiper-slide .slider_content .client_description h4 {
  font-size: 24px;
  line-height: 24px;
  color: #1b212f;
  font-family: "cera_probold";
  text-transform: capitalize;
  margin-bottom: 10px;
}

.testimonial_wrap .testimonial_swipper_slider_active .swiper-wrapper .swiper-slide .slider_content .client_description p {
  font-size: 16px;
  line-height: 24px;
  color: #494d59;
  font-family: "cera_proregular";
  font-style: normal;
}

.testimonial_wrap .testimonial_swipper_slider_active .swiper-wrapper .swiper-slide .slider_content .client_description p a {
  color: #1b212f;
  font-family: "cera_promedium";
}

.testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container {
  position: absolute;
  top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  right: 17.8%;
}

@media (max-width: 2560px) {
  .testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container {
    right: 26%;
  }
}

@media only screen and (max-width: 1900px) {
  .testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container {
    right: 18%;
  }
}

@media only screen and (max-width: 1800px) {
  .testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container {
    right: 16%;
  }
}

@media only screen and (max-width: 1600px) {
  .testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container {
    right: 10%;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container {
    right: 40px;
    display: none;
  }
}

@media (max-width: 767px) {
  .testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container {
    display: none;
  }
}

.testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container .swiper-button-prev,
.testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container .swiper-button-next {
  height: auto !important;
}

.testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container .swiper-button-prev::after,
.testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container .swiper-button-next::after {
  display: none;
}

.testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container .swiper-button-prev .Arrow_left_icon,
.testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container .swiper-button-prev .Arrow_right_icon,
.testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container .swiper-button-next .Arrow_left_icon,
.testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container .swiper-button-next .Arrow_right_icon {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  font-size: 30px;
  padding: 0 20px;
  line-height: 40px;
  border-width: 1px;
  border-color: #d1cfce;
  border-style: solid;
  border-radius: 3px;
  color: #f7bd01;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container .swiper-button-prev .Arrow_left_icon:hover,
.testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container .swiper-button-prev .Arrow_right_icon:hover,
.testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container .swiper-button-next .Arrow_left_icon:hover,
.testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container .swiper-button-next .Arrow_right_icon:hover {
  background-color: #f7bd01;
  border-color: #f7bd01;
  color: #ffffff;
}

.testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container .swiper-button-next {
  right: 52px;
}

@media only screen and (max-width: 991px) {
  .testimonial_wrap .testimonial_swipper_slider_active .swiper_button_container {
    top: 22px;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial_wrap .testimonial_swipper_slider_active {
    position: relative;
  }
}

.testimonial_wrap_two {
  position: relative;
}

.testimonial_wrap_two .sect_title {
  font-family: "cera_probold";
  margin-bottom: 12px;
}

.testimonial_wrap_two .testimonial_review_slider_active {
  position: initial;
}

.testimonial_wrap_two .testimonial_review_slider_active .swiper-wrapper .swiper-slide .slider_content .author_img {
  display: inline-block;
  padding: 8px;
  border: 2px solid #d2e9f8;
  border-radius: 50%;
}

.testimonial_wrap_two .testimonial_review_slider_active .swiper-wrapper .swiper-slide .slider_content .author_img img {
  display: inline-block;
}

.testimonial_wrap_two .testimonial_review_slider_active .swiper-wrapper .swiper-slide .slider_content .slider_inner_content {
  padding: 30px 25px;
  background-color: rgba(0, 130, 215, 0.051);
  border-radius: 0 100px 0 5px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  margin-left: 80px;
  margin-bottom: 50px;
  margin-right: 25px;
}

@media only screen and (max-width: 1200px) {
  .testimonial_wrap_two .testimonial_review_slider_active .swiper-wrapper .swiper-slide .slider_content .slider_inner_content {
    margin-left: 30px;
    margin-right: 0;
  }
}

@media only screen and (max-width: 575.98px) {
  .testimonial_wrap_two .testimonial_review_slider_active .swiper-wrapper .swiper-slide .slider_content .slider_inner_content {
    margin-left: 15px;
    padding: 25px 15px;
  }
}

.testimonial_wrap_two .testimonial_review_slider_active .swiper-wrapper .swiper-slide .slider_content .slider_inner_content .author_name {
  font-family: "cera_probold";
  font-size: 24px;
  line-height: 24px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.testimonial_wrap_two .testimonial_review_slider_active .swiper-wrapper .swiper-slide .slider_content .slider_inner_content .author_position {
  font-family: "cera_proregular";
  font-size: 16px;
  line-height: 24px;
  color: #494d59;
  margin-bottom: 15px;
}

.testimonial_wrap_two .testimonial_review_slider_active .swiper-wrapper .swiper-slide .slider_content .slider_inner_content .author_position a {
  font-family: "cera_promedium";
  color: #1b212f;
  text-transform: capitalize;
}

.testimonial_wrap_two .testimonial_review_slider_active .swiper-wrapper .swiper-slide .slider_content .slider_inner_content .star_icon a {
  display: inline-block;
  color: #f7bd01;
  margin-bottom: 5px;
}

.testimonial_wrap_two .testimonial_review_slider_active .swiper-wrapper .swiper-slide .slider_content .slider_inner_content .review_details {
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  color: #494d59;
  margin-bottom: 14px;
}

.testimonial_wrap_two .testimonial_review_slider_active .swiper-wrapper .swiper-slide .slider_content .slider_inner_content .quote_icon i {
  font-size: 30px;
  color: #f7bd01;
}

.testimonial_wrap_two .testimonial_review_slider_active .swiper-wrapper .swiper-slide .slider_content .slider_inner_content:hover {
  background-color: #ffffff;
  -webkit-box-shadow: -4.77px 16.541px 40.4px 7.6px rgba(27, 33, 47, 0.1);
  box-shadow: -4.77px 16.541px 40.4px 7.6px rgba(27, 33, 47, 0.1);
}

.testimonial_wrap_two .testimonial_review_slider_active .swiper_button_container {
  position: absolute;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  right: 12%;
}

@media (max-width: 2560px) {
  .testimonial_wrap_two .testimonial_review_slider_active .swiper_button_container {
    right: 26%;
  }
}

@media only screen and (max-width: 1900px) {
  .testimonial_wrap_two .testimonial_review_slider_active .swiper_button_container {
    right: 18%;
  }
}

@media only screen and (max-width: 1800px) {
  .testimonial_wrap_two .testimonial_review_slider_active .swiper_button_container {
    right: 16%;
  }
}

@media only screen and (max-width: 1600px) {
  .testimonial_wrap_two .testimonial_review_slider_active .swiper_button_container {
    right: 12%;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial_wrap_two .testimonial_review_slider_active .swiper_button_container {
    right: 40px;
  }
}

.testimonial_wrap_two .testimonial_review_slider_active .swiper_button_container .swiper-button-prev,
.testimonial_wrap_two .testimonial_review_slider_active .swiper_button_container .swiper-button-next {
  height: auto !important;
}

.testimonial_wrap_two .testimonial_review_slider_active .swiper_button_container .swiper-button-prev::after,
.testimonial_wrap_two .testimonial_review_slider_active .swiper_button_container .swiper-button-next::after {
  display: none;
}

.testimonial_wrap_two .testimonial_review_slider_active .swiper_button_container .swiper-button-prev .Arrow_left_icon,
.testimonial_wrap_two .testimonial_review_slider_active .swiper_button_container .swiper-button-prev .Arrow_right_icon,
.testimonial_wrap_two .testimonial_review_slider_active .swiper_button_container .swiper-button-next .Arrow_left_icon,
.testimonial_wrap_two .testimonial_review_slider_active .swiper_button_container .swiper-button-next .Arrow_right_icon {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  font-size: 30px;
  padding: 0 20px;
  line-height: 40px;
  border-width: 1px;
  border-color: #d1cfce;
  border-style: solid;
  border-radius: 3px;
  color: #f7bd01;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.testimonial_wrap_two .testimonial_review_slider_active .swiper_button_container .swiper-button-prev .Arrow_left_icon:hover,
.testimonial_wrap_two .testimonial_review_slider_active .swiper_button_container .swiper-button-prev .Arrow_right_icon:hover,
.testimonial_wrap_two .testimonial_review_slider_active .swiper_button_container .swiper-button-next .Arrow_left_icon:hover,
.testimonial_wrap_two .testimonial_review_slider_active .swiper_button_container .swiper-button-next .Arrow_right_icon:hover {
  background-color: #f7bd01;
  border-color: #f7bd01;
  color: #ffffff;
}

.testimonial_wrap_two .testimonial_review_slider_active .swiper_button_container .swiper-button-next {
  right: 52px;
}

@media only screen and (max-width: 991px) {
  .testimonial_wrap_two .testimonial_review_slider_active .swiper_button_container {
    top: 22px;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial_wrap_two .testimonial_review_slider_active {
    position: relative;
  }
}

.testimonial_wrap_three .sect_sub_title {
  line-height: 40px;
  font-weight: 500;
  margin-bottom: 15px;
}

@media only screen and (max-width: 1200px) {
  .testimonial_wrap_three .sect_sub_title {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .testimonial_wrap_three .sect_sub_title {
    font-size: 16px;
    line-height: 30px;
  }
}

.testimonial_wrap_three .sect_title {
  line-height: 50px;
}

@media only screen and (max-width: 1200px) {
  .testimonial_wrap_three .sect_title {
    line-height: 40px;
  }
}

@media (max-width: 767px) {
  .testimonial_wrap_three .sect_title {
    line-height: 30px;
  }
}

.testimonial_wrap_three .testimonial_feedback_slider_active .slider_content {
  margin-bottom: 100px;
}

@media only screen and (max-width: 1200px) {
  .testimonial_wrap_three .testimonial_feedback_slider_active .slider_content {
    margin-bottom: 60px;
  }
}

.testimonial_wrap_three .testimonial_feedback_slider_active .slider_content .author_img {
  position: relative;
  margin-right: 100px;
}

@media (max-width: 767px) {
  .testimonial_wrap_three .testimonial_feedback_slider_active .slider_content .author_img {
    margin-right: 20px;
  }
}

.testimonial_wrap_three .testimonial_feedback_slider_active .slider_content .author_img .quote_icon {
  position: absolute;
  right: -20px;
  top: -53px;
  z-index: 2;
}

@media (max-width: 767px) {
  .testimonial_wrap_three .testimonial_feedback_slider_active .slider_content .author_img .quote_icon {
    top: -40px;
  }
}

.testimonial_wrap_three .testimonial_feedback_slider_active .slider_content .author_img .quote_icon i {
  font-size: 100px;
  color: #0082d7;
}

@media (max-width: 767px) {
  .testimonial_wrap_three .testimonial_feedback_slider_active .slider_content .author_img .quote_icon i {
    font-size: 80px;
  }
}

.testimonial_wrap_three .testimonial_feedback_slider_active .slider_content .author_img img {
  position: relative;
  width: 100%;
  border-radius: 5px;
}

.testimonial_wrap_three .testimonial_feedback_slider_active .slider_content .slider_inner_content {
  max-width: 680px;
  width: 100%;
}

.testimonial_wrap_three .testimonial_feedback_slider_active .slider_content .slider_inner_content p {
  font-size: 30px;
  line-height: 42px;
  color: #1b212f;
  font-family: "cera_proregular";
  font-style: italic;
}

@media only screen and (max-width: 1200px) {
  .testimonial_wrap_three .testimonial_feedback_slider_active .slider_content .slider_inner_content p {
    font-size: 22px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial_wrap_three .testimonial_feedback_slider_active .slider_content .slider_inner_content p {
    font-size: 20px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 575.98px) {
  .testimonial_wrap_three .testimonial_feedback_slider_active .slider_content .slider_inner_content p {
    font-size: 18px;
  }
}

.testimonial_wrap_three .testimonial_feedback_slider_active .slider_content .slider_inner_content .author_details .author_name {
  font-size: 24px;
  line-height: 24px;
  color: #1b212f;
  font-family: "cera_probold";
  text-transform: capitalize;
  margin-bottom: 10px;
}

@media only screen and (max-width: 991px) {
  .testimonial_wrap_three .testimonial_feedback_slider_active .slider_content .slider_inner_content .author_details .author_name {
    font-size: 20px;
    margin-bottom: 5px;
  }
}

.testimonial_wrap_three .testimonial_feedback_slider_active .slider_content .slider_inner_content .author_details .author_position {
  font-size: 16px;
  line-height: 24px;
  color: #494d59;
  font-family: "cera_proregular";
  font-style: normal;
}

.testimonial_wrap_three .testimonial_feedback_slider_active .slider_content .slider_inner_content .author_details .author_position a {
  color: #1b212f;
  font-family: "cera_promedium";
}

.testimonial_wrap_three .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: #d1d3d5;
  opacity: 1;
  border-radius: 50px;
  margin: 7px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.testimonial_wrap_three .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #f7bd01;
}

.testimonial_wrap_three.testimonial_about_page_two p {
  font-size: 18px;
  line-height: 24px;
  color: #494d59;
  font-family: "cera_proregular";
  font-style: italic;
}

@media only screen and (max-width: 991px) {
  .testimonial_wrap_three.testimonial_about_page_two p {
    font-size: 16px;
  }
}

.newsletter_wrap {
  position: relative;
  padding: 20px 0;
  background-color: rgba(0, 130, 215, 0.051);
}

@media only screen and (max-width: 1200px) {
  .newsletter_wrap {
    padding: 25px 0 10px;
  }
}

.newsletter_wrap .newsletter_bg {
  border-radius: 10px;
  background: url(../img/bg/about-bg1.png) no-repeat left top;
  max-width: 1620px;
  margin: 0 auto;
  padding: 60px 0 60px;
}

@media only screen and (max-width: 1200px) {
  .newsletter_wrap .newsletter_bg {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .newsletter_wrap .newsletter_bg {
    padding: 60px 0 70px;
  }
}

.newsletter_wrap .newsletter_bg .contact_inner_text h2 {
  font-size: 48px;
  line-height: 60px;
  color: #ffffff;
  font-family: "cera_probold";
  margin-bottom: 50px;
}

@media (max-width: 1440px) {
  .newsletter_wrap .newsletter_bg .contact_inner_text h2 {
    font-size: 40px;
    line-height: 55px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 1200px) {
  .newsletter_wrap .newsletter_bg .contact_inner_text h2 {
    font-size: 35px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .newsletter_wrap .newsletter_bg .contact_inner_text h2 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 30px;
  }
}

.newsletter_wrap .newsletter_bg .contact_inner_text .theme_btn {
  background: #ffffff;
  color: #0082d7;
  border: 1px solid #fff;
}

.newsletter_wrap .newsletter_bg .contact_inner_text .theme_btn:hover {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.newsletter_wrap.newsletter_wrap_two {
  background: #ffffff;
}

.newsletter_wrap.newsletter_wrap_two .mossa_shutter_out_horizontal {
  background: #ffffff;
  color: #0082d7;
  text-transform: uppercase;
  padding: 13px 31px;
}

.newsletter_wrap.newsletter_wrap_two .mossa_shutter_out_horizontal:hover {
  color: #ffffff;
}

.newsletter_wrap.newsletter_wrap_two .mossa_shutter_out_horizontal:hover::before {
  background: #f7bd01;
}

.newsletter_wrap_three {
  padding: 60px 0;
  position: relative;
  margin-bottom: -220px;
  z-index: 10;
}

@media only screen and (max-width: 1200px) {
  .newsletter_wrap_three {
    padding-top: 30px;
  }
}

@media (max-width: 767px) {
  .newsletter_wrap_three {
    padding-top: 10px;
  }
}

.newsletter_wrap_three .contact_us_bg_wrap {
  background: url("../img/Home-three/contact/about-bg.png") no-repeat center/cover;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 0 60px 0;
  border-radius: 10px;
}

.newsletter_wrap_three .contact_us_bg_wrap .contact_inner_text .sect_title {
  line-height: 50px;
  color: #ffffff;
  max-width: 625px;
  margin: 0 auto 35px;
}

@media only screen and (max-width: 1200px) {
  .newsletter_wrap_three .contact_us_bg_wrap .contact_inner_text .sect_title {
    line-height: 40px;
    padding: 0 15px;
  }
}

.newsletter_wrap_three .contact_us_bg_wrap .contact_inner_text .mossa_shutter_out_horizontal {
  background: #ffffff;
  color: #0082d7;
  border: 1px solid #fff;
  padding: 13px 37px;
}

.newsletter_wrap_three .contact_us_bg_wrap .contact_inner_text .mossa_shutter_out_horizontal:hover {
  color: #ffffff;
  border: 1px solid #ffffff;
}

.single_contact_item {
  border: 1px solid #0082d7;
  padding: 40px 40px 35px 40px;
  border-radius: 5px;
  background: #ffffff;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  .single_contact_item {
    padding: 25px 15px 25px 15px;
  }
}

@media (max-width: 767px) {
  .single_contact_item {
    padding: 30px;
  }
}

@media (max-width: 460px) {
  .single_contact_item {
    padding: 25px;
  }
}

.single_contact_item .phone_icon a {
  font-size: 40px;
  color: #0082d7;
  display: inline-block;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  margin-bottom: 12px;
}

.single_contact_item .phone_icon a:hover {
  text-decoration: none;
}

.single_contact_item p {
  font-size: 24px;
  font-family: "cera_probold";
  color: #1b212f;
  text-transform: capitalize;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
  width: 165px;
  margin-bottom: 20px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.single_contact_item .phone_itemone {
  display: inline-block;
  font-family: "cera_proregular";
  font-size: 18px;
  color: #333333;
  line-height: 30px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  text-decoration: none;
}

.single_contact_item .phone_itemtwo {
  display: inline-block;
  font-family: "cera_proregular";
  font-size: 18px;
  color: #333333;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  text-decoration: none;
}

.single_contact_item:hover {
  background: #0082d7;
}

.single_contact_item:hover .phone_icon a {
  color: #ffffff;
  text-decoration: none;
}

.single_contact_item:hover p {
  color: #ffffff;
}

.single_contact_item:hover .phone_itemone {
  color: #ffffff;
}

.single_contact_item:hover .phone_itemtwo {
  color: #ffffff;
}

.single_contact_item.itemfour:hover .contact_social_item a {
  color: #fff;
}

.single_contact_item .contact_social_item {
  margin-bottom: 15px;
}

.single_contact_item .contact_social_item ul li {
  margin-top: 10px;
  display: inline-block;
  margin-right: 10px;
}

.single_contact_item .contact_social_item ul li img {
  width: 40px;
}

.single_contact_item .contact_social_item ul li:last-child {
  margin-right: 0;
}

/* .single_contact_item .contact_social_item ul li a {
  border: 1px solid #d2d0ce;
  color: #1b212f;
  width: 36px;
  height: 36px;
  background: #ffffff;
  line-height: 36px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
} */

.single_contact_item .contact_social_item ul li img:hover {
  transform: scale(1.1);
}

.comment_response .contact_form {
  padding: 40px;
}

@media only screen and (max-width: 991px) {
  .comment_response .contact_form {
    padding: 30px 25px 40px;
  }
}

.comment_response .contact_form .form-control {
  font-family: "cera_proregular";
  color: #666666;
  font-size: 16px;
  line-height: 28px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  outline: none;
  margin-bottom: 20px;
  border-radius: 0;
  height: 50px;
  padding: 12px 0;
  border-bottom: 2px solid #eaeaea;
  background: transparent;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  text-transform: capitalize;
}

.comment_response .contact_form .form-control::-webkit-input-placeholder {
  color: #666666;
}

.comment_response .contact_form .form-control:-ms-input-placeholder {
  color: #666666;
}

.comment_response .contact_form .form-control::-ms-input-placeholder {
  color: #666666;
}

.comment_response .contact_form .form-control::placeholder {
  color: #666666;
}

.comment_response .contact_form .form-control:focus {
  -webkit-box-shadow: 0px 20px 40px 0px rgba(8, 22, 113, 0.03);
  box-shadow: 0px 20px 40px 0px rgba(8, 22, 113, 0.03);
}

.comment_response .contact_form textarea.form-control {
  min-height: 100px;
  height: 100px;
  margin-bottom: 20px;
  resize: none;
}

@media (max-width: 767px) {
  .comment_response .contact_form textarea.form-control {
    margin-bottom: 40px;
  }
}

.google_map {
  display: block;
}

.google_map iframe {
  width: 100%;
  height: 600px;
}

@media only screen and (max-width: 1200px) {
  .google_map iframe {
    height: 600px;
  }
}

@media (max-width: 767px) {
  .google_map iframe {
    height: 300px;
  }
}

.our_latest_blog_wrap {
  position: relative;
  background: #ffffff;
  padding: 60px 0 90px;
  z-index: 2;
}

@media only screen and (max-width: 1200px) {
  .our_latest_blog_wrap {
    padding: 50px 0 30px;
  }
}

.our_latest_blog_wrap .blog_shape_one {
  position: absolute;
  left: 56px;
  bottom: 0;
  background: url(../img/blog/blog-shape-one.png) no-repeat left bottom;
  width: 240px;
  height: 255px;
  z-index: -1;
}

@media only screen and (max-width: 1900px) {
  .our_latest_blog_wrap .blog_shape_one {
    width: 200px;
    height: 200px;
  }
}

@media only screen and (max-width: 1800px) {
  .our_latest_blog_wrap .blog_shape_one {
    width: 150px;
    height: 150px;
  }
}

@media only screen and (max-width: 1600px) {
  .our_latest_blog_wrap .blog_shape_one {
    display: none;
  }
}

.our_latest_blog_wrap .blog_shape_two {
  position: absolute;
  right: 35px;
  top: 98px;
  background: url(../img/blog/blog-shape-two.png) no-repeat right top;
  width: 250px;
  height: 250px;
  z-index: -1;
}

@media only screen and (max-width: 1900px) {
  .our_latest_blog_wrap .blog_shape_two {
    width: 200px;
    height: 205px;
  }
}

@media only screen and (max-width: 1800px) {
  .our_latest_blog_wrap .blog_shape_two {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 1366px) {
  .our_latest_blog_wrap .blog_shape_two {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 767px) {
  .our_latest_blog_wrap .blog_shape_two {
    display: none;
  }
}

.our_latest_blog_wrap .sect_sub_title {
  font-weight: 500;
  line-height: 1;
  margin-bottom: 25px;
}

@media only screen and (max-width: 1200px) {
  .our_latest_blog_wrap .sect_sub_title {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .our_latest_blog_wrap .sect_sub_title {
    margin-bottom: 10px;
  }
}

.our_latest_blog_wrap .sect_title {
  line-height: 45px;
}

@media (max-width: 767px) {
  .our_latest_blog_wrap .sect_title {
    line-height: 30px;
  }
}

.single_blog_wrap {
  background-color: #f7fbfe;
  padding: 20px 20px 14px 0;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media only screen and (min-width: 1200px) {
  .single_blog_wrap {
    height: 420px;
  }
}

@media only screen and (max-width: 1201px) {
  .single_blog_wrap {
    height: 470px;
  }
}

@media only screen and (max-width: 991px) {
  .single_blog_wrap {
    height: 420px;
  }
}

@media only screen and (max-width: 767px) {
  .single_blog_wrap {
    height: 400px;
  }
}

.single_blog_wrap .blog_thump {
  overflow: hidden;
  position: relative;
  border-radius: 0 5px 5px 0;
}

.single_blog_wrap .blog_thump a img {
  width: 100%;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.single_blog_wrap .blog_thump a img:hover {
  -webkit-transform: scale(1.05) rotate(2deg);
  -ms-transform: scale(1.05) rotate(2deg);
  transform: scale(1.05) rotate(2deg);
}

.single_blog_wrap .blog_thump a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0082d7;
  opacity: 0.2;
  z-index: 10;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 0 5px 5px 0;
}

.single_blog_wrap .blog_inner_content {
  padding: 18px 10px 0 30px;
}

@media only screen and (max-width: 575.98px) {
  .single_blog_wrap .blog_inner_content {
    padding: 15px 10px 0 15px;
  }
}

.single_blog_wrap .blog_inner_content .blog_meta a {
  font-size: 16px;
  line-height: 40px;
  font-family: "cera_proregular";
  color: #494d59;
}

.single_blog_wrap .blog_inner_content .blog_meta a i {
  margin-right: 10px;
  color: #f7bd01;
}

.single_blog_wrap .blog_inner_content .blog_title a {
  font-size: 26px;
  line-height: 38px;
  text-decoration: underline;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  color: #1b212f;
}

.single_blog_wrap .blog_inner_content .blog_title a:hover {
  color: #0082d7;
}

@media only screen and (max-width: 1200px) {
  .single_blog_wrap .blog_inner_content .blog_title a {
    font-size: 20px;
    line-height: 30px;
  }
}

.single_blog_wrap .blog_inner_content .authon_name {
  font-size: 16px;
  line-height: 50px;
  font-family: "cera_proregular";
  color: #494d59;
  text-transform: capitalize;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.single_blog_wrap .blog_inner_content .authon_name:hover {
  color: #0082d7;
}

.single_blog_wrap:hover {
  background-color: white;
  -webkit-box-shadow: 0px 25px 88.35px 6.65px rgba(27, 33, 47, 0.1);
  box-shadow: 0px 25px 88.35px 6.65px rgba(27, 33, 47, 0.1);
}

.single_blog_wrap:hover a:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.our_latest_blog_wrap.our_latest_blog_wrap_three {
  padding: 60px 0 30px;
}

@media only screen and (max-width: 1200px) {
  .our_latest_blog_wrap.our_latest_blog_wrap_three {
    padding: 30px 0 30px;
  }
}

@media only screen and (max-width: 991px) {
  .our_latest_blog_wrap.our_latest_blog_wrap_three .sect_sub_title {
    line-height: 0px;
    margin-bottom: 20px;
  }
}

.our_latest_blog_wrap.our_latest_blog_wrap_three .sect_title {
  line-height: 50px;
}

@media only screen and (max-width: 1200px) {
  .our_latest_blog_wrap.our_latest_blog_wrap_three .sect_title {
    line-height: 40px;
  }
}

@media only screen and (max-width: 575.98px) {
  .our_latest_blog_wrap.our_latest_blog_wrap_three .sect_title {
    line-height: 30px;
  }
}

.single_blog_grid_wrap {
  z-index: 1;
}

.single_blog_grid_wrap .blog_shape_one {
  position: absolute;
  left: 60px;
  top: 48%;
  background: url(../img/blog/blog-shape-one.png) no-repeat left bottom;
  width: 240px;
  height: 255px;
  z-index: -1;
}

@media only screen and (max-width: 1900px) {
  .single_blog_grid_wrap .blog_shape_one {
    width: 200px;
    height: 200px;
  }
}

@media only screen and (max-width: 1800px) {
  .single_blog_grid_wrap .blog_shape_one {
    width: 150px;
    height: 150px;
  }
}

@media only screen and (max-width: 1600px) {
  .single_blog_grid_wrap .blog_shape_one {
    display: none;
  }
}

.single_blog_grid_wrap .blog_shape_two {
  position: absolute;
  right: 60px;
  top: 11%;
  background: url(../img/blog/blog-shape-two.png) no-repeat right top;
  width: 250px;
  height: 250px;
  z-index: -1;
}

@media only screen and (max-width: 1900px) {
  .single_blog_grid_wrap .blog_shape_two {
    width: 200px;
    height: 205px;
  }
}

@media only screen and (max-width: 1800px) {
  .single_blog_grid_wrap .blog_shape_two {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 1366px) {
  .single_blog_grid_wrap .blog_shape_two {
    width: 100px;
    height: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .single_blog_grid_wrap .blog_shape_two {
    top: 6%;
  }
}

@media (max-width: 767px) {
  .single_blog_grid_wrap .blog_shape_two {
    display: none;
  }
}

.single_blog_grid_wrap .blog_shape_three {
  position: absolute;
  right: 60px;
  bottom: 3%;
  background: url(../img/blog/blog-shape-two.png) no-repeat right bottom;
  width: 250px;
  height: 250px;
  z-index: -1;
}

@media only screen and (max-width: 1900px) {
  .single_blog_grid_wrap .blog_shape_three {
    width: 200px;
    height: 205px;
  }
}

@media only screen and (max-width: 1800px) {
  .single_blog_grid_wrap .blog_shape_three {
    bottom: 9%;
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 1366px) {
  .single_blog_grid_wrap .blog_shape_three {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 767px) {
  .single_blog_grid_wrap .blog_shape_three {
    display: none;
  }
}

@media (max-width: 767px) {
  .pagination_wrap {
    text-align: center;
  }
}

.pagination_wrap ul {
  margin: 0;
  padding: 0;
}

.pagination_wrap ul li {
  display: inline-block;
  margin-right: 15px;
}

.pagination_wrap ul li:last-child {
  margin-right: 0;
}

.pagination_wrap ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  padding: 4px 14.165px;
  color: #1b212f;
  font-family: "cera_proregular";
  border-width: 1px;
  border-style: solid;
  border-color: #d1cfce;
  border-radius: 3px;
  background-color: #ffffff;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.pagination_wrap ul li a:hover {
  color: #ffffff;
  border-color: #f7bd01;
  background: #f7bd01;
}

.widget_sidebar {
  border-right: 1px solid #d1cfce;
}

@media only screen and (max-width: 991px) {
  .widget_sidebar {
    border: none;
  }
}

.widget_sidebar .subscribe_form {
  max-width: 370px;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .widget_sidebar .subscribe_form {
    max-width: 100%;
  }
}

.blog_sidebar_offer {
  background: url(../img/blog/bs1.png) no-repeat center/cover;
  padding: 50px 84px 50px 70px;
  border-radius: 5px;
  max-width: 370px;
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .blog_sidebar_offer {
    padding: 50px 30px 50px 30px;
  }
}

@media only screen and (max-width: 991px) {
  .blog_sidebar_offer {
    padding: 30px;
    max-width: 100%;
  }
}

.blog_sidebar_offer h2 {
  font-size: 30px;
  font-family: "cera_probold";
  line-height: 50px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1600px) {
  .blog_sidebar_offer h2 {
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 1200px) {
  .blog_sidebar_offer h2 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}

.blog_sidebar_offer h2 span {
  font-size: 48px;
  font-family: "cera_problack";
  line-height: 50px;
  color: #f7bd01;
}

@media only screen and (max-width: 1600px) {
  .blog_sidebar_offer h2 span {
    font-size: 40px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 1600px) and (max-width: 1200px) {
  .blog_sidebar_offer h2 span {
    font-size: 36px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 1600px) and (max-width: 991px) {
  .blog_sidebar_offer h2 span {
    font-size: 30px;
  }
}

.blog_sidebar_offer h4 {
  color: #ffffff;
  font-size: 24px;
  font-family: "cera_proregular";
  line-height: 32px;
  margin-bottom: 15px;
}

@media only screen and (max-width: 1600px) {
  .blog_sidebar_offer h4 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .blog_sidebar_offer h4 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .blog_sidebar_offer h4 {
    font-size: 20px;
  }
}

.blog_sidebar_offer a {
  font-size: 14px;
  color: #f7bd01;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 13px 36px;
}

.blog_sidebar_offer a::before {
  border-radius: 3px;
  background-color: #f7bd01;
}

@media only screen and (max-width: 1600px) {
  .blog_sidebar_offer a {
    padding: 12px 26px;
  }
}

@media only screen and (max-width: 1200px) {
  .blog_sidebar_offer a {
    padding: 10px 20px;
  }
}

.blog_content {
  padding-bottom: 110px;
}

@media only screen and (max-width: 1900px) {
  .blog_content {
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 1800px) {
  .blog_content {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 1600px) {
  .blog_content {
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 1200px) {
  .blog_content {
    padding-bottom: 40px;
  }
}

.blog_content h2 {
  line-height: 52px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1600px) {
  .blog_content h2 {
    line-height: 40px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .blog_content h2 {
    line-height: 36px;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .blog_content h2 {
    line-height: 30px;
  }
}

.blog_content .blog_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 15px;
}

@media (max-width: 375px) {
  .blog_content .blog_meta {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.blog_content .blog_meta .blog_author a {
  font-size: 16px;
  font-family: "cera_proregular";
  color: #0082d7;
  text-transform: capitalize;
}

@media only screen and (max-width: 575.98px) {
  .blog_content .blog_meta .blog_author a {
    font-size: 14px;
  }
}

.blog_content .blog_meta .blog_date_comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 375px) {
  .blog_content .blog_meta .blog_date_comment {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.blog_content .blog_meta .blog_date_comment a {
  font-size: 16px;
  font-family: "cera_proregular";
  color: #494d59;
}

@media only screen and (max-width: 575.98px) {
  .blog_content .blog_meta .blog_date_comment a {
    font-size: 14px;
  }
}

.blog_content .blog_meta .blog_date_comment .blog_date {
  margin-right: 40px;
}

@media only screen and (max-width: 1200px) {
  .blog_content .blog_meta .blog_date_comment .blog_date {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 575.98px) {
  .blog_content .blog_meta .blog_date_comment .blog_date {
    margin-right: 10px;
  }
}

.blog_content .blog_meta .blog_date_comment .blog_comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog_content .blog_meta .blog_date_comment .blog_comment i {
  margin-top: 5px;
  margin-right: 10px;
}

@media only screen and (max-width: 1600px) {
  .blog_content .blog_meta .blog_date_comment .blog_comment i {
    margin-top: 0;
  }
}

.blog_content .blog_img img {
  border-radius: 5px;
  margin-bottom: 35px;
}

@media only screen and (max-width: 1600px) {
  .blog_content .blog_img img {
    margin-bottom: 25px;
  }
}

.blog_content .blog_pra {
  font-size: 18px;
  line-height: 26px;
  font-family: "cera_proregular";
  color: #494d59;
  margin-bottom: 35px;
}

@media only screen and (max-width: 1600px) {
  .blog_content .blog_pra {
    font-size: 16px;
    margin-bottom: 25px;
  }
}

.blog_content a.mossa_shutter_out_horizontal {
  background-image: -webkit-linear-gradient(30deg, #0082d7 29%, #68bdf4 99%);
  background-image: -o-linear-gradient(30deg, #0082d7 29%, #68bdf4 99%);
  background-image: linear-gradient(60deg, #0082d7 29%, #68bdf4 99%);
  font-size: 14px;
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 13px 36px;
}

.blog_content a.mossa_shutter_out_horizontal::before {
  border-radius: 5px;
  background-color: #f7bd01;
}

@media only screen and (max-width: 1600px) {
  .blog_content a.mossa_shutter_out_horizontal {
    padding: 12px 26px;
  }
}

@media only screen and (max-width: 1200px) {
  .blog_content a.mossa_shutter_out_horizontal {
    padding: 10px 20px;
  }
}

.page_navigation {
  margin-left: -125px;
}

@media only screen and (max-width: 1900px) {
  .page_navigation {
    margin-left: -80px;
  }
}

@media (max-width: 1400px) {
  .page_navigation {
    margin-left: 0;
  }
}

.page_navigation .pagination li {
  margin-right: 20px;
}

@media only screen and (max-width: 991px) {
  .page_navigation .pagination li {
    margin-right: 10px;
  }
}

.page_navigation .pagination li:last-child {
  margin-right: 0;
}

.page_navigation .pagination li a {
  display: inline-block;
  font-size: 18px;
  color: #1b212f;
  font-family: "cera_proregular";
  text-transform: capitalize;
  text-align: center;
  border: 1px solid #d1cfce;
  border-radius: 3px !important;
  padding: 4px 15px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.page_navigation .pagination li a:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.page_navigation .pagination li a:hover {
  background: #f7bd01;
  color: #ffffff;
  border: 1px solid #f7bd01;
}

.blog_single_area_wrap.blog_single_details .blog_content {
  padding-bottom: 25px;
}

.blog_single_area_wrap.blog_single_details .blog_content .blog_pra {
  font-size: 18px;
  line-height: 26px;
  font-family: "cera_proregular";
  color: #494d59;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1600px) {
  .blog_single_area_wrap.blog_single_details .blog_content .blog_pra {
    font-size: 16px;
    margin-bottom: 25px;
  }
}

.blog_single_area_wrap.blog_single_details .blog_content .blog_pra.quote_text {
  font-size: 16px;
  border-radius: 5px;
  font-style: italic;
  background: #e5f2fb;
  padding: 25px;
}

.author_profile {
  background: #ffffff;
  -webkit-box-shadow: -1.526px 7.853px 77.28px 6.72px rgba(27, 33, 47, 0.05);
  box-shadow: -1.526px 7.853px 77.28px 6.72px rgba(27, 33, 47, 0.05);
  border-radius: 5px;
  padding: 30px 45px 0px 0px;
  margin-bottom: 55px;
}

@media only screen and (max-width: 1800px) {
  .author_profile {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 1800px) {
  .author_profile {
    margin-bottom: 30px;
  }
}

.author_profile .author_avator img {
  border-radius: 50%;
}

.author_profile .author_info .author_name {
  font-size: 24px;
  line-height: 28px;
  font-family: "cera_probold";
  color: #1b212f;
  text-transform: capitalize;
}

.author_profile .author_info a {
  font-size: 16px;
  line-height: 30px;
  font-family: "cera_proregular";
  color: #f7bd01;
  text-transform: capitalize;
}

.author_profile .author_social_details span {
  font-size: 16px;
  line-height: 28px;
  font-family: "cera_proregular";
  color: #1b212f;
  text-transform: capitalize;
  margin-right: 20px;
}

@media only screen and (max-width: 991px) {
  .author_profile .author_social_details span {
    margin-right: 10px;
  }
}

.author_profile .author_social_details a {
  font-size: 16px;
  color: #d1d3d5;
  margin-right: 20px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media only screen and (max-width: 1600px) {
  .author_profile .author_social_details a {
    margin-right: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .author_profile .author_social_details a {
    margin-right: 10px;
  }
}

.author_profile .author_social_details a:last-child {
  margin-right: 0;
}

.author_profile .author_social_details a:hover {
  color: #1b212f;
}

.author_profile .author_social_details a.active {
  color: #1b212f;
}

.post_title_comment {
  font-size: 30px;
  line-height: 28px;
  font-family: "cera_probold";
  color: #1b212f;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1200px) {
  .post_title_comment {
    font-size: 26px;
  }
}

.comment_details .comment_box {
  margin-top: 60px;
  padding: 0 130px 60px 30px;
  border-bottom: 1px solid #d1cfce;
}

@media only screen and (max-width: 1600px) {
  .comment_details .comment_box {
    margin-top: 40px;
    padding: 0 60px 40px 30px;
  }
}

@media only screen and (max-width: 1200px) {
  .comment_details .comment_box {
    margin-top: 30px;
    padding: 0 30px 30px 30px;
  }
}

@media only screen and (max-width: 575.98px) {
  .comment_details .comment_box {
    padding: 0 15px 25px 15px;
  }
}

.comment_details .comment_box .comment_author img {
  border-radius: 50%;
}

.comment_details .comment_box .comment_content h4 {
  font-size: 24px;
  line-height: 28px;
  font-family: "cera_probold";
  color: #1b212f;
  margin-bottom: 5px;
  margin-top: 20px;
}

@media only screen and (max-width: 1200px) {
  .comment_details .comment_box .comment_content h4 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .comment_details .comment_box .comment_content h4 {
    margin-bottom: 0;
  }
}

.comment_details .comment_box .comment_content span {
  display: inline-block;
  font-size: 16px;
  line-height: 28px;
  font-family: "cera_promedium";
  color: #1b212f;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1200px) {
  .comment_details .comment_box .comment_content span {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .comment_details .comment_box .comment_content span {
    margin-bottom: 5px;
  }
}

.comment_details .comment_box .comment_content p {
  font-size: 16px;
  line-height: 24px;
  font-family: "cera_proregular";
  color: #494d59;
  margin-bottom: 25px;
}

.comment_details .comment_box .comment_content .theme_btn {
  border-radius: 3px;
  text-transform: uppercase;
  padding: 6px 33px;
  font-size: 14px;
  line-height: 28px;
  font-family: "cera_promedium";
  color: #ffffff;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.comment_details .comment_box .comment_content .theme_btn:hover {
  background: #f7bd01;
}

.comment_details .comment_box.comment_two {
  padding-left: 140px;
  padding-right: 100px;
}

@media only screen and (max-width: 1600px) {
  .comment_details .comment_box.comment_two {
    padding-right: 60px;
  }
}

@media only screen and (max-width: 1200px) {
  .comment_details .comment_box.comment_two {
    padding-right: 30px;
    padding-left: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .comment_details .comment_box.comment_two {
    padding-left: 0px;
  }
}

.comment_form {
  margin-top: 55px;
}

@media only screen and (max-width: 1600px) {
  .comment_form {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 1200px) {
  .comment_form {
    margin-top: 30px;
  }
}

.contact_form {
  padding: 40px;
  border: 1px solid #d1cfce;
  border-radius: 3px;
}

@media only screen and (max-width: 575.98px) {
  .contact_form {
    padding: 15px;
  }
}

.contact_form .input_box input {
  font-size: 14px;
  line-height: 1;
  color: #494d59;
  text-transform: capitalize;
  border: 1px solid #d1cfce;
  height: 50px;
  padding: 0 30px;
  border-radius: 3px;
}

.contact_form .input_box textarea {
  font-size: 14px;
  line-height: 1;
  color: #494d59;
  text-transform: capitalize;
  border: 1px solid #d1cfce;
  background: #ffffff;
  padding: 20px;
  border-radius: 3px;
  height: 225px;
  display: block;
  resize: none;
}

.contact_form .theme_btn {
  font-size: 14px;
  font-family: "cera_promedium";
  border-radius: 5px;
  border: 0;
}

.frequently_wrapper .sect_sub_title {
  font-size: 18px;
  line-height: 40px;
  font-family: "cera_promedium";
  text-decoration: underline;
  text-transform: capitalize;
  font-weight: 500;
  color: #0082d7;
}

@media (max-width: 767px) {
  .frequently_wrapper .sect_sub_title {
    font-size: 16px;
    line-height: 15px;
  }
}

.frequently_wrapper .sect_title .underline_text_hover {
  font-family: "cera_probold";
  line-height: 50px;
}

@media (max-width: 1440px) {
  .frequently_wrapper .sect_title .underline_text_hover {
    line-height: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .frequently_wrapper .sect_title .underline_text_hover {
    line-height: 30px;
  }
}

.frequently_wrapper .accordion_wrapper .accordion .accordion-item {
  border: none;
}

.frequently_wrapper .accordion_wrapper .accordion .accordion-item .accordion-header .accordion-button {
  font-size: 24px;
  line-height: 50px;
  font-family: "cera_promedium";
  color: #494d59;
  padding: 0;
  display: block;
  width: 100%;
  text-align: left;
  position: relative;
  outline: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

@media only screen and (max-width: 1600px) {
  .frequently_wrapper .accordion_wrapper .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
    line-height: 36px;
  }
}

@media only screen and (max-width: 1200px) {
  .frequently_wrapper .accordion_wrapper .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
  }
}

.frequently_wrapper .accordion_wrapper .accordion .accordion-item .accordion-header .accordion-button::after {
  position: absolute;
  right: 20px;
  content: "\f2ea";
  font-family: bootstrap-icons !important;
  background-image: none;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: auto;
  color: #494d59;
}

.frequently_wrapper .accordion_wrapper .accordion .accordion-item .accordion-header .accordion-button.collapsed::after {
  content: "\f4fe";
  font-family: bootstrap-icons !important;
  color: #494d59;
  background-image: none;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.frequently_wrapper .accordion_wrapper .accordion .accordion-item .accordion-header .accordion-button:not(collapsed) {
  background: none;
}

.frequently_wrapper .accordion_wrapper .accordion .accordion-item .accordion-body {
  padding: 0;
  margin-bottom: 6px;
}

.frequently_wrapper .accordion_wrapper .mossa_shutter_out_horizontal {
  background: #f7bd01;
  border-radius: 5px;
  color: #ffffff;
}

.frequently_wrapper .accordion_wrapper .mossa_shutter_out_horizontal::before {
  border-radius: 5px;
}

.frequently_wrapper .faq_img {
  position: relative;
}

.frequently_wrapper .faq_img img {
  position: absolute;
  right: -12%;
}

@media only screen and (max-width: 1600px) {
  .frequently_wrapper .faq_img img {
    right: 0;
    max-width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .frequently_wrapper .faq_img img {
    position: initial;
  }
}

.Our_service_wrap {
  position: relative;
  padding: 120px 0 110px;
  background-image: -webkit-linear-gradient(30deg, rgba(0, 130, 215, 0.051) 29%, rgba(104, 189, 244, 0.051) 99%);
  background-image: -o-linear-gradient(30deg, rgba(0, 130, 215, 0.051) 29%, rgba(104, 189, 244, 0.051) 99%);
  background-image: linear-gradient(60deg, rgba(0, 130, 215, 0.051) 29%, rgba(104, 189, 244, 0.051) 99%);
  z-index: 10;
  overflow: hidden;
}

@media only screen and (max-width: 1200px) {
  .Our_service_wrap {
    padding: 60px 0 50px;
  }
}

.Our_service_wrap .Service_Full_text {
  position: absolute;
  font-size: 350px;
  line-height: 210px;
  font-family: "cera_problack";
  color: white;
  text-transform: uppercase;
  display: inline-block;
  z-index: -1;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 1800px) {
  .Our_service_wrap .Service_Full_text {
    font-size: 300px;
    line-height: 185px;
  }
}

@media only screen and (max-width: 1600px) {
  .Our_service_wrap .Service_Full_text {
    font-size: 200px;
    line-height: 120px;
  }
}

@media only screen and (max-width: 1200px) {
  .Our_service_wrap .Service_Full_text {
    font-size: 150px;
    line-height: 90px;
  }
}

@media only screen and (max-width: 991px) {
  .Our_service_wrap .Service_Full_text {
    font-size: 100px;
    line-height: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .Our_service_wrap .Service_Full_text {
    font-size: 100px;
    line-height: 60px;
  }
}

@media (max-width: 425px) {
  .Our_service_wrap .Service_Full_text {
    font-size: 60px;
    line-height: 35px;
  }
}

.Our_service_wrap .sect_sub_title {
  margin-bottom: 25px;
}

@media only screen and (max-width: 1200px) {
  .Our_service_wrap .sect_sub_title {
    margin-bottom: 10px;
  }
}

.Our_service_wrap .sect_title {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  line-height: 50px;
  padding-bottom: 55px;
}

@media only screen and (max-width: 1200px) {
  .Our_service_wrap .sect_title {
    line-height: 40px;
  }
}

@media (max-width: 767px) {
  .Our_service_wrap .sect_title {
    line-height: 30px;
    padding-bottom: 40px;
  }
}

.Our_service_wrap .single_service_box {
  position: relative;
  padding: 40px 50px;
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media only screen and (max-width: 575.98px) {
  .Our_service_wrap .single_service_box {
    padding: 35px 20px;
  }
}

.Our_service_wrap .single_service_box:before {
  position: absolute;
  content: "";
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.051);
  width: 144px;
  height: 144px;
  z-index: 1;
  top: -30px;
  right: -30px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 0;
}

.Our_service_wrap .single_service_box::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.051);
  width: 240px;
  height: 240px;
  z-index: 2;
  top: -70px;
  right: -70px;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.Our_service_wrap .single_service_box .service_img img {
  margin-bottom: 35px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media only screen and (max-width: 1200px) {
  .Our_service_wrap .single_service_box .service_img img {
    margin-bottom: 25px;
  }
}

.Our_service_wrap .single_service_box .service_heading {
  font-family: "cera_probold";
  font-size: 30px;
  line-height: 24px;
  color: #1b212f;
  text-transform: capitalize;
  margin-bottom: 25px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media only screen and (max-width: 1600px) {
  .Our_service_wrap .single_service_box .service_heading {
    font-size: 25px;
    margin-bottom: 20px;
  }
}

@media (max-width: 425px) {
  .Our_service_wrap .single_service_box .service_heading {
    font-size: 20px;
  }
}

.Our_service_wrap .single_service_box .service_arrow_btn {
  font-size: 30px;
  color: #60636e;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.Our_service_wrap .single_service_box:hover:before {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.Our_service_wrap .single_service_box:hover::after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.Our_service_wrap .single_service_box:hover {
  background: #0082d7;
}

.Our_service_wrap .single_service_box:hover .service_img img {
  -webkit-filter: brightness(0%) contrast(198%) invert(100%);
  filter: brightness(0%) contrast(198%) invert(100%);
}

.Our_service_wrap .single_service_box:hover .service_heading {
  color: #ffffff;
}

.Our_service_wrap .single_service_box:hover .service_arrow_btn {
  color: #ffffff;
}

.Our_service_wrap .more_service_wrap {
  padding-top: 20px;
}

@media (max-width: 767px) {
  .Our_service_wrap .more_service_wrap {
    padding-top: 0;
  }
}

.Our_service_wrap_two {
  background: #ffffff;
}

@media only screen and (max-width: 991px) {
  .Our_service_wrap_two .ourservice_title_wrap {
    max-width: 100%;
  }
}

.Our_service_wrap_two .ourservice_title_wrap .sect_title {
  font-family: "cera_probold";
}

.Our_service_wrap_two .ourservice_title_wrap .service_description {
  font-size: 18px;
  line-height: 24px;
  font-style: italic;
  max-width: 660px;
  margin: 0 auto;
}

@media only screen and (max-width: 991px) {
  .Our_service_wrap_two .ourservice_title_wrap .service_description {
    font-size: 16px;
  }
}

.Our_service_wrap_two .single_service_box {
  padding: 40px 35px 30px;
  border-radius: 5px;
  background-color: rgba(0, 130, 215, 0.051);
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.Our_service_wrap_two .single_service_box .service_heading {
  font-family: "cera_probold";
  font-size: 30px;
  line-height: 24px;
  color: #1b212f;
  text-transform: capitalize;
  margin-bottom: 25px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media only screen and (max-width: 1600px) {
  .Our_service_wrap_two .single_service_box .service_heading {
    font-size: 23px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .Our_service_wrap_two .single_service_box .service_heading {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 425px) {
  .Our_service_wrap_two .single_service_box .service_heading {
    font-size: 20px;
  }
}

.Our_service_wrap_two .single_service_box .service_arrow_btn {
  position: relative;
  font-size: 45px;
  color: #60636e;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  z-index: 2;
}

.Our_service_wrap_two .single_service_box .service_arrow_btn::before {
  position: absolute;
  content: "";
  width: 29px;
  height: 6px;
  background: #f7bd01;
  right: 0;
  top: 50%;
  z-index: -1;
}

.Our_service_wrap_two .single_service_box:hover {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 25px 88.35px 6.65px rgba(27, 33, 47, 0.1);
  box-shadow: 0px 25px 88.35px 6.65px rgba(27, 33, 47, 0.1);
}

.Our_service_wrap_two .more_service_wrap .mossa_shutter_out_horizontal {
  background: #f7bd01;
  color: #ffffff;
}

.Our_service_wrap_three {
  position: relative;
  background: #ffffff;
  z-index: 2;
}

.Our_service_wrap_three .ourservice_title_wrap .sect_sub_title {
  font-size: 18px;
  line-height: 40px;
  font-family: "cera_promedium";
  text-decoration: underline;
  text-transform: capitalize;
  font-weight: 500;
}

@media (max-width: 767px) {
  .Our_service_wrap_three .ourservice_title_wrap .sect_sub_title {
    font-size: 16px;
    line-height: 30px;
  }
}

.Our_service_wrap_three .ourservice_title_wrap .sect_title {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  line-height: 50px;
  padding-bottom: 55px;
}

@media only screen and (max-width: 1200px) {
  .Our_service_wrap_three .ourservice_title_wrap .sect_title {
    line-height: 40px;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .Our_service_wrap_three .ourservice_title_wrap .sect_title {
    line-height: 30px;
  }
}

.Our_service_wrap_three::before {
  position: absolute;
  content: "";
  background: #ffffff;
  -webkit-box-shadow: -4.77px 24.541px 87.4px 7.6px rgba(27, 33, 47, 0.06);
  box-shadow: -4.77px 24.541px 87.4px 7.6px rgba(27, 33, 47, 0.06);
  max-width: 1440px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}

.Our_service_wrap_three::after {
  position: absolute;
  content: "";
  max-width: 1440px;
  right: 0;
  bottom: -80px;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: rgba(25, 142, 219, 0.031);
  z-index: -2;
}

.Our_service_wrap_three .single_service_box {
  padding: 45px 75px 45px 40px;
  background: #ffffff;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media only screen and (max-width: 1200px) {
  .Our_service_wrap_three .single_service_box {
    padding: 30px;
  }
}

@media (max-width: 425px) {
  .Our_service_wrap_three .single_service_box {
    padding: 25px;
  }
}

.Our_service_wrap_three .single_service_box .service_img {
  display: inline-block;
  padding: 20px;
  border-radius: 12px;
  background-image: -webkit-linear-gradient(30deg, #0082d7 29%, #68bdf4 99%);
  background-image: -o-linear-gradient(30deg, #0082d7 29%, #68bdf4 99%);
  background-image: linear-gradient(60deg, #0082d7 29%, #68bdf4 99%);
  -webkit-box-shadow: 0px 25px 88.35px 6.65px rgba(27, 33, 47, 0.12);
  box-shadow: 0px 25px 88.35px 6.65px rgba(27, 33, 47, 0.12);
}

.Our_service_wrap_three .single_service_box .service_img img {
  display: inline-block;
  width: 40px;
  height: 40px;
  -webkit-filter: brightness(0%) contrast(198%) invert(100%);
  filter: brightness(0%) contrast(198%) invert(100%);
}

.Our_service_wrap_three .single_service_box .service_heading {
  font-size: 30px;
  line-height: 24px;
  color: #1b212f;
  font-family: "cera_probold";
  text-transform: capitalize;
}

@media only screen and (max-width: 1600px) {
  .Our_service_wrap_three .single_service_box .service_heading {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1600px) {
  .Our_service_wrap_three .single_service_box .service_heading {
    font-size: 22px;
  }
}

@media only screen and (max-width: 575.98px) {
  .Our_service_wrap_three .single_service_box .service_heading {
    font-size: 20px;
  }
}

.Our_service_wrap_three .single_service_box p {
  font-size: 16px;
  line-height: 24px;
  color: #494d59;
  font-family: "cera_proregular";
}

.Our_service_wrap_three .single_service_box.active {
  -webkit-box-shadow: 0px 10px 40.35px 6.65px rgba(27, 33, 47, 0.08);
  box-shadow: 0px 10px 40.35px 6.65px rgba(27, 33, 47, 0.08);
}

.Our_service_wrap_three .single_service_box:hover {
  border-radius: 5px;
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 40.35px 6.65px rgba(27, 33, 47, 0.08);
  box-shadow: 0px 10px 40.35px 6.65px rgba(27, 33, 47, 0.08);
}

.Our_service_wrap_two.service_page_two .service_description {
  font-style: normal;
}

.team_wrap {
  position: relative;
  background-image: -webkit-linear-gradient(30deg, rgba(0, 130, 215, 0.051) 29%, rgba(104, 189, 244, 0.051) 99%);
  background-image: -o-linear-gradient(30deg, rgba(0, 130, 215, 0.051) 29%, rgba(104, 189, 244, 0.051) 99%);
  background-image: linear-gradient(60deg, rgba(0, 130, 215, 0.051) 29%, rgba(104, 189, 244, 0.051) 99%);
}

.team_wrap .sect_title {
  font-family: "cera_probold";
  text-transform: capitalize;
  margin-bottom: 14px;
}

.team_wrap p {
  font-size: 18px;
  line-height: 24px;
  max-width: 660px;
  width: 100%;
  margin: 0 auto;
  font-style: italic;
}

.team_wrap .team_style_one {
  position: relative;
}

.team_wrap .team_style_one::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  border-radius: 5px;
  background-image: -webkit-linear-gradient(30deg, #0082d7 29%, #68bdf4 99%);
  background-image: -o-linear-gradient(30deg, #0082d7 29%, #68bdf4 99%);
  background-image: linear-gradient(60deg, #0082d7 29%, #68bdf4 99%);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.team_wrap .team_style_one img {
  width: 100%;
  border-radius: 5px;
}

.team_wrap .team_style_one .team_details .team_des {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.team_wrap .team_style_one .team_details .team_des h3 a {
  font-size: 24px;
  line-height: 24px;
  font-family: "cera_promedium";
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 10px;
  display: inline-block;
}

@media only screen and (max-width: 575.98px) {
  .team_wrap .team_style_one .team_details .team_des h3 a {
    font-size: 20px;
    margin-bottom: 5px;
  }
}

.team_wrap .team_style_one .team_details .team_des .team_position {
  font-family: "cera_proregular";
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;
  font-style: normal;
}

@media only screen and (max-width: 575.98px) {
  .team_wrap .team_style_one .team_details .team_des .team_position {
    font-size: 16px;
  }
}

.team_wrap .team_style_one .team_details .team_social {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.team_wrap .team_style_one .team_details .team_social ul {
  margin: 0;
  padding: 0;
}

.team_wrap .team_style_one .team_details .team_social ul li {
  margin-right: 30px;
}

.team_wrap .team_style_one .team_details .team_social ul li:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 575.98px) {
  .team_wrap .team_style_one .team_details .team_social ul li {
    margin-right: 20px;
  }
}

.team_wrap .team_style_one .team_details .team_social ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #1b212f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  background: #ffffff;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.team_wrap .team_style_one .team_details .team_social ul li a:hover {
  background: #f7bd01;
  color: #ffffff;
}

.team_wrap .team_style_one:hover .team_social {
  opacity: 1;
  visibility: visible;
  bottom: 60px;
}

.team_wrap .team_style_one:hover .team_des {
  opacity: 1;
  visibility: visible;
  top: 60px;
}

.team_wrap .team_style_one:hover:before {
  height: 100%;
}

.Mosaa_project_masonry {
  background-color: rgba(0, 130, 215, 0.051);
  z-index: 1;
}

.Mosaa_project_masonry .section_title .sect_title {
  text-transform: capitalize;
}

.Mosaa_project_masonry .section_title .project_masonry_description {
  font-size: 18px;
  line-height: 24px;
  font-style: italic;
  max-width: 550px;
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .Mosaa_project_masonry .section_title .project_masonry_description {
    font-size: 16px;
  }
}

.Mosaa_project_masonry .mossa_shutter_out_horizontal {
  background: #f7bd01;
  color: #ffffff;
}

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

@media only screen and (max-width: 991px) {
  .portfolio-menu {
    text-align: center;
  }
}

.portfolio-menu .gf_btn {
  position: relative;
  display: inline-block;
  color: #494d59;
  border: 2px solid #d1cfce;
  font-size: 16px;
  line-height: 24px;
  font-family: "cera_probold";
  padding: 11px 25px;
  background: #ffffff;
  z-index: 2;
}

@media only screen and (max-width: 1200px) {
  .portfolio-menu .gf_btn {
    font-size: 12px;
    padding: 7px 25px;
  }
}

@media only screen and (max-width: 991px) {
  .portfolio-menu .gf_btn {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .portfolio-menu .gf_btn {
    margin-bottom: 0px;
  }
}

@media (max-width: 420px) {
  .portfolio-menu .gf_btn {
    margin-bottom: 10px;
  }
}

.portfolio-menu .gf_btn:hover {
  color: #ffffff;
  border: 2px solid #0082d7;
}

.portfolio-menu .gf_btn.active {
  border: 2px solid #0082d7;
  color: #ffffff;
  background: #0082d7;
}

.portfolio-menu .gf_btn:last-child {
  margin-right: 0;
}

.portfolio_masonry_one .case_item_one .case_thumb {
  position: relative;
}

.portfolio_masonry_one .case_item_one .case_thumb img {
  border-radius: 5px;
}

.portfolio_masonry_one .case_item_one .case_thumb::before,
.portfolio_masonry_one .case_item_one .case_thumb::after {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  z-index: 1;
  -webkit-transition: 1.3s;
  -o-transition: 1.3s;
  transition: 1.3s;
}

.portfolio_masonry_one .case_item_one .case_thumb::before {
  right: 0;
  top: 0;
  opacity: 1;
  background: #0082d7;
}

.portfolio_masonry_one .case_item_one .case_thumb::after {
  left: 0;
  bottom: 0;
  opacity: 0.7;
  background: #0082d7;
}

.portfolio_masonry_one .case_item_one .case_thumb:hover::before,
.portfolio_masonry_one .case_item_one .case_thumb:hover::after {
  height: 100%;
  opacity: 0;
  width: 100%;
}

.Mosaa_project_masonry.Mosaa_project_masonry_two .sect_title {
  font-family: "cera_probold";
}

.Mosaa_project_masonry.Mosaa_project_masonry_two p {
  font-size: 18px;
  line-height: 24px;
  font-style: normal;
  max-width: 660px;
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .Mosaa_project_masonry.Mosaa_project_masonry_two p {
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .Mosaa_project_masonry.Mosaa_project_masonry_two .portfolio-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.Mosaa_project_masonry.Mosaa_project_masonry_two .portfolio-menu button {
  margin-right: 20px;
}

@media only screen and (max-width: 991px) {
  .Mosaa_project_masonry.Mosaa_project_masonry_two .portfolio-menu button {
    margin-right: 10px;
  }
}

@media (max-width: 680px) {
  .Mosaa_project_masonry.Mosaa_project_masonry_two .portfolio-menu button {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.Mosaa_project_masonry.Mosaa_project_masonry_two .portfolio-menu button:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 1200px) {
  .project_details_wrapper .project_details_content_top p {
    font-size: 16px;
  }
}

.widget_left_section .sect-title-two {
  color: #1b212f;
}

.service_video {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.service_video .service_single_video {
  position: relative;
  z-index: 1;
}

.service_video .service_single_video .popup-video {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  line-height: 52px;
  font-size: 18px;
  background: #ffffff;
  color: #f7bd01;
  text-align: center;
  border-radius: 50%;
}

.service_video .service_single_video .popup-video:hover {
  color: #ffffff;
  background: #f7bd01;
}

.text_list li {
  color: #1b212f;
  padding-left: 45px;
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 991px) {
  .text_list li {
    padding-bottom: 20px;
  }
}

.text_list li::before {
  content: "\F272";
  color: white;
  font-family: "bootstrap-icons";
  font-weight: 700;
  position: absolute;
  font-size: 20px;
  text-align: center;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 30px;
  height: 30px;
  background: #f7bd01;
  border-radius: 50%;
}

.project_info {
  background: url(../img/project/big-img-01.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.info_box {
  background: -webkit-radial-gradient(0.9% 2.98%, 97.57% 210.75%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  background: -o-radial-gradient(0.9% 2.98%, 97.57% 210.75%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  background: radial-gradient(97.57% 210.75% at 0.9% 2.98%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(42px);
  backdrop-filter: blur(42px);
  display: inline-block;
  padding: 40px;
  margin: 20px 50px 20px 0;
}

@media (max-width: 767px) {
  .info_box {
    padding: 40px 15px;
    margin: 20px 0 20px 0;
  }
}

.info_list {
  margin-bottom: 15px;
}

.info_list span {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
}

.info_list h5 {
  color: #ffffff;
  font-family: "cera_promedium";
  font-weight: 600;
}

@media only screen and (max-width: 575.98px) {
  .info_list h5 {
    font-size: 16px;
  }
}

.widget-right-section .widget_sidebar {
  border: none;
}

.widget-right-section .widget_sidebar .subscribe_form {
  max-width: 100%;
}

.widget-right-section .widget_sidebar .blog_sidebar_offer {
  max-width: 100%;
}

@media only screen and (max-width: 991px) {
  .mossa_price .section-title {
    text-align: center;
  }
}

.mossa_price .section-title .sect_title {
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .mossa_price .section-title .sect_title {
    margin-bottom: 10px;
  }
}

.mossa_price .section-title p {
  font-size: 16px;
  line-height: 26px;
  font-family: "cera_proregular";
  max-width: 525px;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .mossa_price .section-title p {
    max-width: 100%;
  }
}

.nav-tabs {
  border: none;
}

.nav-tabs .nav-item {
  margin-right: 20px;
}

@media (max-width: 360px) {
  .nav-tabs .nav-item {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.nav-tabs .nav-item:last-child {
  margin-right: 0;
}

.nav-tabs .nav-item .nav-link {
  font-size: 14px;
  line-height: 26px;
  font-family: "cera_promedium";
  color: #333333;
  text-transform: uppercase;
  border-width: 1px;
  border-color: #e2e2e2;
  border-style: solid;
  border-radius: 3px;
  display: inline-block;
  padding: 11px 49px;
}

.nav-tabs .nav-item .nav-link.active {
  color: #ffffff;
  background: #0082d7;
}

.plan {
  background: #ffffff;
  border-radius: 3px;
  padding: 58px 70px;
  border-width: 1px;
  border-style: solid;
  border-color: #dedede;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media only screen and (max-width: 1200px) {
  .plan {
    padding: 50px 40px;
  }
}

@media only screen and (max-width: 575.98px) {
  .plan {
    padding: 40px 25px;
  }
}

.plan .plan__header {
  width: 100%;
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1200px) {
  .plan .plan__header {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.plan .plan__header h3 {
  font-size: 18px;
  line-height: 26px;
  font-family: "cera_promedium";
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.plan .plan__price {
  font-size: 48px;
  line-height: 26px;
  color: #333333;
  font-family: "cera_probold";
}

.plan .plan__price sub {
  font-size: 16px;
  line-height: 26px;
  color: #494d59;
  font-family: "cera_proregular";
}

.plan .plan__body li {
  font-size: 16px;
  line-height: 26px;
  color: #494d59;
  font-family: "cera_proregular";
  margin-bottom: 12px;
}

.plan .plan__footer .price-btn {
  display: inline-block;
  font-family: "cera_promedium";
  font-size: 14px;
  line-height: 26px;
  color: #333333;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 10px 31px;
  border: 1px solid #dedede;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.plan:hover {
  border-color: #ffffff;
  -webkit-box-shadow: -4.77px 24.541px 87.4px 7.6px rgba(0, 130, 215, 0.08);
  box-shadow: -4.77px 24.541px 87.4px 7.6px rgba(0, 130, 215, 0.08);
}

.plan:hover .price-btn {
  background: -webkit-linear-gradient(30deg, #0082d7 29%, #68bdf4 99%);
  background: -o-linear-gradient(30deg, #0082d7 29%, #68bdf4 99%);
  background: linear-gradient(60deg, #0082d7 29%, #68bdf4 99%);
  color: #ffffff;
  border-color: #fff;
}

.video_wrap {
  background: url(../img/video/video-bg2.jpg) no-repeat center/cover;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 265px 0;
}

@media only screen and (max-width: 1200px) {
  .video_wrap {
    padding: 200px 0;
  }
}

.video_wrap::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 130, 215, 0.9);
  z-index: -1;
}

.video_wrap .video_content_wrapper {
  position: relative;
  z-index: 1;
}

.video_wrap .play_btn {
  position: relative;
  width: 66px;
  height: 66px;
  z-index: 1;
  background: #f7bd01;
  font-size: 20px;
  line-height: 66px;
  -webkit-animation: pulseBig infinite 5s linear;
  animation: pulseBig infinite 5s linear;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  color: #ffffff;
}

@media (max-width: 991px) {
  .video_wrap {
    padding: 150px 0;
  }
}

.video_wrap_two {
  position: relative;
}

.video_wrap_two .sect_title {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto 55px;
  line-height: 50px;
}

@media only screen and (max-width: 1600px) {
  .video_wrap_two .sect_title {
    line-height: 40px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .video_wrap_two .sect_title {
    line-height: 30px;
  }
}

/* .video_wrap_two .video_bg {
  position: relative;
} */

.video_wrap_two  img {
  max-width: 100%;
  width: 100%;
}

.video_wrap_two .video_bg .play_btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  z-index: 10;
  background: #f7bd01;
  font-size: 20px;
  line-height: 66px;
  -webkit-animation: pulseBig infinite 5s linear;
  animation: pulseBig infinite 5s linear;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  color: #ffffff;
}

@media only screen and (max-width: 575.98px) {
  .video_wrap_two .video_bg .play_btn {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 10px;
  }
}

.video_wrap_two.video_about_page_two img {
  border-radius: 5px;
}

.subscribe_form {
  position: relative;
}

.subscribe_form input {
  color: #494d59;
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding-left: 40px;
  border: 0;
  background: #ffffff;
  border: 1px solid #d1cfce;
  outline: none;
}

@media (max-width: 767px) {
  .subscribe_form input {
    height: 50px;
    line-height: 50px;
    padding-left: 20px;
  }
}

.subscribe_form ::-webkit-input-placeholder {
  color: #494d59;
  font-family: "cera_proregular";
  font-size: 16px;
  line-height: 1;
}

.subscribe_form :-ms-input-placeholder {
  color: #494d59;
  font-family: "cera_proregular";
  font-size: 16px;
  line-height: 1;
}

.subscribe_form ::-ms-input-placeholder {
  color: #494d59;
  font-family: "cera_proregular";
  font-size: 16px;
  line-height: 1;
}

.subscribe_form ::placeholder {
  color: #494d59;
  font-family: "cera_proregular";
  font-size: 16px;
  line-height: 1;
}

.subscribe_form .widget_btn {
  position: absolute;
  right: 0;
  background-image: -webkit-linear-gradient(30deg, #0082d7 29%, #68bdf4 99%);
  background-image: -o-linear-gradient(30deg, #0082d7 29%, #68bdf4 99%);
  background-image: linear-gradient(60deg, #0082d7 29%, #68bdf4 99%);
  border-radius: 3px;
  width: 100px;
  height: 60px;
  line-height: 60px;
  border: 0;
  outline: none;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  z-index: 1;
}

@media (max-width: 767px) {
  .subscribe_form .widget_btn {
    height: 50px;
    line-height: 50px;
    padding-left: 20px;
  }
}

.subscribe_form .widget_btn i {
  font-size: 16px;
}

.widget_post_title {
  font-size: 30px;
  color: #1b212f;
  font-family: "cera_probold";
  text-transform: capitalize;
}

@media only screen and (max-width: 1600px) {
  .widget_post_title {
    font-size: 26px;
  }
}

@media only screen and (max-width: 1200px) {
  .widget_post_title {
    font-size: 20px;
  }
}

.widget_post {
  border-top: 1px solid #d1cfce;
  padding: 20px 0;
}

.widget_post .post_list li .blog_post a img {
  border-radius: 3px;
}

.widget_post .post_list li .blog_post .post_content {
  margin-left: 20px;
}

.widget_post .post_list li .blog_post .post_content h5 {
  font-size: 18px;
  line-height: 26px;
  color: #1b212f;
  font-family: "cera_proregular";
  margin-bottom: 4px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.widget_post .post_list li .blog_post .post_content h5:hover {
  color: #0082d7;
}

@media (max-width: 767px) {
  .widget_post .post_list li .blog_post .post_content h5 {
    font-size: 16px;
  }
}

.widget_post .post_list li .blog_post .post_content p {
  font-size: 16px;
  line-height: 30px;
  color: #494d59;
  font-family: "cera_proregular";
}

.widget_post_categories ul {
  margin-left: 15px;
}

@media only screen and (max-width: 991px) {
  .widget_post_categories ul {
    margin-left: 0;
  }
}

.widget_post_categories ul li a {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: #494d59;
  font-family: "cera_proregular";
  margin-bottom: 15px;
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.widget_post_categories ul li a:hover {
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}

.widget_post_tags .tag_list {
  margin-left: 20px;
}

@media only screen and (max-width: 991px) {
  .widget_post_tags .tag_list {
    margin-left: 0;
  }
}

.widget_post_tags .tag_list a {
  display: inline-block;
  font-size: 16px;
  color: #494d59;
  font-family: "cera_proregular";
  text-transform: capitalize;
  text-align: center;
  border: 1px solid #d1cfce;
  border-radius: 3px;
  margin: 0 20px 20px 0;
  padding: 4px 15px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.widget_post_tags .tag_list a:hover {
  background: #0082d7;
  color: #ffffff;
  border: 1px solid #0082d7;
}

.widget_post_tags .tag_list a:last-child {
  margin-right: 0;
}

.coming_soon_area .content_wrapper h2 {
  font-family: "cera_probold";
  font-size: 48px;
  color: #1b212f;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1600px) {
  .coming_soon_area .content_wrapper h2 {
    font-size: 38px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .coming_soon_area .content_wrapper h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}

.coming_soon_area .content_wrapper .countdown_comingsoon {
  margin-bottom: 30px;
}

@media only screen and (max-width: 1600px) {
  .coming_soon_area .content_wrapper .countdown_comingsoon {
    margin-bottom: 20px;
  }
}

.coming_soon_area .content_wrapper .countdown_comingsoon li {
  display: inline-block;
  margin-right: 60px;
}

@media only screen and (max-width: 1600px) {
  .coming_soon_area .content_wrapper .countdown_comingsoon li {
    margin-right: 40px;
  }
}

@media only screen and (max-width: 1200px) {
  .coming_soon_area .content_wrapper .countdown_comingsoon li {
    margin-right: 30px;
  }
}

@media (max-width: 767px) {
  .coming_soon_area .content_wrapper .countdown_comingsoon li {
    margin-right: 15px;
  }
}

@media (max-width: 480px) {
  .coming_soon_area .content_wrapper .countdown_comingsoon li {
    margin-right: 0;
  }
}

.coming_soon_area .content_wrapper .countdown_comingsoon li .label {
  font-family: "cera_probold";
  font-size: 24px;
  color: #494d59;
  text-transform: capitalize;
  margin-bottom: 15px;
}

@media only screen and (max-width: 1600px) {
  .coming_soon_area .content_wrapper .countdown_comingsoon li .label {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .coming_soon_area .content_wrapper .countdown_comingsoon li .label {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .coming_soon_area .content_wrapper .countdown_comingsoon li .label {
    font-size: 14px;
  }
}

.coming_soon_area .content_wrapper .countdown_comingsoon li .number {
  font-family: "cera_probold";
  font-size: 48px;
  color: #1b212f;
  display: inline-block;
  border: 1px solid #d1cfce;
  padding: 30px 28px;
  border-radius: 5px;
}

@media only screen and (max-width: 1600px) {
  .coming_soon_area .content_wrapper .countdown_comingsoon li .number {
    font-size: 38px;
  }
}

@media only screen and (max-width: 991px) {
  .coming_soon_area .content_wrapper .countdown_comingsoon li .number {
    font-size: 30px;
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .coming_soon_area .content_wrapper .countdown_comingsoon li .number {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .coming_soon_area .content_wrapper .countdown_comingsoon li .number {
    font-size: 16px;
    padding: 8px 15px;
  }
}

.coming_soon_area .content_wrapper h1 {
  font-family: "cera_problack";
  font-size: 60px;
  color: #1b212f;
}

@media only screen and (max-width: 1600px) {
  .coming_soon_area .content_wrapper h1 {
    font-size: 48px;
  }
}

@media only screen and (max-width: 1200px) {
  .coming_soon_area .content_wrapper h1 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .coming_soon_area .content_wrapper h1 {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .coming_soon_area .content_wrapper h1 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .coming_soon_area .content_wrapper h1 {
    font-size: 25px;
  }
}

.coming_soon_area .content_wrapper h1 span {
  font-family: "cera_promedium";
  color: #f7bd01;
  display: inline-block;
  margin-top: 6px;
}

.coming_soon_area .content_wrapper p {
  font-family: "cera_proregular";
  font-size: 18px;
  color: #494d59;
  max-width: 850px;
  width: 100%;
  margin: 0 auto 55px;
}

@media only screen and (max-width: 1200px) {
  .coming_soon_area .content_wrapper p {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .coming_soon_area .content_wrapper p {
    font-size: 16px;
    margin-bottom: 25px;
  }
}

.coming_soon_area .content_wrapper a {
  border-radius: 5px;
}

/* Margin Top */
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

.mt-205 {
  margin-top: 205px;
}

.mt-210 {
  margin-top: 210px;
}

.mt-215 {
  margin-top: 215px;
}

.mt-220 {
  margin-top: 220px;
}

.mt-225 {
  margin-top: 225px;
}

.mt-230 {
  margin-top: 230px;
}

.mt-235 {
  margin-top: 235px;
}

.mt-240 {
  margin-top: 240px;
}

.mt-245 {
  margin-top: 245px;
}

.mt-250 {
  margin-top: 250px;
}

.mt-255 {
  margin-top: 255px;
}

.mt-260 {
  margin-top: 260px;
}

.mt-265 {
  margin-top: 265px;
}

.mt-270 {
  margin-top: 270px;
}

.mt-275 {
  margin-top: 275px;
}

.mt-280 {
  margin-top: 280px;
}

.mt-285 {
  margin-top: 285px;
}

.mt-290 {
  margin-top: 290px;
}

.mt-295 {
  margin-top: 295px;
}

.mt-300 {
  margin-top: 300px;
}

.mt-305 {
  margin-top: 305px;
}

.mt-310 {
  margin-top: 310px;
}

.mt-315 {
  margin-top: 315px;
}

.mt-320 {
  margin-top: 320px;
}

.mt-325 {
  margin-top: 325px;
}

.mt--5 {
  margin-top: -5px;
}

.mt--10 {
  margin-top: -10px;
}

.mt--15 {
  margin-top: -15px;
}

.mt--20 {
  margin-top: -20px;
}

.mt--25 {
  margin-top: -25px;
}

.mt--30 {
  margin-top: -30px;
}

.mt--35 {
  margin-top: -35px;
}

.mt--40 {
  margin-top: -40px;
}

.mt--45 {
  margin-top: -45px;
}

.mt--50 {
  margin-top: -50px;
}

.mt--55 {
  margin-top: -55px;
}

.mt--60 {
  margin-top: -60px;
}

.mt--65 {
  margin-top: -65px;
}

.mt--70 {
  margin-top: -70px;
}

.mt--75 {
  margin-top: -75px;
}

.mt--80 {
  margin-top: -80px;
}

.mt--85 {
  margin-top: -85px;
}

.mt--90 {
  margin-top: -90px;
}

.mt--95 {
  margin-top: -95px;
}

.mt--100 {
  margin-top: -100px;
}

.mt--105 {
  margin-top: -105px;
}

.mt--110 {
  margin-top: -110px;
}

.mt--115 {
  margin-top: -115px;
}

.mt--120 {
  margin-top: -120px;
}

.mt--125 {
  margin-top: -125px;
}

.mt--130 {
  margin-top: -130px;
}

.mt--135 {
  margin-top: -135px;
}

.mt--140 {
  margin-top: -140px;
}

.mt--145 {
  margin-top: -145px;
}

.mt--150 {
  margin-top: -150px;
}

.mt--155 {
  margin-top: -155px;
}

.mt--160 {
  margin-top: -160px;
}

.mt--165 {
  margin-top: -165px;
}

.mt--170 {
  margin-top: -170px;
}

.mt--175 {
  margin-top: -175px;
}

.mt--180 {
  margin-top: -180px;
}

.mt--185 {
  margin-top: -185px;
}

.mt--190 {
  margin-top: -190px;
}

.mt--195 {
  margin-top: -195px;
}

.mt--200 {
  margin-top: -200px;
}

.mt--205 {
  margin-top: -205px;
}

.mt--210 {
  margin-top: -210px;
}

.mt--215 {
  margin-top: -215px;
}

.mt--220 {
  margin-top: -220px;
}

.mt--225 {
  margin-top: -225px;
}

.mt--230 {
  margin-top: -230px;
}

.mt--235 {
  margin-top: -235px;
}

.mt--240 {
  margin-top: -240px;
}

.mt--245 {
  margin-top: -245px;
}

.mt--250 {
  margin-top: -250px;
}

.mt--255 {
  margin-top: -255px;
}

.mt--260 {
  margin-top: -260px;
}

.mt--265 {
  margin-top: -265px;
}

.mt--270 {
  margin-top: -270px;
}

.mt--275 {
  margin-top: -275px;
}

.mt--280 {
  margin-top: -280px;
}

.mt--285 {
  margin-top: -285px;
}

.mt--290 {
  margin-top: -290px;
}

.mt--295 {
  margin-top: -295px;
}

.mt--300 {
  margin-top: -300px;
}

.mt--305 {
  margin-top: -305px;
}

.mt--310 {
  margin-top: -310px;
}

.mt--315 {
  margin-top: -315px;
}

.mt--320 {
  margin-top: -320px;
}

.mt--325 {
  margin-top: -325px;
}

/* Margin Bottom */
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-205 {
  margin-bottom: 205px;
}

.mb-210 {
  margin-bottom: 210px;
}

.mb-215 {
  margin-bottom: 215px;
}

.mb-220 {
  margin-bottom: 220px;
}

.mb-225 {
  margin-bottom: 225px;
}

.mb-230 {
  margin-bottom: 230px;
}

.mb-235 {
  margin-bottom: 235px;
}

.mb-240 {
  margin-bottom: 240px;
}

.mb-245 {
  margin-bottom: 245px;
}

.mb-250 {
  margin-bottom: 250px;
}

.mb-255 {
  margin-bottom: 255px;
}

.mb-260 {
  margin-bottom: 260px;
}

.mb-265 {
  margin-bottom: 265px;
}

.mb-270 {
  margin-bottom: 270px;
}

.mb-275 {
  margin-bottom: 275px;
}

.mb-280 {
  margin-bottom: 280px;
}

.mb-285 {
  margin-bottom: 285px;
}

.mb-290 {
  margin-bottom: 290px;
}

.mb-295 {
  margin-bottom: 295px;
}

.mb-300 {
  margin-bottom: 300px;
}

.mb-305 {
  margin-bottom: 305px;
}

.mb-310 {
  margin-bottom: 310px;
}

.mb-315 {
  margin-bottom: 315px;
}

.mb-320 {
  margin-bottom: 320px;
}

.mb-325 {
  margin-bottom: 325px;
}

.mb--5 {
  margin-bottom: -5px;
}

.mb--10 {
  margin-bottom: -10px;
}

.mb--15 {
  margin-bottom: -15px;
}

.mb--20 {
  margin-bottom: -20px;
}

.mb--25 {
  margin-bottom: -25px;
}

/* Margin Left */
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

.ml-205 {
  margin-left: 205px;
}

.ml-210 {
  margin-left: 210px;
}

.ml-215 {
  margin-left: 215px;
}

.ml-220 {
  margin-left: 220px;
}

.ml-225 {
  margin-left: 225px;
}

.ml-230 {
  margin-left: 230px;
}

.ml-235 {
  margin-left: 235px;
}

.ml-240 {
  margin-left: 240px;
}

.ml-245 {
  margin-left: 245px;
}

.ml-250 {
  margin-left: 250px;
}

.ml-255 {
  margin-left: 255px;
}

.ml-260 {
  margin-left: 260px;
}

.ml-265 {
  margin-left: 265px;
}

.ml-270 {
  margin-left: 270px;
}

.ml-275 {
  margin-left: 275px;
}

.ml-280 {
  margin-left: 280px;
}

.ml-285 {
  margin-left: 285px;
}

.ml-290 {
  margin-left: 290px;
}

.ml-295 {
  margin-left: 295px;
}

.ml-300 {
  margin-left: 300px;
}

.ml-305 {
  margin-left: 305px;
}

.ml-310 {
  margin-left: 310px;
}

.ml-315 {
  margin-left: 315px;
}

.ml-320 {
  margin-left: 320px;
}

.ml-325 {
  margin-left: 325px;
}

/* Margin Right */
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

.mr-205 {
  margin-right: 205px;
}

.mr-210 {
  margin-right: 210px;
}

.mr-215 {
  margin-right: 215px;
}

.mr-220 {
  margin-right: 220px;
}

.mr-225 {
  margin-right: 225px;
}

.mr-230 {
  margin-right: 230px;
}

.mr-235 {
  margin-right: 235px;
}

.mr-240 {
  margin-right: 240px;
}

.mr-245 {
  margin-right: 245px;
}

.mr-250 {
  margin-right: 250px;
}

.mr-255 {
  margin-right: 255px;
}

.mr-260 {
  margin-right: 260px;
}

.mr-265 {
  margin-right: 265px;
}

.mr-270 {
  margin-right: 270px;
}

.mr-275 {
  margin-right: 275px;
}

.mr-280 {
  margin-right: 280px;
}

.mr-285 {
  margin-right: 285px;
}

.mr-290 {
  margin-right: 290px;
}

.mr-295 {
  margin-right: 295px;
}

.mr-300 {
  margin-right: 300px;
}

.mr-305 {
  margin-right: 305px;
}

.mr-310 {
  margin-right: 310px;
}

.mr-315 {
  margin-right: 315px;
}

.mr-320 {
  margin-right: 320px;
}

.mr-325 {
  margin-right: 325px;
}

/* Padding Top */
.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-205 {
  padding-top: 205px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-215 {
  padding-top: 215px;
}

.pt-220 {
  padding-top: 220px;
}

.pt-225 {
  padding-top: 225px;
}

.pt-230 {
  padding-top: 230px;
}

.pt-235 {
  padding-top: 235px;
}

.pt-240 {
  padding-top: 240px;
}

.pt-245 {
  padding-top: 245px;
}

.pt-250 {
  padding-top: 250px;
}

.pt-255 {
  padding-top: 255px;
}

.pt-260 {
  padding-top: 260px;
}

.pt-265 {
  padding-top: 265px;
}

.pt-270 {
  padding-top: 270px;
}

.pt-275 {
  padding-top: 275px;
}

.pt-280 {
  padding-top: 280px;
}

.pt-285 {
  padding-top: 285px;
}

.pt-290 {
  padding-top: 290px;
}

.pt-295 {
  padding-top: 295px;
}

.pt-300 {
  padding-top: 300px;
}

.pt-305 {
  padding-top: 305px;
}

.pt-310 {
  padding-top: 310px;
}

.pt-315 {
  padding-top: 315px;
}

.pt-320 {
  padding-top: 320px;
}

.pt-325 {
  padding-top: 325px;
}

/* Padding Bottom */
.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}

.pb-230 {
  padding-bottom: 230px;
}

.pb-235 {
  padding-bottom: 235px;
}

.pb-240 {
  padding-bottom: 240px;
}

.pb-245 {
  padding-bottom: 245px;
}

.pb-250 {
  padding-bottom: 250px;
}

.pb-255 {
  padding-bottom: 255px;
}

.pb-260 {
  padding-bottom: 260px;
}

.pb-265 {
  padding-bottom: 265px;
}

.pb-270 {
  padding-bottom: 270px;
}

.pb-275 {
  padding-bottom: 275px;
}

.pb-280 {
  padding-bottom: 280px;
}

.pb-285 {
  padding-bottom: 285px;
}

.pb-290 {
  padding-bottom: 290px;
}

.pb-295 {
  padding-bottom: 295px;
}

.pb-300 {
  padding-bottom: 300px;
}

.pb-305 {
  padding-bottom: 305px;
}

.pb-310 {
  padding-bottom: 310px;
}

.pb-315 {
  padding-bottom: 315px;
}

.pb-320 {
  padding-bottom: 320px;
}

.pb-325 {
  padding-bottom: 325px;
}

/* Padding Left */
.pl-5 {
  padding-left: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

.pl-200 {
  padding-left: 200px;
}

.pl-205 {
  padding-left: 205px;
}

.pl-205 {
  padding-left: 205px;
}

.pl-210 {
  padding-left: 210px;
}

.pl-210 {
  padding-left: 210px;
}

.pl-215 {
  padding-left: 215px;
}

.pl-215 {
  padding-left: 215px;
}

.pl-220 {
  padding-left: 220px;
}

.pl-220 {
  padding-left: 220px;
}

.pl-225 {
  padding-left: 225px;
}

.pl-225 {
  padding-left: 225px;
}

.pl-230 {
  padding-left: 230px;
}

.pl-230 {
  padding-left: 230px;
}

.pl-235 {
  padding-left: 235px;
}

.pl-235 {
  padding-left: 235px;
}

.pl-240 {
  padding-left: 240px;
}

.pl-240 {
  padding-left: 240px;
}

.pl-245 {
  padding-left: 245px;
}

.pl-245 {
  padding-left: 245px;
}

.pl-250 {
  padding-left: 250px;
}

.pl-250 {
  padding-left: 250px;
}

.pl-255 {
  padding-left: 255px;
}

.pl-255 {
  padding-left: 255px;
}

.pl-260 {
  padding-left: 260px;
}

.pl-260 {
  padding-left: 260px;
}

.pl-265 {
  padding-left: 265px;
}

.pl-265 {
  padding-left: 265px;
}

.pl-270 {
  padding-left: 270px;
}

.pl-270 {
  padding-left: 270px;
}

.pl-275 {
  padding-left: 275px;
}

.pl-275 {
  padding-left: 275px;
}

.pl-280 {
  padding-left: 280px;
}

.pl-280 {
  padding-left: 280px;
}

.pl-285 {
  padding-left: 285px;
}

.pl-285 {
  padding-left: 285px;
}

.pl-290 {
  padding-left: 290px;
}

.pl-290 {
  padding-left: 290px;
}

.pl-295 {
  padding-left: 295px;
}

.pl-295 {
  padding-left: 295px;
}

.pl-300 {
  padding-left: 300px;
}

.pl-300 {
  padding-left: 300px;
}

.pl-305 {
  padding-left: 305px;
}

.pl-305 {
  padding-left: 305px;
}

.pl-310 {
  padding-left: 310px;
}

.pl-310 {
  padding-left: 310px;
}

.pl-315 {
  padding-left: 315px;
}

.pl-315 {
  padding-left: 315px;
}

.pl-320 {
  padding-left: 320px;
}

.pl-320 {
  padding-left: 320px;
}

.pl-325 {
  padding-left: 325px;
}

.pl-325 {
  padding-left: 325px;
}

/* Padding Right */
.pr-5 {
  padding-right: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

.pr-200 {
  padding-right: 200px;
}

.pr-205 {
  padding-right: 205px;
}

.pr-205 {
  padding-right: 205px;
}

.pr-210 {
  padding-right: 210px;
}

.pr-210 {
  padding-right: 210px;
}

.pr-215 {
  padding-right: 215px;
}

.pr-215 {
  padding-right: 215px;
}

.pr-220 {
  padding-right: 220px;
}

.pr-220 {
  padding-right: 220px;
}

.pr-225 {
  padding-right: 225px;
}

.pr-225 {
  padding-right: 225px;
}

.pr-230 {
  padding-right: 230px;
}

.pr-230 {
  padding-right: 230px;
}

.pr-235 {
  padding-right: 235px;
}

.pr-235 {
  padding-right: 235px;
}

.pr-240 {
  padding-right: 240px;
}

.pr-240 {
  padding-right: 240px;
}

.pr-245 {
  padding-right: 245px;
}

.pr-245 {
  padding-right: 245px;
}

.pr-250 {
  padding-right: 250px;
}

.pr-250 {
  padding-right: 250px;
}

.pr-255 {
  padding-right: 255px;
}

.pr-255 {
  padding-right: 255px;
}

.pr-260 {
  padding-right: 260px;
}

.pr-260 {
  padding-right: 260px;
}

.pr-265 {
  padding-right: 265px;
}

.pr-265 {
  padding-right: 265px;
}

.pr-270 {
  padding-right: 270px;
}

.pr-270 {
  padding-right: 270px;
}

.pr-275 {
  padding-right: 275px;
}

.pr-275 {
  padding-right: 275px;
}

.pr-280 {
  padding-right: 280px;
}

.pr-280 {
  padding-right: 280px;
}

.pr-285 {
  padding-right: 285px;
}

.pr-285 {
  padding-right: 285px;
}

.pr-290 {
  padding-right: 290px;
}

.pr-290 {
  padding-right: 290px;
}

.pr-295 {
  padding-right: 295px;
}

.pr-295 {
  padding-right: 295px;
}

.pr-300 {
  padding-right: 300px;
}

.pr-300 {
  padding-right: 300px;
}

.pr-305 {
  padding-right: 305px;
}

.pr-305 {
  padding-right: 305px;
}

.pr-310 {
  padding-right: 310px;
}

.pr-310 {
  padding-right: 310px;
}

.pr-315 {
  padding-right: 315px;
}

.pr-315 {
  padding-right: 315px;
}

.pr-320 {
  padding-right: 320px;
}

.pr-320 {
  padding-right: 320px;
}

.pr-325 {
  padding-right: 325px;
}

.pr-325 {
  padding-right: 325px;
}

/* Margin + Padding LG */
@media (max-width: 1200px) {
  .mt-lg-5 {
    margin-top: 5px;
  }

  .mt-lg-10 {
    margin-top: 10px;
  }

  .mt-lg-15 {
    margin-top: 15px;
  }

  .mt-lg-20 {
    margin-top: 20px;
  }

  .mt-lg-25 {
    margin-top: 25px;
  }

  .mt-lg-30 {
    margin-top: 30px;
  }

  .mt-lg-35 {
    margin-top: 35px;
  }

  .mt-lg-40 {
    margin-top: 40px;
  }

  .mt-lg-45 {
    margin-top: 45px;
  }

  .mt-lg-50 {
    margin-top: 50px;
  }

  .mt-lg-55 {
    margin-top: 55px;
  }

  .mt-lg-60 {
    margin-top: 60px;
  }

  .mt-lg-65 {
    margin-top: 65px;
  }

  .mt-lg-70 {
    margin-top: 70px;
  }

  .mt-lg-75 {
    margin-top: 75px;
  }

  .mt-lg-80 {
    margin-top: 80px;
  }

  .mt-lg-85 {
    margin-top: 85px;
  }

  .mt-lg-90 {
    margin-top: 90px;
  }

  .mt-lg-95 {
    margin-top: 95px;
  }

  .mt-lg-100 {
    margin-top: 100px;
  }

  .mt-lg-105 {
    margin-top: 105px;
  }

  .mt-lg-110 {
    margin-top: 110px;
  }

  .mt-lg-115 {
    margin-top: 115px;
  }

  .mt-lg-120 {
    margin-top: 120px;
  }

  .mt-lg-125 {
    margin-top: 125px;
  }

  .mt-lg-130 {
    margin-top: 130px;
  }

  .mt-lg-135 {
    margin-top: 135px;
  }

  .mt-lg-140 {
    margin-top: 140px;
  }

  .mt-lg-145 {
    margin-top: 145px;
  }

  .mt-lg-150 {
    margin-top: 150px;
  }

  .mt-lg-155 {
    margin-top: 155px;
  }

  .mt-lg-160 {
    margin-top: 160px;
  }

  .mt-lg-165 {
    margin-top: 165px;
  }

  .mt-lg-170 {
    margin-top: 170px;
  }

  .mt-lg-175 {
    margin-top: 175px;
  }

  .mt-lg-180 {
    margin-top: 180px;
  }

  .mt-lg-185 {
    margin-top: 185px;
  }

  .mt-lg-190 {
    margin-top: 190px;
  }

  .mt-lg-195 {
    margin-top: 195px;
  }

  .mt-lg-200 {
    margin-top: 200px;
  }

  .mt-lg-205 {
    margin-top: 205px;
  }

  .mt-lg-210 {
    margin-top: 210px;
  }

  .mt-lg-215 {
    margin-top: 215px;
  }

  .mt-lg-220 {
    margin-top: 220px;
  }

  .mt-lg-225 {
    margin-top: 225px;
  }

  .mt-lg-230 {
    margin-top: 230px;
  }

  .mt-lg-235 {
    margin-top: 235px;
  }

  .mt-lg-240 {
    margin-top: 240px;
  }

  .mt-lg-245 {
    margin-top: 245px;
  }

  .mt-lg-250 {
    margin-top: 250px;
  }

  .mt-lg-255 {
    margin-top: 255px;
  }

  .mt-lg-260 {
    margin-top: 260px;
  }

  .mt-lg-265 {
    margin-top: 265px;
  }

  .mt-lg-270 {
    margin-top: 270px;
  }

  .mt-lg-275 {
    margin-top: 275px;
  }

  .mt-lg-280 {
    margin-top: 280px;
  }

  .mt-lg-285 {
    margin-top: 285px;
  }

  .mt-lg-290 {
    margin-top: 290px;
  }

  .mt-lg-295 {
    margin-top: 295px;
  }

  .mt-lg-300 {
    margin-top: 300px;
  }

  .mt-lg-305 {
    margin-top: 305px;
  }

  .mt-lg-310 {
    margin-top: 310px;
  }

  .mt-lg-315 {
    margin-top: 315px;
  }

  .mt-lg-320 {
    margin-top: 320px;
  }

  .mt-lg-325 {
    margin-top: 325px;
  }

  .mb-lg-5 {
    margin-bottom: 5px;
  }

  .mb-lg-10 {
    margin-bottom: 10px;
  }

  .mb-lg-15 {
    margin-bottom: 15px;
  }

  .mb-lg-20 {
    margin-bottom: 20px;
  }

  .mb-lg-25 {
    margin-bottom: 25px;
  }

  .mb-lg-30 {
    margin-bottom: 30px;
  }

  .mb-lg-35 {
    margin-bottom: 35px;
  }

  .mb-lg-40 {
    margin-bottom: 40px;
  }

  .mb-lg-45 {
    margin-bottom: 45px;
  }

  .mb-lg-50 {
    margin-bottom: 50px;
  }

  .mb-lg-55 {
    margin-bottom: 55px;
  }

  .mb-lg-60 {
    margin-bottom: 60px;
  }

  .mb-lg-65 {
    margin-bottom: 65px;
  }

  .mb-lg-70 {
    margin-bottom: 70px;
  }

  .mb-lg-75 {
    margin-bottom: 75px;
  }

  .mb-lg-80 {
    margin-bottom: 80px;
  }

  .mb-lg-85 {
    margin-bottom: 85px;
  }

  .mb-lg-90 {
    margin-bottom: 90px;
  }

  .mb-lg-95 {
    margin-bottom: 95px;
  }

  .mb-lg-100 {
    margin-bottom: 100px;
  }

  .mb-lg-105 {
    margin-bottom: 105px;
  }

  .mb-lg-110 {
    margin-bottom: 110px;
  }

  .mb-lg-115 {
    margin-bottom: 115px;
  }

  .mb-lg-120 {
    margin-bottom: 120px;
  }

  .mb-lg-125 {
    margin-bottom: 125px;
  }

  .mb-lg-130 {
    margin-bottom: 130px;
  }

  .mb-lg-135 {
    margin-bottom: 135px;
  }

  .mb-lg-140 {
    margin-bottom: 140px;
  }

  .mb-lg-145 {
    margin-bottom: 145px;
  }

  .mb-lg-150 {
    margin-bottom: 150px;
  }

  .mb-lg-155 {
    margin-bottom: 155px;
  }

  .mb-lg-160 {
    margin-bottom: 160px;
  }

  .mb-lg-165 {
    margin-bottom: 165px;
  }

  .mb-lg-170 {
    margin-bottom: 170px;
  }

  .mb-lg-175 {
    margin-bottom: 175px;
  }

  .mb-lg-180 {
    margin-bottom: 180px;
  }

  .mb-lg-185 {
    margin-bottom: 185px;
  }

  .mb-lg-190 {
    margin-bottom: 190px;
  }

  .mb-lg-195 {
    margin-bottom: 195px;
  }

  .mb-lg-200 {
    margin-bottom: 200px;
  }

  .mb-lg-205 {
    margin-bottom: 205px;
  }

  .mb-lg-210 {
    margin-bottom: 210px;
  }

  .mb-lg-215 {
    margin-bottom: 215px;
  }

  .mb-lg-220 {
    margin-bottom: 220px;
  }

  .mb-lg-225 {
    margin-bottom: 225px;
  }

  .mb-lg-230 {
    margin-bottom: 230px;
  }

  .mb-lg-235 {
    margin-bottom: 235px;
  }

  .mb-lg-240 {
    margin-bottom: 240px;
  }

  .mb-lg-245 {
    margin-bottom: 245px;
  }

  .mb-lg-250 {
    margin-bottom: 250px;
  }

  .mb-lg-255 {
    margin-bottom: 255px;
  }

  .mb-lg-260 {
    margin-bottom: 260px;
  }

  .mb-lg-265 {
    margin-bottom: 265px;
  }

  .mb-lg-270 {
    margin-bottom: 270px;
  }

  .mb-lg-275 {
    margin-bottom: 275px;
  }

  .mb-lg-280 {
    margin-bottom: 280px;
  }

  .mb-lg-285 {
    margin-bottom: 285px;
  }

  .mb-lg-290 {
    margin-bottom: 290px;
  }

  .mb-lg-295 {
    margin-bottom: 295px;
  }

  .mb-lg-300 {
    margin-bottom: 300px;
  }

  .mb-lg-305 {
    margin-bottom: 305px;
  }

  .mb-lg-310 {
    margin-bottom: 310px;
  }

  .mb-lg-315 {
    margin-bottom: 315px;
  }

  .mb-lg-320 {
    margin-bottom: 320px;
  }

  .mb-lg-325 {
    margin-bottom: 325px;
  }

  .ml-lg-5 {
    margin-left: 5px;
  }

  .ml-lg-10 {
    margin-left: 10px;
  }

  .ml-lg-15 {
    margin-left: 15px;
  }

  .ml-lg-20 {
    margin-left: 20px;
  }

  .ml-lg-25 {
    margin-left: 25px;
  }

  .ml-lg-30 {
    margin-left: 30px;
  }

  .ml-lg-35 {
    margin-left: 35px;
  }

  .ml-lg-40 {
    margin-left: 40px;
  }

  .ml-lg-45 {
    margin-left: 45px;
  }

  .ml-lg-50 {
    margin-left: 50px;
  }

  .ml-lg-55 {
    margin-left: 55px;
  }

  .ml-lg-60 {
    margin-left: 60px;
  }

  .ml-lg-65 {
    margin-left: 65px;
  }

  .ml-lg-70 {
    margin-left: 70px;
  }

  .ml-lg-75 {
    margin-left: 75px;
  }

  .ml-lg-80 {
    margin-left: 80px;
  }

  .ml-lg-85 {
    margin-left: 85px;
  }

  .ml-lg-90 {
    margin-left: 90px;
  }

  .ml-lg-95 {
    margin-left: 95px;
  }

  .ml-lg-100 {
    margin-left: 100px;
  }

  .ml-lg-105 {
    margin-left: 105px;
  }

  .ml-lg-110 {
    margin-left: 110px;
  }

  .ml-lg-115 {
    margin-left: 115px;
  }

  .ml-lg-120 {
    margin-left: 120px;
  }

  .ml-lg-125 {
    margin-left: 125px;
  }

  .ml-lg-130 {
    margin-left: 130px;
  }

  .ml-lg-135 {
    margin-left: 135px;
  }

  .ml-lg-140 {
    margin-left: 140px;
  }

  .ml-lg-145 {
    margin-left: 145px;
  }

  .ml-lg-150 {
    margin-left: 150px;
  }

  .ml-lg-155 {
    margin-left: 155px;
  }

  .ml-lg-160 {
    margin-left: 160px;
  }

  .ml-lg-165 {
    margin-left: 165px;
  }

  .ml-lg-170 {
    margin-left: 170px;
  }

  .ml-lg-175 {
    margin-left: 175px;
  }

  .ml-lg-180 {
    margin-left: 180px;
  }

  .ml-lg-185 {
    margin-left: 185px;
  }

  .ml-lg-190 {
    margin-left: 190px;
  }

  .ml-lg-195 {
    margin-left: 195px;
  }

  .ml-lg-200 {
    margin-left: 200px;
  }

  .mr-lg-5 {
    margin-right: 5px;
  }

  .mr-lg-10 {
    margin-right: 10px;
  }

  .mr-lg-15 {
    margin-right: 15px;
  }

  .mr-lg-20 {
    margin-right: 20px;
  }

  .mr-lg-25 {
    margin-right: 25px;
  }

  .mr-lg-30 {
    margin-right: 30px;
  }

  .mr-lg-35 {
    margin-right: 35px;
  }

  .mr-lg-40 {
    margin-right: 40px;
  }

  .mr-lg-45 {
    margin-right: 45px;
  }

  .mr-lg-50 {
    margin-right: 50px;
  }

  .mr-lg-55 {
    margin-right: 55px;
  }

  .mr-lg-60 {
    margin-right: 60px;
  }

  .mr-lg-65 {
    margin-right: 65px;
  }

  .mr-lg-70 {
    margin-right: 70px;
  }

  .mr-lg-75 {
    margin-right: 75px;
  }

  .mr-lg-80 {
    margin-right: 80px;
  }

  .mr-lg-85 {
    margin-right: 85px;
  }

  .mr-lg-90 {
    margin-right: 90px;
  }

  .mr-lg-95 {
    margin-right: 95px;
  }

  .mr-lg-100 {
    margin-right: 100px;
  }

  .mr-lg-105 {
    margin-right: 105px;
  }

  .mr-lg-110 {
    margin-right: 110px;
  }

  .mr-lg-115 {
    margin-right: 115px;
  }

  .mr-lg-120 {
    margin-right: 120px;
  }

  .mr-lg-125 {
    margin-right: 125px;
  }

  .mr-lg-130 {
    margin-right: 130px;
  }

  .mr-lg-135 {
    margin-right: 135px;
  }

  .mr-lg-140 {
    margin-right: 140px;
  }

  .mr-lg-145 {
    margin-right: 145px;
  }

  .mr-lg-150 {
    margin-right: 150px;
  }

  .mr-lg-155 {
    margin-right: 155px;
  }

  .mr-lg-160 {
    margin-right: 160px;
  }

  .mr-lg-165 {
    margin-right: 165px;
  }

  .mr-lg-170 {
    margin-right: 170px;
  }

  .mr-lg-175 {
    margin-right: 175px;
  }

  .mr-lg-180 {
    margin-right: 180px;
  }

  .mr-lg-185 {
    margin-right: 185px;
  }

  .mr-lg-190 {
    margin-right: 190px;
  }

  .mr-lg-195 {
    margin-right: 195px;
  }

  .mr-lg-200 {
    margin-right: 200px;
  }

  .mt-lg-0 {
    margin-top: 0;
  }

  .mb-lg-0 {
    margin-bottom: 0;
  }

  .ml-lg-0 {
    margin-left: 0;
  }

  .mr-lg-0 {
    margin-right: 0;
  }

  .pt-lg-5 {
    padding-top: 5px;
  }

  .pt-lg-10 {
    padding-top: 10px;
  }

  .pt-lg-15 {
    padding-top: 15px;
  }

  .pt-lg-20 {
    padding-top: 20px;
  }

  .pt-lg-25 {
    padding-top: 25px;
  }

  .pt-lg-30 {
    padding-top: 30px;
  }

  .pt-lg-35 {
    padding-top: 35px;
  }

  .pt-lg-40 {
    padding-top: 40px;
  }

  .pt-lg-45 {
    padding-top: 45px;
  }

  .pt-lg-50 {
    padding-top: 50px;
  }

  .pt-lg-55 {
    padding-top: 55px;
  }

  .pt-lg-60 {
    padding-top: 60px;
  }

  .pt-lg-65 {
    padding-top: 65px;
  }

  .pt-lg-70 {
    padding-top: 70px;
  }

  .pt-lg-75 {
    padding-top: 75px;
  }

  .pt-lg-80 {
    padding-top: 80px;
  }

  .pt-lg-85 {
    padding-top: 85px;
  }

  .pt-lg-90 {
    padding-top: 90px;
  }

  .pt-lg-95 {
    padding-top: 95px;
  }

  .pt-lg-100 {
    padding-top: 100px;
  }

  .pt-lg-105 {
    padding-top: 105px;
  }

  .pt-lg-110 {
    padding-top: 110px;
  }

  .pt-lg-115 {
    padding-top: 115px;
  }

  .pt-lg-120 {
    padding-top: 120px;
  }

  .pt-lg-125 {
    padding-top: 125px;
  }

  .pt-lg-130 {
    padding-top: 130px;
  }

  .pt-lg-135 {
    padding-top: 135px;
  }

  .pt-lg-140 {
    padding-top: 140px;
  }

  .pt-lg-145 {
    padding-top: 145px;
  }

  .pt-lg-150 {
    padding-top: 150px;
  }

  .pt-lg-155 {
    padding-top: 155px;
  }

  .pt-lg-160 {
    padding-top: 160px;
  }

  .pt-lg-165 {
    padding-top: 165px;
  }

  .pt-lg-170 {
    padding-top: 170px;
  }

  .pt-lg-175 {
    padding-top: 175px;
  }

  .pt-lg-180 {
    padding-top: 180px;
  }

  .pt-lg-185 {
    padding-top: 185px;
  }

  .pt-lg-190 {
    padding-top: 190px;
  }

  .pt-lg-195 {
    padding-top: 195px;
  }

  .pt-lg-200 {
    padding-top: 200px;
  }

  .pt-lg-205 {
    padding-top: 205px;
  }

  .pt-lg-210 {
    padding-top: 210px;
  }

  .pt-lg-215 {
    padding-top: 215px;
  }

  .pt-lg-220 {
    padding-top: 220px;
  }

  .pt-lg-225 {
    padding-top: 225px;
  }

  .pt-lg-230 {
    padding-top: 230px;
  }

  .pt-lg-235 {
    padding-top: 235px;
  }

  .pt-lg-240 {
    padding-top: 240px;
  }

  .pt-lg-245 {
    padding-top: 245px;
  }

  .pt-lg-250 {
    padding-top: 250px;
  }

  .pt-lg-255 {
    padding-top: 255px;
  }

  .pt-lg-260 {
    padding-top: 260px;
  }

  .pt-lg-265 {
    padding-top: 265px;
  }

  .pt-lg-270 {
    padding-top: 270px;
  }

  .pt-lg-275 {
    padding-top: 275px;
  }

  .pt-lg-280 {
    padding-top: 280px;
  }

  .pt-lg-285 {
    padding-top: 285px;
  }

  .pt-lg-290 {
    padding-top: 290px;
  }

  .pt-lg-295 {
    padding-top: 295px;
  }

  .pt-lg-300 {
    padding-top: 300px;
  }

  .pt-lg-305 {
    padding-top: 305px;
  }

  .pt-lg-310 {
    padding-top: 310px;
  }

  .pt-lg-315 {
    padding-top: 315px;
  }

  .pt-lg-320 {
    padding-top: 320px;
  }

  .pt-lg-325 {
    padding-top: 325px;
  }

  .pb-lg-5 {
    padding-bottom: 5px;
  }

  .pb-lg-10 {
    padding-bottom: 10px;
  }

  .pb-lg-15 {
    padding-bottom: 15px;
  }

  .pb-lg-20 {
    padding-bottom: 20px;
  }

  .pb-lg-25 {
    padding-bottom: 25px;
  }

  .pb-lg-30 {
    padding-bottom: 30px;
  }

  .pb-lg-35 {
    padding-bottom: 35px;
  }

  .pb-lg-40 {
    padding-bottom: 40px;
  }

  .pb-lg-45 {
    padding-bottom: 45px;
  }

  .pb-lg-50 {
    padding-bottom: 50px;
  }

  .pb-lg-55 {
    padding-bottom: 55px;
  }

  .pb-lg-60 {
    padding-bottom: 60px;
  }

  .pb-lg-65 {
    padding-bottom: 65px;
  }

  .pb-lg-70 {
    padding-bottom: 70px;
  }

  .pb-lg-75 {
    padding-bottom: 75px;
  }

  .pb-lg-80 {
    padding-bottom: 80px;
  }

  .pb-lg-85 {
    padding-bottom: 85px;
  }

  .pb-lg-90 {
    padding-bottom: 90px;
  }

  .pb-lg-95 {
    padding-bottom: 95px;
  }

  .pb-lg-100 {
    padding-bottom: 100px;
  }

  .pb-lg-105 {
    padding-bottom: 105px;
  }

  .pb-lg-110 {
    padding-bottom: 110px;
  }

  .pb-lg-115 {
    padding-bottom: 115px;
  }

  .pb-lg-120 {
    padding-bottom: 120px;
  }

  .pb-lg-125 {
    padding-bottom: 125px;
  }

  .pb-lg-130 {
    padding-bottom: 130px;
  }

  .pb-lg-135 {
    padding-bottom: 135px;
  }

  .pb-lg-140 {
    padding-bottom: 140px;
  }

  .pb-lg-145 {
    padding-bottom: 145px;
  }

  .pb-lg-150 {
    padding-bottom: 150px;
  }

  .pb-lg-155 {
    padding-bottom: 155px;
  }

  .pb-lg-160 {
    padding-bottom: 160px;
  }

  .pb-lg-165 {
    padding-bottom: 165px;
  }

  .pb-lg-170 {
    padding-bottom: 170px;
  }

  .pb-lg-175 {
    padding-bottom: 175px;
  }

  .pb-lg-180 {
    padding-bottom: 180px;
  }

  .pb-lg-185 {
    padding-bottom: 185px;
  }

  .pb-lg-190 {
    padding-bottom: 190px;
  }

  .pb-lg-195 {
    padding-bottom: 195px;
  }

  .pb-lg-200 {
    padding-bottom: 200px;
  }

  .pb-lg-205 {
    padding-bottom: 205px;
  }

  .pb-lg-210 {
    padding-bottom: 210px;
  }

  .pb-lg-215 {
    padding-bottom: 215px;
  }

  .pb-lg-220 {
    padding-bottom: 220px;
  }

  .pb-lg-225 {
    padding-bottom: 225px;
  }

  .pb-lg-230 {
    padding-bottom: 230px;
  }

  .pb-lg-235 {
    padding-bottom: 235px;
  }

  .pb-lg-240 {
    padding-bottom: 240px;
  }

  .pb-lg-245 {
    padding-bottom: 245px;
  }

  .pb-lg-250 {
    padding-bottom: 250px;
  }

  .pb-lg-255 {
    padding-bottom: 255px;
  }

  .pb-lg-260 {
    padding-bottom: 260px;
  }

  .pb-lg-265 {
    padding-bottom: 265px;
  }

  .pb-lg-270 {
    padding-bottom: 270px;
  }

  .pb-lg-275 {
    padding-bottom: 275px;
  }

  .pb-lg-280 {
    padding-bottom: 280px;
  }

  .pb-lg-285 {
    padding-bottom: 285px;
  }

  .pb-lg-290 {
    padding-bottom: 290px;
  }

  .pb-lg-295 {
    padding-bottom: 295px;
  }

  .pb-lg-300 {
    padding-bottom: 300px;
  }

  .pb-lg-305 {
    padding-bottom: 305px;
  }

  .pb-lg-310 {
    padding-bottom: 310px;
  }

  .pb-lg-315 {
    padding-bottom: 315px;
  }

  .pb-lg-320 {
    padding-bottom: 320px;
  }

  .pb-lg-325 {
    padding-bottom: 325px;
  }

  .pl-lg-5 {
    padding-left: 5px;
  }

  .pl-lg-10 {
    padding-left: 10px;
  }

  .pl-lg-15 {
    padding-left: 15px;
  }

  .pl-lg-20 {
    padding-left: 20px;
  }

  .pl-lg-25 {
    padding-left: 25px;
  }

  .pl-lg-30 {
    padding-left: 30px;
  }

  .pl-lg-35 {
    padding-left: 35px;
  }

  .pl-lg-40 {
    padding-left: 40px;
  }

  .pl-lg-45 {
    padding-left: 45px;
  }

  .pl-lg-50 {
    padding-left: 50px;
  }

  .pl-lg-55 {
    padding-left: 55px;
  }

  .pl-lg-60 {
    padding-left: 60px;
  }

  .pl-lg-65 {
    padding-left: 65px;
  }

  .pl-lg-70 {
    padding-left: 70px;
  }

  .pl-lg-75 {
    padding-left: 75px;
  }

  .pl-lg-80 {
    padding-left: 80px;
  }

  .pl-lg-85 {
    padding-left: 85px;
  }

  .pl-lg-90 {
    padding-left: 90px;
  }

  .pl-lg-95 {
    padding-left: 95px;
  }

  .pl-lg-100 {
    padding-left: 100px;
  }

  .pl-lg-105 {
    padding-left: 105px;
  }

  .pl-lg-110 {
    padding-left: 110px;
  }

  .pl-lg-115 {
    padding-left: 115px;
  }

  .pl-lg-120 {
    padding-left: 120px;
  }

  .pl-lg-125 {
    padding-left: 125px;
  }

  .pl-lg-130 {
    padding-left: 130px;
  }

  .pl-lg-135 {
    padding-left: 135px;
  }

  .pl-lg-140 {
    padding-left: 140px;
  }

  .pl-lg-145 {
    padding-left: 145px;
  }

  .pl-lg-150 {
    padding-left: 150px;
  }

  .pl-lg-155 {
    padding-left: 155px;
  }

  .pl-lg-160 {
    padding-left: 160px;
  }

  .pl-lg-165 {
    padding-left: 165px;
  }

  .pl-lg-170 {
    padding-left: 170px;
  }

  .pl-lg-175 {
    padding-left: 175px;
  }

  .pl-lg-180 {
    padding-left: 180px;
  }

  .pl-lg-185 {
    padding-left: 185px;
  }

  .pl-lg-190 {
    padding-left: 190px;
  }

  .pl-lg-195 {
    padding-left: 195px;
  }

  .pl-lg-200 {
    padding-left: 200px;
  }

  .pr-lg-5 {
    padding-right: 5px;
  }

  .pr-lg-10 {
    padding-right: 10px;
  }

  .pr-lg-15 {
    padding-right: 15px;
  }

  .pr-lg-20 {
    padding-right: 20px;
  }

  .pr-lg-25 {
    padding-right: 25px;
  }

  .pr-lg-30 {
    padding-right: 30px;
  }

  .pr-lg-35 {
    padding-right: 35px;
  }

  .pr-lg-40 {
    padding-right: 40px;
  }

  .pr-lg-45 {
    padding-right: 45px;
  }

  .pr-lg-50 {
    padding-right: 50px;
  }

  .pr-lg-55 {
    padding-right: 55px;
  }

  .pr-lg-60 {
    padding-right: 60px;
  }

  .pr-lg-65 {
    padding-right: 65px;
  }

  .pr-lg-70 {
    padding-right: 70px;
  }

  .pr-lg-75 {
    padding-right: 75px;
  }

  .pr-lg-80 {
    padding-right: 80px;
  }

  .pr-lg-85 {
    padding-right: 85px;
  }

  .pr-lg-90 {
    padding-right: 90px;
  }

  .pr-lg-95 {
    padding-right: 95px;
  }

  .pr-lg-100 {
    padding-right: 100px;
  }

  .pr-lg-105 {
    padding-right: 105px;
  }

  .pr-lg-110 {
    padding-right: 110px;
  }

  .pr-lg-115 {
    padding-right: 115px;
  }

  .pr-lg-120 {
    padding-right: 120px;
  }

  .pr-lg-125 {
    padding-right: 125px;
  }

  .pr-lg-130 {
    padding-right: 130px;
  }

  .pr-lg-135 {
    padding-right: 135px;
  }

  .pr-lg-140 {
    padding-right: 140px;
  }

  .pr-lg-145 {
    padding-right: 145px;
  }

  .pr-lg-150 {
    padding-right: 150px;
  }

  .pr-lg-155 {
    padding-right: 155px;
  }

  .pr-lg-160 {
    padding-right: 160px;
  }

  .pr-lg-165 {
    padding-right: 165px;
  }

  .pr-lg-170 {
    padding-right: 170px;
  }

  .pr-lg-175 {
    padding-right: 175px;
  }

  .pr-lg-180 {
    padding-right: 180px;
  }

  .pr-lg-185 {
    padding-right: 185px;
  }

  .pr-lg-190 {
    padding-right: 190px;
  }

  .pr-lg-195 {
    padding-right: 195px;
  }

  .pr-lg-200 {
    padding-right: 200px;
  }

  .pt-lg-0 {
    padding-top: 0;
  }

  .pb-lg-0 {
    padding-bottom: 0;
  }

  .pl-lg-0 {
    padding-left: 0;
  }

  .pr-lg-0 {
    padding-right: 0;
  }
}

/* Margin + Padding MD */
@media (max-width: 991.98px) {
  .mt-md-5 {
    margin-top: 5px;
  }

  .mt-md-10 {
    margin-top: 10px;
  }

  .mt-md-15 {
    margin-top: 15px;
  }

  .mt-md-20 {
    margin-top: 20px;
  }

  .mt-md-25 {
    margin-top: 25px;
  }

  .mt-md-30 {
    margin-top: 30px;
  }

  .mt-md-35 {
    margin-top: 35px;
  }

  .mt-md-40 {
    margin-top: 40px;
  }

  .mt-md-45 {
    margin-top: 45px;
  }

  .mt-md-50 {
    margin-top: 50px;
  }

  .mt-md-55 {
    margin-top: 55px;
  }

  .mt-md-60 {
    margin-top: 60px;
  }

  .mt-md-65 {
    margin-top: 65px;
  }

  .mt-md-70 {
    margin-top: 70px;
  }

  .mt-md-75 {
    margin-top: 75px;
  }

  .mt-md-80 {
    margin-top: 80px;
  }

  .mt-md-85 {
    margin-top: 85px;
  }

  .mt-md-90 {
    margin-top: 90px;
  }

  .mt-md-95 {
    margin-top: 95px;
  }

  .mt-md-100 {
    margin-top: 100px;
  }

  .mt-md-105 {
    margin-top: 105px;
  }

  .mt-md-110 {
    margin-top: 110px;
  }

  .mt-md-115 {
    margin-top: 115px;
  }

  .mt-md-120 {
    margin-top: 120px;
  }

  .mt-md-125 {
    margin-top: 125px;
  }

  .mt-md-130 {
    margin-top: 130px;
  }

  .mt-md-135 {
    margin-top: 135px;
  }

  .mt-md-140 {
    margin-top: 140px;
  }

  .mt-md-145 {
    margin-top: 145px;
  }

  .mt-md-150 {
    margin-top: 150px;
  }

  .mt-md-155 {
    margin-top: 155px;
  }

  .mt-md-160 {
    margin-top: 160px;
  }

  .mt-md-165 {
    margin-top: 165px;
  }

  .mt-md-170 {
    margin-top: 170px;
  }

  .mt-md-175 {
    margin-top: 175px;
  }

  .mt-md-180 {
    margin-top: 180px;
  }

  .mt-md-185 {
    margin-top: 185px;
  }

  .mt-md-190 {
    margin-top: 190px;
  }

  .mt-md-195 {
    margin-top: 195px;
  }

  .mt-md-200 {
    margin-top: 200px;
  }

  .mb-md-5 {
    margin-bottom: 5px;
  }

  .mb-md-10 {
    margin-bottom: 10px;
  }

  .mb-md-15 {
    margin-bottom: 15px;
  }

  .mb-md-20 {
    margin-bottom: 20px;
  }

  .mb-md-25 {
    margin-bottom: 25px;
  }

  .mb-md-30 {
    margin-bottom: 30px;
  }

  .mb-md-35 {
    margin-bottom: 35px;
  }

  .mb-md-40 {
    margin-bottom: 40px;
  }

  .mb-md-45 {
    margin-bottom: 45px;
  }

  .mb-md-50 {
    margin-bottom: 50px;
  }

  .mb-md-55 {
    margin-bottom: 55px;
  }

  .mb-md-60 {
    margin-bottom: 60px;
  }

  .mb-md-65 {
    margin-bottom: 65px;
  }

  .mb-md-70 {
    margin-bottom: 70px;
  }

  .mb-md-75 {
    margin-bottom: 75px;
  }

  .mb-md-80 {
    margin-bottom: 80px;
  }

  .mb-md-85 {
    margin-bottom: 85px;
  }

  .mb-md-90 {
    margin-bottom: 90px;
  }

  .mb-md-95 {
    margin-bottom: 95px;
  }

  .mb-md-100 {
    margin-bottom: 100px;
  }

  .mb-md-105 {
    margin-bottom: 105px;
  }

  .mb-md-110 {
    margin-bottom: 110px;
  }

  .mb-md-115 {
    margin-bottom: 115px;
  }

  .mb-md-120 {
    margin-bottom: 120px;
  }

  .mb-md-125 {
    margin-bottom: 125px;
  }

  .mb-md-130 {
    margin-bottom: 130px;
  }

  .mb-md-135 {
    margin-bottom: 135px;
  }

  .mb-md-140 {
    margin-bottom: 140px;
  }

  .mb-md-145 {
    margin-bottom: 145px;
  }

  .mb-md-150 {
    margin-bottom: 150px;
  }

  .mb-md-155 {
    margin-bottom: 155px;
  }

  .mb-md-160 {
    margin-bottom: 160px;
  }

  .mb-md-165 {
    margin-bottom: 165px;
  }

  .mb-md-170 {
    margin-bottom: 170px;
  }

  .mb-md-175 {
    margin-bottom: 175px;
  }

  .mb-md-180 {
    margin-bottom: 180px;
  }

  .mb-md-185 {
    margin-bottom: 185px;
  }

  .mb-md-190 {
    margin-bottom: 190px;
  }

  .mb-md-195 {
    margin-bottom: 195px;
  }

  .mb-md-200 {
    margin-bottom: 200px;
  }

  .ml-md-5 {
    margin-left: 5px;
  }

  .ml-md-10 {
    margin-left: 10px;
  }

  .ml-md-15 {
    margin-left: 15px;
  }

  .ml-md-20 {
    margin-left: 20px;
  }

  .ml-md-25 {
    margin-left: 25px;
  }

  .ml-md-30 {
    margin-left: 30px;
  }

  .ml-md-35 {
    margin-left: 35px;
  }

  .ml-md-40 {
    margin-left: 40px;
  }

  .ml-md-45 {
    margin-left: 45px;
  }

  .ml-md-50 {
    margin-left: 50px;
  }

  .ml-md-55 {
    margin-left: 55px;
  }

  .ml-md-60 {
    margin-left: 60px;
  }

  .ml-md-65 {
    margin-left: 65px;
  }

  .ml-md-70 {
    margin-left: 70px;
  }

  .ml-md-75 {
    margin-left: 75px;
  }

  .ml-md-80 {
    margin-left: 80px;
  }

  .ml-md-85 {
    margin-left: 85px;
  }

  .ml-md-90 {
    margin-left: 90px;
  }

  .ml-md-95 {
    margin-left: 95px;
  }

  .ml-md-100 {
    margin-left: 100px;
  }

  .mr-md-5 {
    margin-right: 5px;
  }

  .mr-md-10 {
    margin-right: 10px;
  }

  .mr-md-15 {
    margin-right: 15px;
  }

  .mr-md-20 {
    margin-right: 20px;
  }

  .mr-md-25 {
    margin-right: 25px;
  }

  .mr-md-30 {
    margin-right: 30px;
  }

  .mr-md-35 {
    margin-right: 35px;
  }

  .mr-md-40 {
    margin-right: 40px;
  }

  .mr-md-45 {
    margin-right: 45px;
  }

  .mr-md-50 {
    margin-right: 50px;
  }

  .mr-md-55 {
    margin-right: 55px;
  }

  .mr-md-60 {
    margin-right: 60px;
  }

  .mr-md-65 {
    margin-right: 65px;
  }

  .mr-md-70 {
    margin-right: 70px;
  }

  .mr-md-75 {
    margin-right: 75px;
  }

  .mr-md-80 {
    margin-right: 80px;
  }

  .mr-md-85 {
    margin-right: 85px;
  }

  .mr-md-90 {
    margin-right: 90px;
  }

  .mr-md-95 {
    margin-right: 95px;
  }

  .mr-md-100 {
    margin-right: 100px;
  }

  .mt-md-0 {
    margin-top: 0;
  }

  .mb-md-0 {
    margin-bottom: 0;
  }

  .ml-md-0 {
    margin-left: 0;
  }

  .mr-md-0 {
    margin-right: 0;
  }

  .pt-md-5 {
    padding-top: 5px;
  }

  .pt-md-10 {
    padding-top: 10px;
  }

  .pt-md-15 {
    padding-top: 15px;
  }

  .pt-md-20 {
    padding-top: 20px;
  }

  .pt-md-25 {
    padding-top: 25px;
  }

  .pt-md-30 {
    padding-top: 30px;
  }

  .pt-md-35 {
    padding-top: 35px;
  }

  .pt-md-40 {
    padding-top: 40px;
  }

  .pt-md-45 {
    padding-top: 45px;
  }

  .pt-md-50 {
    padding-top: 50px;
  }

  .pt-md-55 {
    padding-top: 55px;
  }

  .pt-md-60 {
    padding-top: 60px;
  }

  .pt-md-65 {
    padding-top: 65px;
  }

  .pt-md-70 {
    padding-top: 70px;
  }

  .pt-md-75 {
    padding-top: 75px;
  }

  .pt-md-80 {
    padding-top: 80px;
  }

  .pt-md-85 {
    padding-top: 85px;
  }

  .pt-md-90 {
    padding-top: 90px;
  }

  .pt-md-95 {
    padding-top: 95px;
  }

  .pt-md-100 {
    padding-top: 100px;
  }

  .pt-md-105 {
    padding-top: 105px;
  }

  .pt-md-110 {
    padding-top: 110px;
  }

  .pt-md-115 {
    padding-top: 115px;
  }

  .pt-md-120 {
    padding-top: 120px;
  }

  .pt-md-125 {
    padding-top: 125px;
  }

  .pt-md-130 {
    padding-top: 130px;
  }

  .pt-md-135 {
    padding-top: 135px;
  }

  .pt-md-140 {
    padding-top: 140px;
  }

  .pt-md-145 {
    padding-top: 145px;
  }

  .pt-md-150 {
    padding-top: 150px;
  }

  .pt-md-155 {
    padding-top: 155px;
  }

  .pt-md-160 {
    padding-top: 160px;
  }

  .pt-md-165 {
    padding-top: 165px;
  }

  .pt-md-170 {
    padding-top: 170px;
  }

  .pt-md-175 {
    padding-top: 175px;
  }

  .pt-md-180 {
    padding-top: 180px;
  }

  .pt-md-185 {
    padding-top: 185px;
  }

  .pt-md-190 {
    padding-top: 190px;
  }

  .pt-md-195 {
    padding-top: 195px;
  }

  .pt-md-200 {
    padding-top: 200px;
  }

  .pb-md-5 {
    padding-bottom: 5px;
  }

  .pb-md-10 {
    padding-bottom: 10px;
  }

  .pb-md-15 {
    padding-bottom: 15px;
  }

  .pb-md-20 {
    padding-bottom: 20px;
  }

  .pb-md-25 {
    padding-bottom: 25px;
  }

  .pb-md-30 {
    padding-bottom: 30px;
  }

  .pb-md-35 {
    padding-bottom: 35px;
  }

  .pb-md-40 {
    padding-bottom: 40px;
  }

  .pb-md-45 {
    padding-bottom: 45px;
  }

  .pb-md-50 {
    padding-bottom: 50px;
  }

  .pb-md-55 {
    padding-bottom: 55px;
  }

  .pb-md-60 {
    padding-bottom: 60px;
  }

  .pb-md-65 {
    padding-bottom: 65px;
  }

  .pb-md-70 {
    padding-bottom: 70px;
  }

  .pb-md-75 {
    padding-bottom: 75px;
  }

  .pb-md-80 {
    padding-bottom: 80px;
  }

  .pb-md-85 {
    padding-bottom: 85px;
  }

  .pb-md-90 {
    padding-bottom: 90px;
  }

  .pb-md-95 {
    padding-bottom: 95px;
  }

  .pb-md-100 {
    padding-bottom: 100px;
  }

  .pb-md-105 {
    padding-bottom: 105px;
  }

  .pb-md-110 {
    padding-bottom: 110px;
  }

  .pb-md-115 {
    padding-bottom: 115px;
  }

  .pb-md-120 {
    padding-bottom: 120px;
  }

  .pb-md-125 {
    padding-bottom: 125px;
  }

  .pb-md-130 {
    padding-bottom: 130px;
  }

  .pb-md-135 {
    padding-bottom: 135px;
  }

  .pb-md-140 {
    padding-bottom: 140px;
  }

  .pb-md-145 {
    padding-bottom: 145px;
  }

  .pb-md-150 {
    padding-bottom: 150px;
  }

  .pb-md-155 {
    padding-bottom: 155px;
  }

  .pb-md-160 {
    padding-bottom: 160px;
  }

  .pb-md-165 {
    padding-bottom: 165px;
  }

  .pb-md-170 {
    padding-bottom: 170px;
  }

  .pb-md-175 {
    padding-bottom: 175px;
  }

  .pb-md-180 {
    padding-bottom: 180px;
  }

  .pb-md-185 {
    padding-bottom: 185px;
  }

  .pb-md-190 {
    padding-bottom: 190px;
  }

  .pb-md-195 {
    padding-bottom: 195px;
  }

  .pb-md-200 {
    padding-bottom: 200px;
  }

  .pl-md-5 {
    padding-left: 5px;
  }

  .pl-md-10 {
    padding-left: 10px;
  }

  .pl-md-15 {
    padding-left: 15px;
  }

  .pl-md-20 {
    padding-left: 20px;
  }

  .pl-md-25 {
    padding-left: 25px;
  }

  .pl-md-30 {
    padding-left: 30px;
  }

  .pl-md-35 {
    padding-left: 35px;
  }

  .pl-md-40 {
    padding-left: 40px;
  }

  .pl-md-45 {
    padding-left: 45px;
  }

  .pl-md-50 {
    padding-left: 50px;
  }

  .pl-md-55 {
    padding-left: 55px;
  }

  .pl-md-60 {
    padding-left: 60px;
  }

  .pl-md-65 {
    padding-left: 65px;
  }

  .pl-md-70 {
    padding-left: 70px;
  }

  .pl-md-75 {
    padding-left: 75px;
  }

  .pl-md-80 {
    padding-left: 80px;
  }

  .pl-md-85 {
    padding-left: 85px;
  }

  .pl-md-90 {
    padding-left: 90px;
  }

  .pl-md-95 {
    padding-left: 95px;
  }

  .pl-md-100 {
    padding-left: 100px;
  }

  .pr-md-5 {
    padding-right: 5px;
  }

  .pr-md-10 {
    padding-right: 10px;
  }

  .pr-md-15 {
    padding-right: 15px;
  }

  .pr-md-20 {
    padding-right: 20px;
  }

  .pr-md-25 {
    padding-right: 25px;
  }

  .pr-md-30 {
    padding-right: 30px;
  }

  .pr-md-35 {
    padding-right: 35px;
  }

  .pr-md-40 {
    padding-right: 40px;
  }

  .pr-md-45 {
    padding-right: 45px;
  }

  .pr-md-50 {
    padding-right: 50px;
  }

  .pr-md-55 {
    padding-right: 55px;
  }

  .pr-md-60 {
    padding-right: 60px;
  }

  .pr-md-65 {
    padding-right: 65px;
  }

  .pr-md-70 {
    padding-right: 70px;
  }

  .pr-md-75 {
    padding-right: 75px;
  }

  .pr-md-80 {
    padding-right: 80px;
  }

  .pr-md-85 {
    padding-right: 85px;
  }

  .pr-md-90 {
    padding-right: 90px;
  }

  .pr-md-95 {
    padding-right: 95px;
  }

  .pr-md-100 {
    padding-right: 100px;
  }

  .pt-md-0 {
    padding-top: 0;
  }

  .pb-md-0 {
    padding-bottom: 0;
  }

  .pl-md-0 {
    padding-left: 0;
  }

  .pr-md-0 {
    padding-right: 0;
  }
}

/* Margin XS */
@media (max-width: 767.98px) {
  .mt-sm-5 {
    margin-top: 5px;
  }

  .mt-sm-10 {
    margin-top: 10px;
  }

  .mt-sm-15 {
    margin-top: 15px;
  }

  .mt-sm-20 {
    margin-top: 20px;
  }

  .mt-sm-25 {
    margin-top: 25px;
  }

  .mt-sm-30 {
    margin-top: 30px;
  }

  .mt-sm-35 {
    margin-top: 35px;
  }

  .mt-sm-40 {
    margin-top: 40px;
  }

  .mt-sm-45 {
    margin-top: 45px;
  }

  .mt-sm-50 {
    margin-top: 50px;
  }

  .mt-sm-55 {
    margin-top: 55px;
  }

  .mt-sm-60 {
    margin-top: 60px;
  }

  .mt-sm-65 {
    margin-top: 65px;
  }

  .mt-sm-70 {
    margin-top: 70px;
  }

  .mt-sm-75 {
    margin-top: 75px;
  }

  .mt-sm-80 {
    margin-top: 80px;
  }

  .mt-sm-85 {
    margin-top: 85px;
  }

  .mt-sm-90 {
    margin-top: 90px;
  }

  .mt-sm-95 {
    margin-top: 95px;
  }

  .mt-sm-100 {
    margin-top: 100px;
  }

  .mt-sm-105 {
    margin-top: 105px;
  }

  .mt-sm-110 {
    margin-top: 110px;
  }

  .mt-sm-115 {
    margin-top: 115px;
  }

  .mt-sm-120 {
    margin-top: 120px;
  }

  .mt-sm-125 {
    margin-top: 125px;
  }

  .mt-sm-130 {
    margin-top: 130px;
  }

  .mt-sm-135 {
    margin-top: 135px;
  }

  .mt-sm-140 {
    margin-top: 140px;
  }

  .mt-sm-145 {
    margin-top: 145px;
  }

  .mt-sm-150 {
    margin-top: 150px;
  }

  .mb-sm-5 {
    margin-bottom: 5px;
  }

  .mb-sm-10 {
    margin-bottom: 10px;
  }

  .mb-sm-15 {
    margin-bottom: 15px;
  }

  .mb-sm-20 {
    margin-bottom: 20px;
  }

  .mb-sm-25 {
    margin-bottom: 25px;
  }

  .mb-sm-30 {
    margin-bottom: 30px;
  }

  .mb-sm-35 {
    margin-bottom: 35px;
  }

  .mb-sm-40 {
    margin-bottom: 40px;
  }

  .mb-sm-45 {
    margin-bottom: 45px;
  }

  .mb-sm-50 {
    margin-bottom: 50px;
  }

  .mb-sm-55 {
    margin-bottom: 55px;
  }

  .mb-sm-60 {
    margin-bottom: 60px;
  }

  .mb-sm-65 {
    margin-bottom: 65px;
  }

  .mb-sm-70 {
    margin-bottom: 70px;
  }

  .mb-sm-75 {
    margin-bottom: 75px;
  }

  .mb-sm-80 {
    margin-bottom: 80px;
  }

  .mb-sm-85 {
    margin-bottom: 85px;
  }

  .mb-sm-90 {
    margin-bottom: 90px;
  }

  .mb-sm-95 {
    margin-bottom: 95px;
  }

  .mb-sm-100 {
    margin-bottom: 100px;
  }

  .mb-sm-105 {
    margin-bottom: 105px;
  }

  .mb-sm-110 {
    margin-bottom: 110px;
  }

  .mb-sm-115 {
    margin-bottom: 115px;
  }

  .mb-sm-120 {
    margin-bottom: 120px;
  }

  .mb-sm-125 {
    margin-bottom: 125px;
  }

  .mb-sm-130 {
    margin-bottom: 130px;
  }

  .mb-sm-135 {
    margin-bottom: 135px;
  }

  .mb-sm-140 {
    margin-bottom: 140px;
  }

  .mb-sm-145 {
    margin-bottom: 145px;
  }

  .mb-sm-150 {
    margin-bottom: 150px;
  }

  .ml-sm-5 {
    margin-left: 5px;
  }

  .ml-sm-10 {
    margin-left: 10px;
  }

  .ml-sm-15 {
    margin-left: 15px;
  }

  .ml-sm-20 {
    margin-left: 20px;
  }

  .ml-sm-25 {
    margin-left: 25px;
  }

  .ml-sm-30 {
    margin-left: 30px;
  }

  .ml-sm-35 {
    margin-left: 35px;
  }

  .ml-sm-40 {
    margin-left: 40px;
  }

  .ml-sm-45 {
    margin-left: 45px;
  }

  .ml-sm-50 {
    margin-left: 50px;
  }

  .mr-sm-5 {
    margin-right: 5px;
  }

  .mr-sm-10 {
    margin-right: 10px;
  }

  .mr-sm-15 {
    margin-right: 15px;
  }

  .mr-sm-20 {
    margin-right: 20px;
  }

  .mr-sm-25 {
    margin-right: 25px;
  }

  .mr-sm-30 {
    margin-right: 30px;
  }

  .mr-sm-35 {
    margin-right: 35px;
  }

  .mr-sm-40 {
    margin-right: 40px;
  }

  .mr-sm-45 {
    margin-right: 45px;
  }

  .mr-sm-50 {
    margin-right: 50px;
  }

  .mt-sm-0 {
    margin-top: 0;
  }

  .mb-sm-0 {
    margin-bottom: 0;
  }

  .ml-sm-0 {
    margin-left: 0;
  }

  .mr-sm-0 {
    margin-right: 0;
  }

  .pt-sm-5 {
    padding-top: 5px;
  }

  .pt-sm-10 {
    padding-top: 10px;
  }

  .pt-sm-15 {
    padding-top: 15px;
  }

  .pt-sm-20 {
    padding-top: 20px;
  }

  .pt-sm-25 {
    padding-top: 25px;
  }

  .pt-sm-30 {
    padding-top: 30px;
  }

  .pt-sm-35 {
    padding-top: 35px;
  }

  .pt-sm-40 {
    padding-top: 40px;
  }

  .pt-sm-45 {
    padding-top: 45px;
  }

  .pt-sm-50 {
    padding-top: 50px;
  }

  .pt-sm-55 {
    padding-top: 55px;
  }

  .pt-sm-60 {
    padding-top: 60px;
  }

  .pt-sm-65 {
    padding-top: 65px;
  }

  .pt-sm-70 {
    padding-top: 70px;
  }

  .pt-sm-75 {
    padding-top: 75px;
  }

  .pt-sm-80 {
    padding-top: 80px;
  }

  .pt-sm-85 {
    padding-top: 85px;
  }

  .pt-sm-90 {
    padding-top: 90px;
  }

  .pt-sm-95 {
    padding-top: 95px;
  }

  .pt-sm-100 {
    padding-top: 100px;
  }

  .pt-sm-105 {
    padding-top: 105px;
  }

  .pt-sm-110 {
    padding-top: 110px;
  }

  .pt-sm-115 {
    padding-top: 115px;
  }

  .pt-sm-120 {
    padding-top: 120px;
  }

  .pt-sm-125 {
    padding-top: 125px;
  }

  .pt-sm-130 {
    padding-top: 130px;
  }

  .pt-sm-135 {
    padding-top: 135px;
  }

  .pt-sm-140 {
    padding-top: 140px;
  }

  .pt-sm-145 {
    padding-top: 145px;
  }

  .pt-sm-150 {
    padding-top: 150px;
  }

  .pb-sm-5 {
    padding-bottom: 5px;
  }

  .pb-sm-10 {
    padding-bottom: 10px;
  }

  .pb-sm-15 {
    padding-bottom: 15px;
  }

  .pb-sm-20 {
    padding-bottom: 20px;
  }

  .pb-sm-25 {
    padding-bottom: 25px;
  }

  .pb-sm-30 {
    padding-bottom: 30px;
  }

  .pb-sm-35 {
    padding-bottom: 35px;
  }

  .pb-sm-40 {
    padding-bottom: 40px;
  }

  .pb-sm-45 {
    padding-bottom: 45px;
  }

  .pb-sm-50 {
    padding-bottom: 50px;
  }

  .pb-sm-55 {
    padding-bottom: 55px;
  }

  .pb-sm-60 {
    padding-bottom: 60px;
  }

  .pb-sm-65 {
    padding-bottom: 65px;
  }

  .pb-sm-70 {
    padding-bottom: 70px;
  }

  .pb-sm-75 {
    padding-bottom: 75px;
  }

  .pb-sm-80 {
    padding-bottom: 80px;
  }

  .pb-sm-85 {
    padding-bottom: 85px;
  }

  .pb-sm-90 {
    padding-bottom: 90px;
  }

  .pb-sm-95 {
    padding-bottom: 95px;
  }

  .pb-sm-100 {
    padding-bottom: 100px;
  }

  .pb-sm-105 {
    padding-bottom: 105px;
  }

  .pb-sm-110 {
    padding-bottom: 110px;
  }

  .pb-sm-115 {
    padding-bottom: 115px;
  }

  .pb-sm-120 {
    padding-bottom: 120px;
  }

  .pb-sm-125 {
    padding-bottom: 125px;
  }

  .pb-sm-130 {
    padding-bottom: 130px;
  }

  .pb-sm-135 {
    padding-bottom: 135px;
  }

  .pb-sm-140 {
    padding-bottom: 140px;
  }

  .pb-sm-145 {
    padding-bottom: 145px;
  }

  .pb-sm-150 {
    padding-bottom: 150px;
  }

  .pl-sm-5 {
    padding-left: 5px;
  }

  .pl-sm-10 {
    padding-left: 10px;
  }

  .pl-sm-15 {
    padding-left: 15px;
  }

  .pl-sm-20 {
    padding-left: 20px;
  }

  .pl-sm-25 {
    padding-left: 25px;
  }

  .pl-sm-30 {
    padding-left: 30px;
  }

  .pl-sm-35 {
    padding-left: 35px;
  }

  .pl-sm-40 {
    padding-left: 40px;
  }

  .pl-sm-45 {
    padding-left: 45px;
  }

  .pl-sm-50 {
    padding-left: 50px;
  }

  .pr-sm-5 {
    padding-right: 5px;
  }

  .pr-sm-10 {
    padding-right: 10px;
  }

  .pr-sm-15 {
    padding-right: 15px;
  }

  .pr-sm-20 {
    padding-right: 20px;
  }

  .pr-sm-25 {
    padding-right: 25px;
  }

  .pr-sm-30 {
    padding-right: 30px;
  }

  .pr-sm-35 {
    padding-right: 35px;
  }

  .pr-sm-40 {
    padding-right: 40px;
  }

  .pr-sm-45 {
    padding-right: 45px;
  }

  .pr-sm-50 {
    padding-right: 50px;
  }

  .pt-sm-0 {
    padding-top: 0;
  }

  .pb-sm-0 {
    padding-bottom: 0;
  }

  .pl-sm-0 {
    padding-left: 0;
  }

  .pr-xs-0 {
    padding-right: 0;
  }
}

@media (max-width: 575.98px) {
  .mt-xs-5 {
    margin-top: 5px;
  }

  .mt-xs-10 {
    margin-top: 10px;
  }

  .mt-xs-15 {
    margin-top: 15px;
  }

  .mt-xs-20 {
    margin-top: 20px;
  }

  .mt-xs-25 {
    margin-top: 25px;
  }

  .mt-xs-30 {
    margin-top: 30px;
  }

  .mt-xs-35 {
    margin-top: 35px;
  }

  .mt-xs-40 {
    margin-top: 40px;
  }

  .mt-xs-45 {
    margin-top: 45px;
  }

  .mt-xs-50 {
    margin-top: 50px;
  }

  .mt-xs-55 {
    margin-top: 55px;
  }

  .mt-xs-60 {
    margin-top: 60px;
  }

  .mt-xs-65 {
    margin-top: 65px;
  }

  .mt-xs-70 {
    margin-top: 70px;
  }

  .mt-xs-75 {
    margin-top: 75px;
  }

  .mt-xs-80 {
    margin-top: 80px;
  }

  .mt-xs-85 {
    margin-top: 85px;
  }

  .mt-xs-90 {
    margin-top: 90px;
  }

  .mt-xs-95 {
    margin-top: 95px;
  }

  .mt-xs-100 {
    margin-top: 100px;
  }

  .mt-xs-105 {
    margin-top: 105px;
  }

  .mt-xs-110 {
    margin-top: 110px;
  }

  .mt-xs-115 {
    margin-top: 115px;
  }

  .mt-xs-120 {
    margin-top: 120px;
  }

  .mt-xs-125 {
    margin-top: 125px;
  }

  .mt-xs-130 {
    margin-top: 130px;
  }

  .mt-xs-135 {
    margin-top: 135px;
  }

  .mt-xs-140 {
    margin-top: 140px;
  }

  .mt-xs-145 {
    margin-top: 145px;
  }

  .mt-xs-150 {
    margin-top: 150px;
  }

  .mb-xs-5 {
    margin-bottom: 5px;
  }

  .mb-xs-10 {
    margin-bottom: 10px;
  }

  .mb-xs-15 {
    margin-bottom: 15px;
  }

  .mb-xs-20 {
    margin-bottom: 20px;
  }

  .mb-xs-25 {
    margin-bottom: 25px;
  }

  .mb-xs-30 {
    margin-bottom: 30px;
  }

  .mb-xs-35 {
    margin-bottom: 35px;
  }

  .mb-xs-40 {
    margin-bottom: 40px;
  }

  .mb-xs-45 {
    margin-bottom: 45px;
  }

  .mb-xs-50 {
    margin-bottom: 50px;
  }

  .mb-xs-55 {
    margin-bottom: 55px;
  }

  .mb-xs-60 {
    margin-bottom: 60px;
  }

  .mb-xs-65 {
    margin-bottom: 65px;
  }

  .mb-xs-70 {
    margin-bottom: 70px;
  }

  .mb-xs-75 {
    margin-bottom: 75px;
  }

  .mb-xs-80 {
    margin-bottom: 80px;
  }

  .mb-xs-85 {
    margin-bottom: 85px;
  }

  .mb-xs-90 {
    margin-bottom: 90px;
  }

  .mb-xs-95 {
    margin-bottom: 95px;
  }

  .mb-xs-100 {
    margin-bottom: 100px;
  }

  .mb-xs-105 {
    margin-bottom: 105px;
  }

  .mb-xs-110 {
    margin-bottom: 110px;
  }

  .mb-xs-115 {
    margin-bottom: 115px;
  }

  .mb-xs-120 {
    margin-bottom: 120px;
  }

  .mb-xs-125 {
    margin-bottom: 125px;
  }

  .mb-xs-130 {
    margin-bottom: 130px;
  }

  .mb-xs-135 {
    margin-bottom: 135px;
  }

  .mb-xs-140 {
    margin-bottom: 140px;
  }

  .mb-xs-145 {
    margin-bottom: 145px;
  }

  .mb-xs-150 {
    margin-bottom: 150px;
  }

  .ml-xs-5 {
    margin-left: 5px;
  }

  .ml-xs-10 {
    margin-left: 10px;
  }

  .ml-xs-15 {
    margin-left: 15px;
  }

  .ml-xs-20 {
    margin-left: 20px;
  }

  .ml-xs-25 {
    margin-left: 25px;
  }

  .ml-xs-30 {
    margin-left: 30px;
  }

  .ml-xs-35 {
    margin-left: 35px;
  }

  .ml-xs-40 {
    margin-left: 40px;
  }

  .ml-xs-45 {
    margin-left: 45px;
  }

  .ml-xs-50 {
    margin-left: 50px;
  }

  .mr-xs-5 {
    margin-right: 5px;
  }

  .mr-xs-10 {
    margin-right: 10px;
  }

  .mr-xs-15 {
    margin-right: 15px;
  }

  .mr-xs-20 {
    margin-right: 20px;
  }

  .mr-xs-25 {
    margin-right: 25px;
  }

  .mr-xs-30 {
    margin-right: 30px;
  }

  .mr-xs-35 {
    margin-right: 35px;
  }

  .mr-xs-40 {
    margin-right: 40px;
  }

  .mr-xs-45 {
    margin-right: 45px;
  }

  .mr-xs-50 {
    margin-right: 50px;
  }

  .mt-xs-0 {
    margin-top: 0;
  }

  .mb-xs-0 {
    margin-bottom: 0;
  }

  .ml-xs-0 {
    margin-left: 0;
  }

  .mr-xs-0 {
    margin-right: 0;
  }

  .pt-xs-5 {
    padding-top: 5px;
  }

  .pt-xs-10 {
    padding-top: 10px;
  }

  .pt-xs-15 {
    padding-top: 15px;
  }

  .pt-xs-20 {
    padding-top: 20px;
  }

  .pt-xs-25 {
    padding-top: 25px;
  }

  .pt-xs-30 {
    padding-top: 30px;
  }

  .pt-xs-35 {
    padding-top: 35px;
  }

  .pt-xs-40 {
    padding-top: 40px;
  }

  .pt-xs-45 {
    padding-top: 45px;
  }

  .pt-xs-50 {
    padding-top: 50px;
  }

  .pt-xs-55 {
    padding-top: 55px;
  }

  .pt-xs-60 {
    padding-top: 60px;
  }

  .pt-xs-65 {
    padding-top: 65px;
  }

  .pt-xs-70 {
    padding-top: 70px;
  }

  .pt-xs-75 {
    padding-top: 75px;
  }

  .pt-xs-80 {
    padding-top: 80px;
  }

  .pt-xs-85 {
    padding-top: 85px;
  }

  .pt-xs-90 {
    padding-top: 90px;
  }

  .pt-xs-95 {
    padding-top: 95px;
  }

  .pt-xs-100 {
    padding-top: 100px;
  }

  .pt-xs-105 {
    padding-top: 105px;
  }

  .pt-xs-110 {
    padding-top: 110px;
  }

  .pt-xs-115 {
    padding-top: 115px;
  }

  .pt-xs-120 {
    padding-top: 120px;
  }

  .pt-xs-125 {
    padding-top: 125px;
  }

  .pt-xs-130 {
    padding-top: 130px;
  }

  .pt-xs-135 {
    padding-top: 135px;
  }

  .pt-xs-140 {
    padding-top: 140px;
  }

  .pt-xs-145 {
    padding-top: 145px;
  }

  .pt-xs-150 {
    padding-top: 150px;
  }

  .pb-xs-5 {
    padding-bottom: 5px;
  }

  .pb-xs-10 {
    padding-bottom: 10px;
  }

  .pb-xs-15 {
    padding-bottom: 15px;
  }

  .pb-xs-20 {
    padding-bottom: 20px;
  }

  .pb-xs-25 {
    padding-bottom: 25px;
  }

  .pb-xs-30 {
    padding-bottom: 30px;
  }

  .pb-xs-35 {
    padding-bottom: 35px;
  }

  .pb-xs-40 {
    padding-bottom: 40px;
  }

  .pb-xs-45 {
    padding-bottom: 45px;
  }

  .pb-xs-50 {
    padding-bottom: 50px;
  }

  .pb-xs-55 {
    padding-bottom: 55px;
  }

  .pb-xs-60 {
    padding-bottom: 60px;
  }

  .pb-xs-65 {
    padding-bottom: 65px;
  }

  .pb-xs-70 {
    padding-bottom: 70px;
  }

  .pb-xs-75 {
    padding-bottom: 75px;
  }

  .pb-xs-80 {
    padding-bottom: 80px;
  }

  .pb-xs-85 {
    padding-bottom: 85px;
  }

  .pb-xs-90 {
    padding-bottom: 90px;
  }

  .pb-xs-95 {
    padding-bottom: 95px;
  }

  .pb-xs-100 {
    padding-bottom: 100px;
  }

  .pb-xs-105 {
    padding-bottom: 105px;
  }

  .pb-xs-110 {
    padding-bottom: 110px;
  }

  .pb-xs-115 {
    padding-bottom: 115px;
  }

  .pb-xs-120 {
    padding-bottom: 120px;
  }

  .pb-xs-125 {
    padding-bottom: 125px;
  }

  .pb-xs-130 {
    padding-bottom: 130px;
  }

  .pb-xs-135 {
    padding-bottom: 135px;
  }

  .pb-xs-140 {
    padding-bottom: 140px;
  }

  .pb-xs-145 {
    padding-bottom: 145px;
  }

  .pb-xs-150 {
    padding-bottom: 150px;
  }

  .pl-xs-5 {
    padding-left: 5px;
  }

  .pl-xs-10 {
    padding-left: 10px;
  }

  .pl-xs-15 {
    padding-left: 15px;
  }

  .pl-xs-20 {
    padding-left: 20px;
  }

  .pl-xs-25 {
    padding-left: 25px;
  }

  .pl-xs-30 {
    padding-left: 30px;
  }

  .pl-xs-35 {
    padding-left: 35px;
  }

  .pl-xs-40 {
    padding-left: 40px;
  }

  .pl-xs-45 {
    padding-left: 45px;
  }

  .pl-xs-50 {
    padding-left: 50px;
  }

  .pr-xs-5 {
    padding-right: 5px;
  }

  .pr-xs-10 {
    padding-right: 10px;
  }

  .pr-xs-15 {
    padding-right: 15px;
  }

  .pr-xs-20 {
    padding-right: 20px;
  }

  .pr-xs-25 {
    padding-right: 25px;
  }

  .pr-xs-30 {
    padding-right: 30px;
  }

  .pr-xs-35 {
    padding-right: 35px;
  }

  .pr-xs-40 {
    padding-right: 40px;
  }

  .pr-xs-45 {
    padding-right: 45px;
  }

  .pr-xs-50 {
    padding-right: 50px;
  }

  .pt-xs-0 {
    padding-top: 0;
  }

  .pb-xs-0 {
    padding-bottom: 0;
  }

  .pl-xs-0 {
    padding-left: 0;
  }

  .pr-xs-0 {
    padding-right: 0;
  }
}

.errow_wrap .not_foud_redirect {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
}

.errow_wrap .not_foud_redirect .not_foud_title {
  font-size: 48px;
  color: #1b212f;
  font-family: "cera_probold";
}

@media only screen and (max-width: 1600px) {
  .errow_wrap .not_foud_redirect .not_foud_title {
    font-size: 38px;
  }
}

@media only screen and (max-width: 1200px) {
  .errow_wrap .not_foud_redirect .not_foud_title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 991px) {
  .errow_wrap .not_foud_redirect .not_foud_title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .errow_wrap .not_foud_redirect .not_foud_title {
    font-size: 25px;
  }
}

.errow_wrap .not_foud_redirect p {
  font-size: 18px;
  line-height: 26px;
  color: #494d59;
  font-family: "cera_proregular";
}

@media only screen and (max-width: 1200px) {
  .errow_wrap .not_foud_redirect p {
    font-size: 16px;
    line-height: 24px;
  }
}

.errow_wrap .not_foud_redirect a {
  font-family: "cera_promedium";
  font-size: 16px;
  line-height: 26px;
  border-radius: 5px;
  padding: 12px 29px;
}

@media only screen and (max-width: 1200px) {
  .errow_wrap .not_foud_redirect a {
    font-size: 14px;
  }
}

.footer_area_wrap {
  background: #1b212f url(../img/banner/ColorFill.png) no-repeat center/cover;
  padding: 30px 0 30px;
}

@media only screen and (max-width: 1200px) {
  .footer_area_wrap {
    padding: 50px 0 60px;
  }
}

@media only screen and (max-width: 575.98px) {
  .footer_area_wrap {
    padding: 50px 0 50px;
  }
}

.footer_area_wrap .footer_widget h4 {
  font-size: 24px;
  line-height: 64px;
  color: #ffffff;
  font-family: "cera_promedium";
  margin-bottom: 25px;
}

@media only screen and (max-width: 991px) {
  .footer_area_wrap .footer_widget h4 {
    margin-bottom: 0;
  }
}

.footer_area_wrap .footer_widget .footer_link {
  margin: 0;
  padding: 0;
}

.footer_area_wrap .footer_widget .footer_link li a {
  font-size: 16px;
  font-family: "cera_proregular";
  line-height: 30px;
  color: #ffffff;
  display: inline-block;
  /* margin-bottom: 6px; */
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
}

.footer_area_wrap .footer_widget .footer_link li a::before {
  position: absolute;
  content: "";
  left: auto;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  background: #0082d7;
}

.footer_area_wrap .footer_widget .footer_link li a:hover {
  color: #0082d7;
}

.footer_area_wrap .footer_widget .footer_link li a:hover::before {
  left: 0;
  right: auto;
  width: 100%;
}

.footer_area_wrap .footer_widget p {
  color: #ffffff;
}

@media only screen and (max-width: 1200px) {
  .footer_area_wrap .footer_widget p {
    font-size: 16px;
  }
}

.footer_area_wrap .footer_widget .subscribe_form {
  position: relative;
}

.footer_area_wrap .footer_widget .subscribe_form input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}

.footer_area_wrap .footer_widget .subscribe_form input::-webkit-input-placeholder {
  color: #ffffff;
}

.footer_area_wrap .footer_widget .subscribe_form input:-ms-input-placeholder {
  color: #ffffff;
}

.footer_area_wrap .footer_widget .subscribe_form input::-ms-input-placeholder {
  color: #ffffff;
}

.footer_area_wrap .footer_widget .subscribe_form input::placeholder {
  color: #ffffff;
}

.footer_area_wrap .footer_widget .subscribe_form .form-control {
  border-radius: 3px;
  color: #ffffff;
  font-size: 14px;
  font-family: "cera_proregular";
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.102);
  border: 0;
  padding: 0 0 0 30px;
  width: 100%;
  height: 50px;
  z-index: 1;
}

.footer_area_wrap .footer_widget .subscribe_form .input_icon {
  position: absolute;
  right: 0;
  color: #ffffff;
  border-radius: 3px;
  background-image: -webkit-linear-gradient(30deg, #0082d7 29%, #68bdf4 99%);
  background-image: -o-linear-gradient(30deg, #0082d7 29%, #68bdf4 99%);
  background-image: linear-gradient(60deg, #0082d7 29%, #68bdf4 99%);
  text-align: center;
  width: 60px;
  height: 50px;
  line-height: 50px;
  font-size: 30px;
}

.footer_area_wrap .footer_widget address a {
  font-size: 16px;
  font-family: "cera_proregular";
  line-height: 30px;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 6px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer_area_wrap .footer_widget address a i {
  padding-right: 20px;
}

.footer_area_wrap .footer_widget address a:hover {
  color: #0082d7;
}

.footer_area_wrap .copyright_wrap {
  padding-top: 10px;
  border-top: 2px solid #323844;
}

@media only screen and (max-width: 575.98px) {
  .footer_area_wrap .copyright_wrap {
    padding-top: 40px;
  }
}

.footer_area_wrap .copyright_wrap .copyright_text {
  font-size: 16px;
  font-family: "cera_proregular";
  line-height: 24px;
  color: #ffffff;
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer_area_wrap .copyright_wrap .copyright_text a {
  color: #0082d7;
}

@media (max-width: 767px) {
  .footer_area_wrap .copyright_wrap .copyright_text {
    width: 100%;
    text-align: center;
  }
}

.footer_area_wrap .copyright_wrap .copyright_link a {
  font-size: 16px;
  font-family: "cera_proregular";
  line-height: 24px;
  color: #ffffff;
  display: inline-block;
  margin-right: 50px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media only screen and (max-width: 575.98px) {
  .footer_area_wrap .copyright_wrap .copyright_link a {
    margin-right: 10px;
  }
}

.footer_area_wrap .copyright_wrap .copyright_link a:last-child {
  margin-right: 0;
}

.footer_area_wrap .copyright_wrap .copyright_link a:hover {
  color: #0082d7;
}

@media (max-width: 767px) {
  .footer_area_wrap .copyright_wrap .copyright_link {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}

.footer_area_wrap_two {
  background: #1b212f;
  padding: 220px 0 60px;
}

@media only screen and (max-width: 1200px) {
  .footer_area_wrap_two {
    padding: 190px 0 60px;
  }
}

@media (max-width: 600px) {
  .footer_area_wrap_two {
    padding: 170px 0 60px;
  }
}

.footer_area_wrap_two .footer_menu_area .footer_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

@media only screen and (max-width: 1200px) {
  .footer_area_wrap_two .footer_menu_area .footer_link {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .footer_area_wrap_two .footer_menu_area .footer_link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
  }
}

.footer_area_wrap_two .footer_menu_area .footer_link li {
  display: inline-block;
}

.footer_area_wrap_two .footer_menu_area .footer_link li a {
  display: inline-block;
  font-size: 20px;
  font-family: "cera_promedium";
  color: #ffffff;
  text-transform: capitalize;
  margin: 50px 60px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media (max-width: 1400px) {
  .footer_area_wrap_two .footer_menu_area .footer_link li a {
    margin: 40px;
  }
}

@media only screen and (max-width: 1200px) {
  .footer_area_wrap_two .footer_menu_area .footer_link li a {
    margin: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .footer_area_wrap_two .footer_menu_area .footer_link li a {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .footer_area_wrap_two .footer_menu_area .footer_link li a {
    font-size: 14px;
    margin: 20px 8px;
  }
}

@media (max-width: 540px) {
  .footer_area_wrap_two .footer_menu_area .footer_link li a {
    margin: 6px 0;
    font-size: 16px;
  }
}

.footer_area_wrap_two .footer_menu_area .footer_link li a:hover {
  color: #f7bd01;
}

.footer_area_wrap_two .copyright_wrap {
  padding-top: 60px;
  border-top: 2px solid #323844;
}

@media only screen and (max-width: 991px) {
  .footer_area_wrap_two .copyright_wrap {
    padding-top: 40px;
  }
}

@media (max-width: 767px) {
  .footer_area_wrap_two .copyright_wrap {
    padding-top: 30px;
  }
}

.footer_area_wrap_two .copyright_wrap .copyright_text {
  font-size: 16px;
  font-family: "cera_proregular";
  line-height: 24px;
  color: #ffffff;
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer_area_wrap_two .copyright_wrap .copyright_text a {
  color: #ffffff;
}

.footer_area_wrap_two .copyright_wrap .copyright_text a:hover {
  color: #f7bd01;
}

@media only screen and (max-width: 991px) {
  .footer_area_wrap_two .copyright_wrap .copyright_text {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}

.footer_area_wrap_two .copyright_wrap .footer_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
}

@media (max-width: 767px) {
  .footer_area_wrap_two .copyright_wrap .footer_social {
    margin-bottom: 30px;
  }
}

.footer_area_wrap_two .copyright_wrap .footer_social li {
  display: inline-block;
  margin-right: 20px;
}

.footer_area_wrap_two .copyright_wrap .footer_social li:last-child {
  margin-right: 0;
}

.footer_area_wrap_two .copyright_wrap .footer_social li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: #313742;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer_area_wrap_two .copyright_wrap .footer_social li a:hover {
  background: #f7bd01;
  color: #ffffff;
}

@media only screen and (max-width: 991px) {
  .footer_area_wrap_two .copyright_wrap .copyright_link {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}

.footer_area_wrap_two .copyright_wrap .copyright_link a {
  font-size: 16px;
  font-family: "cera_proregular";
  line-height: 24px;
  color: #ffffff;
  display: inline-block;
  margin-right: 50px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media only screen and (max-width: 991px) {
  .footer_area_wrap_two .copyright_wrap .copyright_link a {
    margin-right: 15px;
  }
}

@media only screen and (max-width: 575.98px) {
  .footer_area_wrap_two .copyright_wrap .copyright_link a {
    margin-right: 10px;
  }
}

.footer_area_wrap_two .copyright_wrap .copyright_link a:last-child {
  margin-right: 0;
}

.footer_area_wrap_two .copyright_wrap .copyright_link a:hover {
  color: #f7bd01;
}

@media (max-width: 767px) {
  .footer_area_wrap_two .copyright_wrap .copyright_link {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}

.footer_area_wrap.About_page .input_icon.about_page {
  background: #f7bd01;
}

.footer_social_icons .theme_social_icon ul {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}

.footer_social_icons .theme_social_icon ul li {
  margin-right: 10px;
}

.footer_social_icons .theme_social_icon ul li img {
  width: 30px;
}

.footer_social_icons .theme_social_icon ul li:last-child {
  margin-right: 0;
}

/* .footer_social_icons .theme_social_icon ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #dae8f1;
  color: #1b212f;
  width: 40px;
  height: 40px;
  font-size: 15px;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
} */

.footer_social_icons .theme_social_icon ul li img:hover {
  transform: scale(1.1);
}

@media only screen and (max-width: 991px) {
  .footer_social_icons .theme_social_icon ul {
    margin: 10px 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    /* justify-content: center; */
  }
}


/* Slider */

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}


.gallery {
  width: 900px;
  display: flex;
  overflow: hidden;
}

.gallery div {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 20px;
  padding: 10px;
  flex: none;
}

.gallery div img {
  width: 100%;
  transition: transfrorm 0.5s;
}

.gallery::-webkit-scrollbar {
  /* display: none; */
}

.gallery-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

#backBtn,
#nextBtn {
  width: 50px;
  cursor: pointer;
  margin: 40px;

}

.image-title {
  position: relative;
  bottom: 0;
  top: 3%;
  left: 0;
  width: 100%;
  padding: 5px;
  text-align: center;
  border-top: 2px solid #f7bd01;
}

.gallery div span:hover {
  transform: scale(1.1);
}

.header_media_icon ul li {
  margin-right: 10px;
  cursor: pointer;
}


.header_media_icon img {
  width: 30px;
}

.header_media_icon img:hover {
  transform: scale(1.1);
}

.dream-img img {
  max-height: 100vh;
  border-radius: 5px;
}

/*Estilos generales del boton whatsapp*/
.whatsapp-btn {
  position: fixed;
  bottom: 15%;
  right: 15px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: breathe 2s ease-in-out infinite;
}

/*Estilos solo al icono whatsapp*/
.whatsapp-btn i {
  color: #fff;
  font-size: 24px;
  animation: beat 2s ease-in-out infinite;
  text-decoration: none;
}

/*Estilos con animation contorno respirando*/
@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/*Estilos de animacion del icono latiendo*/
@keyframes beat {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}



/* Styles for the gallery and modal */

.gallery-image {
  cursor: pointer;
}

.modal-gallery {
  display: none;
  position: fixed;
  z-index: 99;
  padding-top: 50px;
  left: 0;
  top: 10%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content-gallery {
  max-width: 80%;
  max-height: 80%;
  margin: 0 auto;
  display: block;
}

.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.service_section .service-page{
  position: relative;
}

.service_section .service-content{
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
}

.service-title{
  height: 60px;
}

@media only screen and (max-width: 767px) {
  .service-title{
    height: 60px;
  }
}

.confetti {
  height: 100vh;
  width: 100vw;
  display: block;
  margin: 0 auto;
  /* border: 1px solid #ddd; */
  user-select: none;
}

/* Checkmark */
.checkmark-circle {
  width: 150px;
  height: 150px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-left: auto;
  margin-right: auto;
}

.checkmark-circle .background {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #00C09D;
  position: absolute;
}

.checkmark-circle .checkmark {
  border-radius: 5px;
}

.checkmark-circle .checkmark.draw:after {
  -webkit-animation-delay: 100ms;
  -moz-animation-delay: 100ms;
  animation-delay: 100ms;
  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-name: checkmark;
  -moz-animation-name: checkmark;
  animation-name: checkmark;
  -webkit-transform: scaleX(-1) rotate(135deg);
  -moz-transform: scaleX(-1) rotate(135deg);
  -ms-transform: scaleX(-1) rotate(135deg);
  -o-transform: scaleX(-1) rotate(135deg);
  transform: scaleX(-1) rotate(135deg);
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.checkmark-circle .checkmark:after {
  opacity: 1;
  height: 75px;
  width: 37.5px;
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
  border-right: 15px solid white;
  border-top: 15px solid white;
  border-radius: 2.5px !important;
  content: '';
  left: 25px;
  top: 75px;
  position: absolute;
}

@-webkit-keyframes checkmark {
  0% {
      height: 0;
      width: 0;
      opacity: 1;
  }

  20% {
      height: 0;
      width: 37.5px;
      opacity: 1;
  }

  40% {
      height: 75px;
      width: 37.5px;
      opacity: 1;
  }

  100% {
      height: 75px;
      width: 37.5px;
      opacity: 1;
  }
}

@-moz-keyframes checkmark {
  0% {
      height: 0;
      width: 0;
      opacity: 1;
  }

  20% {
      height: 0;
      width: 37.5px;
      opacity: 1;
  }

  40% {
      height: 75px;
      width: 37.5px;
      opacity: 1;
  }

  100% {
      height: 75px;
      width: 37.5px;
      opacity: 1;
  }
}

@keyframes checkmark {
  0% {
      height: 0;
      width: 0;
      opacity: 1;
  }

  20% {
      height: 0;
      width: 37.5px;
      opacity: 1;
  }

  40% {
      height: 75px;
      width: 37.5px;
      opacity: 1;
  }

  100% {
      height: 75px;
      width: 37.5px;
      opacity: 1;
  }
}

.main-success {
  text-align: center;
  position: fixed;
  width: min-content;
  /* height: 56%; */
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.submit-btn {
  height: 45px;
  width: 200px;
  font-size: 15px;
  background-color: #00c09d;
  border: 1px solid #00ab8c;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px 0 rgba(87, 71, 81, .2);
  cursor: pointer;
  transition: all 2s ease-out;
  transition: all .2s ease-out;
}

.submit-btn:hover {
  background-color: #2ca893;
  transition: all .2s ease-out;
}