/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/
body{
font-family:'Poppins', sans-serif;
}


:root {
	--cnvs-themecolor: #1B5366;
	--cnvs-themecolor-rgb: 0, 108, 250;

	--cnvs-primary-font:'Poppins', sans-serif;
	--cnvs-secondary-font: 'Poppins', sans-serif;
	--cnvs-menu-box-shadow: 0 0.7vw 1.4vw rgba(0, 0, 0, .1);
}

.toggle {
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid #EEE;
}

.toggle-header {
	align-items: center;
}

.toggle-header .toggle-open {
	display: block !important;
	font-size: 20px;
	line-height: 1;
	height: 20px;
	transform: rotate(45deg);
	transition: transform .3s ease;
}

.toggle-closed { display: none !important; }

.toggle-active .toggle-open {
	display: block !important;
	transform: rotate(90deg);
	color: var(--cnvs-themecolor, #0F66DD);
}

.grid-bg {
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: -1;
	transform: translateX(-50%);
}


/*scroll-bar*/
/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f9f9f9;	
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
    background: #1B5366;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	 background:#1B5366;
}

/*scroll-bar-end*/
/* offer css */
.service-box
{
	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
}
.service {
  text-align: center;
  font-size: 16px;
  color: #6c757d;
  background: transparent;
  transition: transform 0.5s, background 0.5s;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media only screen and (max-width: 600px) {
  .service {
  text-align: center;
  font-size: 14px;
  background: transparent;
  transition: transform 0.5s, background 0.5s;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
width: 280px;
margin: 0px 50px;
}

}
.service i {
  font-size: 40px;
  margin-bottom: 10px;
  color: #1B5366;
}

.head {
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 19px;
}

.service h4:hover
{
  color: #fff!important;
}

.service:hover {
  background: #1B5366;
  color: #fff !important;
  transform: scale(1.05);
}

.service:hover i {
  color: #fff;
}


/* modal css */


    .modal-form input {
      border: none;
      border-bottom: 1px solid #1B5366;
    }

    .mb-3 {
      margin-bottom: 1rem !important;
    }

    .position-relative {
      position: relative !important;
    }

    .d-inline-block {
      display: inline-block !important;
    }

    h3 {
      font-size: 1.5rem;
    }

    .p-0 {
      padding: 0 !important;
    }



    .text-center {
      text-align: center !important;
    }

    .justify-content-center {
      justify-content: center !important;
    }

    .icons {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 10px 30px;
      background: #1B5366;
      height: 50px;
      border-radius: 5px;
    }

    .icons-child {
      display: flex;
      align-items: center;
      gap: 5px;
      color: black !important;
    }

    .icons-child img {
      height: 30px;
      width: 30px;
    }


    .form-control{
      display: block;
      width: 100%;
      padding: 0.375rem 0.75rem;
      font-size: 15px;
      font-weight: 400;
      line-height: 1.5;
      background-color: #fff;
      background-clip: padding-box;
      border: 1px solid  #D3D3D3;
      appearance: none;
      border-radius: 0.375rem;
      outline-color: none !important;
    }

.form-control:focus {
  border-color: blue;
  box-shadow:none;
}


.c-btn{
  color: white !important;
}
    .modal-form textarea {
      border: none;
      border-bottom: 1px solid #1B5366;
    }

    @media (min-width: 768px) {
      .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
      }
    }
  /* modal end */
.back-w
{
  background-color: #fff;
}