@charset "UTF-8";
/*----------------------------------------------

[Master Stylesheet]

Project:    Project Name
Version:    1.0
Last change:    06.05.2024
Primary use:    AGT 
Author:   Praveen Maddy

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

[Table of contents]

1. Body
2. Header
3. Main
4. Footer

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

[Fonts]

Base Fonts(Headings & Content)  : DM-Sans, sans-serif;
Icon Fonts                      : Fontawesome 5.15.4

------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  scroll-padding-top: 100px;
}

html {
  margin: 0;
  padding: 0;
  scroll-padding-top: 100px;
}

body {
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none !important;
  margin-block-start: 0;
  -ms-margin-block-start: 0;
  -moz-margin-block-start: 0;
  -o-margin-block-start: 0;
  margin-block-end: 0;
  -ms-margin-block-end: 0;
  -moz-margin-block-end: 0;
  -o-margin-block-end: 0;
  padding-inline-start: 0;
  -ms-padding-inline-start: 0;
  -moz-padding-inline-start: 0;
  -o-padding-inline-start: 0;
}

li {
  text-decoration: none !important;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
}
button:focus {
  box-shadow: none;
  outline: none;
}

a,
a:link,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}

::-ms-expand {
  display: none;
}

::-ms-clear {
  display: none;
}

:focus {
  box-shadow: none !important;
  -ms-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
}

.mx-0-auto {
  margin: 0 auto;
}

.btn.focus,
btn.focus,
.btn:focus,
btn:focus,
button:focus {
  outline: none !important;
  box-shadow: none !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input:-internal-autofill-selected {
  background-color: transparent;
}

/* clears the ‘X’ from Chrome */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

input:focus {
  outline: none;
  box-shadow: none;
}

select:focus {
  outline: none;
  box-shadow: none;
}

textarea {
  resize: none;
}
textarea:focus {
  outline: none;
  box-shadow: none;
}

/*------------------------------------------------Header------------------------------------------------*/
header .custom-header {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
}
header .custom-header .nav-button span {
  background: linear-gradient(-45deg, rgb(29, 20, 75) 0%, rgb(237, 27, 36) 100%);
  display: block;
  padding: 10px 20px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 11px;
  line-height: 17px;
  font-weight: 600;
  text-transform: uppercase;
}

/*------------------------------------------------Main-SCSS------------------------------------------------*/
.custom-spacing {
  padding-top: 50px;
  padding-bottom: 50px;
}

/*------------------------------------------------Landing-Video------------------------------------------------*/
.landing-video {
  background-color: #ffffff;
}
.landing-video .section-title {
  padding-bottom: 40px;
}
.landing-video .section-title h4 {
  font-size: 15px;
  line-height: 23px;
  color: #da2128;
  padding-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}
.landing-video .section-title h2 {
  font-size: 34px;
  line-height: 42px;
  font-weight: 600;
  color: #140958;
  text-align: center;
}
.landing-video .video-card {
  position: relative;
}
.landing-video .video-card .image {
  border-radius: 10px;
  position: relative;
}
.landing-video .video-card .image::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5) 43.65%);
  border-radius: 10px;
}
.landing-video .video-card .image img {
  border-radius: 10px;
  width: 100%;
}
.landing-video .video-card .context {
  position: absolute;
  bottom: 0;
  text-align: center;
  padding-bottom: 20px;
  width: 100%;
  bottom: 50px;
}
.landing-video .video-card .context h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  padding-bottom: 25px;
  color: #ffffff;
}
.landing-video .video-card .context p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 300;
  color: #748188;
  color: #ffffff;
  padding-bottom: 40px;
}
.landing-video .video-card .video-link {
  text-align: center;
}
.landing-video .video-card .video-link a {
  padding: 10px;
  border-radius: 50px;
  background-color: hsla(240, 3%, 94%, 0.1);
  color: #ffffff;
}
.landing-video .video-card .video-link a i {
  margin-right: 5px;
}
@media (max-width: 992px) {
  .landing-video .section-title {
    padding-bottom: 30px;
  }
  .landing-video .section-title h2 {
    font-size: 30px;
    line-height: 42px;
  }
  .landing-video .video-card .context {
    bottom: 20px;
    padding-bottom: 0;
    padding: 10px;
  }
  .landing-video .video-card .context h2 {
    font-size: 28px;
    line-height: 40px;
    padding-bottom: 10px;
  }
  .landing-video .video-card .context p {
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .landing-video .section-title h2 {
    font-size: 28px;
    line-height: 38px;
  }
  .landing-video .video-card .context h2 {
    font-size: 26px;
    line-height: 34px;
  }
  .landing-video .video-card .context p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 576px) {
  .landing-video .section-title {
    padding-bottom: 20px;
  }
  .landing-video .section-title h2 {
    font-size: 26px;
    line-height: 34px;
  }
  .landing-video .video-card .context p {
    display: none;
  }
}

/*------------------------------------------------Landing-Service-Video------------------------------------------------*/
.landing-service-video {
  background-color: #f2f3fa;
}
.landing-service-video .section-title {
  padding-bottom: 40px;
}
.landing-service-video .section-title h4 {
  font-size: 15px;
  line-height: 23px;
  color: #da2128;
  padding-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}
.landing-service-video .section-title h2 {
  font-size: 34px;
  line-height: 42px;
  font-weight: 600;
  color: #140958;
  text-align: center;
}
.landing-service-video .row-gap {
  gap: 40px 0px;
}
.landing-service-video .landing-service-video-inn .image {
  position: relative;
  border-radius: 10px;
  z-index: 5;
}
.landing-service-video .landing-service-video-inn .image::before {
  position: absolute;
  content: "";
  background: #000000;
  opacity: 0.5;
  width: 100%;
  height: 100%;
}
.landing-service-video .landing-service-video-inn .image .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.landing-service-video .landing-service-video-inn .image .icon i {
  font-size: 20px;
  color: #140958;
  border-radius: 50px;
  background-color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.landing-service-video .landing-service-video-inn .context {
  background-color: #da2128;
  padding: 8px 10px;
}
.landing-service-video .landing-service-video-inn .context h4 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  color: #ffffff;
}
@media (max-width: 992px) {
  .landing-service-video .section-title {
    padding-bottom: 30px;
  }
  .landing-service-video .section-title h2 {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (max-width: 768px) {
  .landing-service-video .row-gap {
    gap: 30px 0px;
  }
  .landing-service-video .section-title h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (max-width: 576px) {
  .landing-service-video .section-title {
    padding-bottom: 20px;
  }
  .landing-service-video .section-title h2 {
    font-size: 26px;
    line-height: 34px;
  }
}

/*------------------------------------------------Landing-Features-Specifications------------------------------------------------*/
.landing-features-specifications {
  background-color: #f2f3fa;
}
.landing-features-specifications h2 {
  font-size: 34px;
  line-height: 42px;
  font-weight: 600;
  color: #140958;
  text-align: left;
  padding-bottom: 30px;
}
.landing-features-specifications .row-gap {
  gap: 40px 0px;
}
.landing-features-specifications .key-features {
  position: sticky;
  top: 60px;
}
.landing-features-specifications .key-features ul {
  margin-left: 23px;
}
.landing-features-specifications .key-features ul li {
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  color: #748188;
  padding-left: 15px;
  padding-bottom: 20px;
}
.landing-features-specifications .key-features ul li:last-child {
  padding-bottom: 0;
}
.landing-features-specifications .key-features ul li::marker {
  font-family: "Font Awesome 5 Pro";
  content: "\f058";
  color: #da2128;
  font-weight: 700;
}
.landing-features-specifications .tech-spec .specs-table .table thead tr th, .landing-features-specifications .tech-spec .specs-table .table thead tr td {
  background-color: #da2128;
  color: #ffffff;
}
.landing-features-specifications .tech-spec .specs-table .table tbody tr th {
  color: #140958;
}
@media (max-width: 992px) {
  .landing-features-specifications h2 {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (max-width: 768px) {
  .landing-features-specifications .row-gap {
    gap: 30px 0px;
  }
  .landing-features-specifications h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (max-width: 576px) {
  .landing-features-specifications h2 {
    font-size: 26px;
    line-height: 34px;
    padding-bottom: 20px;
  }
}

/*------------------------------------------------Landing-Specifications------------------------------------------------*/
.landing-specifications {
  background-color: #f2f3fa;
}
.landing-specifications .section-title {
  padding-bottom: 40px;
}
.landing-specifications .section-title h4 {
  font-size: 15px;
  line-height: 23px;
  color: #da2128;
  padding-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}
.landing-specifications .section-title h2 {
  font-size: 34px;
  line-height: 42px;
  font-weight: 600;
  color: #140958;
  text-align: center;
}
.landing-specifications .row-gap {
  gap: 40px 0px;
}
.landing-specifications .specs-table .table thead tr th, .landing-specifications .specs-table .table thead tr td {
  background-color: #da2128;
  color: #ffffff;
}
.landing-specifications .specs-table .table tbody tr th {
  color: #140958;
}
@media (max-width: 992px) {
  .landing-specifications .section-title {
    padding-bottom: 30px;
  }
  .landing-specifications .section-title h2 {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (max-width: 768px) {
  .landing-specifications .row-gap {
    gap: 30px 0px;
  }
  .landing-specifications .section-title h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (max-width: 576px) {
  .landing-specifications .section-title {
    padding-bottom: 20px;
  }
  .landing-specifications .section-title h2 {
    font-size: 26px;
    line-height: 34px;
  }
}

/*------------------------------------------------Landing-Operator-Manual------------------------------------------------*/
.landing-operator-manual {
  background-color: #f8f8f8;
}
.landing-operator-manual .row-gap {
  gap: 30px 0px;
}
.landing-operator-manual .section-title {
  padding-bottom: 40px;
}
.landing-operator-manual .section-title h2 {
  font-size: 34px;
  line-height: 42px;
  font-weight: 600;
  color: #140958;
  text-align: center;
  padding-bottom: 10px;
}
.landing-operator-manual .section-title h5 {
  font-size: 15px;
  line-height: 23px;
  color: #da2128;
  padding-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}
.landing-operator-manual .section-title p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  text-align: center;
}
.landing-operator-manual .landing-manual-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 30px 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  height: 100%;
}
.landing-operator-manual .landing-manual-card h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #140958;
  padding-bottom: 10px;
}
.landing-operator-manual .landing-manual-card p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  padding-bottom: 15px;
}
.landing-operator-manual .landing-manual-card a {
  display: inline-block;
  background-color: #d71920;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  transition: background 0.3s ease;
  font-weight: 500;
}
.landing-operator-manual .landing-manual-card a i {
  margin-left: 5px;
}
@media (max-width: 992px) {
  .landing-operator-manual .section-title {
    padding-bottom: 30px;
  }
  .landing-operator-manual .section-title h2 {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (max-width: 768px) {
  .landing-operator-manual .row-gap {
    gap: 20px 0px;
  }
  .landing-operator-manual .section-title h2 {
    font-size: 28px;
    line-height: 38px;
  }
  .landing-operator-manual .section-title p {
    font-size: 16px;
    line-height: 26px;
  }
  .landing-operator-manual .landing-manual-card {
    padding: 20px;
  }
  .landing-operator-manual .landing-manual-card h3 {
    font-size: 22px;
    line-height: 34px;
  }
}
@media (max-width: 576px) {
  .landing-operator-manual .section-title {
    padding-bottom: 20px;
  }
  .landing-operator-manual .section-title h2 {
    font-size: 26px;
    line-height: 34px;
  }
}

/*------------------------------------------------Landing-Terms-Condition------------------------------------------------*/
.landing-terms-condition {
  background-color: #f2f3fa;
}
.landing-terms-condition h2 {
  font-size: 34px;
  line-height: 42px;
  font-weight: 600;
  color: #140958;
  text-align: center;
  padding-bottom: 40px;
}
.landing-terms-condition h5 {
  font-size: 15px;
  line-height: 23px;
  color: #da2128;
  padding-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}
.landing-terms-condition h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  color: #140958;
  padding-bottom: 5px;
}
.landing-terms-condition p {
  line-height: 1.9;
  font-size: 18px;
  font-weight: 400;
  color: #555555;
  padding-bottom: 15px;
}
.landing-terms-condition p:last-child {
  padding-bottom: 0;
}
@media (max-width: 992px) {
  .landing-terms-condition h2 {
    font-size: 30px;
    line-height: 42px;
    padding-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .landing-terms-condition h2 {
    font-size: 28px;
    line-height: 38px;
  }
  .landing-terms-condition h3 {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 576px) {
  .landing-terms-condition h2 {
    font-size: 26px;
    line-height: 34px;
    padding-bottom: 20px;
  }
}

/*------------------------------------------------Landing-List-Of-Spares-----------------------------------------------*/
.landing-list-of-spares .row-gap {
  gap: 30px 0px;
}
.landing-list-of-spares h2 {
  font-size: 34px;
  line-height: 42px;
  font-weight: 600;
  color: #140958;
  text-align: center;
  padding-bottom: 20px;
}
.landing-list-of-spares h5 {
  font-size: 15px;
  line-height: 23px;
  color: #da2128;
  padding-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}
.landing-list-of-spares ul {
  margin-left: 23px;
}
.landing-list-of-spares ul li {
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  color: #1d144b;
  padding-left: 15px;
  padding-bottom: 20px;
}
.landing-list-of-spares ul li:last-child {
  padding-bottom: 0;
}
.landing-list-of-spares ul li::marker {
  font-family: "Font Awesome 5 Pro";
  content: "\f058";
  color: #da2128;
  font-weight: 700;
}
@media (max-width: 992px) {
  .landing-list-of-spares h2 {
    font-size: 30px;
    line-height: 42px;
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .landing-list-of-spares h2 {
    font-size: 28px;
    line-height: 38px;
  }
  .landing-list-of-spares .row-gap {
    gap: 20px 0px;
  }
}
@media (max-width: 576px) {
  .landing-list-of-spares h2 {
    font-size: 26px;
    line-height: 34px;
    padding-bottom: 0;
  }
}

/*--------------------------------------------------landing-FAQ-------------------------------------------------*/
.landing-faq {
  background-color: #ffffff;
}
.landing-faq .faq-inn h5 {
  font-size: 15px;
  line-height: 23px;
  color: #da2128;
  padding-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}
.landing-faq .faq-inn h2 {
  font-size: 34px;
  line-height: 42px;
  font-weight: 600;
  color: #140958;
  padding-bottom: 50px;
  text-align: center;
}
.landing-faq .faq-inn .custom-accordion .accordion-item {
  background-color: transparent;
  border-right: none;
  border-left: none;
  border-top: 1px solid #c4c3c3;
  border-bottom: 0;
}
.landing-faq .faq-inn .custom-accordion .accordion-item:last-child {
  border-bottom: 1px solid #c4c3c3;
}
.landing-faq .faq-inn .custom-accordion .accordion-item .accordion-header .accordion-button {
  background-color: transparent;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: #140958;
  padding: 20px 0px;
}
.landing-faq .faq-inn .custom-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.landing-faq .faq-inn .custom-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}
.landing-faq .faq-inn .custom-accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url(../images/icons/plus.png);
}
.landing-faq .faq-inn .custom-accordion .accordion-item .accordion-body {
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
  padding: 0px 0px 25px;
}
.landing-faq .faq-inn .custom-accordion .accordion-item .accordion-body p {
  line-height: 1.9;
  font-size: 18px;
  font-weight: 400;
  color: #555555;
}
.landing-faq .faq-inn .custom-accordion .accordion-item .accordion-body ul {
  padding-left: 23px;
  padding-bottom: 15px;
}
.landing-faq .faq-inn .custom-accordion .accordion-item .accordion-body ul li {
  list-style-type: disc;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  padding-bottom: 6px;
}
.landing-faq .faq-inn .custom-accordion .accordion-item .accordion-body ul li:last-child {
  padding-bottom: 0;
}
.landing-faq .faq-inn .custom-accordion .accordion-item .accordion-body ul li b {
  color: #140958;
}
.landing-faq .choose-image {
  height: 100%;
  padding-left: 50px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .landing-faq .faq-inn h2 {
    font-size: 30px;
    line-height: 42px;
    padding-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .landing-faq .faq-inn h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
@media (max-width: 576px) {
  .landing-faq .faq-inn h2 {
    font-size: 26px;
    line-height: 34px;
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------landing-Spare-Parts-Manual-------------------------------------------------*/
.landing-spare-parts-manual {
  background-color: #f8f8f8;
}
.landing-spare-parts-manual .row-gap {
  gap: 30px 0px;
}
.landing-spare-parts-manual .section-title {
  padding-bottom: 40px;
}
.landing-spare-parts-manual .section-title h2 {
  font-size: 34px;
  line-height: 42px;
  font-weight: 600;
  color: #140958;
  text-align: center;
  padding-bottom: 10px;
}
.landing-spare-parts-manual .section-title h5 {
  font-size: 15px;
  line-height: 23px;
  color: #da2128;
  padding-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}
.landing-spare-parts-manual .section-title p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  text-align: center;
}
.landing-spare-parts-manual .landing-manual-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 30px 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  height: 100%;
}
.landing-spare-parts-manual .landing-manual-card h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #140958;
  padding-bottom: 10px;
}
.landing-spare-parts-manual .landing-manual-card p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  padding-bottom: 15px;
}
.landing-spare-parts-manual .landing-manual-card a {
  display: inline-block;
  background-color: #d71920;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  transition: background 0.3s ease;
  font-weight: 500;
}
.landing-spare-parts-manual .landing-manual-card a i {
  margin-left: 5px;
}
@media (max-width: 992px) {
  .landing-spare-parts-manual .section-title {
    padding-bottom: 30px;
  }
  .landing-spare-parts-manual .section-title h2 {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (max-width: 768px) {
  .landing-spare-parts-manual .row-gap {
    gap: 20px 0px;
  }
  .landing-spare-parts-manual .section-title h2 {
    font-size: 28px;
    line-height: 38px;
  }
  .landing-spare-parts-manual .section-title p {
    font-size: 16px;
    line-height: 26px;
  }
  .landing-spare-parts-manual .landing-manual-card {
    padding: 20px;
  }
  .landing-spare-parts-manual .landing-manual-card h3 {
    font-size: 22px;
    line-height: 34px;
  }
}
@media (max-width: 576px) {
  .landing-spare-parts-manual .section-title {
    padding-bottom: 20px;
  }
  .landing-spare-parts-manual .section-title h2 {
    font-size: 26px;
    line-height: 34px;
  }
}

footer {
  padding: 12px 0px;
  text-align: center;
  background-color: #2f3c4c;
}
footer p {
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

/*-------------------------------------------------Media Queries------------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .custom-spacing {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .text-center-xl {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .custom-spacing {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .text-center-lg {
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 768px) {
  .custom-spacing {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .text-center-md {
    text-align: center;
  }
}
@media only screen and (max-width: 576px) {
  .custom-spacing {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
/* -------------------------- Max-Width: < 1400px ---------------------- */
/* -------------------------- Max-Width: < 1366px ---------------------- */
/* -------------------------- Max-Width: < 1200px ---------------------- */
/* -------------------------- Max-Width: < 992px ---------------------- */
/* -------------------------- Max-Width: < 768px ---------------------- */
/* -------------------------- Max-Width: < 576px ---------------------- */

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