@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@keyframes float {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 17px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 1688px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 1366px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: normal;
  color: #23262f;
  font-weight: 400;
}

a,
span {
  display: inline-block;
}

a {
  text-decoration: none;
  transition: all 0.3s linear;
}
a:hover {
  color: #FF5722;
}

b {
  font-weight: bold;
  display: inline-block;
}

button {
  border: 0;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}

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

h1,
h2,
h3,
h4 {
  color: #0e0e0e;
  font-weight: bold;
}

h3 {
  font-size: 2rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.2rem;
}

h5,
h6 {
  font-weight: 500;
  color: #000;
}

::-webkit-scrollbar {
  width: 4px;
}
@media (max-width: 601px) {
  ::-webkit-scrollbar {
    height: 4px;
    display: none;
  }
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
  height: 60px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.error {
  color: red;
  font-size: 12px;
}

.formloader {
  background-image: url(../../loader/loader.gif) !important;
  background-size: 16px !important;
  background-color: #4053d1 !important;
  background-repeat: no-repeat !important;
  background-position: 5px 12px !important;
  text-transform: capitalize !important;
}

.container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 1688px) {
  .container {
    max-width: 1340px;
  }
}
@media screen and (max-width: 1366px) {
  .container {
    max-width: 1180px;
  }
}

.spacing {
  padding: 60px 0;
}
@media screen and (max-width: 1688px) {
  .spacing {
    padding: 40px 0;
  }
}
@media screen and (max-width: 992px) {
  .spacing {
    padding: 30px 0;
  }
}
@media (max-width: 601px) {
  .spacing {
    padding: 20px 0;
  }
}

.button {
  padding: 13px 25px;
  background-color: #FF5722;
  color: white;
  transition: all 0.3s linear;
  border-radius: 9px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 601px) {
  .button {
    padding: 10px 15px;
  }
}
.button i {
  margin-left: 5px;
  transition: all 0.3s linear;
}
.button:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  width: 50px;
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  transform: rotate(35deg);
  z-index: 1;
}
.button:hover:after {
  left: 120%;
  -webkit-transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.button:hover i {
  transform: translateX(8px);
}

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

.page_title {
  padding-bottom: 25px;
  max-width: 425px;
}
@media (max-width: 601px) {
  .page_title {
    padding-bottom: 15px;
  }
}
.page_title .sub_title {
  position: relative;
  font-weight: 500;
  color: #FF5722;
  padding-left: 70px;
  text-transform: uppercase;
}
@media (max-width: 601px) {
  .page_title .sub_title {
    margin-bottom: 10px;
  }
}
.page_title .sub_title:after {
  content: "";
  width: 100%;
  max-width: 60px;
  height: 2px;
  background-color: #FF5722;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 601px) {
  .page_title h3 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
.page_title p {
  color: #1e1e1e;
  font-size: 1.1rem;
}
@media (max-width: 601px) {
  .page_title p {
    font-size: 1rem;
  }
}

.header_wrapper {
  min-height: 67px;
}
@media (max-width: 601px) {
  .header_wrapper {
    min-height: 58px;
  }
}

.header {
  position: relative;
  z-index: 99;
  transition: all 0.3s linear;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(170, 170, 170, 0.1098039216);
}
.header .header_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  transition: all 0.3s linear;
}
.header .header_content .header_logo img {
  width: 100%;
  max-width: 160px;
}
@media (max-width: 601px) {
  .header .header_content .header_logo img {
    max-width: 120px;
  }
}
.header .header_content .mobile_button {
  display: none;
}
@media (max-width: 601px) {
  .header .header_content .mobile_button {
    display: flex;
    font-size: 20px;
    color: #FF5722;
  }
}
.header .header_content .mobile_button .open {
  display: block;
}
.header .header_content .mobile_button .close {
  display: none;
}
.header .header_content .header_nav {
  display: flex;
  align-items: center;
}
@media (max-width: 601px) {
  .header .header_content .header_nav {
    position: fixed;
    left: 0;
    top: 47px;
    height: 100vh;
    width: 250px;
    background-color: white;
    transform: translateX(-100%);
    transition: all 0.3s linear;
    display: block;
    padding: 20px 10px;
  }
}
.header .header_content .header_nav ul {
  display: flex;
  align-items: center;
}
@media (max-width: 601px) {
  .header .header_content .header_nav ul {
    display: block;
  }
}
.header .header_content .header_nav ul li {
  margin-right: 10px;
}
@media (max-width: 601px) {
  .header .header_content .header_nav ul li {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.header .header_content .header_nav ul li a {
  padding: 5px 15px;
  font-weight: 500;
  color: #000;
  position: relative;
}
@media (max-width: 601px) {
  .header .header_content .header_nav ul li a {
    padding: 0;
  }
}
.header .header_content .header_nav ul li a::before, .header .header_content .header_nav ul li a:after {
  webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  background: rgb(255, 87, 34);
  content: "";
  position: absolute;
}
.header .header_content .header_nav ul li a::before {
  top: -webkit-calc(110% - 0.25em);
  top: calc(110% - 0.25em);
  left: -webkit-calc(50% - 0.3em);
  left: calc(50% - 0.3em);
  width: 0.6em;
  height: 0.6em;
  border-radius: 1.2em;
  -webkit-transform: scale(0);
  transform: scale(0);
  display: none;
}
.header .header_content .header_nav ul li a:after {
  top: 110%;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
.header .header_content .header_nav ul li a:hover {
  color: #FF5722;
}
.header .header_content .header_nav ul li a:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.header .header_content .header_nav ul li a:hover::before {
  webkit-transform: scale(1);
  transform: scale(1);
}
.header .header_content .header_nav .button {
  padding-top: 10px;
  padding-bottom: 10px;
}
.header.darkHeader {
  position: fixed;
  width: 100%;
  left: 0;
  background-color: white;
}
.header.darkHeader .header_content {
  padding: 6px 0;
}

img.background_image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -4;
}

.home_banner .banner_image {
  position: relative;
}
.home_banner .banner_image img {
  width: 100%;
}
@media (max-width: 601px) {
  .home_banner .banner_image img {
    position: absolute;
    height: 100%;
    object-fit: cover;
  }
}
.home_banner .banner_image .container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  color: white;
  text-align: center;
}
@media (max-width: 601px) {
  .home_banner .banner_image .container {
    position: relative;
    transform: unset;
    left: 0;
    top: 0;
    right: 0;
    padding: 0;
  }
}
.home_banner .banner_image .container .banner_content {
  padding: 0 30px;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
@media (max-width: 601px) {
  .home_banner .banner_image .container .banner_content {
    max-width: 100%;
    padding: 50px 10px;
  }
}
.home_banner .banner_image .container .banner_content h1 {
  color: white;
  font-size: 3rem;
  line-height: 1.2;
  margin: 15px 0;
}
@media (max-width: 601px) {
  .home_banner .banner_image .container .banner_content h1 {
    font-size: 1.7rem;
    margin-top: 0;
    margin: 0;
  }
}
.home_banner .banner_image .container .banner_content h5 {
  color: white;
}
@media (max-width: 601px) {
  .home_banner .banner_image .container .banner_content h5 {
    font-size: 1.1rem;
  }
}
.home_banner .banner_image .container .banner_content p {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 601px) {
  .home_banner .banner_image .container .banner_content p {
    font-size: 0.9rem;
  }
}

.barnds {
  padding-bottom: 0;
}
.barnds .slick-initialized .slick-list .slick-track .slick-slide .item {
  padding: 10px;
}
.barnds .slick-initialized .slick-list .slick-track .slick-slide .item img {
  width: 100%;
}
.barnds .slick-initialized .slick-arrow {
  display: none !important;
}

.about_us .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 601px) {
  .about_us .container {
    flex-wrap: wrap;
  }
}
.about_us .image_wrap {
  width: 100%;
  max-width: 48%;
}
@media (max-width: 601px) {
  .about_us .image_wrap {
    max-width: 100%;
  }
}
.about_us .image_wrap img {
  width: 100%;
  margin: 0 auto;
}
.about_us .content {
  width: 100%;
  max-width: 48%;
}
@media (max-width: 601px) {
  .about_us .content {
    max-width: 100%;
  }
}
.about_us .content ul li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 23px;
}
.about_us .content ul li .icon {
  position: absolute;
  left: 0;
  top: 4px;
}
.about_us .content ul li b {
  color: #2b2b39;
  font-size: 1.2rem;
}

@media (max-width: 601px) {
  .what_we_do {
    padding-top: 20px;
  }
}
.what_we_do .what_we_do_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 601px) {
  .what_we_do .what_we_do_head {
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
}
.what_we_do .what_we_do_head .page_title {
  width: 100%;
  max-width: 425px;
}
@media (max-width: 601px) {
  .what_we_do .what_we_do_head .page_title {
    padding-bottom: 15px;
  }
}
.what_we_do .work_list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .what_we_do .work_list ul {
    justify-content: unset;
  }
}
.what_we_do .work_list ul li {
  width: 25%;
  padding-right: 20px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .what_we_do .work_list ul li {
    width: 33.3333333333%;
  }
}
@media (max-width: 601px) {
  .what_we_do .work_list ul li {
    width: 50%;
    padding-right: 15px;
  }
}
.what_we_do .work_list ul li:nth-child(4n+4) {
  padding-right: 0;
}
@media (max-width: 601px) {
  .what_we_do .work_list ul li:nth-child(2n+2) {
    padding-right: 0;
  }
}
.what_we_do .work_list ul li .sr_number {
  font-weight: 500;
  color: #FF5722;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background-color: #fdeae1;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media (max-width: 601px) {
  .what_we_do .work_list ul li .sr_number {
    margin-bottom: 12px;
  }
}
.what_we_do .work_list ul li b {
  padding-left: 10px;
}
.what_we_do .work_list ul li p {
  padding-left: 10px;
}

.team_work .page_title {
  margin: 0 auto;
}
.team_work .page_title .sub_title {
  padding: 0;
}
.team_work .page_title .sub_title:after {
  display: none;
}
.team_work .image_wrap img {
  width: 100%;
}

.wrap_meet_clients .page_title {
  max-width: 100%;
}
.wrap_meet_clients .page_title .wrap_between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 601px) {
  .wrap_meet_clients .page_title .wrap_between {
    display: block;
  }
}
.wrap_meet_clients .page_title .wrap_between h3 {
  width: 50%;
}
@media (max-width: 601px) {
  .wrap_meet_clients .page_title .wrap_between h3 {
    width: 100%;
  }
}
.wrap_meet_clients .page_title .wrap_between p {
  width: 50%;
  font-weight: 500;
  color: #212121;
}
@media (max-width: 601px) {
  .wrap_meet_clients .page_title .wrap_between p {
    width: 100%;
  }
}
.wrap_meet_clients .accordion {
  width: 100%;
  height: 320px;
  overflow: hidden;
  margin: 30px auto;
}
@media (max-width: 601px) {
  .wrap_meet_clients .accordion {
    height: 100%;
  }
}
.wrap_meet_clients .accordion ul {
  display: flex;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}
.wrap_meet_clients .accordion ul li {
  position: relative;
  display: block;
  width: 280px;
  float: left;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 601px) {
  .wrap_meet_clients .accordion ul li {
    float: unset;
    margin: 0 auto;
  }
}
.wrap_meet_clients .accordion ul li .img_1 {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
.wrap_meet_clients .accordion ul li .img_2 {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease-in-out;
}
.wrap_meet_clients .accordion ul li:hover {
  width: 640px;
}
@media (max-width: 601px) {
  .wrap_meet_clients .accordion ul li:hover {
    max-width: 640px;
    width: 100%;
  }
}
.wrap_meet_clients .accordion ul li:hover .img_1 {
  opacity: 0;
}
.wrap_meet_clients .accordion ul li:hover .img_2 {
  opacity: 1;
}
.wrap_meet_clients .accordion ul li a {
  width: 100%;
  height: 320px;
}
@media screen and (max-width: 768px) {
  .wrap_meet_clients .accordion ul li a {
    height: 235px;
  }
}
@media (max-width: 601px) {
  .wrap_meet_clients .accordion ul li a {
    height: 88px;
  }
}
.wrap_meet_clients .accordion ul li a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
@media (max-width: 601px) {
  .wrap_meet_clients .accordion ul li a img {
    object-fit: cover;
    border-radius: 10px;
  }
}

.facilities_needs .tab_wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 601px) {
  .facilities_needs .tab_wrapper {
    flex-direction: column;
  }
}
.facilities_needs .tab_wrapper .tab_menu {
  width: 100%;
  max-width: 300px;
  position: relative;
}
@media (max-width: 601px) {
  .facilities_needs .tab_wrapper .tab_menu {
    max-width: 100%;
  }
}
.facilities_needs .tab_wrapper .tab_menu p {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  left: 0;
}
@media (max-width: 601px) {
  .facilities_needs .tab_wrapper .tab_menu p {
    display: none;
  }
}
.facilities_needs .tab_wrapper .tab_menu p .bar {
  width: 4px;
  height: 170px;
  border-radius: 4px;
  background-color: #dfdfdf;
  position: relative;
}
.facilities_needs .tab_wrapper .tab_menu p .bar:after {
  content: "";
  position: absolute;
  height: 25%;
  width: 100%;
  background-color: #ef6c2b;
  transition: all 0.3s linear;
}
.facilities_needs .tab_wrapper .tab_menu p .bar.currentSelect2:after {
  height: 50%;
}
.facilities_needs .tab_wrapper .tab_menu p .bar.currentSelect3:after {
  height: 75%;
}
.facilities_needs .tab_wrapper .tab_menu p .bar.currentSelect4:after {
  height: 100%;
}
.facilities_needs .tab_wrapper .tab_menu ul {
  width: 250px;
  padding-left: 40px;
}
@media (max-width: 601px) {
  .facilities_needs .tab_wrapper .tab_menu ul {
    width: 100%;
    padding: 0;
    display: flex;
    white-space: nowrap;
    overflow: auto;
  }
}
.facilities_needs .tab_wrapper .tab_menu ul li {
  cursor: pointer;
  padding: 15px 15px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #000;
  transition: all 0.3s linear;
}
@media (max-width: 601px) {
  .facilities_needs .tab_wrapper .tab_menu ul li {
    padding: 7px 10px;
    margin-right: 3px;
  }
}
.facilities_needs .tab_wrapper .tab_menu ul li.current {
  background-color: #FF5722;
  color: white;
  box-shadow: 1px 4px 38px rgba(255, 87, 34, 0.3);
}
@media (max-width: 601px) {
  .facilities_needs .tab_wrapper .tab_menu ul li.current {
    box-shadow: none;
    border-bottom: 1px solid #FF5722;
    background-color: transparent;
    color: #FF5722;
  }
}
.facilities_needs .tab_wrapper .tab_content {
  width: calc(100% - 310px);
}
@media (max-width: 601px) {
  .facilities_needs .tab_wrapper .tab_content {
    width: 100%;
    margin-top: 10px;
  }
}
.facilities_needs .tab_wrapper .tab_content .image_wrap {
  display: none;
}
.facilities_needs .tab_wrapper .tab_content .image_wrap img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 10px;
}
.facilities_needs .tab_wrapper .tab_content .image_wrap.current {
  display: block;
}

.founder_policrew .page_title {
  margin: 0 auto;
  text-align: center;
}
.founder_policrew .image_wrap {
  text-align: center;
}
.founder_policrew .image_wrap img {
  width: 100%;
}
.founder_policrew .wrap_founder_img {
  display: flex;
  justify-content: space-between;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1920px) {
  .founder_policrew .wrap_founder_img {
    max-width: 1140px;
  }
}
@media screen and (max-width: 1366px) {
  .founder_policrew .wrap_founder_img {
    max-width: 980px;
  }
}
@media screen and (max-width: 768px) {
  .founder_policrew .wrap_founder_img {
    display: block;
    background-color: #000;
  }
}
.founder_policrew .wrap_founder_img figure {
  width: 30%;
}
.founder_policrew .wrap_founder_img figure img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .founder_policrew .wrap_founder_img figure {
    width: 50%;
    margin: 0 auto;
  }
}
.founder_policrew .wrap_founder_img .bg_theme_img {
  background-image: url("../../assets/images/bg_theme.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100%;
  width: 70%;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .founder_policrew .wrap_founder_img .bg_theme_img {
    background-image: unset;
    width: 100%;
  }
}
@media (max-width: 601px) {
  .founder_policrew .wrap_founder_img .bg_theme_img {
    padding: 10px;
  }
}
.founder_policrew .wrap_founder_img .bg_theme_img p {
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
  padding-right: 90px;
}
@media screen and (max-width: 768px) {
  .founder_policrew .wrap_founder_img .bg_theme_img p {
    padding-right: 0;
  }
}
@media (max-width: 601px) {
  .founder_policrew .wrap_founder_img .bg_theme_img p {
    font-size: 1rem;
    font-weight: 400;
  }
}
.founder_policrew .wrap_founder_img .bg_theme_img ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 601px) {
  .founder_policrew .wrap_founder_img .bg_theme_img ul {
    display: block;
  }
}
.founder_policrew .wrap_founder_img .bg_theme_img ul li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
  color: white;
  max-width: 49%;
  width: 100%;
}
@media (max-width: 601px) {
  .founder_policrew .wrap_founder_img .bg_theme_img ul li {
    max-width: 100%;
  }
}
.founder_policrew .wrap_founder_img .bg_theme_img ul li i {
  position: absolute;
  left: 0;
  top: 4px;
}
.founder_policrew .wrap_founder_img .bg_theme_img .wrap_name_logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 40px;
}
.founder_policrew .wrap_founder_img .bg_theme_img .wrap_name_logo .name_wrap span {
  color: white;
  opacity: 0.7;
}
.founder_policrew .wrap_founder_img .bg_theme_img .wrap_name_logo .twitter_logo {
  display: flex;
  align-items: center;
}
.founder_policrew .wrap_founder_img .bg_theme_img .wrap_name_logo .twitter_logo a {
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #000;
  border: 1.3px solid #e6e6e6;
  font-size: 20px;
  margin-right: 10px;
}
.founder_policrew .wrap_founder_img .bg_theme_img .wrap_name_logo .twitter_logo a:hover {
  background-color: #38a1f3;
  border-color: #38a1f3;
  color: white;
}
.founder_policrew .wrap_founder_img .bg_theme_img .wrap_name_logo .twitter_logo a:hover.facebook {
  background-color: #29487d;
  border-color: #29487d;
  color: white;
}
.founder_policrew .wrap_founder_img .cstm_arrow {
  position: absolute;
  width: 70px;
  top: -23px;
  left: -36px;
}
@media screen and (max-width: 768px) {
  .founder_policrew .wrap_founder_img .cstm_arrow {
    display: none;
  }
}

.blog_section .blog_wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .blog_section .blog_wrap {
    overflow: auto;
  }
  .blog_section .blog_wrap::-webkit-scrollbar {
    display: none;
  }
}
.blog_section .blog_wrap .blog_card {
  width: 32%;
  padding: 15px;
  border: 1px solid #f1f1f1;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .blog_section .blog_wrap .blog_card {
    width: 100%;
    min-width: 310px;
    margin-right: 10px;
  }
}
@media (max-width: 601px) {
  .blog_section .blog_wrap .blog_card {
    min-width: 285px;
  }
}
.blog_section .blog_wrap .blog_card .image_wrap {
  position: relative;
  height: 230px;
}
.blog_section .blog_wrap .blog_card .image_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.blog_section .blog_wrap .blog_card .image_wrap .date {
  padding: 8px 15px;
  background-color: white;
  color: #FF5722;
  position: absolute;
  bottom: 0;
  left: 0;
}
.blog_section .blog_wrap .blog_card .content {
  padding-top: 10px;
}
.blog_section .blog_wrap .blog_card .content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.blog_section .blog_wrap .blog_card .content h3 a {
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.blog_section .blog_wrap .blog_card .content p {
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 868px) {
  .blog_section .blog_wrap .blog_card .content p {
    height: 105px;
  }
}
@media screen and (max-width: 768px) {
  .blog_section .blog_wrap .blog_card .content p {
    height: unset;
  }
}
.blog_section .blog_wrap .blog_card .content .button {
  box-shadow: 0px 12.56px 24.5px -15.56px #0e2a3e;
}
.blog_section .blog_wrap .blog_card .content .button a {
  color: white;
}
.blog_section .blog_wrap.slick-initialized .slick-prev {
  left: unset;
  right: 60px !important;
}
.blog_section .blog_wrap.slick-initialized .slick-prev::before {
  content: "<";
  color: #14142b;
  opacity: 1;
  font-size: 16px;
  font-weight: 900;
}
.blog_section .blog_wrap.slick-initialized .slick-next {
  right: 0;
}
.blog_section .blog_wrap.slick-initialized .slick-next::before {
  content: ">";
  color: #14142b;
  opacity: 1;
  font-size: 16px;
  font-weight: 900;
}
.blog_section .blog_wrap.slick-initialized .slick-arrow {
  border: 1.04px solid #a2b4c8;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 1;
  top: -80px;
  transition: all 0.3s linear;
}
.blog_section .blog_wrap.slick-initialized .slick-arrow:hover {
  border-radius: 50%;
}

.footer {
  padding-top: 25px;
  border-top: 1px solid #f0f0f0;
  color: #000;
}
.footer .container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 820px) {
  .footer .container {
    flex-wrap: wrap;
  }
}
.footer .logo_section {
  width: 100%;
  max-width: 240px;
}
@media screen and (max-width: 820px) {
  .footer .logo_section {
    max-width: 49%;
    margin-bottom: 20px;
    order: 1;
  }
}
@media (max-width: 601px) {
  .footer .logo_section {
    max-width: 100%;
  }
}
.footer .logo_section img {
  width: 100%;
  max-width: 150px;
  margin-bottom: 10px;
}
.footer .logo_section h4 {
  font-size: 1.4rem;
  font-weight: 500;
}
.footer .subscription {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .footer .subscription {
    max-width: 49%;
    order: 3;
    margin: 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 601px) {
  .footer .subscription {
    max-width: 100%;
    order: 2;
  }
}
.footer .subscription .input_wrap {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 820px) {
  .footer .subscription .input_wrap {
    justify-content: flex-start;
  }
}
.footer .subscription .input_wrap input {
  height: 45px;
  border: 1px solid #f1f1f1;
  padding: 10px 15px;
  border-radius: 10px;
  margin-right: 10px;
  outline: none;
  width: 100%;
  max-width: 320px;
}
@media screen and (max-width: 820px) {
  .footer .subscription .input_wrap input {
    max-width: calc(100% - 140px);
  }
}
@media (max-width: 601px) {
  .footer .subscription .input_wrap input {
    max-width: calc(100% - 122px);
    height: 40px;
  }
}
.footer .subscription .input_wrap input:focus {
  border-color: #FF5722;
}
@media screen and (max-width: 820px) {
  .footer .content_details {
    width: 100%;
    max-width: 49%;
    order: 2;
  }
}
@media (max-width: 601px) {
  .footer .content_details {
    max-width: 100%;
    order: 3;
  }
}
.footer .content_details .contact_links li {
  margin-bottom: 10px;
}
.footer .content_details .contact_links li a {
  display: flex;
  align-items: center;
  color: #000;
  font-weight: 500;
}
.footer .content_details .contact_links li a i {
  margin-right: 8px;
  font-size: 1.1rem;
}
.footer .content_details .contact_links li a:hover {
  color: #FF5722;
}
.footer .content_details .social_icons {
  display: flex;
  align-items: center;
  padding: 25px 0;
}
.footer .content_details .social_icons li {
  margin-right: 10px;
}
.footer .content_details .social_icons li a {
  width: 43px;
  height: 43px;
  background-color: white;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #000;
  border: 1.3px solid #e6e6e6;
  font-size: 20px;
}
.footer .content_details .social_icons li a:hover.facebook {
  background-color: #29487d;
  border-color: #29487d;
  color: white;
}
.footer .content_details .social_icons li a:hover.insta {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: white;
}
.footer .content_details .social_icons li a:hover.twitter {
  background-color: #38a1f3;
  border-color: #38a1f3;
  color: white;
}
.footer .content_details .social_icons li a:hover.youtube {
  background-color: #ed3833;
  color: white;
}
.footer .copyright {
  padding: 10px 10px;
  text-align: center;
  background-color: #f7f7f7;
}

.campaigns_section .banner {
  min-height: 200px;
  position: relative;
}
@media (max-width: 601px) {
  .campaigns_section .banner {
    min-height: unset;
  }
}
.campaigns_section .banner .content {
  width: 100%;
  max-width: 767px;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 601px) {
  .campaigns_section .banner .content {
    position: sticky;
    transform: unset;
  }
}
.campaigns_section .banner .content span {
  color: #FF5722;
  font-weight: 500;
}
.campaigns_section .banner .content h1 {
  font-size: 2.6rem;
}
@media (max-width: 601px) {
  .campaigns_section .banner .content h1 {
    font-size: 2rem;
  }
}
.campaigns_section .banner .content p {
  color: #000;
}
.campaigns_section .page_title {
  max-width: 100%;
}
.campaigns_section .page_title .container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 601px) {
  .campaigns_section .page_title .container {
    flex-wrap: wrap;
  }
}
.campaigns_section .page_title .container .content {
  width: 100%;
  max-width: 40%;
}
@media (max-width: 601px) {
  .campaigns_section .page_title .container .content {
    max-width: 100%;
    text-align: center;
  }
}
.campaigns_section .page_title .container p {
  width: 100%;
  max-width: 40%;
}
@media (max-width: 601px) {
  .campaigns_section .page_title .container p {
    max-width: 100%;
  }
}
.campaigns_section .content_listing_wrap {
  padding: 20px 0;
}
.campaigns_section .content_listing_wrap .content_listing {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 601px) {
  .campaigns_section .content_listing_wrap .content_listing {
    flex-wrap: wrap;
  }
}
.campaigns_section .content_listing_wrap .content_listing:not(:last-child) {
  padding-bottom: 30px;
}
@media (max-width: 601px) {
  .campaigns_section .content_listing_wrap .content_listing:not(:last-child) {
    padding-bottom: 15px;
  }
}
.campaigns_section .content_listing_wrap .content_listing .image_wrap {
  width: 100%;
  max-width: calc(100% - 400px);
  padding-left: 20px;
}
@media (max-width: 601px) {
  .campaigns_section .content_listing_wrap .content_listing .image_wrap {
    max-width: 100%;
    padding-left: 0;
  }
}
.campaigns_section .content_listing_wrap .content_listing .image_wrap img {
  width: 100%;
}
.campaigns_section .content_listing_wrap .content_listing .content {
  width: 100%;
  max-width: 400px;
}
@media screen and (max-width: 1920px) {
  .campaigns_section .content_listing_wrap .content_listing .content {
    max-width: 600px;
  }
}
@media screen and (max-width: 1688px) {
  .campaigns_section .content_listing_wrap .content_listing .content {
    max-width: 550px;
  }
}
@media screen and (max-width: 1366px) {
  .campaigns_section .content_listing_wrap .content_listing .content {
    max-width: 400px;
  }
}
.campaigns_section .content_listing_wrap .content_listing .content h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.campaigns_section .content_listing_wrap .content_listing .content P {
  margin-bottom: 16px;
}
.campaigns_section .content_listing_wrap .content_listing .content ul li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
}
@media (max-width: 601px) {
  .campaigns_section .content_listing_wrap .content_listing .content ul li {
    margin-bottom: 5px;
  }
}
.campaigns_section .content_listing_wrap .content_listing .content ul li i {
  position: absolute;
  left: 0;
  top: 4px;
}
.campaigns_section .content_listing_wrap .content_listing:nth-child(even) {
  flex-direction: row-reverse;
}
.campaigns_section .content_listing_wrap .content_listing:nth-child(even) .content {
  padding-left: 20px;
}
@media (max-width: 601px) {
  .campaigns_section .content_listing_wrap .content_listing:nth-child(even) .content {
    padding-left: 0;
  }
}
.campaigns_section .content_listing_wrap .content_listing:nth-child(even) .content ul {
  width: 100%;
}
.campaigns_section .content_listing_wrap .content_listing:nth-child(even) .content ul li {
  display: block;
}
.campaigns_section .content_listing_wrap .content_listing:nth-child(even) .image_wrap {
  padding-left: 0;
}

.custom-modal {
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
}
.custom-modal .custom-modal-dialog {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.custom-modal .custom-modal-dialog {
  max-width: 750px;
  width: 100%;
  border-radius: 0px;
  position: relative;
}
.custom-modal .custom-modal-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
}
.custom-modal .close-modal {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #f56142;
  opacity: 1;
  color: #ffffff;
  border-radius: 100%;
  border: 2px solid #ffffff;
  z-index: 9;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  padding: 0;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
}
.custom-modal .custom-modal-body {
  display: flex;
  justify-content: space-between;
}
.custom-modal .custom-modal-body .content_left {
  width: 100%;
  max-width: 45%;
  background-image: url("../../assets/images/modal_image.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 100% 100%;
  color: white;
  padding: 20px;
  border-radius: 16px;
}
@media (max-width: 601px) {
  .custom-modal .custom-modal-body .content_left {
    display: none;
  }
}
.custom-modal .custom-modal-body .content_left h4 {
  color: white;
  font-size: 1.5rem;
}
.custom-modal .custom-modal-body .content_left p {
  color: #c9c9c9;
}
.custom-modal .custom-modal-body .content_left .contact_links {
  padding: 40px 0;
}
.custom-modal .custom-modal-body .content_left .contact_links li {
  margin-bottom: 10px;
}
.custom-modal .custom-modal-body .content_left .contact_links li a {
  color: white;
  display: flex;
  align-items: center;
}
.custom-modal .custom-modal-body .content_left .contact_links li a:hover {
  color: #FF5722;
}
.custom-modal .custom-modal-body .content_left .contact_links li i {
  margin-right: 8px;
  font-size: 1.2rem;
}
.custom-modal .custom-modal-body .content_left .social_icons {
  display: flex;
  padding-top: 20px;
}
.custom-modal .custom-modal-body .content_left .social_icons li {
  list-style: none;
  margin-right: 10px;
}
.custom-modal .custom-modal-body .content_left .social_icons li:last-child {
  margin-right: 0;
}
.custom-modal .custom-modal-body .content_left .social_icons li a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 1;
  background: #333;
  border-radius: 50%;
  font-size: 1.1rem;
  color: #666;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-modal .custom-modal-body .content_left .social_icons li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffee10;
  transition: 0.5s;
  transform: scale(0.9);
  z-index: -1;
}
.custom-modal .custom-modal-body .content_left .social_icons li a:hover {
  color: #ffee10;
  color: #ffee10;
  box-shadow: 0 0 14px #ffee10;
  text-shadow: 0 0 3px #ffee10;
}
.custom-modal .custom-modal-body .content_left .social_icons li a:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 15px #ffee10;
}
.custom-modal .custom-modal-body .form {
  width: 100%;
  max-width: 52%;
  padding: 15px;
}
@media (max-width: 601px) {
  .custom-modal .custom-modal-body .form {
    max-width: 100%;
  }
}
.custom-modal .custom-modal-body .form .form_field {
  margin-bottom: 15px;
}
.custom-modal .custom-modal-body .form .form_field .label {
  display: block;
  margin-left: 3px;
  color: #000;
  font-weight: 500;
}
.custom-modal .custom-modal-body .form .form_field .input {
  border: 1px solid #dcdcdc;
  height: 43px;
  padding: 10px 15px;
  outline: none;
  border-radius: 12px;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  transition: all 0.3s linear;
}
.custom-modal .custom-modal-body .form .form_field .input:focus {
  border-color: #FF5722;
}
.custom-modal .custom-modal-body .form .form_field textarea {
  height: 80px;
}
.custom-modal .custom-modal-body .form .button_wrap {
  text-align: right;
}

body.modal-open {
  overflow: hidden;
}
body.modal-open .custom-modal {
  opacity: 1;
  visibility: visible;
}
body.modal-open .custom-modal .custom-modal-dialog {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.custom-modal,
body .custom-modal,
body.modal-open .custom-modal .custom-modal-dialog,
body .custom-modal .custom-modal-dialog {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.overlay {
  display: none;
}
@media screen and (max-width: 820px) {
  .overlay {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5294117647);
    position: fixed;
    top: 57px;
    right: 0;
    z-index: 9;
  }
}

.mobile_open {
  overflow: hidden;
}
.mobile_open .header .header_content .mobile_button .open {
  display: none;
}
.mobile_open .header .header_content .mobile_button .close {
  display: block;
}
.mobile_open .header .header_nav {
  transform: translateX(0);
}
.mobile_open .overlay {
  visibility: visible;
  opacity: 1;
  transition: all 0.4s;
}

/*# sourceMappingURL=style.css.map */
