/**
* Template Name: lawFolio
* Author Name: msjalal_themes
*/

/*============================================
1. Color Veriables
2. Preloader
3. Scroll top button
4. General
5. Animation keyframes
6. Header 
7. Banner 
8. About us
9. Our services
10. Our Team
11. Our Gallery
12. Count
13. Our Client Say
14. Our Blog
15. video
16. Contact Info
17. Footer
============================================*/

/*--------------------------------------------------------------
# Color Veriables
--------------------------------------------------------------*/
:root {
  --h03-primary-color: #00204C;
  --h03-secondary-color: #E0A965;
  --h03-text-primary-color: #00204C;
  --h03-text-secondary-color: #777777;
  --h03-tertiary-color: #FFFFFF;
  --h03-text-hover-color: #00204C;
}

:root {
  scroll-behavior: smooth;
}

:root {

  /* ----------------------------------
   @font weight declaration
  ------------------------------------ */
  --lh-fw-normal: normal;
  --lh-fw-elight: 200;
  --lh-fw-light: 300;
  --lh-fw-regular: 400;
  --lh-fw-medium: 500;
  --lh-fw-sbold: 600;
  --lh-fw-bold: 700;
  --lh-fw-ebold: 800;
  --lh-fw-black: 900;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--h03-primary-color);
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--h03-secondary-color);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--h03-secondary-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.scroll-top i {
  font-size: 24px;
  color: var(--h03-primary-color);
  line-height: 0;
  margin-top: -5px;
}

.scroll-top:hover {
  background: var(--h03-secondary-color);
  color: var(--h03-primary-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 18px;
  font-family: "poppins", sans-serif;
  background-color: var(--h03-tertiary-color);
  line-height: 26px;
  overflow-x: hidden !important;
}

::-webkit-scrollbar {
  height: 4px;
  width: 4px;
  background: var(--h03-primary-color);
}

::-webkit-scrollbar-thumb {
  background: var(--h03-secondary-color);
  -webkit-border-radius: 1ex;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

a {
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
  font-family: "poppins", sans-serif;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "poppins", sans-serif;
  line-height: 1.6;
  margin-bottom: 0px;

}

h1,
.h1 {
  font-family: "poppins", sans-serif;
  font-size: 80px;
  font-weight: 800;
  line-height: 120px;

}

h2,
.h2 {
  font-family: "poppins", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 70.56px;

}

h3,
.h3 {
  font-family: "poppins", sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 60px;

}

h4,
.h4 {
  font-family: "poppins", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 40.32px;

}

h5,
.h5 {
  font-family: "poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;

}

h6,
.h6 {
  font-family: "poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;

}

p {
  font-family: "poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: var(--h03-text-secondary-color);
}

.services-title {
  margin-bottom: 50px;
}

.services-title h6 {
  color: var(--h03-secondary-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.services-title h3 {
  color: var(--h03-primary-color);
}

/*==============================
  # Header 
==============================*/
.header {
  position: absolute;
  padding: 15px 0px;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--h03-primary-color);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 1030;
}

.header .navbar-expand-lg>.container>.row {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.header.sticked {
  padding: 15px 0px;
  position: fixed;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .05), inset 0 -1px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .05), inset 0 -1px 0 rgba(0, 0, 0, .1);
  background-color: var(--h03-primary-color);
  -webkit-animation: fadeInDown 1s ease-in-out;
  -moz-animation: fadeInDown 1s ease-in-out;
  top: 0;
  left: 0;
}

.header .navbar-expand-lg {
  padding: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0 5px;
}

.navbar-toggler:not(:disabled):not(.disabled) {
  text-align: end;
}

.header .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  font-family: "poppins", sans-serif !important;
  font-weight: 400 !important;
  color: var(--h03-tertiary-color) !important;
}

.header .navbar-nav .nav-item .nav-link:hover,
.header .navbar-nav .nav-item .nav-link::before.active {
  color: var(--h03-secondary-color) !important;
}

.header .navbar-nav .nav-item .nav-link:hover,
.header .navbar-nav .nav-item .nav-link.active {
  color: var(--h03-secondary-color) !important;
}

.header .navbar-nav .nav-item .nav-link.active .menu-dot {
  color: var(--h03-secondary-color);
  padding: 0px 5px;
}

.menu-dot {
  color: transparent;
  padding: 0px 5px;
}

.lets-talk-btn {
  width: 100%;
  height: 48px;
  border: none;
  background-color: var(--h03-secondary-color);
  color: var(--h03-tertiary-color);
  padding: 0px;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  font-family: "poppins", sans-serif;
  border-radius: 10px;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.lets-talk-btn:hover {
  background-color: var(--h03-tertiary-color);
  color: var(--h03-primary-color);
}

.lets-talk-btn img {
  padding-right: 10px;
}

/*==============================
   End of Header 
==============================*/

/*==========================
  # start of Banner section
============================*/
section#banner {
  padding-top: 140px;
  background-color: var(--h03-primary-color);
  background-image: linear-gradient(rgb(0 32 76 / 82%), rgb(0 32 76 / 75%)), url(../img/banner/background_1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.banner h6 {
  letter-spacing: 13px;
  color: var(--h03-tertiary-color);
}

.banner h6 span {
  color: var(--h03-secondary-color);
}

.banner h1 {
  color: var(--h03-tertiary-color);
  line-height: 90px;
}

.banner .line {
  background-color: var(--h03-secondary-color) !important;
  width: 200px;
  height: 5px;
}

.banner p {
  color: var(--h03-tertiary-color);
  padding-top: 30px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0px;
}

.banner-btn {
  padding-top: 100px;
}

.getstart-btn {
  display: inline-block;
  padding: 16px 32px;
  border: 1px solid var(--h03-tertiary-color);
  color: var(--h03-tertiary-color);
  background-color: #ffffff17;
  font-size: 18px;
  border-radius: 10px;
  font-family: "poppins", sans-serif;
  font-weight: var(--lh-fw-medium);
}

.getstart-btn:hover {
  color: var(--h03-tertiary-color) !important;
}

.getstart-btn img {
  margin-left: 8px;
  display: inline-block;
  transition: 0.5s;
}

.getstart-btn:hover img {
  transform: rotate(45deg);
  transition: 0.5s;
}

.subscribe-btn {
  display: inline-block;
  padding: 16px 54px;
  border: 1px solid transparent;
  background-color: var(--h03-secondary-color);
  color: var(--h03-tertiary-color);
  font-size: 18px;
  font-family: "poppins", sans-serif;
  font-weight: var(--lh-fw-medium);
  border-radius: 10px;
  margin: 0px 10px;
  box-shadow: 0 4px 8px 0 rgb(254 184 78 / 25%), 0 6px 20px 0 rgb(254 184 78 / 25%)
}

.subscribe-btn:hover {
  color: var(--h03-primary-colorr);
  background-color: var(--h03-tertiary-color);
  box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.25), 0 6px 20px 0 rgba(255, 255, 255, 0.25)
}

/*==========================
  End of Banner section
============================*/

/*==========================
  # start of About us section
============================*/
.about-us {
  margin: 120px 0px;
  position: relative;

}

.ellips {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.about-us .services-title {
  margin-bottom: 0px;
}
.about-img{
  border-radius: 10px;
  position: relative;
}
.about-img::before{
  position: absolute;
  content: "";
  width: 96%;
  height: 100%;
  background: #00193B;
  opacity: .3;
  border-radius: 10px;
  
}
.aboutimgbox img {
  padding: 10px;
  width: 50%;
}

.aboutimgbox {
  display: flex;
  flex-wrap: wrap;
}

.read-more {
  padding: 16px 40px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--h03-secondary-color);
  color: var(--h03-tertiary-color);
  box-shadow: 0 4px 8px 0 rgb(254 184 78 / 31%), 0 6px 20px 0 rgb(255 255 255 / 19%);
  font-size: 18px;
  font-weight: 500;
  margin-top: 32px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.read-more:hover {
  color: var(--h03-primary-color);
  background-color: transparent !important;
  box-shadow: none;
  border: 1px solid var(--h03-primary-color);
}

.read-more svg {
  margin-left: 12px;
  transition: 0.5s;
}

.read-more:hover svg {
  transition: 0.5s;
  transform: rotate(45deg);
}

.read-more:hover svg path {
  fill: var(--h03-primary-color) !important;
}

.read-more:hover svg {
  transform: rotate(45deg);
  transition: 0.5s;
}


/*==========================
   End of About us section
============================*/

/*===============================
  # Start of Our services section
==================================*/
.our-services {
  background-color: #0f273a15;
  padding: 100px 0px;
  position: relative;
}

.our-services .icon-box {
  background-color: var(--h03-tertiary-color);
  text-align: center;
  padding: 33px;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.our-services .icon-imgbox {
  width: 145px;
  height: 145px;
  background: color-mix(in srgb, #feb84e, #feb84e17 95%);
  border-radius: 100px;
  border-radius: 100px;
  margin-bottom: 25px;
  align-items: center;
  justify-content: center;
  display: flex;

  transition: 0.3s;
}

.services-slider button.slick-prev.slick-arrow {
  left: 0;
  position: absolute;
  top: 33%;
  left: -13%;
  z-index: 1;
  content: url(../img/services/services-prev-arrow.png);
  background: url(../img/services/services-prev-arrow.png);
  background-position: center !important;
  background-size: cover !important;
  text-indent: -9999px;
  overflow: hidden;
  width: 110px;
  height: 115px;
  border: none;
  outline: transparent;
}

.services-slider button.slick-prev.slick-arrow:hover,
.services-slider button.slick-prev.slick-arrow:focus,
.services-slider button.slick-prev.slick-arrow:active {
  border: none !important;
  content: url(../img/services/services-prev-arrow-hover.png);
  background: url(../img/services/services-prev-arrow-hover.png);
  outline: none;
}

.services-slider button.slick-next.slick-arrow {
  position: absolute;
  top: 33%;
  right: -13%;
  z-index: 1;
  content: url(../img/services/services-next-arrow.png);
  background: url(../img/services/services-next-arrow.png);
  background-position: center !important;
  background-size: cover !important;
  text-indent: -9999px;
  overflow: hidden;
  width: 110px;
  height: 115px;
  border: none;
  outline: transparent;
}

.services-slider button.slick-next.slick-arrow:hover,
.services-slider button.slick-next.slick-arrow:focus,
.services-slider button.slick-next.slick-arrow:active {
  border: none !important;
  content: url(../img/services/services-next-arrow-hover.png);
  background: url(../img/services/services-next-arrow-hover.png);
  outline: none;
}

/*==============================
  # End of Our services section
===============================*/

/*==============================
  # start of Our Team section
==============================*/
.our-team {
  margin-top: 120px;
}

.our-team .member {
  position: relative;
  display: inline-block;
}
.our-team .member::before{
  position: absolute;
  content: "";
  width: 100%;
  height:100%;
  background-color: #00204C;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.3;
}
.our-team .member .pic {
  overflow: hidden;
  background-image: linear-gradient(#10273900, #10273926);
  border-radius: 10px;
}

.our-team .member .pic img {
  transition: all 0.5s;
  position: relative;
}

/* .our-team .member .pic:hover img {
  transform: scale(1.1);
} */
.our-team .member:hover .pic img {
  transform: scale(1.1);
  
}


.our-team .member .member-info {
  background-color: transparent;
  color: var(--h03-tertiary-color);
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
  padding: 25px 50px;
  overflow: hidden;
  transition: 0.5s;
  z-index: 3;
}

.our-team .member h5 {
  font-weight: 600;
  font-size: 26px;
  position: relative;
  color: var(--h03-tertiary-color);
  padding-bottom: 7px;
}

.our-team .member span {
  display: block;
  font-size: 16px;
  font-weight: 400;
}

.our-team .member .link {
  position: absolute;
  right: 30px;
  bottom: 30px;
  background-color: #feb84e66;
  padding: 13px;
  border-radius: 100%;
}

/*==============================
   End of Our Team section
==============================*/

/*==============================
  # start of Our Gallery section
==============================*/
.our-gallery {
  margin-top: 120px;
}

.gallery-content {
  width: 20%;
}

.gallery-content a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin: 13px;
}

.image {
  display: inline-block;
  height: auto;
  border-radius: 10px;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #102739c7;
}

.gallery-content a:hover .overlay {
  opacity: 1;
}

.text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

/*==============================
   End of Our Gallery section
==============================*/

/*==============================
  # start Count section
==============================*/
.count {
  margin-top: 120px;
  background-color: #7777770f;
  padding: 20px 0px;
}

.count .count-bg {
  padding: 0px;
}

.count .count-bg .count-border {
  border-right: 1px solid var(--h03-text-secondary-color);
}

.count .count-bg .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--h03-primary-color);
  font-weight: var(--lh-fw-bold);
  line-height: normal;
}

.count .count-bg .stats-item span::after {
  content: " +";
  display: inline-block;
  color: var(--h03-primary-color);
  font-size: 50px;
  padding-left: 8px;
}

.count .count-bg .stats-item p {
  font-size: 20px;
  font-weight: 500;
  color: var(--h03-text-secondary-color);
  font-weight: var(--lh-fw-medium);
  margin-bottom: 0px;
}

.count .count-bg .stats-item1 span {
  font-size: 48px;
  display: block;
  color: var(--h03-primary-color);
  font-weight: var(--lh-fw-bold);
  line-height: normal;
}

.count .count-bg .stats-item1 span::after {
  content: " k";
  display: inline-block;
  color: var(--h03-primary-color);
  font-size: 50px;
  padding-left: 8px;
}

.count .count-bg .stats-item1 p {
  color: var(--h03-text-secondary-color);
  font-size: 20px;
  font-weight: 500;
  font-weight: var(--lh-fw-medium);
  margin-bottom: 0px;
}

/*==============================
   End of Count section
==============================*/

/*=====================================
  # start of Our Client Say  section
======================================*/
.testimonial {
  margin-top: 120px;
}

.testimonial .testimonial-item {
  box-sizing: content-box;
  margin: 20px;
  position: relative;
  height: 100%;
}

.testimonial .testimonial-item .testimonial-img {
  margin: 0 auto;
}

.testimonial .testimonial-item h5 {
  margin-bottom: 0px;
}

.testimonial .testimonial-item h6 {
  font-size: 16px;
  font-weight: 400;
}

.testimonial .testimonial-item .stars {
  margin: 10px 0;
}

.testimonial .testimonial-item .stars i {
  color: var(--h03-secondary-color);
  margin: 0 2px;
}

.testimonial-slider button.slick-prev.slick-arrow {
  position: absolute;
  top: 34%;
  left: -13%;
  z-index: 1;
  content: url(../img/services/services-prev-arrow.png);
  background: url(../img/services/services-prev-arrow.png);
  background-position: center !important;
  background-size: cover !important;
  text-indent: -9999px;
  overflow: hidden;
  width: 110px;
  height: 115px;
  border: none;
  outline: transparent;

}

.testimonial-slider button.slick-prev.slick-arrow:hover,
.testimonial-slider button.slick-prev.slick-arrow:focus,
.testimonial-slider button.slick-prev.slick-arrow:active {
  border: none !important;
  content: url(../img/services/services-prev-arrow-hover.png);
  background: url(../img/services/services-prev-arrow-hover.png);
  outline: none;
}

.testimonial-slider button.slick-next.slick-arrow {
  position: absolute;
  top: 34%;
  right: -13%;
  z-index: 1;
  content: url(../img/services/services-next-arrow.png);
  background: url(../img/services/services-next-arrow.png);
  background-position: center !important;
  background-size: cover !important;
  text-indent: -9999px;
  overflow: hidden;
  width: 110px;
  height: 115px;
  border: none;
  outline: transparent;

}

.testimonial-slider button.slick-next.slick-arrow:hover,
.testimonial-slider button.slick-next.slick-arrow:focus,
.testimonial-slider button.slick-next.slick-arrow:active {
  border: none !important;
  content: url(../img/services/services-next-arrow-hover.png);
  background: url(../img/services/services-next-arrow-hover.png);
  outline: none;
}

.testimonial-slider ul.slick-dots {
  display: none !important;
}

/*====================================
  End of Our Client Say  section
======================================*/

/*==================================
  # start of Our Blog section
===================================*/
.our-blog {
  margin: 120px 0px;
}

.our-blog .post-entry {
  background-color: #1d1d1d0a;
  margin-bottom: 20px;
}

.our-blog .post-entry .thumbnail {
  flex: 0 0 45%;
}

.our-blog .post-meta {
  font-size: 16px;
  font-weight: 400;
  color: var(--h03-text-secondary-color);
  margin-bottom: 10px;
}

.our-blog h4 {
  line-height: 32px;
  color: var(--h03-primary-color);
  padding-right: 50px;
}

.our-blog p {
  padding-top: 10px;
  color: var(--h03-text-secondary-color);
}

.our-blog h4 a {
  font-size: 28px;
  line-height: 42px;
  font-weight: 600;
  color: var(--h02-primary-color);

}

.post-listbox {
  padding: 10px 0px;
}

.post-listbox h4 a {
  font-size: 24px;
  line-height: normal;
  font-weight: 600;
  color: var(--h02-primary-color);
}

.post-list img {
  transition: all 0.5s;
  border-radius: 10px;
}

.post-list:hover img {
  opacity: 0.8;
}

/*==================================
  End of Our Blog section
===================================*/

/*==========================
  # start of video section
============================*/
.video-box {
  margin: 120px 0px;
  position: relative;
}

.video-img::before {
  content: "";
  background: color-mix(in srgb, var(--h03-primary-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-img img {
  width: 100%;
}

.wrapper {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.video-main {
  position: relative;
  display: inline-block;
}

.video {
  height: 98px;
  width: 98px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 100%;
  color: var(--h03-secondary-color);
  background: color-mix(in srgb, #fbfbfb24, #0000003d 10%);
  z-index: 999 !important;
  font-size: 30px;
}

.video:hover {
  color: var(--h03-primary-color);
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;

  }

  50% {
    opacity: 0.9;

  }

  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;

  }
}

.fa-play:before {
  content: "\f04b";
}

.waves {
  position: absolute;
  width: 180px;
  height: 180px;
  background: color-mix(in srgb, #ffffff4d, #ffffff24 30%);
  opacity: 0;
  border-radius: 100%;
  right: -40px;
  bottom: -40px;
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/*==========================
   End of video section
============================*/

/*==================================
  # start of Contact Info section
===================================*/
.contact-info {
  padding: 100px 0px;
  background-color: #EBEDEF;
}

.contact-info h4 {
  color: var(--h03-secondary-color);
  font-size: 30px;
  font-weight: 600px;
  line-height: 45px;
  padding-bottom: 20px;
}

.contact-info p {
  color: #0F273A;
}

.contact-info .info-item p a {
  color: #0F273A;
}

.contact-info .info-item {
  width: 100%;
  margin-bottom: 10px;
  color: #0F273A;
  padding-top: 50px;
}

.contact-info .info-item .info-title h6 {
  font-size: 22px;
  font-weight: 500;
  line-height: 33px;
  color: #0F273A;
}

.contact-info .info-item .info-title p {
  font-size: 17px;
  font-weight: 400;
  line-height: 33px;
  margin-bottom: 0px;
}

.contact-info .info-item i {
  font-size: 32px;
  color: #0F273A;
  background-color: var(--h03-secondary-color);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
  border-radius: 10px;
}

.contact-info .info-item:hover i {
  background: var(--h03-tertiary-color);
  color: var(--h03-secondary-color);
}

/*start contact-info form*/
.contactinfo-form {
  display: block;
  width: 100%;
  padding: 18px 0px 18px 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color:#0F273A;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ddd;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  outline: none;
}

.contactinfo-form::placeholder {
  color:#0F273A;;
}

.php-email-form .loading {
  display: none;
  background: var(--h03-secondary-color);
  color: var(--h03-tertiary-color);
  text-align: center;
  padding: 10px;
  margin: 5px 0px;
}

.php-email-form .error-message {
  display: none;
  background: #ce0808;
  color: var(--h03-tertiary-color);
  text-align: left;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
}

.php-email-form .sent-message {
  display: none;
  background: var(--h03-secondary-color);
  color: var(--h03-tertiary-color);
  text-align: center;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  margin: 5px 0px;
}

.contact-form input[type='submit'] {
  /* width: 100%; */
  color: var(--h03-tertiary-color);
  background: var(--h03-secondary-color);
  border: 0;
  /* padding: 18px; */
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  transition: 0.4s;
  margin-top: 1px 0px;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgb(254 184 78 / 25%), 0 6px 20px 0 rgb(254 184 78 / 25%)
}
.contact-form input[type='submit']:hover {
  color:#000;
  background: #fff;
}

*,
::after,
::before {
  box-sizing: border-box;
}

.contact-info .php-email-form button[type=submit] {
  width: 100%;
  color: var(--h03-tertiary-color);
  background: var(--h03-secondary-color);
  border: 0;
  padding: 18px;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  transition: 0.4s;
  margin-top: 1px 0px;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgb(254 184 78 / 25%), 0 6px 20px 0 rgb(254 184 78 / 25%)
}

.contact-info .php-email-form button[type=submit]:hover {
  color: var(--h03-primary-color);
  background: var(--h03-tertiary-color);
  box-shadow: none;
}

.contact-info .php-email-form button[type=submit] svg {
  margin-left: 5px;
  transition: 0.5s;
}

.contact-info .php-email-form button[type=submit]:hover svg {
  transform: rotate(45deg);
  transition: 0.5s;
}

.contact-info .php-email-form button[type=submit]:hover svg path {

  fill: var(--h03-primary-color) !important;
}

/*================================
   End of Contact Info section
=================================*/

/*================================
  # start of Footer section
=================================*/
.footer {
  background-color: var(--h03-primary-color);
  padding: 37px 20px 10px 20px;
}

.footer .footer-about .logo h4 {
  font-size: 31px;
  font-weight: 800;
  font-style: italic;
  line-height: 47px;
  margin-bottom: 22px;
  color: var(--h03-secondary-color);
}

.footer .footer-about p {
  color: var(--h03-tertiary-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.footer .footer-about h4 span {
  color: var(--h03-tertiary-color);
  font-size: 31px;
  font-weight: 800;
  line-height: 42px;
  font-style: italic;
}

.footer-links h6 {
  font-size: 22px;
  font-weight: 500;
  line-height: 47px;
  margin-bottom: 22px;
  color: var(--h03-secondary-color);
}

.footer-links span {
  color: var(--h01-secondary-color);
  font-size: 22px;
  font-weight: 500;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
}

.footer .footer-links ul li {
  padding: 0px;
  display: inline-block;
  align-items: center;
  margin-bottom: 10px;
}

.footer .footer-links ul a {
  color: var(--h03-tertiary-color);
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  padding-right: 40px;
}

.footer .footer-links ul a:hover {
  color: var(--h03-secondary-color);
}

.footer .footer-contact p {
  color: var(--h03-tertiary-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0px;
}

.footer .footer-contact p a {
  color: var(--h03-tertiary-color);
}

.footer .footer-contact p a:hover {
  color: var(--h03-secondary-color);
}

.footer .footer-contact span {
  color: var(--h01-tertiary-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.footer .footer-newsletter h6 {
  font-size: 22px;
  font-weight: 500;
  line-height: 47px;
  margin-bottom: 22px;
  color: var(--h03-secondary-color);
}

.footer-newsletter .php-email-form .loading {
  display: none;
  background: var(--h01-secondary-color);
  color: var(--h01-primary-color);
  text-align: center;
  padding: 10px;
}

.footer-newsletter .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: var(--h01-primary-color);
  text-align: left;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
}

.footer-newsletter .php-email-form .sent-message {
  display: none;
  background: var(--h01-secondary-color);
  color: var(--h01-primary-color);
  text-align: center;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
}

.footer-content-list {
  margin-bottom: 22px;
}

.footer .footer-contact .icon {
  color: var(--h03-secondary-color);
  padding-right: 15px;
  font-size: 18px;
  line-height: 1;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.footer .footer-newsletter .newsletter-form {
  position: relative;
  border: none;
  display: flex;
  background-color: transparent;
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: none;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 10px 15px 25px;
  width: 100%;
  background-color: var(--h03-tertiary-color);
  color: var(--h03-text-secondary-color);
  outline: none;
}

.footer .footer-newsletter .newsletter-form .submit {
  position: absolute;
  border: 0;
  right: 1%;
  top: 8%;
  padding: 11px 17px;
  background: var(--h03-secondary-color);
  color: var(--h03-primary-color);
  fill: #fff;
  transition: 0.3s;
}

.footer .footer-newsletter .social-links a {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--h03-tertiary-color);
  color: var(--h03-primary-color);
  line-height: 1;
  margin: 0 10px;
  border-radius: 50%;
  text-align: center;
  width: 37px;
  height: 37px;
  transition: 0.3s;
}

.footer .footer-newsletter .social-links a:hover {
  background: var(--h03-secondary-color);
  color: var(--h03-primary-color);
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--h03-text-secondary-color), transparent 80%);
}

.footer .copyright p {
  color: var(--h03-tertiary-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.footer-logo{
  padding-bottom: 20px ;
}
/*================================
  # End of Footer section
=================================*/