/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px;
  color: #393939;
  overflow-x: hidden;
  font-family: "montserrat";
}

.slicknav_nav a:hover {
    background: #db5135;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

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

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

/***** Font Files *****/

@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/fontawesome-webfont.woff) format("woff"),
    url(../fonts/fontawesome-webfont.ttf) format("truetype"),
    url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "barlow";
  src: url(../fonts/barlow.ttf);
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "montserrat";
  src: url(../fonts/montserrat.ttf);
  font-weight: 400;
  font-style: normal;
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-8 {
  margin-top: 80px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-2 {
  margin-top: 20px;
}

.pt-5 {
  padding-top: 50px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pb-8 {
  padding-bottom: 80px;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-8 {
  padding-top: 80px;
}

.pt-4 {
  padding-top: 40px;
}

.pt-3 {
  padding-top: 30px;
}

.pt-2 {
  padding-top: 20px;
}

.all-section {
  padding: 80px 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.d-flex {
  display: flex;
  align-items: center;
}

.over-flow-h {
  overflow: hidden;
}

.btn10 {
  border: 1px solid #a30000 !important;
  text-align: center;
  position: relative;
  overflow: hidden !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #a30000 !important;
  z-index: 10;
  display: inline-block;
  color: #fff;
  padding: 20px 20px;
  border-radius: 10px;
  font-size: 17px;
  font-family: Poppins;
  font-weight: 400;
}

.btn10:hover {
  border: 1px solid #a30000 !important;
  color: #fff !important;
}

.btn10::before {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background: #a30000;
  position: absolute;
  -ms-transform: skewX(-20deg);
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
  left: -10%;
  opacity: 1;
  top: 0;
  z-index: -12;
  -moz-transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: 2px 0 14px rgba(0, 0, 0, 0.6);
  border-color: #a30000 !important;
}

.btn10::after {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background: #fff;
  position: absolute;
  -ms-transform: skewX(-20deg);
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
  left: -10%;
  opacity: 0;
  top: 0;
  z-index: -15;
  -webkit-transition: all 0.94s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  -moz-transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  -o-transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  box-shadow: 2px 0 14px rgba(0, 0, 0, 0.6);
  border-color: #a30000 !important;
}

.btn10:hover::before,
.btn1O:hover::before {
  opacity: 1;
  width: 116%;
}

.btn10:hover::after,
.btn1O:hover::after {
  opacity: 1;
  width: 120%;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: "barlow";
  font-size: 60px;
  line-height: 70px;
  color: #db5135;
  font-weight: 800;
  margin: 0 0 15px;
  text-transform: uppercase;
  font-style: italic;
}

h2 {
  font-family: "barlow";
  font-size: 60px;
  line-height: 65px;
  color: #000;
  font-weight: 500;
  margin: 0 0 15px;
  text-transform: uppercase;
  font-style: italic;
}

h3 {
  font-family: "Poppins", Sans-Serif;
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: "Poppins", Sans-Serif;
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: "Poppins", Sans-Serif;
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: "Poppins", Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

p {
  color: #7c7c7c;
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
  letter-spacing: 0px;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/* Header Start */

.menuSec {
  padding: 20px 0;
  position: absolute;
  z-index: 999;
  width: 100%;
}

.header-logo a img {
  width: 95%;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
  background: #db5135;
  border-radius: 80px;
  padding: 3px 0;
  width: 95%;
  float: inline-end;
}

.menuSec .active {
  background: #000;
  border-radius: 50px;
  color: #fff !important;
}
.menuSec ul li a:hover {
  background: #000000;
  border-radius: 50px;
  color: white !important;
}
.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding: 11px 21px;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
}

.theme-btn-1 {
  background: #c84a30;
  padding: 18px 5px;
  border-radius: 50px;
}

span.theme-btn-img img {
  width: 13px;
  height: 11px;
  object-fit: contain;
}

span.theme-btn-img {
  padding: 0 10px 0px 8px;
}

span.theme-btn-text {
  background: #000;
  padding: 15px 25px;
  border-radius: 50px;
  color: #cccccc;
  font-size: 13px;
  text-transform: uppercase;
}

.menusec-btn {
  text-align: end;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #000;
}

.menuSec li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li > ul > li,
.menuSec li > ul > li > a {
  display: block;
  margin: 0;
}

.menuSec li > ul > li > a:before,
.menuSec li > ul > li > a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

/* Header Ends */

/* Banner Start */

.main-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-inner > .item > a > img,
.carousel-inner > .item > img {
  width: 100%;
}

.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}

.carousel-control.right {
  right: 0px;
}

.carousel-control.left {
  left: 0px;
}

.carousel-indicators {
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 12px;
  padding: 0;
  margin: 3px !important;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 1;
  /* transition: opacity 0.6s ease; */
  border-radius: 20px;
}

.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}

.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}

.banner_text h1 span {
  color: #fff;
  display: block;
}

.banner_text p {
  margin-bottom: 45px;
  width: 78%;
}

section.main_slider .carousel-caption {
  top: 30px;
}

section.main_slider {
  position: relative;
  overflow: hidden;
}

section.main_slider:after {
  content: "";
  position: absolute;
  background-image: url(../images/main-banner-after.png);
  width: 262px;
  height: 301px;
  background-size: cover;
  bottom: 100px;
  right: 0;
}

section.main_slider:before {
  content: "";
  position: absolute;
  background-image: url(../images/main-banner-before.png);
  width: 184px;
  height: 230px;
  background-size: cover;
  top: 110px;
  left: -10px;
  z-index: 9;
}

.main-banner-text h2 {
  font-size: 200px;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  line-height: 180px;
  font-style: italic;
  letter-spacing: 15px;
}

.main-banner-text {
  margin-top: -29px;
  text-align: center;
}

/* Banner Ends*/

/*Leading Media Outlets Start*/

.leading-media-outlets-sec {
  padding: 70px 0;
}

.leading-media-outlets-heading {
  text-align: center;
}

.leading-media-outlets-heading h2 span {
  display: block;
  color: #db5135;
}

.slick-active {
  opacity: 1.5;
}

.leading-media-outlets-silder-items a img {
  width: 210px;
  height: 122px;
  object-fit: contain;
}

.leading-media-outlets-silder {
  margin-top: 15px;
}

/*Leading Media Outlets Ends */

/*About Russ Burris Start*/

.about-russ-burrris-text h2 span {
  display: block;
}

.about-russ-burrris-text h2 span {
  color: #db5135;
}

.about-russ-burrris-images img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.about-russ-burrris-images:before {
  content: "";
  position: absolute;
  background: #db5135;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: rotate(-5deg);
}

.about-russ-burrris-images {
  position: relative;
}

.about-russ-burrris-images:before {
  content: "";
  position: absolute;
  background: #db5135;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: rotate(-5deg);
}

.about-russ-burrris-text ul {
  column-count: 2;
  line-height: 40px;
  margin-bottom: 38px;
}

.about-russ-burrris-text {
  margin-left: 15px;
}

.about-russ-burrris-text ul li {
  font-size: 13.5px;
  color: #222222;
  padding-left: 18px;
  position: relative;
}

.about-russ-burrris-sec {
  padding: 50px 0;
}

.about-russ-burrris-text ul li:before {
  content: "";
  position: absolute;
  background: #db5135;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 17px;
  left: 0;
}

.about-russ-burrris-text span.theme-btn-text {
  background: #fff !important;
  color: #000;
  font-weight: 600;
}

/*About Russ Burris Ends*/

/*Book Russ for Your Next Event Start*/

.book-russ-for-your-next-sec {
  margin: 50px 0 100px;
  background: #000;
  padding: 50px 0;
  position: relative;
}

.book-russ-for-your-next-heading h2 {
  color: #fff;
}

.book-russ-for-your-next-heading {
  text-align: center;
}

.book-russ-for-your-next-heading h2 span {
  color: #db5135;
}

.book-russ-for-your-next-video-row {
  margin-top: 15px;
}

.book-russ-for-your-next-video-box img {
  width: 100%;
  height: 595px;
  object-fit: cover;
}

.book-russ-for-your-next-video-icon a img {
  width: 100px;
  height: 100px;
  border: none;
  object-fit: contain;
}

.book-russ-for-your-next-video-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-russ-for-your-next-video-icon {
  position: absolute;
}

.book-russ-for-your-next-text-box p {
  color: #9e9e9e;
  margin-bottom: 0;
}

.book-russ-for-your-next-text-box-row {
  margin-bottom: -160px;
}

.book-russ-for-your-next-text-box h2 {
  color: #db5135;
  font-size: 20px;
  line-height: 35px;
  margin-bottom: 5px;
}

.book-russ-for-your-next-text-box span {
  font-size: 125px;
  line-height: 100px;
  display: block;
  margin-bottom: 10px;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(to top, #000, #2c2f33);
}

.book-russ-for-your-next-text-box {
  padding: 25px 20px;
  background-image: url(../images/book-russ-for-your-next-text-box-back.png);
  width: 100%;
  height: auto;
  background-size: cover;
  margin-top: 50px;
}

.book-russ-for-your-next-sec:before {
  content: "";
  position: absolute;
  background-image: url(../images/main-banner-before.png);
  width: 154px;
  height: 200px;
  background-size: cover;
  top: 70px;
  left: -10px;
  z-index: 9;
}

.book-russ-for-your-next-sec:after {
  content: "";
  position: absolute;
  background-image: url(../images/main-banner-after.png);
  width: 222px;
  height: 261px;
  background-size: cover;
  bottom: 200px;
  right: -40px;
}

/*Book Russ for Your Next Event Ends*/

/*Why Audiences Trust Russ Start*/

.about-russ-burrris-text.chg {
  margin: 0;
}

.about-russ-burrris-sec.chg {
  padding: 130px 0;
}

/*Why Audiences Trust Russ Ends*/

/*Facts & Fixes Drowsy Driving Start*/

.facts-fixes-drowsy-driving-sec {
  background-image: url(../images/facts-fixes-drowsy-driving-back.jpg);
  width: 100%;
  height: 100%;
  background-size: cover;
  padding: 50px 0 70px;
  position: relative;
}

.facts-fixes-drowsy-driving-sec:before {
  content: "";
  position: absolute;
  background-image: url(../images/main-banner-after.png);
  width: 152px;
  height: 211px;
  background-size: cover;
  bottom: 200px;
  left: -70px;
}

.facts-fixes-drowsy-driving-heading h2 span {
  color: #fff;
}

.facts-fixes-drowsy-driving-heading h2 {
  display: block;
  color: #db5135;
}

.facts-fixes-drowsy-driving-heading h2 span {
  display: block;
}

.facts-fixes-drowsy-driving-heading {
  text-align: center;
}

.facts-fixes-drowsy-driving-box {
  margin-top: 30px;
  position: relative;
}

.facts-fixes-drowsy-driving-button {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: 0.5s;
}

.facts-fixes-drowsy-driving-box:hover .facts-fixes-drowsy-driving-button {
  opacity: 1;
  transition: 0.5s;
}

.facts-fixes-drowsy-driving-images img {
  width: 100%;
  height: 269px;
  object-fit: cover;
}

.facts-fixes-drowsy-driving-text ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.facts-fixes-drowsy-driving-text ul li {
  font-size: 14px;
  text-transform: uppercase;
  color: #a8a7a7;
}

.facts-fixes-drowsy-driving-text ul li i {
  color: #db5135;
  margin-right: 5px;
}

.facts-fixes-drowsy-driving-text h2 {
  color: #db5135;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 12px;
  margin-top: 0;
}

.facts-fixes-drowsy-driving-text p {
  margin-bottom: 0;
  width: 89%;
}

.facts-fixes-drowsy-driving-button a {
  background: #db5135;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.facts-fixes-drowsy-driving-sec:after {
  content: "";
  position: absolute;
  background-image: url(../images/main-banner-before.png);
  width: 134px;
  height: 180px;
  background-size: cover;
  top: 40px;
  z-index: 9;
  right: 0;
}

/*Facts & Fixes Drowsy Driving Ends*/

/*Capturing Stories Through Lenses Start */

.capturing-stories-through-lenses-row {
  margin-top: 20px;
}

.capturing-stories-through-lenses-sec {
  padding: 80px 0;
}

.capturing-stories-through-lenses-heading {
  text-align: center;
}

.capturing-stories-through-lenses-heading h2 span {
  display: block;
}

.capturing-stories-through-lenses-heading h2 span {
  color: #db5135;
}

.latest_work_sec {
  overflow: hidden;
  padding: 5px 2% 100px;
}

.inner-gallery-sec {
  padding: 100px 2%;
}

.gallery-slicer-box {
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
  transition: height 0.3s ease;
}

.gallerySlider {
  height: 480px;
}

.gallery-slicer-box img {
  width: 105%;
  height: 100%;
  max-width: 105%;
  object-fit: cover;
  animation: moveLeftToRight 4s linear infinite;
}

.gallerySlider .slick-track {
  display: flex;
  align-items: center;
}

.gallerySlider .slick-slide {
  opacity: 1;
  margin: 0px 8px;
}

.gallerySlider .slick-slide .gallery-slicer-box {
  height: 360px;
}

.gallerySlider .gallery-slide-near .gallery-slicer-box {
  height: 410px;
}

.gallerySlider .slick-center .gallery-slicer-box {
  height: 480px;
  position: relative;
}

/*Capturing Stories Through Lenses Ends */

/*The Impact in Their Own Words Start*/

.impact-their-own-words-sec {
  background-image: url(../images/impact-their-own-words-back.jpg);
  width: 100%;
  height: 100%;
  background-size: cover;
  padding: 80px 0;
  position: relative;
}

.impact-their-own-words-heading h2 {
  color: #db5135;
  margin-bottom: 0;
}

.impact-their-own-words-heading h2 span {
  display: block;
  color: #fff;
}

.impact-their-own-words-heading {
  text-align: center;
}

.impact-their-own-words-silder-items {
  background: #000;
  padding: 30px 30px;
  position: relative;
}

.impact-their-own-words-silder {
  margin-top: 50px;
}

.impact-their-own-words-silder-items-john-smith ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.container-fluid {
  padding: 0;
}

.impact-their-own-words-silder-items-john-smith ul li h2 {
  font-size: 20px;
  margin-bottom: 0;
  line-height: 30px;
  text-transform: capitalize;
  color: #db5534;
}

.impact-their-own-words-silder-items-john-smith ul li p {
  color: #b1b1b1;
  font-weight: 500;
  margin-bottom: 0;
}

.impact-their-own-words-silder-items-john-smith ul li img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #db5935;
}

.impact-their-own-words-silder-items-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.impact-their-own-words-silder-items-john-star ul li i {
  color: #ff9c00;
}

.impact-their-own-words-silder-items p {
  margin-bottom: 0;
}

.impact-their-own-words-silder-items:before {
  content: "";
  position: absolute;
  background-image: url(../images/impact-their-own-words-silder-items-before.png);
  width: 134px;
  height: 90px;
  background-size: cover;
  top: 100px;
  right: 39%;
}

.impact-their-own-words-sec:before {
  content: "";
  position: absolute;
  background-image: url(../images/main-banner-after.png);
  width: 152px;
  height: 211px;
  background-size: cover;
  left: -30px;
  top: 40px;
}

.impact-their-own-words-sec:after {
  content: "";
  position: absolute;
  background-image: url(../images/main-banner-before.png);
  width: 134px;
  height: 180px;
  background-size: cover;
  top: 0;
  z-index: 9;
  right: 0;
}

/*The Impact in Their Own Words Ends*/

/*Book Your Event Today Start */

.book-your-event-today-sec {
  padding: 120px 0;
}

.book-your-event-today-images img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.book-your-event-today-images {
  position: relative;
}

.book-your-event-today-images:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #db5135;
  z-index: -1;
  transform: rotate(-5deg);
}

.book-your-event-today-heading h2 span {
  display: block;
}

.book-your-event-today-heading {
  margin-left: 20px;
}

.book-your-event-today-heading h2 span {
  color: #db5c34;
}

.book-your-event-today-form {
  margin-left: 20px;
  margin-top: 25px;
}

.book-your-event-today-form form input {
  width: 100%;
  height: 60px;
  border: 1px solid #cccccc;
  padding: 0 15px;
  border-radius: 5px;
  font-size: 12px;
  color: #7c7c7c;
  margin-bottom: 10px;
}

.book-your-event-today-form form input::placeholder {
  font-size: 12px;
  color: #7c7c7c;
}

.book-your-event-today-form select {
  width: 100%;
  height: 60px;
  border: 1px solid #cccccc;
  padding: 0 15px;
  border-radius: 5px;
  font-size: 12px;
  color: #7c7c7c;
  margin-bottom: 10px;
}

.book-your-event-today-form textarea {
  width: 100%;
  height: 150px;
  border: 1px solid #cccccc;
  padding: 15px 15px;
  border-radius: 5px;
  font-size: 12px;
  color: #7c7c7c;
  margin-bottom: 20px;
}

.book-your-event-today-form textarea::placeholder {
  font-size: 12px;
  color: #7c7c7c;
}

.book-your-event-today-form button {
  border: none;
}

.book-your-event-today-form span.theme-btn-text {
  background: #fff;
  color: #000 !important;
}

/*Book Your Event Today Ends */

/*Footer Start*/

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

.footer-logo a img {
  width: 184px;
  height: 24px;
  object-fit: contain;
}

.footer-logo p {
  width: 50%;
  margin: 0 auto;
  margin-top: 20px;
  color: #bbbbbb;
}

.footer-logo ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.footer-logo ul li a {
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-sec {
  background: #1a1a1a;
  padding-top: 70px;
}

.footer-email-number ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  gap: 80px;
}

.footer-email-number ul li a {
  color: #e0e0e0;
  font-size: 14px;
}

.footer-email-number ul li a i {
  margin-right: 5px;
}

.footer-copy-right-row p {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 0;
}

.footer-copy-right-row {
  text-align: center;
  padding: 18px 0px;
  border-top: 1px solid #484848;
  margin-top: 35px;
}

/*Footer Ends*/

/* Inner banner STarts  */
.inner_page_banner {
  height: 600px;
  width: 100%;
  position: relative;
  background: url("../images/inner_banner.png") no-repeat center center;
  background-size: cover;
  background-position: 0px 0px;
}
.inner_page_banner > .container {
  position: relative;
  height: 100%;
}
.inner_page_banner > .container::before {
  content: "";
  position: absolute;
  background-image: url(../images/main-banner-before.png);
  width: 184px;
  height: 230px;
  background-size: cover;
  top: 0;
  left: -20%;
  z-index: 9;
}

.inner_page_banner > .container::after {
  content: "";
  position: absolute;
  background-image: url(../images/main-banner-after.png);
  width: 262px;
  height: 301px;
  background-size: cover;
  bottom: 100px;
  right: -23%;
}

.inner_page_banner > .container > .row {
  height: 100%;
  align-items: center;
}

.inner_banner_content h1 span {
  color: white;
}
.inner_page_banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.99);
}
/* Inner banner ends */
/* about us page starts  */
.inner_about_us_wrapper {
  padding: 50px 0 0;
}
/* about us page ends */
/* speaking page starts  */
.book_speaking_wrapper .book-russ-for-your-next-sec {
  margin: 50px 0 100px;
  background: transparent;
  padding: 50px 0;
  position: relative;
}
.book_speaking_wrapper .book-russ-for-your-next-sec:before {
  content: "";
  position: absolute;
  background-image: url(../images/main-banner-before.png);
  width: 154px;
  height: 200px;
  background-size: cover;
  top: 70px;
  left: -10px;
  z-index: 9;
  display: none;
}
.book_speaking_wrapper .book-russ-for-your-next-sec:after {
  content: "";
  position: absolute;
  background-image: url(../images/main-banner-after.png);
  width: 222px;
  height: 261px;
  background-size: cover;
  bottom: 200px;
  right: -40px;
  display: none;
}
.book_speaking_wrapper .book-russ-for-your-next-heading h2 {
  color: black;
}
section.book_speaking_wrapper {
  padding: 0 0 100px 0;
}
/* speaking page ends */
/* Testimonial Starts  */
.testimonial_inner_wrapper .impact-their-own-words-sec {
  width: 100%;
  height: 100%;
  background-size: cover;
  padding: 80px 0;
  position: relative;
  background: transparent;
}
.testimonial_inner_wrapper .impact-their-own-words-heading h2 span {
  display: block;
  color: black;
}
.testimonial_inner_wrapper .impact-their-own-words-sec:before {
  content: "";
  position: absolute;
  background-image: url(../images/main-banner-after.png);
  width: 152px;
  height: 211px;
  background-size: cover;
  left: -30px;
  top: 40px;
  display: none;
}
section.testimonial_inner_wrapper .container-fluid {
  padding: 0 5%;
  max-width: 1980px;
}

section.testimonial_inner_wrapper .container-fluid .row {
  padding: 0 0 30px 0;
}
/* Testimonial ends */

.impact-their-own-words-silder .slick-slide {
    opacity: 1;
}




/*Media Query Starts*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1501px) and (max-width: 1600px) {

/* Fonts css Starts */

/* Fonts css Ends */



/* Buttons css Starts */

/* Buttons css Ends */




/* Home css Starts */

/* Home css Ends */




}

@media only screen and (min-width: 1401px) and (max-width: 1500px) {

    
/* Fonts css Starts */

/* Fonts css Ends */



/* Buttons css Starts */

/* Buttons css Ends */




/* Home css Starts */

/* Home css Ends */


}

@media only screen and (min-width: 1301px) and (max-width: 1400px) {


/* Fonts css Starts */

/* Fonts css Ends */



/* Buttons css Starts */

/* Buttons css Ends */




/* Home css Starts */

/* Home css Ends */


}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {


/* Fonts css Starts */

h1 {
    font-size: 35px;
    line-height: 40px;
}

    h2 {
        font-size: 50px;
        line-height: 55px;
    }

/* Fonts css Ends */



/* Buttons css Starts */



/* Buttons css Ends */




/* Home css Starts */

.header-logo {
    left: 0 !important;
}

.header-logo a img {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}

    .menuSec ul {
        width: 100% !important;
    }

    .menuSec ul li a {
        font-size: 12px;
        padding: 5px 10px !important;
    }

    .menusec-btn .theme-btn-1 {
        padding: 8px 4px 11px 4px;
    }

    .menusec-btn span.theme-btn-text {
        padding: 10px 15px;
        font-size: 13px;
    }

.menusec-btn span.theme-btn-img {
    padding: 0 4px 0px 0;
}

.banner_text p {
    margin-bottom: 45px;
    width: 100%;
}

.carousel-item {
    height: 500px;
}

    .main-banner-text h2 {
        font-size: 130px;
        letter-spacing: 0;
    }

.main-banner-text {
    margin-top: 0 !important;
}

.leading-media-outlets-sec {
    padding: 40px 0;
}

.about-russ-burrris-images img {
    height: 250px;
}

.about-russ-burrris-text ul {
    column-count: 1;
    margin: 20px 0;
}

.book-russ-for-your-next-sec {
    margin: 30px 0;
}

.book-russ-for-your-next-video-box img {
    height: 300px;
}

.book-russ-for-your-next-text-box {
    margin-top: 30px;
    padding: 10px;
}

.book-russ-for-your-next-text-box span {
    font-size: 100px;
    line-height: 105px;
}

.book-russ-for-your-next-text-box h2 {
    font-size: 12px;
    line-height: 25px;
    margin-bottom: 0;
}

.book-russ-for-your-next-text-box-row {
    margin-bottom: 0;
}

.about-russ-burrris-sec.chg {
    padding: 40px 0;
}

.capturing-stories-through-lenses-sec {
    padding: 40px 0;
}


.gallery-slicer-box img {
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.gallerySlider .slick-center .gallery-slicer-box {
    height: 350px !important;
}

.gallerySlider .gallery-slide-near .gallery-slicer-box {
    height: 300px !important;
}

.gallerySlider {
    height: 100% !important;
}

.impact-their-own-words-silder-items-row {
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.facts-box p, .facts-box ul li {
    font-size: 13px;
}

.book-your-event-today-form form input, .book-your-event-today-form select {
    height: 45px;
    padding: 0 10px;
}

.book-your-event-today-sec {
    padding: 40px 0;
}

.footer-sec {
    padding-top: 40px;
}

.footer-logo p {
    width: 70%;
}

.footer-email-number ul {
    margin-top: 30px;
    gap: 20px;
}

/* Home css Ends */


}

@media only screen and (min-width: 992px) and (max-width: 1199px) {



/* Fonts css Starts */

h1 {
    font-size: 35px;
    line-height: 40px;
}

    h2 {
        font-size: 50px;
        line-height: 55px;
    }

/* Fonts css Ends */



/* Buttons css Starts */



/* Buttons css Ends */




/* Home css Starts */

.header-logo {
    left: 0 !important;
}

.header-logo a img {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}

    .menuSec ul {
        width: 100% !important;
    }

    .menuSec ul li a {
        font-size: 10px;
        padding: 5px 10px !important;
    }

    .menusec-btn .theme-btn-1 {
        padding: 8px 4px 11px 4px;
    }

    .menusec-btn span.theme-btn-text {
        padding: 10px 15px;
        font-size: 13px;
    }

.menusec-btn span.theme-btn-img {
    padding: 0 4px 0px 0;
}

.banner_text p {
    margin-bottom: 45px;
    width: 100%;
}

.carousel-item {
    height: 500px;
}

    .main-banner-text h2 {
        font-size: 130px;
        letter-spacing: 0;
    }

.main-banner-text {
    margin-top: 0 !important;
}

.leading-media-outlets-sec {
    padding: 40px 0;
}

.about-russ-burrris-images img {
    height: 250px;
}

.about-russ-burrris-text ul {
    column-count: 1;
    margin: 20px 0;
}

.book-russ-for-your-next-sec {
    margin: 30px 0;
}

.book-russ-for-your-next-video-box img {
    height: 300px;
}

.book-russ-for-your-next-text-box {
    margin-top: 30px;
    padding: 10px;
}

.book-russ-for-your-next-text-box span {
    font-size: 100px;
    line-height: 105px;
}

.book-russ-for-your-next-text-box h2 {
    font-size: 12px;
    line-height: 25px;
    margin-bottom: 0;
}

.book-russ-for-your-next-text-box-row {
    margin-bottom: 0;
}

.about-russ-burrris-sec.chg {
    padding: 40px 0;
}

.capturing-stories-through-lenses-sec {
    padding: 40px 0;
}


.gallery-slicer-box img {
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.gallerySlider .slick-center .gallery-slicer-box {
    height: 350px !important;
}

.gallerySlider .gallery-slide-near .gallery-slicer-box {
    height: 300px !important;
}

.gallerySlider {
    height: 100% !important;
}

.impact-their-own-words-silder-items-row {
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.facts-box p, .facts-box ul li {
    font-size: 13px;
}

.book-your-event-today-form form input, .book-your-event-today-form select {
    height: 45px;
    padding: 0 10px;
}

.book-your-event-today-sec {
    padding: 40px 0;
}

.footer-sec {
    padding-top: 40px;
}

.footer-logo p {
    width: 70%;
}

.footer-email-number ul {
    margin-top: 30px;
    gap: 20px;
}

/* Home css Ends */


/* Inner Banner css Starts */

.inner_page_banner {
    height: 500px;
}

.inner_page_banner > .container::after {
    right: 0;
    width: 150px;
    height: 150px;
}

.inner_banner_content h1 {
    font-size: 40px;
    line-height: 45px;
}

/* Inner Banner css Ends */

/* Book Speaking Page css Starts */

.book_speaking_wrapper .book-russ-for-your-next-sec {
    margin: 0;
    padding: 60px 0;
}

section.book_speaking_wrapper {
    padding: 0;
}

/* Book Speaking Page css Ends */



}

@media only screen and (min-width: 768px) and (max-width: 991px) {


/* Fonts css Starts */

h1 {
    font-size: 35px;
    line-height: 40px;
}

h2 {
    font-size: 40px;
    line-height: 45px;
}

/* Fonts css Ends */



/* Buttons css Starts */



/* Buttons css Ends */




/* Home css Starts */

.header-logo {
    left: 0 !important;
}

.header-logo a img {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}

    .menuSec ul {
        width: 100% !important;
    }

.menuSec ul li a {
    font-size: 8px;
    padding: 5px !important;
}

.menusec-btn .theme-btn-1 {
    padding: 2px 2px 6px 2px;
}

.menusec-btn span.theme-btn-text {
    padding: 5px;
    font-size: 9px;
}

.menusec-btn span.theme-btn-img {
    padding: 0 4px 0px 0;
}

.banner_text p {
    margin-bottom: 45px;
    width: 100%;
}

.carousel-item {
    height: 500px;
}

.main-banner-text h2 {
    font-size: 100px;
    letter-spacing: 0;
}

.main-banner-text {
    margin-top: 0 !important;
}

.leading-media-outlets-sec {
    padding: 40px 0;
}

.about-russ-burrris-images img {
    height: 250px;
}

.about-russ-burrris-text ul {
    column-count: 1;
    margin: 20px 0;
}

.book-russ-for-your-next-sec {
    margin: 30px 0;
}

.book-russ-for-your-next-video-box img {
    height: 300px;
}

.book-russ-for-your-next-text-box {
    margin-top: 30px;
    padding: 10px;
}

.book-russ-for-your-next-text-box span {
    font-size: 100px;
    line-height: 105px;
}

.book-russ-for-your-next-text-box h2 {
    font-size: 12px;
    line-height: 25px;
    margin-bottom: 0;
}

.book-russ-for-your-next-text-box-row {
    margin-bottom: 0;
}

.about-russ-burrris-sec.chg {
    padding: 40px 0;
}

.capturing-stories-through-lenses-sec {
    padding: 40px 0;
}


.gallery-slicer-box img {
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.gallerySlider .slick-center .gallery-slicer-box {
    height: 350px !important;
}

.gallerySlider .gallery-slide-near .gallery-slicer-box {
    height: 300px !important;
}

.gallerySlider {
    height: 100% !important;
}

.impact-their-own-words-silder-items-row {
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

.book-your-event-today-form form input, .book-your-event-today-form select {
    height: 45px;
    padding: 0 10px;
}

.book-your-event-today-form form input::placeholder, .book-your-event-today-form select::placeholder {
    font-size: 10px;
}


.book-your-event-today-sec {
    padding: 40px 0;
}

.footer-sec {
    padding-top: 40px;
}

.footer-logo p {
    width: 80%;
}

.footer-logo ul {
    gap: 30px;
}

.footer-email-number ul {
    margin-top: 30px;
    gap: 20px;
}

/* Home css Ends */

.inner_page_banner {
    height: 300px;
}

.inner_banner_content h1 {
    font-size: 40px;
    line-height: 45px;
}

.inner_page_banner > .container::after {
    right: 0;
    width: 150px;
    height: 150px;
}

/* Inner Banner css Ends */

/* Book Speaking Page css Starts */

.book_speaking_wrapper .book-russ-for-your-next-sec {
    margin: 0;
    padding: 40px 0;
}

section.book_speaking_wrapper {
    padding: 0;
}

/* Book Speaking Page css Ends */

}

@media only screen and (min-width: 520px) and (max-width: 767px) {




/* Fonts css Starts */

h1 {
    font-size: 50px;
    line-height: 55px;
}

h2 {
    font-size: 35px;
    line-height: 40px;
}

p {
    font-size: 12px;
    line-height: 20px;
}

/* Fonts css Ends */



/* Buttons css Starts */

    .theme-btn-1 {
        padding: 10px 3px 12px 5px;
    }
    
    span.theme-btn-text {
        padding: 10px 15px;
        font-size: 12px;
    }
    
span.theme-btn-img {
    padding: 0 5px;
}



/* Buttons css Ends */




/* Home css Starts */

.menuSec {
    position: relative;
    background-color: #000;
    padding: 40px 0;
}

.menusec-btn {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0 0 0;
}

.header-logo a img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    margin: 0 auto;
    object-fit: contain;
}

.header-logo {
    left: 0 !important;
}

    .banner_text p {
        width: 100%;
        margin: 20px 0;
    }

.carousel-item {
    height: 400px;
}

section.main_slider .carousel-caption {
    top: 0;
}

section.main_slider:before, section.main_slider:after{
    display: none;
}

.main-banner-text {
    margin: 20px 0;
}

.main-banner-text h2 {
    font-size: 40px;
    line-height: 1;
    letter-spacing: 3px;
}

.leading-media-outlets-sec {
    padding: 20px 0;
}

.leading-media-outlets-silder-items a img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.about-russ-burrris-images img {
    height: 350px;
}

.about-russ-burrris-text {
    margin: 40px 0 0 0;
}

.about-russ-burrris-text ul {
    column-count: 1;
    margin: 10px 0;
}


.about-russ-burrris-text ul li {
    font-size: 12px;
}

.about-russ-burrris-sec {
    padding: 20px 0;
}

.book-russ-for-your-next-sec {
    margin: 20px 0;
    padding: 20px 0;
}

.book-russ-for-your-next-video-box img {
    height: 200px;
}

.book-russ-for-your-next-video-icon a img {
    width: 50px;
    height: 50px;
}

.book-russ-for-your-next-text-box {
    padding: 10px;
    margin-top: 30px;
}

.book-russ-for-your-next-text-box span {
    font-size: 90px;
    line-height: 100px;
}

.book-russ-for-your-next-text-box h2 {
    font-size: 16px;
    line-height: 1;
    margin: 0;
}


.book-russ-for-your-next-sec:before, .book-russ-for-your-next-sec:after {
    display: none;
}

.book-russ-for-your-next-text-box-row {
    margin-bottom: 0;
}

.about-russ-burrris-sec.chg {
    padding: 20px 0;
}

.about-russ-burrris-text.chg {
    margin: 0 0 40px 0;
}

.facts-fixes-drowsy-driving-sec {
    padding: 20px 0;
}
    .facts-boxes .facts-box {
        min-height: 130px !important;
        align-items: start !important;
    }

.facts-box p, .facts-box ul li {
    font-size: 12px !important;
    line-height: 25px;
}

.capturing-stories-through-lenses-sec {
    padding: 20px 0;
}

.impact-their-own-words-sec {
    padding: 40px 0;
}

.impact-their-own-words-sec:before, .impact-their-own-words-sec:after {
    width: 140px;
    height: 140px;
}


.impact-their-own-words-silder-items {
    padding: 20px;
}

.impact-their-own-words-silder-items-john-smith ul li h2 {
    font-size: 15px;
    line-height: 25px;
}

.impact-their-own-words-silder-items-row {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.book-your-event-today-sec {
    padding: 20px 0;
}

.book-your-event-today-heading {
    margin-left: 0;
}

.book-your-event-today-form {
    margin: 10px 0;
}

.book-your-event-today-form form input, .book-your-event-today-form select {
    height: 40px;
    padding: 0 10px;
}

.footer-sec {
    padding-top: 30px;
}

.footer-logo a img {
    width: 60%;
    height: auto;
}

.footer-logo p {
    width: 80%;
}

.footer-logo ul {
    gap: 10px;
    margin: 20px 0;
    flex-direction: column;
}

.footer-logo ul li a {
    font-size: 12px;
    line-height: 1;
}
.footer-email-number ul {
    flex-direction: column;
    gap: 10px;
}

.footer-copy-right-row {
    padding: 20px 0;
    margin: 20px 0 0 0;
}

/* Home css Ends */

/* Inner Banner css Starts */

.inner_page_banner > .container::before, .inner_page_banner > .container::after {
    display: none;
}

.inner_page_banner > .container::after {
    right: 0;
    width: 150px;
    height: 150px;
}

.inner_page_banner {
    height: 300px;
}

.inner_banner_content h1 {
    font-size: 40px;
    line-height: 45px;
}

/* Inner Banner css Ends */

/* About Us Page css Starts */

.about-russ-burrris-images:before {
    width: 97%;
}

/* About Us Page css Ends */

/* Book Speaking Page css Starts */

.book_speaking_wrapper .book-russ-for-your-next-sec {
    margin: 0;
    padding: 40px 0;
}

section.book_speaking_wrapper {
    padding: 0;
}

/* Book Speaking Page css Ends */

}

@media only screen and (min-width: 300px) and (max-width: 519px) {


/* Fonts css Starts */

h1 {
    font-size: 50px;
    line-height: 55px;
}

h2 {
    font-size: 35px;
    line-height: 40px;
}

p {
    font-size: 12px;
    line-height: 20px;
}

/* Fonts css Ends */



/* Buttons css Starts */

    .theme-btn-1 {
        padding: 5px 3px 7px 3px;
    }
    
    span.theme-btn-text {
        padding: 5px 10px;
        font-size: 10px;
    }
    
span.theme-btn-img {
    padding: 0 5px;
}



/* Buttons css Ends */




/* Home css Starts */

.menuSec {
    position: relative;
    background-color: #000;
    padding: 40px 0;
}

.menusec-btn {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0 0 0;
}

.header-logo a img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    margin: 0 auto;
    object-fit: contain;
}

.header-logo {
    left: 0 !important;
}

    .banner_text p {
        width: 100%;
        margin: 20px 0;
    }

.carousel-item {
    height: 520px;
}

section.main_slider .carousel-caption {
    top: 0;
}

section.main_slider:before, section.main_slider:after{
    display: none;
}

.main-banner-text {
    margin: 20px 0;
}

.main-banner-text h2 {
    font-size: 40px;
    line-height: 1;
    letter-spacing: 3px;
}

.leading-media-outlets-sec {
    padding: 20px 0;
}

.leading-media-outlets-silder-items a img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.about-russ-burrris-images img {
    height: 350px;
}

.about-russ-burrris-text {
    margin: 40px 0 0 0;
}

.about-russ-burrris-text ul {
    column-count: 1;
    margin: 10px 0;
}


.about-russ-burrris-text ul li {
    font-size: 12px;
}

.about-russ-burrris-sec {
    padding: 20px 0;
}

.book-russ-for-your-next-sec {
    margin: 20px 0;
    padding: 20px 0;
}

.book-russ-for-your-next-video-box img {
    height: 200px;
}

.book-russ-for-your-next-video-icon a img {
    width: 50px;
    height: 50px;
}

.book-russ-for-your-next-text-box {
    padding: 10px;
    margin-top: 30px;
}

.book-russ-for-your-next-text-box span {
    font-size: 90px;
    line-height: 100px;
}

.book-russ-for-your-next-text-box h2 {
    font-size: 16px;
    line-height: 1;
    margin: 0;
}


.book-russ-for-your-next-sec:before, .book-russ-for-your-next-sec:after {
    display: none;
}

.book-russ-for-your-next-text-box-row {
    margin-bottom: 0;
}

.about-russ-burrris-sec.chg {
    padding: 20px 0;
}

.about-russ-burrris-text.chg {
    margin: 0 0 40px 0;
}

.facts-fixes-drowsy-driving-sec {
    padding: 20px 0;
}

    .facts-boxes .facts-box {
        min-height: 130px !important;
        align-items: start !important;
    }

.facts-box p, .facts-box ul li {
    font-size: 12px !important;
    line-height: 25px;
}

.capturing-stories-through-lenses-sec {
    padding: 20px 0;
}

.impact-their-own-words-sec {
    padding: 40px 0;
}

.impact-their-own-words-sec:before, .impact-their-own-words-sec:after {
    width: 140px;
    height: 140px;
}


.impact-their-own-words-silder-items {
    padding: 20px;
}

.impact-their-own-words-silder-items-john-smith ul li h2 {
    font-size: 15px;
    line-height: 25px;
}

.impact-their-own-words-silder-items-row {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.book-your-event-today-sec {
    padding: 20px 0;
}

.book-your-event-today-heading {
    margin-left: 0;
}

.book-your-event-today-form {
    margin: 10px 0;
}

.book-your-event-today-form form input, .book-your-event-today-form select {
    height: 40px;
    padding: 0 10px;
}

.footer-sec {
    padding-top: 30px;
}

.footer-logo a img {
    width: 60%;
    height: auto;
}

.footer-logo p {
    width: 80%;
}

.footer-logo ul {
    gap: 10px;
    margin: 20px 0;
    flex-direction: column;
}

.footer-logo ul li a {
    font-size: 12px;
    line-height: 1;
}
.footer-email-number ul {
    flex-direction: column;
    gap: 10px;
}

.footer-copy-right-row {
    padding: 20px 0;
    margin: 20px 0 0 0;
}

/* Home css Ends */

/* Inner Banner css Starts */

.inner_page_banner > .container::before, .inner_page_banner > .container::after {
    display: none;
}

.inner_page_banner > .container::after {
    right: 0;
    width: 150px;
    height: 150px;
}

.inner_page_banner {
    height: 200px;
}

.inner_banner_content h1 {
    font-size: 30px;
    line-height: 35px;
}

/* Inner Banner css Ends */

/* About Us Page css Starts */

.about-russ-burrris-images:before {
    width: 97%;
}

/* About Us Page css Ends */

/* Book Speaking Page css Starts */

.book_speaking_wrapper .book-russ-for-your-next-sec {
    margin: 0;
    padding: 20px 0;
}

section.book_speaking_wrapper {
    padding: 0;
}

/* Book Speaking Page css Ends */


}


/*Media Query End*/







