@import url(../fonts/stylesheet.css);
.container {
  width: 100%;
  max-width: 1502px;
  margin: auto;
  padding: 0;
}

:root {
  --light: "PoppinsLight";
  --regular: "PoppinsRegular";
  --medium: "PoppinsMedium";
  --semi: "PoppinsSemiBold";
  --bold: "PoppinsBold";
  --osbold: "OswaldBold";
  --mar: "Margaret";
  --red: #f60033;
  --black: #000000;
  --white: #ffffff;
  --gray: #696969;
}

/*Header*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
header nav {
  padding: 12px !important;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 5px 10px rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
header nav .navbar-nav {
  margin: 0 !important;
}
header nav .navbar-nav li.nav-item {
  margin-right: 45px;
}
header nav .navbar-nav li.nav-item .nav-link {
  font: 18px/24px var(--semi);
  color: var(--white);
  text-transform: uppercase;
  transition: 0.5s all ease-in-out;
  padding: 0;
  position: relative;
}
header nav .navbar-nav li.nav-item .nav-link:hover {
  color: var(--red);
}
header nav .navbar-nav li.nav-item .nav-link::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--red);
  transition: 0.5s all ease-in-out;
  position: absolute;
  left: 0;
  bottom: -5px;
}
header nav .navbar-nav li.nav-item .nav-link:hover::before {
  width: 100%;
}
header nav .btn {
  font: 24px/24px var(--mar);
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--red) !important;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
header nav .btn:hover {
  background: transparent;
  color: var(--red);
}

/*Header*/
/*Main*/
section.hero-section .hero_carosel .item {
  position: relative;
}
section.hero-section .hero_carosel .item .hero-img {
  position: relative;
}
section.hero-section .hero_carosel .item .hero-img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.11);
  position: absolute;
  left: 0;
  top: 0;
}
section.hero-section .hero_carosel .item .hero-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.hero-section .hero_carosel .item .desc {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
section.hero-section .hero_carosel .item .desc h2 {
  font: 55px/82px var(--mar);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 40px;
}
section.hero-section .hero_carosel .item .desc p {
  font: 26px/40px var(--medium);
  color: var(--white);
  margin-bottom: 35px;
}
section.hero-section .hero_carosel .item .desc .btn {
  font: 30px/30px var(--bold);
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--red) !important;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  width: -moz-max-content;
  width: max-content;
  padding: 0 35px;
}
section.hero-section .hero_carosel .item .desc .btn:hover {
  background: transparent;
  color: var(--red);
}

section.welcome {
  padding: 100px 0;
}
section.welcome .hd {
  text-align: center;
  margin-bottom: 70px;
}
section.welcome .hd h2 {
  font: 48px/65px var(--mar);
  color: var(--black);
  text-transform: uppercase;
}
section.welcome .hd h2 span {
  display: block;
  color: var(--red);
}
section.welcome .bdy .box {
  width: 31.625%;
  background: var(--white);
  box-shadow: 0 5px 15px 5px #e1e1e1;
}
section.welcome .bdy .box .img {
  width: 100%;
}
section.welcome .bdy .box .img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.welcome .bdy .box .txt {
  padding: 20px;
  position: relative;
}
section.welcome .bdy .box .txt .icon {
  width: 85px;
  height: 85px;
  background: var(--red);
  position: absolute;
  right: 45px;
  top: -42.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.welcome .bdy .box .txt h4 {
  font: 24px/26px var(--mar);
  color: var(--black);
  margin-bottom: 20px;
}
section.welcome .bdy .box .txt p {
  font: 18px/22px var(--regular);
  color: var(--gray);
  margin: 0;
}

section.cnt {
  width: 100%;
  background: url(../images/cnt-bg.png) no-repeat left center;
  background-size: cover;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
section.cnt .ryt {
  width: 50%;
}
section.cnt .ryt img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.cnt .lft {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
section.cnt .lft .txt {
  width: 50%;
  padding: 70px 0;
}
section.cnt .lft .txt span {
  font: 24px/24px var(--regular);
  color: var(--white);
}
section.cnt .lft .txt h3 {
  font: 33px/40px var(--mar);
  color: var(--white);
  text-transform: uppercase;
  margin: 25px 0;
}
section.cnt .lft .txt p {
  font: 18px/24px var(--light);
  color: var(--white);
  max-width: 600px;
  margin-bottom: 40px;
}
section.cnt .lft .txt ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
section.cnt .lft .txt ul li:not(:last-child) {
  border-right: 1px solid var(--white);
}
section.cnt .lft .txt ul li:first-child {
  padding-right: 25px;
}
section.cnt .lft .txt ul li:last-child {
  padding-left: 25px;
}
section.cnt .lft .txt ul li:nth-child(2) {
  padding: 0 25px;
}
section.cnt .lft .txt ul li p {
  margin: 0;
  font-size: 20px;
}
section.cnt .lft .txt ul li h2 {
  font: 42px/42px var(--osbold);
  color: var(--white);
  margin: 0;
}

section.why-choose {
  padding: 100px 0;
}
section.why-choose .img {
  width: 54.3%;
}
section.why-choose .img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.why-choose .txt {
  width: 46.7%;
  padding-left: 90px;
}
section.why-choose .txt h2 {
  font: 48px/50px var(--mar);
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 55px;
}
section.why-choose .txt ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
section.why-choose .txt ul li {
  font: 24px/28px var(--regular);
  color: var(--gray);
  padding-left: 41px;
  background: url(../images/list-icon.png) no-repeat left top;
  background-size: 22px;
}
section.why-choose .txt ul li:not(:last-child) {
  margin-bottom: 40px;
}

section.gallery .gall {
  display: flex;
  width: 100%;
  gap: 10px;
  justify-content: space-between;
  align-items: initial;
}
section.gallery .gall .blk {
  width: 33%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.gallery .gall .blk img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.gallery .hd {
  text-align: center;
  margin-bottom: 50px;
}
section.gallery .hd h2 {
  font: 48px/48px var(--mar);
  color: var(--black);
  text-transform: uppercase;
}

section.about {
  padding: 100px 0;
}
section.about .hd {
  text-align: center;
  margin-bottom: 80px;
}
section.about .hd h2 {
  font: 48px/58px var(--mar);
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 40px;
}
section.about .hd h2 span {
  color: var(--red);
  display: block;
}
section.about .hd p {
  font: 24px/28px var(--regular);
  color: var(--gray);
  margin: 0;
}
section.about .bdy .abt-slider .item {
  text-align: center;
}
section.about .bdy .abt-slider .item .img {
  margin-bottom: 15px;
}
section.about .bdy .abt-slider .item .img img {
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
section.about .bdy .abt-slider .item .txt h5 {
  font: 18px/23px var(--semi);
  color: var(--black);
  margin-bottom: 15px;
}
section.about .bdy .abt-slider .item .txt img {
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
section.about .bdy .abt-slider .item .txt p {
  font: 18px/24px var(--regular);
  color: var(--gray);
  margin: 25px 0 0;
}
section.about .bdy .abt-slider .owl-dots {
  display: block;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
section.about .bdy .abt-slider .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background: #cdcdcd;
  border-radius: 100%;
}
section.about .bdy .abt-slider .owl-dots .owl-dot.active {
  background: var(--red);
}

section.services {
  padding: 0 0 100px;
}
section.services .hd {
  text-align: center;
  margin-bottom: 50px;
}
section.services .hd h2 {
  font: 48px/48px var(--mar);
  color: var(--black);
  margin: 0;
  text-transform: uppercase;
}
section.services .bdy {
  gap: 15px;
  width: 100%;
  overflow: hidden;
}
section.services .bdy .box {
  position: relative;
  flex: 1;
  height: 602px;
  transition: flex 0.4s ease;
}
section.services .bdy .box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
section.services .bdy .box .txt {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 55px;
  background: linear-gradient(360deg, black, transparent);
  transition: 0.5s all ease-in-out;
  opacity: 0;
  visibility: hidden;
}
section.services .bdy .box .txt p {
  text-align: center;
  margin: 0;
  font: 32px/32px var(--mar);
  text-transform: uppercase;
  color: var(--white);
}
section.services .bdy .box:hover {
  flex: 2;
}
section.services .bdy .box:hover .txt {
  opacity: 1;
  visibility: visible;
}

/*Main*/
/*Footer*/
footer {
  background: url(../images/ft-banner.png) no-repeat center;
  background-size: cover;
}
footer .ft-bt {
  padding: 15px 0;
  border-top: 1px solid var(--white);
  text-align: center;
}
footer .ft-bt p {
  margin: 0;
  font: 16px/24px var(--regular);
  color: var(--white);
}
footer .ft-bt p a {
  text-decoration: underline;
  color: var(--white);
}
footer .ft-top {
  padding: 40px 0;
}
footer .ft-top h4 {
  font: 21px/24px var(--mar);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-top: 25px;
}
footer .ft-top ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .ft-top ul li {
  font: 17px/24px var(--regular);
  color: var(--white);
}
footer .ft-top ul li:not(:last-child) {
  margin-bottom: 40px;
}
footer .ft-top ul li a {
  color: var(--white);
  text-decoration: none;
}
footer .ft-top ul li a:hover {
  text-decoration: underline;
}
footer .ft-top p {
  font: 17px/24px var(--regular);
  color: var(--white);
  margin: 15px 0;
}
footer .ft-top .social-media ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
footer .ft-top .social-media ul li {
  margin: 0;
}
footer .ft-top .social-media ul li a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  color: var(--red);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--white);
  transition: 0.5s all ease-in-out;
}
footer .ft-top .social-media ul li a:hover {
  background: transparent;
  color: var(--white);
  border-radius: 100%;
}

/*Footer*/
/*Responsive*/
@media (max-width: 1502px) {
  .container {
    padding: 0 15px;
  }
  section.hero-section .hero_carosel .item .desc {
    padding-top: 100px;
  }
  section.cnt {
    min-height: 498px;
  }
  section.cnt .ryt img {
    height: 100%;
  }
}
@media (max-width: 1366px) {
  header nav .navbar-nav li.nav-item .nav-link {
    font-size: 16px;
  }
  header nav .btn {
    font-size: 20px;
  }
  header nav .navbar-nav li.nav-item {
    margin-right: 30px;
  }
  section.hero-section .hero_carosel .item .desc h2 {
    font-size: 46px;
    line-height: 70px;
    margin-bottom: 25px;
  }
  section.hero-section .hero_carosel .item .desc p {
    font-size: 20px;
    line-height: 30px;
  }
  a.navbar-brand img {
    width: 200px;
  }
  section.hero-section .hero_carosel .item .desc .btn {
    font-size: 24px;
    height: 65px;
  }
  section.hero-section .hero_carosel .item .hero-img img {
    height: 650px;
  }
  section.welcome, section.why-choose, section.about {
    padding: 80px 0;
  }
  section.welcome .hd h2 {
    font-size: 44px;
    line-height: 55px;
    margin: 0;
  }
  section.welcome .hd {
    margin-bottom: 50px;
  }
  section.welcome .bdy .box {
    width: 32%;
  }
  section.welcome .bdy .box .txt .icon {
    width: 65px;
    height: 65px;
    right: 35px;
    top: -32.5px;
    padding: 10px;
  }
  section.welcome .bdy .box .txt .icon img {
    width: 90%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  section.why-choose .txt ul li {
    font-size: 20px;
    line-height: 26px;
  }
  section.why-choose .txt h2, section.services .hd h2, section.gallery .hd h2, section.about .hd h2 {
    font-size: 44px;
  }
  section.services {
    padding-bottom: 80px;
  }
}
@media (max-width: 1200px) {
  header nav {
    padding: 12px 0 !important;
  }
  a.navbar-brand img {
    width: 160px;
  }
  header nav .btn {
    font-size: 18px;
    height: 50px;
    border-width: 1px !important;
  }
  section.hero-section .hero_carosel .item .hero-img img {
    height: 600px;
  }
  section.welcome .bdy .box .txt {
    padding: 40px 20px 20px;
  }
  section.welcome .bdy .box .txt p {
    font-size: 16px;
  }
  section.cnt .lft .txt {
    padding: 50px 0;
  }
  section.why-choose .txt {
    padding-left: 50px;
  }
  footer .ft-top .d-flex .blk:nth-child(2), footer .ft-top .d-flex .blk:nth-child(3) {
    width: 20%;
  }
}
@media (max-width: 1024px) {
  header nav .navbar-nav li.nav-item {
    margin-right: 25px;
  }
  section.why-choose .txt h2, section.services .hd h2, section.gallery .hd h2, section.about .hd h2 {
    font-size: 40px;
  }
  section.why-choose .txt ul li {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .navbar-toggler {
    width: 45px;
    height: 45px;
    padding: 0;
    background: #fff;
    border: 2px solid #f60033;
  }
  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }
  .navbar-collapse {
    position: fixed;
    top: 0;
    padding: 30px;
    width: 300px !important;
    height: 100vh;
    background: #fff;
    display: block !important;
    left: -300px;
    transition: 0.5s all ease-in-out;
    z-index: 10;
  }
  .navbar-collapse.show {
    left: 0;
  }
  header nav .navbar-nav li.nav-item {
    margin: 0 0 25px;
  }
  header nav .navbar-nav li.nav-item .nav-link {
    color: var(--black);
  }
  section.hero-section .hero_carosel .item .desc h2 {
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 20px;
  }
  section.hero-section .hero_carosel .item .desc p {
    font-size: 18px;
  }
  section.hero-section .hero_carosel .item .desc .btn {
    font-size: 20px;
    height: 60px;
  }
  section.welcome, section.why-choose, section.about {
    padding: 70px 0;
  }
  section.cnt .lft .txt h3 {
    font-size: 25px;
    line-height: 32px;
    margin: 20px 0;
  }
  section.cnt .lft .txt ul li h2 {
    font-size: 30px;
  }
  section.cnt .lft .txt ul li p {
    font-size: 16px;
  }
  section.cnt .lft .txt p {
    font-size: 16px;
  }
  footer .ft-top .d-flex {
    flex-wrap: wrap;
  }
  footer .ft-top .d-flex .blk:nth-child(2), footer .ft-top .d-flex .blk:nth-child(3), footer .ft-top .d-flex .blk:first-child {
    width: 100%;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--white);
  }
  footer .ft-top h4 {
    margin-top: 0;
  }
  footer .ft-top ul li:not(:last-child) {
    margin-bottom: 25px;
  }
  footer .ft-top .d-flex .blk:last-child {
    width: 100%;
  }
  footer .ft-top .social-media ul li {
    margin: 0 !important;
  }
}
@media (max-width: 767px) {
  section.welcome, section.why-choose, section.about {
    padding: 50px 0;
  }
  section.welcome .hd h2 {
    font-size: 36px;
    line-height: 45px;
  }
  section.welcome .d-flex {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
    padding-bottom: 20px;
    gap: 20px;
  }
  section.welcome .bdy .box {
    min-width: 350px;
  }
  section.welcome .bdy .box .txt p {
    white-space: normal;
  }
  section.cnt {
    min-height: auto;
    flex-direction: column;
  }
  section.cnt .ryt {
    width: 100%;
  }
  section.cnt .lft {
    position: relative;
    width: 100%;
    left: unset;
    top: unset;
  }
  section.cnt .lft .txt {
    width: 100%;
  }
  section.why-choose .d-flex {
    flex-direction: column;
  }
  section.why-choose .img {
    width: 100%;
    margin-bottom: 50px;
  }
  section.why-choose .txt {
    padding-left: 0;
    width: 100%;
  }
  section.why-choose .txt h2, section.services .hd h2, section.gallery .hd h2, section.about .hd h2 {
    font-size: 36px;
    line-height: 45px;
  }
  section.why-choose .txt h2 {
    margin-bottom: 35px;
  }
  section.services .bdy .box {
    height: 450px;
  }
  section.about .hd p {
    font-size: 20px;
  }
  section.about .hd {
    margin-bottom: 50px;
  }
  section.about .hd h2 {
    margin-bottom: 25px;
  }
}
@media (max-width: 575px) {
  section.hero-section .hero_carosel .item .desc h2 {
    font-size: 30px;
    line-height: 50px;
    margin-bottom: 15px;
  }
  section.hero-section .hero_carosel .item .desc p {
    font-size: 16px;
    margin-bottom: 25px;
  }
  section.hero-section .hero_carosel .item .desc .btn {
    font-size: 18px;
    height: 50px;
  }
  section.hero-section .hero_carosel .item .desc {
    padding-top: 75px;
  }
  section.hero-section .hero_carosel .item .hero-img img {
    height: 475px;
  }
  section.why-choose .txt ul li:not(:last-child) {
    margin-bottom: 25px;
  }
  section.why-choose .txt ul li {
    font-size: 16px;
  }
  section.gallery .gall {
    flex-direction: column;
  }
  section.gallery .gall .blk {
    width: 100%;
  }
  section.gallery .gall .blk {
    width: 100%;
    display: flex;
    flex-direction: row;
  }
  section.gallery .gall .blk ._blk {
    width: 50%;
  }
}
@media (max-width: 480px) {
  section.hero-section .hero_carosel .item .desc h2 {
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 15px;
  }
  section.welcome .hd h2 {
    font-size: 30px;
    line-height: 36px;
  }
  section.welcome .hd {
    margin-bottom: 30px;
  }
  section.welcome .bdy .box {
    min-width: 300px;
  }
  section.cnt .lft .txt ul {
    flex-direction: column;
  }
  section.cnt .lft .txt ul li {
    width: 100%;
  }
  section.cnt .lft .txt ul li:first-child {
    padding: 0 0 25px;
  }
  section.cnt .lft .txt ul li:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #fff;
  }
  section.cnt .lft .txt ul li:nth-child(2) {
    padding: 25px 0;
  }
  section.cnt .lft .txt ul li:last-child {
    padding: 25px 0 0;
  }
  section.why-choose .txt h2 {
    margin-bottom: 25px;
  }
  section.why-choose .txt h2, section.services .hd h2, section.gallery .hd h2, section.about .hd h2 {
    font-size: 30px;
    line-height: 36px;
  }
  section.services .bdy .box {
    height: 350px;
  }
  section.services .bdy .box:hover {
    flex: 20;
  }
  section.services .bdy .box .txt {
    padding: 25px 15px;
  }
  section.services .bdy .box .txt p {
    font-size: 20px;
    line-height: 28px;
  }
}
/*Responsive*//*# sourceMappingURL=style.css.map */