/*
Template Name: Color World - v1.0.0
*/


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  /*background-color: #000;*/
}

a {
  text-decoration: none;
  color: #5a5af3;
}

a:hover {
  /*color: #2a2af0;*/
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

:root {
  --yellow-hard: #caa135;
  --yellow: #fcc200;
  --white: #ffffff;
  --black: #000000;
}

section {
  padding: 60px 0;
}

.section-bg {
  background-color: #000000;
}

.count_wrapper {}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #434175;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--yellow);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #fcc101;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #8080f6;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 3px 0;
  background: rgba(24, 24, 25, 1);
}

#header.header-scrolled,
#header.header-inner-pages {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #5a5af3;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    padding: 12px 0;
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/

.bd_black {
  background-color: #1b1b1b;
}

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #434175;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #5a5af3;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 6px 25px;
  margin-left: 30px;
  border-radius: 5px;
  color: #fff;
  border: 2px solid #fcc200;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #fcc200;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #5a5af3;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.learn_anywhere:before {
  z-index: 18;
  background-color: rgb(255, 204, 0);
  color: rgb(255, 255, 255);
  width: 3px;
  height: 20px;
  min-height: 0px;
  min-width: 0px;
  max-height: none;
  max-width: none;
  overflow: hidden;
  border-radius: 2px;
  transform-origin: 50% 50%;
  opacity: 1;
  transform: translate(0px, 0px);
  visibility: visible;
}

.banner_logo img {
  width: 200px;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
  .navbar .getstarted,
  .navbar .getstarted:focus {
    color: #000;
    border: 0;
  }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(48, 47, 84, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #434175;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #5a5af3;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #5a5af3;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  background: #000;
}

.learn_anywhere {
  position: relative;
}

.learn_anywhere::before {
  top: 0;
  content: '';
  width: 2px;
  left: -10px;
  height: 26px;
  display: block;
  position: absolute;
  background-color: red;
}

#hero .container {
  padding-top: 80px;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

#hero h2 {
  margin: 10px 0 0 0;
  font-size: 20px;
}

#hero p {
  color: #ffffff;
}

#hero ul {
  margin-top: 15px;
  list-style: none;
  padding: 0;
}

#hero ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

#hero ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #5a5af3;
}

#hero .btn-get-started,
#hero .btn-get-quote {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 30px 9px 30px;
  margin-bottom: 15px;
  border-radius: 3px;
  transition: 0.5s;
  border-radius: 5px;
}

#hero .btn-get-started {
  background: #d8bf1e;
  color: #fff;
  border: 2px solid #d8bf1e;
  margin-right: 10px;
}

#hero .btn-get-started:hover {
  background: transparent;
  border-color: #d8bf1e;
}

#hero .btn-get-quote {
  color: #5a5af3;
  border: 2px solid #5a5af3;
}

#hero .btn-get-quote:hover {
  background: #5a5af3;
  color: #fff;
}
.bannes_top{
  margin-top: 200px;
}

/*button 2 start*/

.btn-get-started2 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 15px 30px 15px 30px;
  margin-bottom: 15px;
  border-radius: 3px;
  transition: 0.5s;
  border-radius: 5px;
}

.btn-get-started2 {
  background: #d8bf1e;
  color: #fff;
  border: 2px solid #d8bf1e;
  margin-right: 10px;
}

.btn-get-started2:hover {
  background: #ffffff;
  border-color: #d8bf1e;
}

.btn-get-quote {
  color: #5a5af3;
  border: 2px solid #5a5af3;
}

.btn-get-quote2:hover {
  background: #5a5af3;
  color: #000000;
}


/*button 2 end*/

.line-height {
  line-height: 2;
}

.learn_color {
  position: relative;
}

.learn_color::before {
  top: 0;
  content: '';
  width: 2px;
  left: -10px;
  height: 26px;
  display: block;
  position: absolute;
  background-color: red;
}

.text-yellow {
  color: #daa520;
}

.learn_color:before {
  z-index: 18;
  background-color: #ffffff;
  color: rgb(255, 255, 255);
  width: 3px;
  height: 20px;
  min-height: 0px;
  min-width: 0px;
  max-height: none;
  max-width: none;
  overflow: hidden;
  border-radius: 2px;
  transform-origin: 50% 50%;
  opacity: 1;
  transform: translate(0px, 0px);
  visibility: visible;
}

.white-line {
  height: 3px;
  width: 100%;
  background: #ffffff;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
  .bg-video-wrap>video {
    width: 100%;
  }
  .hero-img .img_two_hero {
    display: none;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero {
    text-align: center;
  }
  #hero ul {
    text-align: left;
    font-size: 14px;
  }
  #hero .hero-img img {
    width: 100%;
  }
  #hero .btn-get-started,
  #hero .btn-get-quote {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 14px;
  }
  .latest_news {
    text-align: center;
  }
  .navbar-mobile ul {
    height: 350px;
  }
}

.h2_heading {
  font-size: 48px;
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio {
  background-color: #000000;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--yellow-hard);
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fcc200;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

..portfolio:hover .portfolio-wrap {
  transition: 0.3s;
}

.portfolio .portfolio-wrap::before {
  content: "";
  /*background: rgba(255, 255, 255, 0.7);*/
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 1;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  border-radius: 0px 0px 5px 5px;
  transition: all ease-in-out 0.3s;
  height: 130px;
  background: #000000a8;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  position: absolute;
  top: 0px;
  left: 0px;
  border-top: 3px solid var(--yellow);
  border-left: 3px solid var(--yellow);
  transition: all 0.5s ease 0s;
  z-index: 9994;
  */
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #434175;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #434175;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #5a5af3;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #1313ee;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

/*.portfolio .portfolio-wrap:hover .portfolio-info {*/
/*  opacity: 1;*/
/*}*/

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 0px;
  left: 0px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

.category a {
  position: absolute;
  margin-bottom: 25px;
  border-radius: 5px;
  padding: 8px 11.25px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  transition: 0.3s;
  background: var(--yellow);
  left: 26px;
  top: -20px;
  z-index: 2;
}

.portfolio-wrap {
  position: relative;
}

.artis_info {
  padding: 0px 10px 0px 15px;
  width: 100%;
  bottom: 0;
  z-index: 4;
  /*background: #000000b0;*/
  position: absolute;
}
.artis_info .stars_{text-align: right;}

.artis_info img {
  width: 34px;
  height: 34px;
  margin-bottom: 6px;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.company_informations {
  position: absolute;
  top: 0;
}

.white_line {
  width: 100%;
  height: 1px;
  margin: 18px 0 -3px 0;
  background-color: #ffffff;
}

.portfolio-wrap:hover .white_line {
  width: 100%;
  height: 1px;
  margin: 18px 0 -3px 0;
  background-color: rgb(216, 191, 30);
}

.Rows {
  display: table;
  width: 100%;
  /*Optional*/
  table-layout: fixed;
  /*Optional*/
  border-spacing: 10px;
  /*Optional*/
}

.Column {
  color: #fff;
  display: table-cell;
}

.portfolio-wrap:hover .Column {
  display: table-cell;
}

.price_ {
  border-radius: 5px;
  text-align: center;
  /*background-color: var(--yellow);*/
}

.portfolio-wrap:hover .price_ {
  color: var(--white);
}

.artis_info b,
p {
  color: #ffffff;
  ont-size: 18px;
}

.portfolio-wrap:hover .artis_info b {
  /*color: var(--yellow);*/
}

.portfolio-wrap:hover .artis_info p {
  /*color: var(--black);*/
}
button.owl-prev {
    background: #fcc101  !important;
    width: 50px  !important; 
    height: 50px  !important; 
    line-height: 30px  !important; 
    border-radius: 100px  !important;
}
button.owl-next{
     background: #fcc101  !important;
    width: 50px  !important; 
    height: 50px  !important; 
    line-height: 30px  !important; 
    border-radius: 100px  !important;
    margin: 0 0 0 10px;
    text-align: initial;
}
.owl-nav {
    margin: 20px 0px 0px 0px !important;
}
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #5a5af3;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #5a5af3;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(67, 65, 117, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #5a5af3;
  color: #fff;
  border-radius: 50px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  display: block;
  font-weight: 600;
  color: #ffffff;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  white-space: nowrap;
  ;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
}

.count_wrapper {
  width: 1336px;
  margin: auto;
  padding: 50px 20px 70px 30px;
  border-radius: 10px;
  background: var(--yellow-hard);
}

.count-box-wrap {
  position: relative;
}

.count-box:after {
  content: '';
  display: block;
  position: absolute;
  top: 55%;
  left: 15px;
  width: 3px;
  height: 65%;
  border-radius: 3px;
  background-color: #e5d120;
  transform: translateY(-50%);
}

.conter_paragrahp {
  color: var(--black);
  padding: 0px 0px 0px 16px;
}

.owl-theme .owl-controls .owl-page {
  display: inline-block;
}

.owl-theme .owl-controls .owl-page span {
  background: none repeat scroll 0 0 #869791;
  border-radius: 20px;
  display: block;
  height: 12px;
  margin: 5px 7px;
  opacity: 0.5;
  width: 12px;
}

.owl-stage-outer .item img {
  border-radius: 10px;
}

@media (max-width: 767px) {
  .count_wrapper {
    width: auto;
  }
}


/*--------------------------------------------------------------
# Latest News
--------------------------------------------------------------*/
.card_inner img{
    height: 230px;
    width: 100%;
    object-fit: fill;
    object-position: top;
    display: block;
}
.latest_news {
  background-color: var(--black);
}

.latest_news_wrapper {
  width: 1336px;
  margin: auto;
  padding: 50px 20px 70px 30px;
  border-radius: 10px;
  background: var(--yellow-hard);
  background-color: #ddd!important;
}

.line2 {
  height: 2px;
  background-color: #000000;
}

.latest_news_wrapper h1 {
  font-weight: 900;
  font-size: 42px;
  line-height: 52px;
}

.latest_news img {
  padding: 0 80px 0px 80px;
}

.download_logs p {
  color: #969696;
}

.ist_footer {
  width: 100%;
  height: 130px;
  background-color: #12141b;
}

@media (max-width: 992px) {
  .latest_news_wrapper {
    width: 100%;
  }
}

.latest_news img {
  padding: 0;
}



/*--------------------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------------------
# News Page start 
---------------------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
--------------------------------------------------------------*/

.news_wrapper {
  background-color: #1a1b1c;
}

.news_wrapper: before {
  background: red;
  width: 100%;
}

.news_wrapper {
  height: 100vh;
  width: 100vw;
  min-width: 100%;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/bg1.jpg);
}

.news_wrapper {
  font-size: 85px;
}

.news_wrapper h1 {
  font-size: 60px;
}

.news_wrapper p {
  font-size: 20px;
  margin-bottom: 1px;
  color: #FFF;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 4px #e21836 solid;
  display: table;
  letter-spacing: 0.1em;
}
.red_wrapper {padding: 30px 0 100px 0px;}
.button_red {
  color: #ffffff;
  transition: 1s;
  font-size: 20px;
  border: solid #e21836 2px;
  padding: 30px 60px;
}

.button_red:hover {
  background-color: #e21836;
  transition: 1s;
  color: #FFF !important;
}

.out_most_popular_wrapper .line {
  display: block;
  margin: auto;
  width: 10%;
  height: 2px;
  background-color: #e21836;
}


/*--------------------------------------------------------------
# Slidr
--------------------------------------------------------------*/

.owl_one .owl-item .item img {
    border-radius: 0px;
    height: 250px;
    border: solid 0.5px #1c1b1b94;
    width: 100%;
    object-fit: contain;
}

.owl_one .owl-item .item {
  background: #fff;
  height: 480px;
}

.item_inner_ {
  padding: 30px;
}

.red_border {
  height: 4px;
  width: 31%;
  background-color: #e21836;
}

.out_most_popular_wrapper .owl-nav .owl-prev span {
  font-size: 30px;
  color: #fff;
}

.out_most_popular_wrapper .owl-nav .owl-next span {
  font-size: 30px;
  color: #fff;
  margin: 0px 0px 0px 20px;
}

@media (max-width: 992px) {
  .news_wrapper h1 {
    font-size: 25px;
  }
  .button_red {
    padding: 20px 60px;
  }
}


/*--------------------------------------------------------------
# IN THE NEWS
--------------------------------------------------------------*/

.shape {
  width: 100%;
  margin-top: 100px;
}

.top {
  height: 0;
  border-width: 0 0 260px 2501px;
  border-style: solid;
  border-color: transparent #000000 #0e0e0e transparent;
  /*border-color:transparent #d71f55 #d71f55 transparent;*/
}

.bottom {
  height: 50px;
  background-color: #d71f55;
}


/* Support transparent border colors in IE6. */

.top {
  filter: chroma(color=#123456);
  border-top-color: #123456;
}

.bd_white {
  background-color: #1b1b1b;
}

.line_after {
  position: relative;
}

.line_after:after {
  content: "";
  position: absolute;
  right: 0;
  border: solid 1px;
  height: 500px;
  top: 0;
}

.ali {
  padding: 100px 0px 100px 0px;
}


/*.wrapper_getme{padding: 100px;}*/

.we_want {
  padding: 100px;
}

.we_want h2 {
  font-size: 50px;
}


/*.we_want {margin-top: 100px;}*/

.we_want .button_red {
  margin-top: 100px;
  margin-bottom: 100px;
}

.shape {
  position: relative;
  width: 100%;
  height: 243px;
  background: #1b1b1b;
}

.shape:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: inherit;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform-origin: top left;
  transform: skewY(-6deg);
}

.margings {
  margin-top: 300px;
}


/*new secgiton*/

.bg1 {
  background-image: url(../img/news-bottom-bg-2.jpeg);
  height: 100vh;
  width: 100vw;
  background-repeat: no-repeat;
  background-size: cover;
}

.email_inner i {
  font-size: 100px;
  color: #fff;
  margin-bottom: 60px;
}

.email_inner b {
  font-size: 25px;
}

.email_inner h1 {
  padding: 7px;
}

.email_inner {
  padding: 250px;
}


/*--------------------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------------------
# News Details Page start 
---------------------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
--------------------------------------------------------------*/


/*Banner start*/

.news_details_banner {
    background-color: #1a1b1c;
    height: 450px;
    width: 100%;
    min-width: 100%;
    margin: auto;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/Rock-In-Rio.png);
}

.red_border2 {
  color: #FFF;
  text-transform: uppercase;
  font-family: "Tungsten-Semibold";
  font-size: 32px;
  padding-bottom: 10px;
  border-bottom: 4px #e21836 solid;
  display: table;
  letter-spacing: 0.1em;
  margin: auto;
}

.news_details_banner_inner {
    position: absolute;
    right: 0;
    left: 0;
    top: 30%;
    width: 70%;
    margin: auto;
    background: #00000029;
}
.news_details_wrapper > div {
    text-align: center;
}
.news_details_wrapper > div img{
    /*width:70% !important;*/
}
.news_details_banner_inner h1 {
  font-size: 20px;
  margin: 30px;
}
.news_details_wrapper strong{color: #fcc101;}

.news_details_wrapper h2 {
  font-size: 35px;
}

.news_details_wrapper h2:after {
  content: "";
  width: 280px;
  background: #e21836;
  height: 2px;
  display: block;
  margin: 10px 0px 23px;
}

.news_details_wrapper p {
  color: #000;
}

.red_buttons {
  transition: 0.5s;
}

.red_buttons {
  color: #000;
  font-size: 24px;
  padding: 20px 25px;
  display: inline-block;
  letter-spacing: 0.1em;
  border: 3px solid #e21836;
  text-transform: uppercase;
  font-family: "Proxima-Nova-Bold";
}

.red_buttons:hover {
  background: red;
  color: #ffffff;
  transition: 0.3s;
  border: solid transparent 3px;
}

.read_abouts {
  font-size: 20px;
  font-weight: 600;
}

.red_text {
  font-weight: 600;
  color: red;
}

.socials_sidebar {
  position: relative;
}

.socials {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: solid red 1px;
}

@media (max-width: 992px) {
  .news_details_wrapper img {
    width: 100% !important;
    height: 100% !important;
  }
  .news_details_banner_inner {
    font-size: 20px;
  }
  .news_details_banner_inner h1 {
    font-size: 20px;
  }
  .news_details_banner {
    height: 270px;
  }
  .news_details_wrapper h2 {
    font-size: 20px;
  }
  .news_details_wrapper h2:after {
    margin: 9px 0px 20px;
  }
  .news_wrapper {
    height: 250px;
    text-align: center;
  }
  .out_most_popular_wrapper h2 {
    font-size: 20px;
  }
  .owl-dots button span {
    background: transparent;
    width: 0;
    height: 0;
  }
  .ali {
    padding: 0;
  }
  .we_want {
    padding: 0;
  }
  .we_want h2 {
    font-size: 20px;
  }
  .we_want {
    margin: 70px 0 0 0;
  }
  .email_inner {
    padding: 0;
  }
  .bg1 {
    height: auto;
    width: auto;
  }
  .email_inner i {
    font-size: 50px;
    color: #fff;
    margin-bottom: 10px;
  }
  /*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
  .about .content h2 {
    font-weight: 700;
    font-size: 44px;
    line-height: 50px;
    margin-bottom: 20px;
    color: #434175;
  }
  .about .content h3 {
    font-weight: 500;
    line-height: 32px;
    font-size: 24px;
  }
  .about .content ul {
    list-style: none;
    padding: 0;
  }
  .about .content ul li {
    padding: 10px 0 0 28px;
    position: relative;
  }
  .about .content ul i {
    left: 0;
    top: 7px;
    position: absolute;
    font-size: 20px;
    color: #5a5af3;
  }
  .about .content p:last-child {
    margin-bottom: 0;
  }
  @media (max-width: 992px) {
    .top {
      border-width: 0;
    }
  }
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
  .contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgb(214 215 216 / 60%);
    padding: 20px 0 30px 0;
    background: #fff;
  }
  .contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    background: #fff;
  }
  .contact .info-box i {
    font-size: 32px;
    color: var(--yellow);
    border-radius: 50%;
    padding: 8px;
  }
  .contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
  }
  .contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  .contact .php-email-form {
    background: #fff;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
  }
  .contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
  }
  .contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  .contact .php-email-form .error-message br+br {
    margin-top: 25px;
  }
  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  .contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
  }
  .contact .php-email-form input,
  .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 5px;
  }
  .contact .php-email-form input:focus,
  .contact .php-email-form textarea:focus {
    border-color: #5a5af3;
  }
  .contact .php-email-form input {
    padding: 10px 15px;
  }
  .contact .php-email-form textarea {
    padding: 12px 15px;
  }
  .contact .php-email-form button[type=submit] {
    background: var(--yellow);
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
  }
  .contact .php-email-form button[type=submit]:hover {
    background: #000000;
  }
  @-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

/*--------------------------------------------------------------
# Privacy Police page start
--------------------------------------------------------------*/  
.privacy_policy_banner{
    height: 100vh;
    width: 100vw;
    min-width: 100%;
    margin: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/bg2.jpg);
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
  #footer {
    color: #444444;
    font-size: 14px;
    background: #eeeef5;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  #footer .footer-top {
    padding: 60px 0 30px 0;
    background: #000000;
  }
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  #footer .footer-top .footer-contact h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
  }
  #footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #777777;
  }
  #footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
  }
  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
  }
  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  #footer .footer-top .footer-links ul a {
    color: #777777;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  #footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #5a5af3;
  }
  #footer .footer-newsletter {
    font-size: 15px;
  }
  #footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
  }
  #footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    text-align: left;
    border: 1px solid #b9b9fa;
  }
  #footer .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
  }
  #footer .footer-newsletter form input[type=submit] {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #fcc101;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  #footer .footer-newsletter form input[type=submit]:hover {
    background: #000000;
  }
  #footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: #444444;
  }
  #footer .credits a {
    transition: 0.3s;
  }
  #footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #deddec;
    color: #434175;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  #footer .social-links a:hover {
    background: #5a5af3;
    color: #fff;
    text-decoration: none;
  }
  .red_wrapper {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .news_read_more{padding: 40px 0 70px 0;}
  .banner_login{
    height: 450px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  @media (max-width: 767px) {
    .about .content h2 {
      font-size: 28px;
      text-align: center;
    }
    .margings {
      margin-top: 0;
    }
    .navbar a, .navbar a:focus {
    display: block;}
    .readmore_mobile{
      margin: 20px 0px 0px 0px !important;
    }
    
  }
  .shape {
    display: none;
  }
  .out_most_popular_wrapper {
    height: 900px;
  }
  .owl_one .owl-nav {
    text-align: center;
  }
  .owl_one .owl-dots {
    display: none;
  }
  .red_wrapper {
    margin-top: 50px;
    margin-bottom: 0px;
  }
  .bannes_top{
  margin-top: 0px;
}
#hero .container {
    padding-top: 20px;
}
.h2_heading {
    font-size: 28px;
}
.learn_color{
    position: unset;
    text-align: center;
    
}
.about{text-align: center;}
.latest_news_wrapper h1 {
    font-size: 28px;}
.news_wrapper p {
    display: block;
    text-align: center;} 
.out_most_popular_wrapper h2 {
    margin-top: 60px;
 }
 .red_wrapper a {
    display: none;
}
    
    
}