/********** Template CSS **********/
:root {
    --primary: #FD5D14;
    --secondary: #FDBE33;
    --light: #F4F6F8;
    --dark: #040F28;
}

.pt-6 {
    padding-top: 90px;
}

.pb-6 {
    padding-bottom: 90px;
}

.py-6 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.btn {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    transition: .5s;
}

.btn::after {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: .5s;
}

.btn.btn-primary::after {
    background: var(--dark);
}

.btn:hover::after,
.btn.active::after {
    width: 50%;
    left: 25%;
}

.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    left: 50%;
    bottom: 0;
    margin-left: -22px;
    border-radius: 0;
    z-index: 99;
}

.bg-dark-radial {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
    background-size: 3px 3px;
}

.bg-light-radial {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
    background-size: 3px 3px;
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    padding: 35px 15px;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--light);
    outline: none;
    transition: .5s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 15, 40, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h4 {
        font-size: 18px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.page-header {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(4, 15, 40, .7), rgba(4, 15, 40, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.service-item .service-icon {
    margin-top: -50px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.service-item .service-icon i {
    transition: .2s;
}

.service-item:hover .service-icon i {
    font-size: 60px;
}

.portfolio-item {
    margin-bottom: 60px;
}

.portfolio-title {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 120px;
    padding: 0 30px;
    right: 30px;
    left: 30px;
    bottom: -60px;
    background: #FFFFFF;
    z-index: 3;
}

.portfolio-btn {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    margin-top: -60px;
    margin-left: -60px;
    font-size: 120px;
    line-height: 0;
    transition: .1s;
    transition-delay: .3s;
    z-index: 2;
    opacity: 0;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
}

.portfolio-box::before,
.portfolio-box::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    transition: .5s;
    z-index: 1;
    background: rgba(4, 15, 40, .7);
}

.portfolio-box::before {
    left: 0;
}

.portfolio-box::after {
    right: 0;
}

.portfolio-item:hover .portfolio-box::before {
    left: 0;
    width: 50%;
}

.portfolio-item:hover .portfolio-box::after {
    right: 0;
    width: 50%;
}

@media (min-width: 992px) {
    .testimonial,
    .contact-form {
        margin-left: -90px;
    }
}

@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--primary)
    }
}

.footer-shape::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 100%;
    top: 0;
    left: -40px;
    background: var(--primary);
    transform: skew(40deg);
}

/* model window */

 .modal-box{ font-family: 'Varela Round', sans-serif; }
  .modal-box .show-modal{
	  color: #222;
	  background-color: #fff;
	  font-size: 18px;
	  font-weight: 600;
	  text-transform: capitalize;
	  padding: 10px 15px;
	  margin: 80px auto 0;
	  border: none;
	  outline: none;
	  box-shadow: 0 0 10px #555;
	  display: block;
  }
  .modal-box .show-modal:hover,
  .modal-box .show-modal:focus{
	  color: #222;
	  background-color: #fff;
	  border: none;
	  outline: none;
	  text-decoration: none;
  }
  .modal-backdrop.in{ opacity: 0.1; }
  .modal-box .modal{ top: 0px !important;background: #000000b3; }
  .modal-box .modal-dialog{
	  width: 500px;
	  margin: 30px auto 10px;
  }
  .modal-box .modal-dialog .modal-content{
	  border-radius: 25px;
	  box-shadow: 0 0 25px -8px #555;
  }
  .modal-box .modal-dialog .modal-content .close{
	  color: #e74c3c;
	  background-color: #fff;
	  font-size: 28px;
	  text-shadow: none;
	  line-height: 33px;
	  height: 33px;
	  width: 33px;
	  opacity: 1;
	  border-radius: 50%;
	  box-shadow: 0 0 5px #555;
	  position: absolute;
	  left: auto;
	  right: -5px;
	  top: -5px;
	  z-index: 1;
	  transition: all 0.3s;
  }
  .modal-box .modal-dialog .modal-content .close span{
	  margin: -1px 0 0 0;
	  display: block;
  }
  .modal-box .modal-dialog .modal-content .close:hover{
	  color: #fff;
	  background-color: #e74c3c;
  }
  .modal-box .modal-dialog .modal-content .modal-body{ padding: 40px 10px !important; }
  .modal-box .modal-dialog .modal-content .modal-body .icon{
	  color: #26de81;
	  font-size: 36px;
	  text-align: center;
	  text-shadow: 4px 0 0 #fff, 0 -3px 0 #fff;
	  line-height: 40px;
	  height: 50px;
	  width: 50px;
	  margin: 0 auto 30px;
	  position: relative;
	  z-index: 1;
  }
  .modal-box .modal-dialog .modal-content .modal-body .icon:after{
	  content: '';
	  height: 45px;
	  width: 45px;
	  border: 5px solid #c1c1c1;
	  border-radius: 50%;
	  position: absolute;
	  left: -5px;
	  top: 3px;
	  z-index: -1;
  }
  .modal-box .modal-dialog .modal-content .modal-body .title{
	  margin: 0 0 20px 0;
	  font-size: 24px;
	  color: #000000;
	  text-transform: capitalize;
	  font-weight: 600;
	  text-align: center;
	  padding-top: 5px;
	  padding-bottom: 2px;
  }
  .modal-box .modal-dialog .modal-content .modal-body .description{
	color: #05711e;
	text-align: center;
	margin: 0 0 4px;
	font-size: 17px;
	font-weight: 600;
  }
  .modal-box .modal-dialog .modal-content .modal-body .subscribe{
	  color: #fff;
	  background-color: #26de81;
	  font-size: 18px;
	  text-transform: uppercase;
	  padding: 10px 20px;
	  margin: 0 auto;
	  border: 0 solid #222;
	  border-radius: 50px;
	  overflow: hidden;
	  display: block;
	  position: relative;
	  z-index: 1;
	  transition: all 0.3s;
  }
  .modal-box .modal-dialog .modal-content .modal-body .subscribe:hover{ background-color: #222; }
  @media only screen and (max-width: 768px){
	  .modal-dialog{ width: 400px !important; }
  }
  @media only screen and (max-width: 576px){
	  .modal-dialog{ width: auto !important; }
  }
  
  .modal-open .modal {
	  overflow-x: hidden;
	  overflow-y: auto;
	  position: fixed;
	  background-color: #000000c9;
  }
  
  .fade {
	  opacity: 1;
	  -webkit-transition: opacity .15s linear;
	  -o-transition: opacity .15s linear;
	  transition: opacity .15s linear;
  }
  
  /* New CSS */
  
  .mwh3
  {
	text-align: center;
	font-size: 24px;
	padding-top:0px;
	margin-top: 8px;
	margin-bottom: 8px;
	font-weight:bold;
  }
  
  .mwh4
  {
	text-align: center;
	font-size: 20px;
	padding-top:10px;
	margin-bottom: 5px;
	font-weight: 500;
	font-weight: 700;
  }
  
  
  .mwa
  {
	color:#0237b5;
	text-decoration: none;
  }
  
  .mwa:hover
  {
	color: #3c763d;
	text-decoration: none;
  }
  
   /* chatbtn */
  
  .btn-get
  {
  font-weight: 700;
	width: 180px;
	background-color: black;
	padding: 12px;
	color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  }
  
  .btn-get:hover
  {
	background-color: #ffc107;
	color: #000000;
  text-decoration: none;
  }
  