/* section title and underline */
section .title {
  color: #3d3d3d;
  text-align: center;
  margin-bottom: 40px;
}
section .title h2 {
  position: relative;
  display: inline-block;
}

section .title h2::after {
  content: "";
  position: absolute;
  top: calc(100% + 6px);
  background-color: #999;
  left: 50%;
  width: 50px;
  height: 2px;
  transform: translate(-50%);
}

/* genaral styling */

header {
  top: 0;
  left: 0;
  z-index: 9;
  padding: 10px 0;
  position: fixed;
  background: #fff;
  transition: box-shadow 0.3s ease-in-out;
}

header.shadow {
  box-shadow: 0px 0px 10px 0px rgb(23 23 23 / 11%);
}

header nav {
  width: 100%;
  display: none;
  padding: 15px 0 0 0;
}

header .row {
  align-items: center;
  margin: 0px;
}

header .nav-item {
  display: flex;
  margin: 10px 0;
  width: 100%;
}

header .nav-link {
  float: left;
  padding: 7px 20px;
  font-weight: 500;
  text-transform: capitalize;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

header .nav-link.active {
  color: var(--bg-secondary);
}

header .toggler {
  cursor: pointer;
  float: right;
  margin-left: auto;
}

/* ---------------------------------------------- */

main {
  padding-top: 60px;
}

/* ---------------------------------------------- */

.banner {
  padding: 0px;
}

/* ---------------------------------------------- */

.about .content {
  margin-bottom: 40px;
  padding-right: 40px;
}

/* ---------------------------------------------- */

.product {
  z-index: 0;
  position: relative;
  background: url(../images/product-bg.jpg) no-repeat;
  background-size: cover;
}
.product::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(50, 81, 140, 0.8);
  width: 100%;
  height: 100%;
}
.product .title {
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
}

.product .title h2::after {
  background-color: rgb(255, 255, 255);
}

.product .card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 25px;
  min-height: 320px;
}
.product .card .content {
  margin-top: 15px;
}

/* ---------------------------------------------- */

.services {
  background: #f7f7f7;
  padding-bottom:0;
}

.services .block {
  padding: 70px 0;
}

.services .content {
  max-width: 100%;
  margin: 0 auto;
}

.services .image {
  margin-top: 30px;
}

.services .image img {
  border-radius: 40px;
  box-shadow: 0 0 15px 0 #999;
  border-radius: 17px;
  box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.1);
}

.services .content h3 {
  margin-bottom: 20px;
}
.services .content ul {
  padding-left: 5px;
}

.services .content li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 30px;
}

.services .content li::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  background: url(../images/check.png) no-repeat;
  width: 20px;
  height: 20px;
}

.services .block:nth-child(odd) .row {
  flex-direction: row-reverse;
}

.services .block:nth-child(3) {
  background: #fff;
}

/* ---------------------------------------------- */

.features .item {
  display: flex;
  margin-bottom: 30px;
  justify-content: space-between;
}
.features .item .icon {
  width: 70px;
  height: 70px;
  float: left;
  border-radius: 100%;
  border: 2px solid #999;
  align-items: center;
  display: flex;
  flex-direction: row;
}

.features .item .icon img {
  margin: 0 auto;
  padding:16px;
}
.features .item .content{
  width: calc(100% - 100px);
}

/* ---------------------------------------------- */

.call-to-action {
    min-height:320px;
  z-index: 0;
  color: #fff;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to left, #ED3237 , #32518C);
}


.call-to-action .title .h2::after{
  display:none;
}

.call-to-action .title{
    margin:0;
    color: #fff;
}
.call-to-action .text{
  float: left;
  margin-left: 1rem;
}
.call-to-action .text h3{
  font-weight: 600;
  font-size: 2rem !important;
}
.call-to-action .icon{
  float: left;
  width: 80px;
}
.call-to-action .icon img{
  width: 100% !important;
}
/* ---------------------------------------------- */

.packages {
  background-color: #f7f7f7;
}

.packages {
  width: 100%;
  float: left;
  padding: 70px 0;
}

.packages .price-box {
  width: 100%;
  float: left;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  margin-bottom: 5%;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px  1px rgba(0, 0, 0, 0.05);
  transition: 1s;
  padding:  3rem;
}

.packages .price-box:hover {
  transition: 0;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.8);
}

.packages .price-box .price-heading {
  width: 100%;
  padding: 2rem 0;
  border-bottom: 1px solid #CFCDCD;
  text-align: center;
}

.packages .price-box .price-heading h3 {
  font-weight: bold;
  font-size: 1.5em;
  text-transform: capitalize;
  color: #7F7F7F;
}

.packages .price-box .price-heading h4 {
  font-weight: normal;
  font-size: 1em;
  text-transform: capitalize;
}

.packages ul.plans {
  width: 100%;
  margin: 3rem 0 0 0;
  float: left;
}

.packages .price-box ul.plans li {
  color: #434343;
  list-style: none;
  text-align: center;
  font-size: 1em;
  font-weight: 600;
  padding-bottom: 10px;
}
/* ---------------------------------------------- */

.clints .item {
  width: 100%;
  padding: 15px;
  text-align: center;
  display: flex;
  border: 1px solid #999;
}
.clints .item img {
  width: auto;
  margin: auto;
}

/* ---------------------------------------------- */

.footer {
  padding: 70px 0;
  z-index: 0;
  color: #fff;
  position: relative;
  background: url(../images/product-bg.jpg) no-repeat;
  background-size: cover;
}
.footer::after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(50, 81, 140, 0.8);
  width: 100%;
  height: 100%;
}

.footer .map {
  border-radius: 10px;
  overflow: hidden;
}

.footer .contact-info {
  padding-left: 10px;
  margin-top: 40px;
}

.footer .address h2 {
  margin-bottom: 15px;
}

.footer .address li {
  margin-bottom: 7px;
}
.footer .address li a{
  color: #fff;
}

.footer .social-media {
  margin-top: 40px;
}

.footer .social-media h3 {
  margin-bottom: 15px;
}

.footer .social-media li {
  float: left;
  margin-right: 15px;
}

.footer .social-media a {
  width: 40px;
  height: 40px;
  margin: auto;
  text-align: center;
  display: inline-block;
  /* border-radius: 50%; */
  /* border: 1px solid #fff; */
}

.footer .copy-right {
  margin: 50px 0 -50px 0;
}
