/* ==========================================================================
Global Settings
========================================================================== */
/*
* Remove text-shadow in selection highlight.
*/
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::-moz-selection,
::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
* Body settings, change it as required
*/
body {
  font-size: 15px;
  line-height: 1.2;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0px;
}

/*
* Links
*/
a {
  text-decoration: none;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}
a:hover {
  text-decoration: none;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

/*
* A better looking default horizontal rule
*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
* Remove the gap between images and the bottom of their containers.
*/
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

/*
* Allow only vertical resizing of textareas.
*/
textarea {
  resize: none;
}

/*
* Other
*/
*:focus {
  outline: none !important;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-30 {
  margin-bottom: 30px;
}

.button-group1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 991px) {
  .mb-80 {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .mb-80 {
    margin-bottom: 40px;
  }
  .mb-30 {
    margin-bottom: 20px;
  }
}
/* ==========================================================================
Helper classes
========================================================================== */
img.alignleft {
  float: left;
  margin: 0 10px 10px 0;
  display: block;
}
img.alignright {
  float: right;
  margin: 0 0px 10px 10px;
  display: block;
}
img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.clear {
  clear: both;
  height: 1px;
  line-height: 1px;
}

.gun1 {
  position: relative;
  padding-bottom: 70px;
  margin-bottom: 60px;
}
.gun1 .small {
  font-family: "Poppins", sans-serif;
  display: block;
  margin-bottom: 43px;
}
.gun1::after {
  content: "";
  background: url("../images/gun-icon1.svg") no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 110px;
  height: 36px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .gun1 {
    padding-bottom: 50px;
    margin-bottom: 30px;
  }
  .gun1 .small {
    margin-bottom: 20px;
  }
}
/*
* Other
*/
/* ==========================================================================
Layout
========================================================================== */
/*
*header
*/
#header {
  background: #1e2141;
  padding: 7px 0px 11px;
  position: relative;
  z-index: 1000;
}
#header .open-menu-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  color: #fff;
  font-size: 20px;
}

@media (max-width: 767px) {
  #header .logo img {
    max-height: 92px;
  }
}
/*
*main-navigation
*/
#main-navigation ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
}
#main-navigation .menu {
  margin-right: auto;
}
#main-navigation .menu > li {
  font-size: 16px;
  color: #fff;
  display: inline-block;
  font-weight: 500;
  margin-right: 76px;
  position: relative;
}
#main-navigation .menu > li:last-child {
  margin-right: 0;
}
#main-navigation .menu a {
  color: inherit;
}
#main-navigation .menu .current {
  opacity: 0.6;
}
#main-navigation .menu > li > a {
  padding-top: 20px;
  padding-bottom: 20px;
  display: block;
}
#main-navigation .menu .child {
  position: absolute;
  left: 50%;
  min-width: 199px;
  padding: 30px 20px;
  transform: translateX(-50%);
  background: #fff;
  text-align: center;
}
#main-navigation .menu .child li {
  color: #565971;
  font-size: 12px;
  line-height: 17px;
  margin-bottom: 11px;
}
#main-navigation .menu .child li a:hover {
  color: #1e2141;
  font-weight: 500;
}
#main-navigation .menu .child li:last-child {
  margin-bottom: 0px;
}

@media (max-width: 991px) {
  #main-navigation .menu > li {
    margin-right: 75px;
  }
}
@media (min-width: 768px) {
  #main-navigation .menu > li > a:hover {
    opacity: 0.6;
  }
  #main-navigation .menu .parent .child {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  }
  #main-navigation .menu .parent:hover > a {
    opacity: 0.6;
  }
  #main-navigation .menu .parent:hover .child {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media (max-width: 767px) {
  .open-menu {
    overflow: hidden;
  }
  .open-menu #main-navigation {
    left: 0px;
  }
  #main-navigation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 100%;
    background: #1e2141;
    z-index: 1000;
    padding: 58px 20px 20px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  }
  #main-navigation .scrollable-content {
    height: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
  }
  #main-navigation .close-menu-btn {
    font-size: 20px;
    position: absolute;
    right: 15px;
    top: 24px;
    color: #fff;
  }
  #main-navigation .menu {
    margin-bottom: 20px;
  }
  #main-navigation .menu > li {
    display: block;
    margin-right: 0px;
    margin-bottom: 1px;
  }
  #main-navigation .menu > li > a {
    padding: 13px 5px;
    display: block;
  }
  #main-navigation .menu .parent > a {
    padding-right: 20px;
    position: relative;
  }
  #main-navigation .menu .parent > a:after {
    font-family: "FontAwesome";
    content: "\f0d7";
    color: #fff;
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
    margin-left: 9px;
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -11px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  }
  #main-navigation .menu .open > a {
    opacity: 0.6;
  }
  #main-navigation .menu .open > a:after {
    transform: rotate(-180deg);
  }
  #main-navigation .menu .child {
    transform: none;
    position: static;
    min-width: auto;
    left: 0px;
    display: none;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: left;
  }
}
/* banner */
#banner {
  position: relative;
}
#banner .figure1 {
  position: relative;
}
#banner .figure1 img {
  max-height: 904px;
  min-height: 400px;
}
#banner .figure1:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
  background: #000;
}
#banner.alt .figure1 img {
  max-height: 450px;
  min-height: 300px;
}
#banner .description {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}
#banner .description h1,
#banner .description h2,
#banner .description p {
  color: #fff;
}
#banner .description .logo {
  margin-bottom: 15px;
}
#banner .description .sticker img {
  max-width: 520px;
}

@media (max-width: 991px) {
  #banner .description .logo img {
    max-height: 90px;
  }
  #banner .description .sticker img {
    width: 38vw;
    min-width: 190px;
  }
}
@media (min-width: 768px) {
  #banner .figure1 img {
    height: calc(100vh - 114px);
  }
}
/* footer */
#footer {
  background: #1e2141;
  padding: 55px 0 43px;
  text-align: center;
}
#footer .logo {
  margin-bottom: 37px;
}
#footer .footer-links {
  padding: 0;
  list-style-type: none;
  margin-bottom: 16px;
}
#footer .footer-links li {
  display: inline-block;
  margin-right: 110px;
  font-weight: 500;
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
}
#footer .footer-links li a {
  color: inherit;
}
#footer .footer-links li a:hover {
  opacity: 0.6;
}
#footer .footer-links li:last-child {
  margin-right: 0;
}
#footer p {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}
#footer p a {
  color: inherit;
}
#footer p a:hover {
  text-decoration: underline;
}
#footer .sociables {
  margin-bottom: 32px;
}

@media (max-width: 991px) {
  #footer .logo img {
    max-height: 139px;
  }
  #footer .footer-links li {
    font-size: 14px;
    margin-right: 25px;
  }
  #footer p {
    font-size: 12px;
  }
}
/* ==========================================================================
Common Functionalities & UI Elements
========================================================================== */
/*
* Typography
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1e2141;
  font-family: "Trajan Pro", sans-serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(1.75rem, 0.8333rem + 1.9097vw, 3.125rem);
  margin-bottom: 16px;
}

/*50px to 28px*/
h2 {
  font-size: clamp(1.75rem, 0.8333rem + 1.9097vw, 3.125rem);
  margin-bottom: 16px;
}
h2 .small {
  font-size: clamp(20px, 2vw, 30px);
}

/*50px to 28px*/
h3 {
  font-size: clamp(26px, 2.1vw, 48px);
  margin-bottom: 16px;
}

h4,
.h4 {
  font-size: clamp(20px, 2vw, 30px);
  margin-bottom: 16px;
}

h5 {
  font-size: 17px;
  margin-bottom: 16px;
}

h6 {
  font-size: 14px;
  margin-bottom: 16px;
}

p {
  line-height: 1.25;
  margin-bottom: 16px;
}
p.lead {
  font-size: 20px;
  line-height: 1.6;
}

.display-1 {
  font-size: clamp(2rem, 0.3333rem + 3.4722vw, 4.5rem);
}

.font-inherit {
  font-family: inherit;
}

.heading1 {
  font-size: clamp(18px, 1.8vw, 26px) !important;
  font-family: inherit;
  font-weight: 600;
}

.heading2 {
  font-size: clamp(20px, 2vw, 36px) !important;
  font-weight: 400;
}

.sm-heading {
  font-size: 16px !important;
  font-family: inherit;
  font-weight: 600;
  margin-bottom: 4px;
}

/* Lists ---------------------- */
ul,
ol {
  margin-bottom: 16px;
  list-style-position: outside;
}
ul.fw-normal li,
ol.fw-normal li {
  font-weight: 400;
}
ul.fw-normal li a,
ol.fw-normal li a {
  color: inherit;
}

ul li {
  color: #1e2141;
  font-weight: 500;
}
ul li::marker {
  color: #1e2141;
}
ul li ul,
ul li ol {
  margin-left: 20px;
  margin-bottom: 0;
}

ol {
  margin-left: 20px;
}
ol li ul,
ol li ol {
  margin-left: 20px;
  margin-bottom: 0;
}

.list1 {
  padding-left: 0;
  list-style: none;
}
.list1 li {
  font-size: clamp(20px, 2vw, 30px);
  color: #1e2141;
  font-family: "Trajan Pro", sans-serif;
  font-weight: 400;
}

.list2 {
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 39px;
}
.list2 li {
  width: 20%;
  text-align: center;
  padding: 0 20px;
}

@media (max-width: 767px) {
  .list2 {
    row-gap: 16px;
  }
  .list2 li {
    width: auto;
    max-width: 128px;
    min-width: 120px;
  }
}
/* container */
@media (min-width: 1500px) {
  .container {
    max-width: 1570px;
  }
}
@media (min-width: 1200px) {
  .container-md {
    max-width: 1195px;
  }
}
/* figure1 */
.figure1 {
  margin: 0;
}
.figure1 img {
  -o-object-fit: cover;
     object-fit: cover;
}

/* sociables */
.sociables {
  padding: 0;
  list-style-type: none;
}
.sociables li {
  display: inline-block;
  margin-right: 15px;
  color: #959494;
  font-size: 20px;
}
.sociables li a {
  color: inherit;
}
.sociables li a:hover {
  color: #a49e9e;
}
.sociables li:last-child {
  margin-right: 0;
}

/* btn */
.btn {
  border-radius: 0;
  min-height: 60px;
  padding: 12px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14.59px;
  font-weight: 600;
}
.btn.btn-lg {
  min-width: 258px;
}

.button1 {
  background: #303250;
  border-color: #303250;
  color: #fff;
}
.button1:hover {
  color: #fff;
  background: #404266;
  border-color: #404266;
}

.button-outline1 {
  background: #fff;
  border-color: #303250;
  color: #303250;
}

/* form */
.form-group {
  margin-bottom: 31px;
}

.label-control {
  color: #1e2141;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 18px;
}

.form-control {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  border-radius: 0;
  border: 1px solid #ecebeb;
  padding: 17px 26px;
}
.form-control::-moz-placeholder {
  color: #000000;
  opacity: 1;
}
.form-control::placeholder {
  color: #000000;
  opacity: 1;
}

textarea.form-control {
  min-height: 181px;
}

.form.alt textarea.form-control {
  min-height: 258px;
}

.select1 {
  position: relative;
}
.select1::before {
  content: "";
  background: url("../images/arrow-icon2.svg") no-repeat;
  background-position: center;
  background-size: 100% 100%;
  display: inline-block;
  width: 10px;
  height: 6px;
  position: absolute;
  right: 29px;
  top: 50%;
  transform: translateY(-50%);
}
.select1 select {
  padding-right: 42px;
}

@media (max-width: 767px) {
  .form-group {
    margin-bottom: 20px;
  }
  .label-control {
    font-size: 14px;
    margin-bottom: 9px;
  }
  .form-control {
    padding: 10px 16px;
  }
  textarea.form-control {
    min-height: 130px;
  }
  .form.alt textarea.form-control {
    min-height: 150px;
  }
}
/* bg colors */
.bg-color1 {
  background: #ecebeb !important;
}

.bg-color2 {
  background: #1e2141 !important;
}

/* section */
.section {
  padding: 100px 0;
}

@media (max-width: 767px) {
  .section {
    padding: 75px 0;
  }
}
/* contact us */
.contact-us p {
  font-size: 20px;
  line-height: 39px;
  font-weight: 400;
}

/* slider */
.slick-slider .slick-track {
  display: flex;
}
.slick-slider .slick-slide {
  height: auto;
}
.slick-slider .slick-arrow {
  width: 64px;
  height: 64px;
  border: none;
  background: url("../images/arrow-icon1.svg") no-repeat;
  background-size: 100% 100%;
  background-position: center;
  font-size: 0;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: 1;
}
.slick-slider .slick-arrow.slick-disabled {
  opacity: 0 !important;
}
.slick-slider .slick-arrow.slick-prev {
  right: auto;
  left: 30px;
  transform: translateY(-50%) rotate(180deg);
}

.gallery-slider1 .slick-list {
  padding-right: 8.1%;
}
.gallery-slider1 .slick-slide {
  display: flex;
  padding: 0 5px;
}
.gallery-slider1 .slide .figure1 {
  display: flex;
  width: 100%;
  background-color: #000;
}
.gallery-slider1 .slide .figure1 img {
  width: 100%;
  opacity: 85%;
}

@media (max-width: 767px) {
  .slick-slider .slick-arrow {
    width: 40px;
    height: 40px;
    right: 15px;
  }
  .slick-slider .slick-arrow.slick-prev {
    left: 15px;
  }
  .gallery-slider1 .slick-list {
    padding-right: 18%;
  }
}
/* countdown timer */
#my-countdown {
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: flex;
}
#my-countdown li {
  text-align: center;
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 400;
  padding: 0 62px;
  border-right: 1px solid #666565;
}
#my-countdown li:first-child {
  padding-left: 0;
}
#my-countdown li:last-child, #my-countdown li:nth-last-child(2) {
  border: none;
  padding-right: 0;
}
#my-countdown li:has(#seconds) {
  display: none;
}
#my-countdown li span {
  display: block;
  font-size: clamp(22px, 2.2vw, 42px);
  font-weight: 500;
  line-height: normal;
  color: #1e2141;
}

@media (max-width: 991px) {
  .text-center #my-countdown {
    justify-content: center;
    margin-bottom: 30px;
  }
  #my-countdown li {
    padding: 0 42px;
  }
}
@media (max-width: 767px) {
  #my-countdown li {
    padding: 0 24px;
  }
}
/* cards */
.card1 {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.card1 .figure1 {
  background-color: #000;
  width: 100%;
}
.card1 .figure1 img {
  width: 100%;
  opacity: 0.8;
}
.card1 .content {
  color: #fff;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  text-align: center;
  padding: 12px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.card1 .content .icon {
  display: inline-block;
  margin-bottom: 20px;
}

/* box */
.box1 {
  padding: 65px 102px;
}
.box1 p {
  color: #333333;
  line-height: 29px;
}

@media (max-width: 1199px) {
  .box1 {
    padding: 48px 60px;
  }
}
@media (max-width: 767px) {
  .box1 {
    padding: 40px;
  }
}
/* table */
.table1 {
  width: 100%;
}
.table1 thead {
  background: #80744c;
  border-bottom: 8px solid #ecebeb;
}
.table1 thead th {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border: none;
  padding: 17px 10px;
}
.table1 tbody tr:first-child td {
  padding-top: 30px;
}
.table1 tbody tr:last-child td {
  padding-bottom: 30px;
}
.table1 tbody td {
  background: #fff;
  padding: 10px 6px;
  text-align: center;
  font-size: 14px;
  color: #000;
  font-weight: 400;
}
.table1 tbody td:first-child {
  padding-left: 13%;
  text-align: left;
}

@media (max-width: 767px) {
  .table1 thead th {
    padding: 12px 8px;
    font-size: 16px;
  }
  .table1 tbody tr:first-child td {
    padding-top: 24px;
  }
  .table1 tbody tr:last-child td {
    padding-bottom: 24px;
  }
  .table1 tbody td {
    padding: 8px 4px;
  }
  .table1 tbody td:first-child {
    padding-left: 7%;
  }
}/*# sourceMappingURL=main.css.map */

.contact-us p label {font-size: 16px;}
.contact-us p label.label-control {
  margin-bottom: 0px !important;
}

.page-template-template-services .form-group .select1 {margin-top: -16px;}
.woocommerce a.added_to_cart {
  color: #303260;
  padding-left: 15px;
}