:root{
  --font-primary-m: Hartwell-R;
  --font-primary-b: Hartwell-B;
  --font-secondery: georgia;
  --color-primary: #1563B4;
  --color-secondary: #142131;
  --color-dark: #222222;
  --color-white: #ffffff;
}
/* ---------- Default Css ---------- */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a{
  text-decoration: none;
}
ul{
  list-style: none;
}
section{
  padding: 80px 0;
  position: relative;
}
.container{
  max-width: 1400px;
}
body{
  overflow-x: hidden !important;
}
body {
  scroll-behavior: smooth;
}
h1 span{
  color: var(--color-primary);
}
.heading{
  text-align: center;
}

/* ---------- Fonts Css ---------- */

h1,h2,h3,h4,h5,h6{
  font-family: var(--font-secondery);
  color: var(--color-dark);
}
h1{
  text-transform: uppercase;
  font-size: 60px;
  line-height: 80px;
  color: var(--color-white);
}
h2{
  font-size: 48px;
  font-weight: 400;
}
h3{
  font-size: 48px;
  font-weight: 400;
}
h4{
  font-size: 32px;
  line-height: 45px;
}
h5{
  font-size: 34px;
}
p{
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 300;
  line-height: 36px;
  font-family: var(--font-primary-m);
}

/* ---------- fonts Css ---------- */

@font-face {
  font-family: Hartwell-R;
  src: url("../assets/landing-page/font/Hartwell\ Regular.otf");
}
@font-face {
  font-family: Hartwell-B;
  src: url("../assets/landing-page/font/Hartwell\ Alt\ Bold.otf");
}
@font-face {
  font-family: georgia;
  src: url("../assets/landing-page/font/georgia.ttf");
}


/* ---------- Buttons Css ---------- */

.btn{
  width: fit-content;
  padding: 7px 40px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 0;
  transition: .3s;
  color: var(--color-dark);
  white-space: nowrap;
}
.btn i{
  font-size: 20px;
  transform: rotate(-45deg);
  transition: .3s;
}
.btn:hover i{
  transform: rotate(-180deg);
}
.btn-primary{
  background-color: var(--color-white);
  border: 1px solid var(--color-white);
}
.btn-primary:hover{
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.btn-sacondary{
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}
.btn-sacondary i{
  color: var(--color-white);
}
.btn-sacondary:hover{
  border: 1px solid var(--color-white);
  color: var(--color-white);
}

/* ---------- Header Css ---------- */

header.sticky{
  background-color: #14213161;
  backdrop-filter: blur(11px);
}
header {
  width: 100%;
  padding: 20px 0;
  position: fixed;
  z-index: 1000;
  border-bottom: 1px solid #ffffff44;
  transition: .4s;
}
header a {
  color: var(--color-dark);
  text-decoration: none;
}
header .logo img{
  width: 161px;
}
.contact-info{
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-info a{
  font-size: 14px;
  color: var(--color-white);
  display: flex;
  gap: 15px;
  align-items: center;
  white-space: nowrap;
}
.contact-info i{
  width: 30px;
  max-width: 30px;
  min-width: 30px;
  height: 30px;
  background-color: #ffffff;
  border-radius: 50%;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: .3s;
}
.contact-info a:hover i{
  background-color: var(--color-primary);
  color: var(--color-white);
}


/* ---------- Banner Css ---------- */

.banner{
  background: url("../assets/landing-page/images/banner/banner.jpg");
  background-size: cover;
  display: flex;
  align-items: center;
  background-position: right;
}
.banner .content{
  position: relative;
  z-index: 2;
}
.banner .content p{
  max-width: 600px;
  font-size: 20px;
  color: var(--color-white);
  font-weight: 300;
}
.banner::after{
  content: "";
  width: 50%;
  height: 100%;
  background-color: var(--color-secondary);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  animation: over-bg 1 .6s linear;
}
@keyframes over-bg {
  0%{
    left: -100%;
  }
}

/* Benefits Sec */

.benefits-sec{
  padding: 80px 20px;
}
.benefits-sec .heading{
  margin-bottom: 70px;
}
.benefits-sec .cards{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 30px;
  border-radius: 0 !important;
}
.benefits-sec .cards .card-b{
  padding: 25px;
  background: linear-gradient(-30deg, #fff 0% 50%, #F7F7F7 50% 100%);
  box-shadow: rgba(0, 0, 0, 0.171) 0px 5px 15px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  cursor: pointer;
}
.benefits-sec .cards .card-b:hover{
  background: var(--color-primary);
}
.benefits-sec .cards .card-b:hover h4{
  color: var(--color-white);
}
.benefits-sec .cards .card-b::after{
  content: "";
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-primary);
  position: absolute;
  z-index: -1;
  left: 15px;
  top: 15px;
}
.benefits-sec .cards .card-b img{
  width: 106px;
  height: 106px;
  filter: brightness(0);
}
.benefits-sec .cards .card-b:hover img{
  filter: brightness(100);
}

/* Inner Sec */

.inner-sec{
  overflow: hidden;
}
.inner-sec .content{
  padding: 60px 0 60px 60px;
  position: relative;
}
.inner-sec .content h3,
.inner-sec .content p{
  color: var(--color-white);
}
.inner-sec .content::after{
  content: "";
  width: 100vw;
  height: 100%;
  background-color: var(--color-secondary);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.inner-sec .content p{
  font-size: 19px;
  line-height: 40px;
}

/* Call Sec */

.call-cards{
  display: flex;
  gap: 20px;
}
.call-cards .call-card{
  position: relative;
  height: 616px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%, 0 9%);
}
.call-cards .call-card img{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
  filter: drop-shadow(5px 5px 20px rgba(0, 0, 0, 0));
  transition: .4s;
}
.call-cards .call-card h5{
  color: var(--color-white);
  font-size: 40px;
}
.call-cards .call-card p{
  color: var(--color-white);
  line-height: 30px;
  font-size: 15px;
}
.call-cards .call-card i{
  width: 135px;
  height: 135px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  margin-bottom: 10px;
}
.call-cards .call-card a{
  color: var(--color-white);
  font-size: 28px;
  font-weight: 600;
  margin-top: 10px;
}
.call-sec .content{
  max-width: 600px;
}

/* inner Sec 2 */

.inner-sec-2{
  background-color: #F7F7F7;
}
.inner-sec-2 .image img{
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  background-position: left top;
}
.inner-sec-2 p{
  font-size: 20px;
}
.inner-sec-2 h5{
  font-family: var(--font-primary-m);
  font-size: 27px;
  color: var(--color-primary);
  font-weight: 600;
}
.inner-sec-2 ul{
  padding-left: 0;
}
.inner-sec-2 li{
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.inner-sec-2 li::before{
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../assets/landing-page/images/icons/check.svg");
  display: block;
  background-size: contain;
}
.inner-sec-2 a{
  color: var(--color-dark);
}
.inner-sec-2 .contact-info{
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}
.inner-sec-2 .contact-info i{
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Portfolio-Sec */

.portfolio-sec{
  position: relative;
  overflow: hidden;
}
.portfolio-sec .image{
  min-height: 550px;
  height: 100%;
}
.portfolio-sec .image img{
  width: 48%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}

/* Footer */

footer{
  background-color: var(--color-secondary);
  padding: 50px 0 0;
}
footer .logo img{
  width: 213px;
}
footer p{
  color: var(--color-white);
  margin-top: 15px;

}

footer p a {
  display: inline-block;
  margin: 0 10px;
  color: white;
  text-decoration: none;
}
footer .col-lg-12{
  padding: 30px 20px;
}
footer .row .col-lg-12:nth-child(2){
  border: 1px solid #ffffff57;
  border-right: 0;
  border-left: 0;
}
footer .row .col-lg-12:nth-child(3){
  padding-bottom: 30px;
  padding-top: 30px;
  text-align: center;
}
footer .row .col-lg-12:nth-child(3) p{
  margin-top: 0;
  font-size: 20px;
}

/* Fade Animation  */

.fade-left, .fade-right, .fade-top, .fade-bottom {
  opacity: 0;
  transform: translate(0,0);
  transition: all 0.8s ease-out;
}

.fade-left.show {
  opacity: 1;
  transform: translateX(0);
}
.fade-right.show {
  opacity: 1;
  transform: translateX(0);
}
.fade-top.show {
  opacity: 1;
  transform: translateY(0);
}
.fade-bottom.show {
  opacity: 1;
  transform: translateY(0);
}

/* Initial hidden positions */
.fade-left { transform: translateX(-100px); }
.fade-right { transform: translateX(100px); }
.fade-top { transform: translateY(-100px); }
.fade-bottom { transform: translateY(100px); }

/* ---------- Color Css ---------- */


/* ---------- Responsive Css ---------- */

@media (max-width: 1399px){

}

@media (max-width: 1199px){
  .container{
    max-width: 1024px;
  }
  header .row .col-6:nth-child(2){
    display: none !important;
  }
  header{
    padding: 25px 0;
  }
  h1{
    font-size: 48px;
    line-height: 59px;
  }
  h2{
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .banner::after{
    width: 100%;
    background-color: #142131bd;
  }
  p{
    font-size: 16px;
  }
  section{
    padding: 50px 0;
  }
  .benefits-sec{
    padding: 60px 20px;
  }
  .benefits-sec .heading{
    margin-bottom: 50px;
  }
  .inner-sec .content::after{
    width: 100%;
  }
  .inner-sec .content{
    padding: 40px;
  }
  h3{
    font-size: 40px;
  }
  .inner-sec .content p {
    font-size: 18px;
    line-height: 36px;
  }
  .call-sec .content{
    max-width: 100%;
    margin-bottom: 30px;
  }
  .inner-sec-2 .image{
    margin-top: 50px;
    width: 100%;
  }
  .inner-sec-2 .image img{
    max-width: 100%;
  }
  .inner-sec-2 .col-lg-6{
    justify-content: left !important;
  }
  .portfolio-sec .image{
    min-height: 100%;
    margin-top: 60px;
  }
  .portfolio-sec .image img{
    position: relative;
    width: 100%;
  }
  .portfolio-sec{
    padding-top: 0;
  }
}
@media (max-width: 767px){
  h1 {
    font-size: 40px;
    line-height: 55px;
  }
  .call-cards{
    flex-direction: column;
  }
  .call-cards .call-card{
    height: auto;
    padding: 40px 30px;
  }
  .portfolio-sec h3{
    font-size: 32px;
  }
}
@media (max-width: 575px){
  h1 {
    font-size: 32px;
    line-height: 42px;
  }
  .banner .content p {
    font-size: 16px;
    line-height: 30px;
  }
  h2 {
    font-size: 32px;
  }
  h4 {
    font-size: 27px;
    line-height: 37px;
  }
  .benefits-sec .cards .card-b{
    gap: 20px;
  }
  .benefits-sec .cards .card-b img{
    width: 90px;
    height: 90px;
  }
  section{
    padding: 40px 0;
  }
  .benefits-sec{
    padding: 40px 15px;
  }
  .benefits-sec .heading{
    margin-bottom: 40px;
  }
  .inner-sec .content{
    padding: 30px;
  }
  .inner-sec .content h3{
    font-size: 32px;
  }
  .inner-sec .content p {
    font-size: 14px;
    line-height: 30px;
  }
  footer{
    padding-top: 20px;
  }
  .logo img {
    width: 140px !important;
  }
  .call-cards .call-card i {
    width: 100px;
    height: 100px;
    font-size: 30px;
  }
}
@media (max-width: 400px) {
  .contact-info a {
    font-size: 16px;
  }
}

/* <------- New Css ------> */

.call-sec .call-cards{
  max-width: 550px;
}
.email-or-phone{
  display: flex;
}
.email-or-phone i{
  backdrop-filter: blur(5px);
}
.email-or-phone i:nth-child(1){
  background-color: #ffffff63;
  margin-right: -10px;
}
.email-or-phone i:nth-child(2){
  background-color: #1421317e;
  margin-left: -10px;
}
section{
  padding: 60px 0 !important;
}
.benefits-sec .cards .card-b::after {
    left: 7px;
    top: 7px;
}
.benefits-sec .heading {
    margin-bottom: 45px;
}
.benefits-sec .cards{
  gap: 40px;
}
@media (max-width: 911px){
  .portfolio-sec{
    padding-top: 0 !important;
  }
}
@media (max-width: 575px) {
  .inner-sec .content {
    padding: 60px 30px !important;
  }
  .portfolio-sec{
    padding-top: 0 !important;
  }
}

.portfolio-sec{
  margin-top: 60px;
}
.content-sec{
  padding: 0 !important;
}


@media (max-width: 575px) {
  .fade-left,
  .fade-right,
  .fade-top,
  .fade-bottom {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* <------- New Css Close ------> */