/* ===================================
    Table of Content
====================================== */

/*  - Fonts
    - Scrollbar
    - General   
    - Loader
    - Navbar
    - Side Menu
    - Banner
    - Counter
    - About-us
    - Products
    - Testimonials
    - Contact-section
    - Footer
    - StandAlone Page
    - Media Queries
*/

@import url('css2.css');
@import url('css21.css');

/* ===================================
    Scrollbar
====================================== */

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 18px;
}

::-webkit-scrollbar-track {
  width: 5px;
  background: #011321;
  border-left: 9px solid #011321;
  border-right: 9px solid #011321;
}

::-webkit-scrollbar-thumb {
  background: #fda302;
  width: 0;
  border-left: 7px solid #011321;
  border-right: 6px solid #011321;
}

/* ===================================
    General
====================================== */

body {
 font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

span {
  font-weight: 400;
}

a {
  text-decoration: none;
}

/*Headings*/
.heading {
  font-size: 60px;
  color: #011321;
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
}

.subheading {
  font-size: 20px !important;
}

.text {
  font-size: 16px;
  font-weight: 400;
  color: #011321;
  font-family: 'Roboto', sans-serif;
}

/*Opacity*/
.opacity-1 {opacity: 0.1;}
.opacity-2 {opacity: 0.2;}
.opacity-3 {opacity: 0.3;}
.opacity-4 {opacity: 0.4;}
.opacity-5 {opacity: 0.5;}
.opacity-6 {opacity: 0.6;}
.opacity-7 {opacity: 0.7;}
.opacity-8 {opacity: 0.8;}
.opacity-8 {opacity: 0.9;}

/*Social Icons*/
.social-icons ul {
  margin-bottom: 0;
}

.social-icons ul li {
  font-size: 15px;
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
}

.social-icons ul li a {
  overflow: hidden;
  border-radius: 50%;
  display: block;
  color: #011321;
  height: 40px;
  line-height: 40px;
  width: 40px;
  border: 1px solid transparent;
  text-align: center;
}

/*Social icons background hover*/
.facebook-hover:hover {color: #fff; transition: all 0.5s ease; background-color: #4267B2;}
.twitter-hover:hover {color: #fff; transition: all 0.5s ease; background-color: #1DA1F2;}
.google-plus-hover:hover {color: #fff; transition: all 0.5s ease;background-color: #db4a39;}
.linked-in-hover:hover {color: #fff; transition: all 0.5s ease; background-color: #2867B2;}
.instagram-hover:hover {color: #fff; transition: all 0.5s ease; background-color: #C13584;}
.gmail-hover:hover {color: #fff; transition: all 0.5s ease; background-color: #D44638;}

/*Image overlay*/
.overlay-image {
  position: relative;
  display: block;
  height: auto;
  overflow: hidden;
}

.overlay-image img {
  transition: all 0.7s;
}

.overlay-image:hover img {
  transform: scale(1.1);
  transition: all 0.7s;
}

.overlay {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background-color: #011321;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}

.overlay-image:hover .overlay {
  bottom: 0;
  height: 100%;
  cursor: pointer;
}

.overlay-text {
  color: white;
  font-size: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: 'Oswald', sans-serif;
}

/*Button*/
.btn {
  z-index: 2;
  letter-spacing: .5px;
  border-radius: 0;
  font-weight: 500;
  overflow: hidden;
  position: absolute;
  line-height: inherit;
  display: inline-block;
  color: #202020;
  border: 2px solid transparent;
  text-transform: capitalize;
  transition: all .5s ease !important;
}

.btn.button {
  font-weight: 600;
  color: #202020;
  font-size: 12px !important;
  padding: 9px 27px !important;
  line-height: 1.8em !important;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  font-family: 'Oswald', sans-serif;
}

.btn.btn-rounded {
  border-radius: 50px;
}

.btn.white-btn {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

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

.btn.yellow-btn {
  background: #fda302;
  border-color: #fda302;
  color: #011321;
}

/*Button hover*/
.btn.btn-hvr-yellow:hover {
  background-color: #fda302;
  border-color: #fda302;
  color: #011321;
}

.btn.btn-hvr-blue:hover {
  background-color: #011321;
  border-color: #011321;
  color: #fff;
}

/* ===================================
   Loader
====================================== */

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #011321;
}

.loader {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 1.3s linear infinite;
  -webkit-animation: loader 1.1s linear infinite;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
    border: 6px solid #fda302;
    border-left-color: transparent;
  }
  50% {
    transform: rotate(180deg);
    border: 6px solid #ffff;
    border-left-color: transparent;
  }
  100% {
    transform: rotate(360deg);
    border: 6px solid #fda302;
    border-left-color: transparent;
  }
}

/* ===================================
    Navbar
====================================== */

.navbar {
  padding: 0;
  z-index: 111;
  height: 90px;
  width: 100%;
  background-color: transparent !important;
}

.navbar-brand img {
  padding-left: 4px;
}

.navbar .navbar-nav .nav-link {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  padding: 6px 6px;
  margin-left: 50px;
  margin-right: 50px;
  transition: .5s ease;
  border: 2px solid transparent;
  display: block;
  font-family: 'Oswald', sans-serif;
}

.navbar .navbar-nav {
  margin-left: 23rem;
}

.navbar .navbar-nav .nav-link.active {
  color: #fda302;
  transition: all .6s ease;
}

.navbar .navbar-nav .nav-link:hover {
  color: #fda302;
  transition: all .6s ease;
}

.navbar .navbar-nav .nav-link:last-child {
  margin-right: 0;
}

.navbar .navbar-nav .nav-link:after {
  content: '';
  display: block;
  margin: auto;
  height: 3px;
  width: 0;
  background: transparent;
  transition: width .5s ease, background-color .5s ease;
}

.navbar .navbar-nav .nav-link:hover:after {
  width: 100%;
  background: #fda302;
}

.navbar .navbar-nav .button {
  margin-left: 30px;
}

.navbar-fixed-top.scrolled {
  background-color: #011321 !important;
  transition: .2s linear;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

/*side menu button*/
.sidemenu_btn {
  width: 36px;
  padding: 6px;
  right: 40px;
  top: 20px;
  z-index: 999;
  margin-top: 12px;
  margin-left: 16px;
  cursor: pointer;
  position: absolute;
  display: inline-block;
  transition: all .3s linear;
}

.sidemenu_btn span {
  height: 2px;
  width: 100%;
  background: #fff;
  display: block;
  margin: auto;
  transition: .5s ease;
}

.sidemenu_btn:hover span:first-child,
.sidemenu_btn:hover span:last-child {
  width: 70%;
  background-color: #fda302;
}

.sidemenu_btn:hover span:nth-child(2) {
  background-color: #fda302;
}

.sidemenu_btn span:nth-child(2) {
  margin: 4px 0;
}

/* ===================================
    Side Menu
====================================== */

.side-menu {
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  z-index: 9999;
  background: #fda302;
  transform: translate3d(100%, 0, 0);
  transition: transform .5s ease;
  position: fixed;
  overflow: hidden;
}

.side-menu.left {
  left: 0;
  right: auto;
  transform: translate3d(-100%, 0, 0);
}

.side-menu.before-side {
  width: 280px;
}

.side-menu.side-menu-active,
.side-menu.before-side {
  transform: translate3d(0, 0, 0);
}

.pul-menu .side-menu.side-menu-active {
  visibility: visible;
  opacity: 1;
}

.side-menu .navbar-brand {
  margin: 0 0 2.5rem 0;
}

/*Side overlay*/
#close_side_menu {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1031;
  opacity: 0.7;
  background-color: #011321;
  position: fixed;
  transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*side menu image*/
.sidemenu-image {
  position: absolute;
  top: 45px;
}

/*side menu close btn*/
.side-menu .btn-close {
  height: 33px;
  width: 33px;
  top: 30px;
  right: 25px;
  cursor: pointer;
  text-align: center;
  position: absolute;
  display: inline-block;
}

.side-menu.before-side .btn-close {
  display: none;
}

.side-menu .btn-close::before,
.side-menu .btn-close::after {
  top: 5px;
  left: 16px;
  height: 24px;
  width: 2px;
  content: ' ';
  background: #011321;
  position: absolute;
}

.side-menu .btn-close:before {
  transform: rotate(45deg);
}

.side-menu .btn-close:after {
  transform: rotate(-45deg);
}

.side-menu .btn-close:hover {
  transform: scale(0.9);
  overflow: hidden;
  transition: all .5s ease;
}

/*side menu inner-wrapper*/
.side-menu .inner-wrapper {
  height: 100%;
  padding: 4.5rem 5rem;
  position: relative;
  overflow-y: auto;
  display: flex;
  align-items: center;
  text-align: left;
  flex-wrap: wrap;
}

.pul-menu.pushwrap .side-menu .inner-wrapper {
  padding: 3.5rem 2.5rem;
}

.side-menu .side-nav {
  margin-bottom: 0;
  margin-top: 30px;
  display: block;
}

.side-nav .navbar-nav .nav-item {
  opacity: 0;
  display: block;
  margin: 15px 0;
  padding: 0 !important;
  transition: all 0.8s ease 500ms;
  transform: translateY(30px);
}

.side-nav .navbar-nav .nav-item:first-child {
  transition-delay: .1s;
}

.side-nav .navbar-nav .nav-item:nth-child(2) {
  transition-delay: .2s;
}

.side-nav .navbar-nav .nav-item:nth-child(3) {
  transition-delay: .3s;
}

.side-nav .navbar-nav .nav-item:nth-child(4) {
  transition-delay: .4s;
}

.side-nav .navbar-nav .nav-item:nth-child(5) {
  transition-delay: .5s;
}

.side-nav .navbar-nav .nav-item:nth-child(6) {
  transition-delay: .6s;
}

.side-nav .navbar-nav .nav-item:nth-child(7) {
  transition-delay: .7s;
}

.side-nav .navbar-nav .nav-item:nth-child(8) {
  transition-delay: .8s;
}

.side-nav .navbar-nav .nav-item:nth-child(9) {
  transition-delay: .9s;
}

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
  transform: translateY(0);
  opacity: 1;
}

.side-nav .navbar-nav .nav-link {
  display: inline-table;
  color: #011321;
  padding: 2px 0 3px 0 !important;
  font-size: 24px;
  line-height: normal;
  position: relative;
  border-radius: 0;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
}

.side-nav .navbar-nav .nav-link::after {
  content: "";
  left: 0;
  width: 0;
  bottom: 0;
  height: 2px;
  background: #011321;
  overflow: hidden;
  position: absolute;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
  width: 100%;
}

.side-nav .navbar-nav .nav-link.active {
  background: transparent;
}

/*side menu footer */
.side-menu-footer .navbar-nav {
  transform: translateY(0);
}

.side-menu-footer p {
  color: #011321;
  font-size: 14px;
}

.side-menu-footer .banner-icons ul {
  margin-bottom: 0;
}

.side-menu-footer .banner-icons ul li {
  display: inline-block;
}

.side-menu-footer .banner-icons ul li i {
  color: #011321;
}

.side-menu-footer .banner-icons ul li a:hover {
  background-color: #011321;
  transition: all .8s ease;
}

.side-menu-footer .banner-icons ul li a {
  border-radius: 50%;
  color: #fff;
  height: 40px;
  line-height: 38px;
  width: 40px;
  display: block;
  overflow: hidden;
  text-align: center;
  border: 1px solid transparent;
}

.side-menu-footer .banner-icons ul li a:hover i {
  color: #fff;
}

/* ===================================
    Banner
====================================== */

.banner-section {
  background-color: #011321;
}

.banner-section .caption {
  padding-top: 12.5rem;
}

.caption h5 {
  font-size: 36px;
  color: #fff;
  letter-spacing: -1px;
}

.caption .heading {
  font-size: 72px;
  font-weight: 100;
  letter-spacing: 5px;
  color: #fff;
  margin-bottom: 15px;
}

.caption .text {
  color: #fff;
  font-weight: 100;
  text-align: justify;
  padding-right: 25px;
  margin-bottom: 15px;
}

.banner-btn {
  margin-top: 30px;
}

.banner-section .small-images {
  position: relative;
  bottom: 160px;
}

.banner-section .small-images .small-img .image {
  margin-right: 15px;
  position: absolute;
  border: 15px solid #fff;
}

.overlay-image .text {
  color: #fff;
  margin-top: 10px;
  font-size: 12px;
}

/* ===================================
    Counter
====================================== */

.counter-section {
  padding-top: 180px;
  padding-bottom: 120px;
  background-color: #fda302;
}

.counter-section .counter-text {
  padding-top: 90px;
}

.counter-section h5 {
  font-size: 36px;
}

.counter-text .text {
  padding-top: 10px;
}

.counter-section .num_counter {
  padding-top: 90px;
}

.counter-section .counter i {
  font-size: 36px;
  color: #011321;
}

.counter-section .counter .text {
  font-weight: 400;
  margin-bottom: 0;
  padding-top: 10px;
}

/* ===================================
    About-us 
====================================== */

.about-us {
  padding-top: 120px;
  padding-bottom: 120px;
}

.about-us .about-img {
  position: relative;
}

.about-us .about-img img {
  width: 80%;
  border: 18px solid #f6f6f6;
  position: relative;
  z-index: 1;
}

.about-us .rectangle {
  position: absolute;
  border-left: 52px solid #011321;
  border-bottom: 52px solid #011321;
  border-top: 0 solid transparent;
  border-right: 0 solid transparent;
  bottom: -38px;
  left: -33px;
  width: 340px;
  height: 380px;
  padding: 8px 8px 8px 0;
}

.about-us .about-text .subheading {
  margin-bottom: 0;
}

.about-us .about-text .heading {
  margin-top: 30px;
  margin-bottom: 35px;
}

.about-us .about-text .text {
  font-size: 14px;
  text-align: justify;
}

.about-us .about-text .button {
  margin-top: 50px;
}

/* ===================================
    Products
====================================== */

.products-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f6f6f6;
}

.products-section .subheading {
  color: #fda302;
  text-align: center;
}

.products-section .heading {
  text-align: center;
}

.products-section .products {
  margin-top: 120px;
}

.products-section .products .card {
  padding-top: 20px;
  padding-bottom: 20px;
  border: transparent;
  text-align: center;
  cursor: pointer;
  transition: .5s ease;
  background-color: transparent;
}

.products-section .products .card:hover {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  transition: .5s ease;
}

.products-section .products .card:hover .subheading {
  font-weight: 500;
  transition: .5s ease;
}

.products .card .card-body .subheading {
  color: #202020;
  font-size: 24px;
  font-weight: 300;
  transition: .5s ease;
}

.products .card .card-body .text {
  color: #606060;
  font-size: 14px;
}

/* ===================================
   Testimonials 
====================================== */

.testimonial-section .text-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #fda302;
}

.testimonial-section .text-section h5 {
  font-size: 48px
}

.testimonial-section .text-section .text-area {
  padding-top: 120px;
  padding-bottom: 120px;
  padding-left: 200px;
}

.testimonial-section .carousel-section {
  background-color: #011321;
  padding: 120px 65px;
}

.carousel-section .testimonial-image {
  width: 80px;
  height: 80px;
  display: block;
  margin: auto;
}

.carousel-section .testimonials .quote i {
  color: #fff;
  font-style: italic;
  font-size: 20px;
}

.carousel-section .testimonials p {
  text-align: center;
  margin-top: 34px;
  color: #fff;
  font-size: 18px !important;
}

.carousel-section .testimonials h5 {
  font-size: 24px;
  color: #fff;
  margin-top: 25px;
}

/* ===================================
   Contact-Section
====================================== */

.contact-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact-section form {
  margin-top: 50px;
  padding-left: 135px;
  padding-right: 135px;
}

.contact-form .form-control::placeholder {
  color: #808080;
}

.contact-form textarea {
  min-height: 175px;
  resize: none;
}

.contact-section .contact-form .form-control {
  border: none;
  background: transparent;
  font-weight: normal;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 30px;
  font-size: 16px;
  transition: border .9s ease;
  border-bottom: 1px solid #ced4da;
  font-family: 'Roboto', sans-serif;
}

.form-control:focus {
  color: #011321;
  box-shadow: 0 0 0 0.0rem transparent;
}

.contact-section .button {
  width: 100%;
}

.contact-section .button {
  margin-left: 20px;
  margin-right: 20px;
}

/* ===================================
  Footer
====================================== */

footer {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f6f6f6;
}

footer .text {
  font-size: 13px;
  color: #888888;
}

footer .social-icons {
  text-align: center;
}

/* ===================================
    Stand Alone page
====================================== */

.header {
  height: 70vh;
  background-size: cover;
  background-color: #011321;
}

.header img{
  width: 80%;
  height: 70vh;
  margin-left: 80px;
}

.header .header-text {
  padding-top: 12.5rem;
}

.header h2 {
  color: #fff;
  font-size: 60px;
  padding-bottom: 16px;
   font-family: 'Oswald', sans-serif;

}

.page-breadcrumb li {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.page-breadcrumb li a {
  color: #fff;
  margin-right: 5px;
  transition: all 0.3s ease;
}

.page-breadcrumb li i {
  color: #fda302;
}

/*Main Page Start*/
.main-page {
  padding-top: 120px;
  padding-bottom: 120px;
}

.main-page .standalone-heading {
  padding-bottom: 100px;
}

.main-page .subheading {
   margin-bottom: 5px;
}

.main-page .heading {
  font-size: 56px;
  margin-bottom: 20px;
   font-family: 'Oswald', sans-serif;
}

.main-page .image {
  position: relative;
}

.main-page .image img {
  width: 100%;
  height: 100%;
  display: block;
}

.standalone-area .standalone-row {
  margin-bottom: 40px;
}

.standalone-area .standalone-row:last-child {
  margin-bottom: 0;
}

.main-page .standalone-row .text {
  padding-left: 30px;
  text-align: center;
}

.standalone-row:nth-child(2) .text {
  padding-left: 0;
  padding-right: 30px;
}

/* Image Hover*/
.standaloneoverlay {
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease;
  background-color: #011321;
}

.hover-effect:hover .standaloneoverlay {
  opacity: .4;
}

.overlayBottom {
  width: 100%;
  height: 0;
  bottom: 0;
  right: 0;
  background-color: #011321;
  cursor: pointer;
}

.hover-effect:hover .overlayBottom {
  height: 100%;
}

/* ===================================
    Media Queries
====================================== */

@media (width: 1920px) {
  /*Testimonials*/
  .testimonial-section .text-section .text-area {
    padding-left: 260px;
    padding-right: 200px;
  }
  .testimonial-section .carousel-section {
    padding-right: 120px;
    padding-left: 120px;
  }

  /*Stand Alone*/
  .header .header-text {
    padding-top: 19rem;
  }
}

@media (max-width: 1200px) {
  /*Navbar*/
  .navbar .navbar-nav {
    margin-left: 13rem;
  }
  .navbar .navbar-nav .nav-link {
    margin-left: 25px;
  }

  /*Side menu*/
  .side-menu {
    width: 50%;
  }

  /*Banner*/
  .banner-section .caption {
    padding-top: 8.5rem;
  }
  .caption .heading {
    font-size: 60px;
  }
  .overlay-text {
    font-size: 20px;
  }

  /*Testimonials Section*/
  .testimonial-section .text-section .text-area {
    padding-left: 65px;
  }

  /*Stand Alone*/
  .header{
    height: 100%;
  }
  .header img{
    width: 100%;
    height: 100%;
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .heading {
    text-align: center;
    font-size: 42px;
  }
  .text {
    text-align: center !important;
  }
  h5 {
    font-size: 30px !important;
  }
  .buttons {
    text-align: center;
  }

  /*Navbar*/
  .navbar-brand img {
    padding-left: 20px;
  }
  .sidemenu_btn {
    right: 18px;
  }

  /*Banner*/
  .caption .text {
    padding-right: 0;
    text-align: center;
    font-weight: 300;
  }
  .banner-section .small-images .small-img .image {
    top: 50px;
  }

  /*Counter Section*/
  .counter {
    margin-bottom: 40px;
  }
  .counter-section .counter-text {
    padding-top: 0;
  }

  /*About-us Section*/
  .about-us .about-img img {
    width: 100%;
  }
  .about-us .rectangle {
    bottom: -8px;
    left: -8px;
    width: 500px;
    height: 600px;
    border-left: 20px solid #011321;
    border-bottom: 20px solid #011321;
  }
  .about-us .about-text .subheading {
    text-align: center;
    margin-top: 40px;
  }

  /*Products Section*/
  .products-section .card {
    margin-bottom: 30px;
  }

  /*Testimonials Section*/
  .testimonial-section .text-section .text-area {
    padding-left: 0;
  }
  .carousel-section .testimonials p {
    font-size: 13px !important;
  }

  /*Contact Section*/
  .contact-section form {
    padding-left: 0;
    padding-right: 0;
  }

  /*StandAlone*/
  .header .header-text{
    text-align: center;
  }
  .main-page .standalone-row .text {
    padding-left: 0;
    padding-bottom: 15px;
  }
  .standalone-row:nth-child(2) .text {
    padding-right: 0;
  }
  .standalone-area .standalone-row{
    margin-bottom: 80px;
  }
}

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

  /*About Us*/
  .about-us .rectangle {
    width: 340px;
    height: 380px;
  }
  .wow {
    visibility: visible !important;
    animation: none !important;
  }

  /*Stand Alone*/
  .header h2 {
    font-size: 50px;
  }
  .main-page .heading{
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  /*Loader*/
  .loader {
    top:45%;
    left:45%;
  }

  /*Navbar*/
  .navbar {
    height: 75px;
  }

  /*Side Menu*/
  .sidemenu_btn {
    top: 14px;
  }
  .side-menu {
    width: 100%;
  }
  .side-menu-footer p {
    font-size: 12px;
  }

  /*Banner*/
  .caption .heading {
    font-size: 40px;
  }
  .heading {
    font-size: 40px;
  }
  .banner-section .small-images .small-img .image {
    margin-right: 0;
    position: relative;
    margin-top: 20px;
  }

  /*Products Section*/
  .products-section .card .img {
    text-align: center;
  }
  .products-section .card img {
    max-width: 80%;
  }

  /*About us*/
  .about-us .rectangle {
    width: 255px;
    height: 300px;
  }
}

@media (max-width: 370px){
  /*Side Menu*/
  .side-menu-footer p {
    font-size: 10px;
  }
}