@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans&family=Open+Sans+Condensed:wght@300&family=Oswald&family=Roboto&display=swap");
:root {
  --platinum:#e5e2e0;
  --primaryYellow: #fec401;
  --primaryRed: #d92b0e;
  --sinopia: rgb(211, 41, 5);
  --primaryGrey: #454545;
  --grey: #494848;
  --sealBrown: #5d1a00;
  --textGrey: #212741;
  --black: #1e1e1e;
  
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-heading {
  position: relative;
  width: 100%;
  margin: 2rem auto;
}

.section-heading .big-content-title {
  text-transform: uppercase;
  display: inline;
  font-size: 3rem;
  font-weight: 800;
  height: 100%;
  width: 100%;
  left: 0;
  top: -1.5rem;
  opacity: 0.25;
  position: absolute;
  text-align: center;
  z-index: -1;
  color: var(--primaryYellow);
}

.section-heading .content-title {
  text-transform: uppercase;
  position: relative;
  color: var(--black);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-align: center;
}


/***************************************
* Hero Video Section
****************************************/

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  animation: fadeInUp 2s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  opacity: 1;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.scroll-arrow {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}


/*********************************************
What we offer
********************************************/

.service {
  width: 100%;
  position: relative;
  margin-top: 30px;
  animation: fadeInLeft 2s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  opacity: 1;
}

.single-services {
  padding-bottom: 45px;
  position: relative;
}

.single-services .services-shape {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 5;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.single-services .services-shape::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  top: 8px;
  left: 8px;
  border: 3px solid var(--primaryRed);
  border-radius: 50%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.single-services .services-separator {
  width: 100%;
  height: 1px;
  background-color: #ededed;
  position: relative;
  position: absolute;
  bottom: 15px;
  left: 0;
}

.single-services .services-separator::before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  background-color: var(--primaryRed);
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.single-services .services-items {
  position: relative;
}
.single-services .services-items .services-icon i {
  font-size: 42px;
  color: #fff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
}
.single-services .services-items .services-content {
  padding-left: 30px;
  max-width: 280px;
}

.single-services .services-items .services-content .title {
  font-size: 18px;
  font-weight: 700;
  color: #222;
}
.single-services .services-items .services-content .text {
  padding-top: 10px;
  font-size: 16px;
}

.single-services .services-items.services-color-1 .services-icon i {
  background: -webkit-linear-gradient(#d92b0e 0%, #fec401 100%);
  background: -o-linear-gradient(#d92b0e 0%, #fec401 100%);
  background: linear-gradient(#d92b0e 0%, #fec401 100%);
}
.single-services .services-items.services-color-2 .services-icon i {
  background: -webkit-linear-gradient(95deg, #d92b0e 0%, #fec401 100%);
  background: -o-linear-gradient(95deg, #d92b0e 0%, #fec401 100%);
  background: linear-gradient(185deg, #d92b0e 0%, #fec401 100%);
}
.single-services .services-items.services-color-3 .services-icon i {
  background: -webkit-linear-gradient(left, #d92b0e 0%, #fec401 100%);
  background: -o-linear-gradient(left, #d92b0e 0%, #fec401 100%);
  background: linear-gradient(to right, #d92b0e 0%, #fec401 100%);
}

.single-services.services-active {
  padding-bottom: 0;
  padding-top: 40px;
  margin-top: 118px;
}

.single-services.services-active .services-shape {
  bottom: auto;
  top: 0;
}
.single-services.services-active .services-separator {
  bottom: auto;
  top: 15px;
}
.single-services:hover .services-shape {
  background-color: var(--primaryYellow);
}
.single-services:hover .services-shape::before {
  border-color: #fff;
}
.single-services:hover .services-separator::before {
  width: 100%;
}

/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/

.services {
  width: 100%;
  -webkit-box-shadow: 0px -15px 10px -15px rgba(254, 196, 1, 1);
  box-shadow: 0px -15px 10px -15px rgba(254, 196, 1, 1);
  background-image: url(/images/2.png);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.services .service-item:hover .icon img {
  margin-top: -10px;
}

.services .service-item {
  position: relative;
  margin-top: 95px;
}

.services .service-item .icon {
  width: 190px;
  height: 190px;
  display: inline-block;
  text-align: center;
  line-height: 190px;
  background-color: var(--primaryRed);
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: -95px;
  transition: all 0.4s;
}

.services .service-item .icon img {
  max-width: 86px;
  transition: all 0.2s;
}

.services .service-item .main-content {
  border-left: solid 6px var(--primaryRed);
  border-right: solid 6px var(--primaryRed);
  border-radius: 25px;
  padding: 80px 30px 50px 30px;
  background-color: #fbfbfb;
  margin-bottom: 30px;
  margin-right: 80px;
  transition: all 0.4s;
}

.services .service-item h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 30px;
  transition: all 0.4s;
}

.services .service-item p {
  color: #4a4a4a;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.main-button a {
  display: inline-block;
  background-color: #fff;
  color: var(--primaryRed);
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding: 0px 25px;
  border-radius: 20px;
  transition: all 0.5s;
  border-left: solid 6px #fff;
  border-right: solid 6px #fff;
  -webkit-box-shadow: 0px 0px 15px rgba(254, 196, 1, 0.5);
  box-shadow: 0px 0px 15px rgba(254, 196, 1, 0.5);
}

.main-button a:hover {
  background-color: #fff;
  color: var(--primaryRed);
  border-left: solid 6px var(--primaryRed);
  border-right: solid 6px var(--primaryRed);
}

/*
---------------------------------------------
blogs
---------------------------------------------
*/

.blogs {
  -webkit-box-shadow: 0px -15px 10px -15px rgba(254, 196, 1, 1);
  box-shadow: 0px -15px 10px -15px rgba(254, 196, 1, 1);
  width: 100%;
  background-image: url(/images/background-03.png);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 110px;
}

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

.blogs .col-lg-12 .row {
  justify-content: center;
}
.blog {
  margin-bottom: 30px;
  width: 100%;
}


.blog .thumb {
  position: relative;
  width: 100%;
}

.blog .thumb img {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  height: 360px;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.blog .down-content {
  background-color: #fff;
  padding: 30px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.blog .down-content .date {
  float: left;
  text-align: center;
  display: inline-block;
  margin-right: 20px;
}

.blog .down-content .date h6 {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primaryRed);
}

.blog .down-content .date span {
  display: block;
  color: #1f272b;
  font-size: 22px;
  margin-top: 7px;
}

.blog .down-content h4 {
  font-size: 18px;
  color: #1f272b;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.blog .down-content p {
  margin-left: 50px;
  color: #1f272b;
  font-size: 14px;
}


/* 
---------------------------------------------
Contact Style
--------------------------------------------- 
*/

.contact-us {
  width: 100%;
  position: relative;
  padding: 50px 0px;
  -webkit-box-shadow: 0px -15px 10px -15px rgba(254, 196, 1, 1);
  box-shadow: 0px -15px 10px -15px rgba(254, 196, 1, 1);
}

.contact-us:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 65%;
  height: 100%;
  background-color: #f1f0fe;
  content: "";
  border-top-right-radius: 500px;
  border-bottom-right-radius: 500px;
}

.contact-us .section-heading {
  margin-right: 110px;
  margin-bottom: 0px;
}

.contact-us .section-heading h2 {
  font-size: 36px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 20px 0;
  line-height: 44px;
}

.section-heading h6 {
  color: var(--primaryRed);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-us .contact-us-content {
  border-radius: 25px;
  padding: 80px;
  background-color: #d92b0e;
  position: relative;
  z-index: 1;
}

.contact-us .contact-us-content::before {
  background: url(../images/contact-dec-01.png);
  position: absolute;
  left: 50%;
  transform: translateX(-149px);
  opacity: 0.5;
  top: 0;
  width: 318px;
  height: 119px;
  content: "";
  z-index: 2;
}

.contact-us .contact-us-content::after {
  background: url(../images/contact-dec-02.png);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 183px;
  height: 149px;
  content: "";
  z-index: 2;
}

#contact-form input {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background-color: rgba(249, 235, 255, 0.15);
  border: none;
  outline: none;
  font-weight: 300;
  padding: 0px 20px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}

#contact-form input::placeholder {
  color: #fff;
}

#contact-form textarea {
  width: 100%;
  height: 120px;
  border-radius: 25px;
  background-color: rgba(249, 235, 255, 0.15);
  border: none;
  outline: none;
  font-weight: 300;
  padding: 20px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}

#contact-form textarea::placeholder {
  color: #fff;
}

#contact-form button {
  border: none;
  height: 50px;
  font-size: 14px;
  font-weight: 600;
  background-color: #fff;
  padding: 0px 25px;
  border-radius: 25px;
  color: #d92b0e;
  transition: all 0.4s;
  position: relative;
  z-index: 3;
}

#contact-form button:hover {
  opacity: 0.8;
}

.contact-us-content .more-info {
  text-align: center;
  background: rgb(254, 196, 1);
  background: linear-gradient(
    90deg,
    rgba(254, 196, 1, 1) 0%,
    rgba(46, 112, 178, 1) 100%
  );
  border-radius: 0px 0px 23px 23px;
  padding: 45px 30px 15px 30px;
}

.contact-us-content .more-info .info-item {
  text-align: center;
  margin-bottom: 30px;
}

.contact-us-content .more-info i {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
}

.contact-us-content .more-info h4 a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}


/*******************************************
* 
*         MOBILE RESPONSIVENESS
*
*******************************************/

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero {
    width: 100vw;
    height: 100%;
  }

  video { object-fit: contain; }

  .single-services.services-active { margin-top: 142px; }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero {
    margin-top: 78px;
    width: 100vw;
    height: 100%;
  }

  video { object-fit: contain; }

  .service { margin-top: 0; }

  .single-services {
    margin-top: 30px;
    padding-bottom: 0;
  }

  .single-services .services-shape { display: none; }

  .single-services .services-separator { display: none; }

  .single-services.services-active {
    margin-top: 30px;
    padding-top: 0;
  }

  .services {
    margin-top: 80px;
  }
  .services .service-item .icon {
    width: 170px;
    height: 170px;
    line-height: 170px;
  }
}



@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-services .services-items .services-content {
    padding-left: 30px;
    padding-top: 0;
  }

  .services {
    margin-top: 80px;
  }
  .services .service-item .icon {
    width: 170px;
    height: 170px;
    line-height: 170px;
  }
}



@media (max-width: 767px) {
  .hero {
    margin-top: 86px;
    width: 100vw;
    height: 100%;
  }

  video { object-fit: contain;}

  .service {
    margin-top: 0; 
  }

  .single-services {
    margin-top: 30px;
    padding-bottom: 0;
  }

  .single-services .services-shape { display: none; }

  .single-services .services-separator { display: none; }

  .single-services .services-items {
    flex-flow: column nowrap;
  }

  .single-services .services-items .services-content {
    padding-left: 0;
    padding-top: 25px;
  }

  .single-services.services-active {
    margin-top: 30px;
    padding-top: 0;
  }

  .services {
    margin-top: 80px;
    background-repeat: repeat;
    background-size: contain;
    background-attachment: local;
  }
  .services .service-item .icon {
    width: 170px;
    height: 170px;
    line-height: 170px;
  }
  .blogs{
    background-repeat: repeat;
    background-size: contain;
    background-attachment: local;
  }
}