/*================================================
            BASE CSS
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Poppins:wght@300;400;500;700&display=swap');

html,
body {
  height: 100%;
  vertical-align: baseline;
}

body {
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}

/* 
font-family: 'Poppins', sans-serif;
font-family: 'Montserrat', sans-serif;
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
}

/*------- primary color -------*/
:root {
  --primary-color: #05d3b0;
}

a:focus {
  outline: 0 solid;
}

img {
  height: auto;
}

a {
  transition: 0.4s;
  text-decoration: none;
  color: #000;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol {
  padding-left: 1rem;
}

a:focus,
a:hover {
  text-decoration: none;
}

a:focus {
  outline: 0 solid;
}

address {
  margin: 0;
}

ul {
  list-style: none;
  color: #777;
}

html,
body {
  height: 100%;
}

a:hover {
  text-decoration: none;
}

/*----- title head style -----*/
.title-head {
  text-align: center;
  margin-bottom: 40px;
}

.title-head .subtitle {
  display: block;
  font-size: 16px;
  color: #666666;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.title-head .title {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-color);
}

.active-nav {
  color: var(--primary-color) !important;
}

/* Remove Chrome Input Field's Unwanted Yellow Background Color */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

/*----- Container-------*/
@media (min-width:1200px) {
  .container {
    max-width: 1212px !important
  }
}

/*--------- breadcrumb section -----------*/
.breadcrumb {
  background-image: linear-gradient(rgb(0 0 0 / 68%), rgb(0 0 0 / 66%)), url(../media/common/breadcamd.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 70px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.breadcrumb .breadcrumb-content {
  overflow: hidden;
  text-align: center;
}

.breadcrumb .breadcrumb-text-wrapper {
  display: inline-block;
}

.breadcrumb .breadcrumb-content .page-name {
  display: block;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 10px;
  letter-spacing: 2px;
  color: #fff;
}

.breadcrumb .breadcrumb-list {
  display: inline-block;
  float: none;
  margin-top: 0;
  margin: 0;
  padding: 0;
}

.breadcrumb .breadcrumb-list li {
  float: left;
  margin-right: 20px;
  position: relative;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
}

.breadcrumb .breadcrumb-list li a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb .breadcrumb-list li:first-child::before {
  bottom: -1px;
  content: "/";
  position: absolute;
  right: -14px;
}

.breadcrumb .breadcrumb-list li:first-child {
  padding-left: 15px;
}

/* ============= [ Breadcrumb Responsive  ] ==============*/
@media only screen and (max-width: 767px) {
  .breadcrumb .breadcrumb-content .page-name {
    font-size: 25px;
    letter-spacing: 0px;
  }
}



/*--------------------------------------------------------------
# Topbar section 
--------------------------------------------------------------*/
.topbar {
  padding: 8px 0;
  background: #049f84;
  color: #fff;
}

.topbar .topbar-wrap {
  display: flex;
  justify-content: space-between;
}

.topbar .topbar-wrap .topbar-left {
  display: flex;
  align-items: center;
}

.topbar .topbar-wrap .topbar-left span {
  font-size: 14px;
  display: inline-block;
  margin-right: 15px;
}

.topbar .topbar-wrap .topbar-left span svg {
  width: 22px;
  fill: #fff;
}

.topbar .topbar-wrap .topbar-left span:last-child svg {
  width: 25px;
  margin-right: 5px;
}

.topbar .topbar-wrap .topbar-right .socail-list {
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
}

.topbar .topbar-wrap .topbar-right .socail-list .item {
  background: var(--primary-color);
  padding: 5px 10px;
  border-radius: 50%;
  border: none;
  margin-right: 15px;
  transition: all 500ms;
}

.topbar-right {
  display: flex;
  align-items: center;
}

.hotline-icon {
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.hotline-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.hotline-number {
  letter-spacing: 2px;
  font-weight: 500;
  color: #fff;
}

.hotline-number:hover{
  color: #fff;
}

@media only screen and (max-width: 600px) {
  .topbar {
    display: none;
  }
}

/*--------------------------------------------------------------
# Header section 
--------------------------------------------------------------*/
.header {
  background: #F0F0ED;
}

.header .navbar {
  padding: 0 !important;
}

.nav-button {
  border: 2px solid var(--primary-color);
  padding: 10px 30px !important;
  color: var(--primary-color) !important;
  transition: .4s;
}

.nav-button:hover {
  background: var(--primary-color);
  color: #fff !important;
}

.header .navbar-nav {
  align-items: center;
}

.header .navbar-brand img {
  max-width: 210px;
  width: 100%;
}

.header .navbar-nav .nav-item .nav-link {
  color: #2C2D3F;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
  padding: 25px 15px;
  position: relative;
}

.header .navbar-nav .nav-item .nav-link::after {
  content: '';
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  position: absolute;
  left: 12px;
  bottom: 20px;
  transition: .4s;
}

.header .navbar-nav .nav-item:last-child .nav-link::after {
  content: unset;
}

.header .navbar-nav .nav-item .nav-link:hover::after {
  width: 70%;
}

.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  z-index: 11;
  float: right;
}

.navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  pointer-events: none;
}

.navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 4px;
  position: absolute;
  background: #333;
  border-radius: 2px;
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
  left: 0px;
}

.navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
}

.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}

.navbar-toggler .hamburger-toggle .hamburger span:last-child {
  left: 0px;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
}

.navbar-toggler .hamburger-toggle .hamburger.active span {
  position: absolute;
  margin: 0;
}

.navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
  top: 45%;
  transform: rotate(45deg);
}

.navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
  left: 50%;
  width: 0px;
}

.navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
  top: 45%;
  transform: rotate(-45deg);
}

.dropdown-icon {
  position: absolute;
  width: 21px;
  top: 27px;
}

.sticky-nav {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  transition: 0.1s;
  z-index: 999;
  box-shadow: 0 3px 7px 1px rgba(144, 161, 180, .2);
}

@media only screen and (max-width: 992px) {
  .header .navbar-nav{
    align-items: unset;
    padding: 20px 0;
  }
  .nav-button{
    display: inline-block;
  }
  .header .navbar-nav .nav-item .nav-link{
    padding: 15px;
  }
}
/*---------- Mobile Responsive -----------*/
@media only screen and (max-width: 600px) {
  .header .navbar-nav .nav-item .nav-link {
    padding: 15px 15px;
  }

  .header .navbar-nav {
    align-items: unset;
    padding: 15px 0;
  }

  .nav-button a {
    display: inline-block;
  }

  .dropdown-list {
    top: 35px;
    left: 15px;
  }

  .dropdown-icon {
    top: 7px;
  }

  .header .navbar-nav .nav-item .nav-link::after {
    content: unset;
  }
  .nav-button{
    display: inline-block;
  }
}

/*================================================
             SLIDER SECTION
==================================================*/
.slider-section {
  height: 85vh;
}

.slider-section .slider {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  overflow: hidden;
  height: 85vh;
}


.slider-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 85vh;
  padding: 70px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.slider-section .btn-title-home {
  padding-top: 20px;
}

.carousel-single-item .owl-controls {
  text-align: center;
}

/*slider text animation-delay */
.carousel-single-item .owl-stage .active .title h2,
.carousel-single-item .owl-stage .active .title p,
.carousel-single-item .owl-stage .active .title .btn,
.carousel-single-item .owl-stage .active .title .skill-ul,
.carousel-single-item .owl-stage .active .title .mobile-social-icon {
  opacity: 1;
  transform: translateY(0)translateX(0);
}

.carousel-single-item .slider-overlay .title p,
.carousel-single-item .slider-overlay .title .skill-ul {
  transform: translateY(60px);
  transition-delay: 0.5s;
  transition-duration: 1s;
  opacity: 0;
}

.carousel-single-item .slider-overlay .title .btn {
  overflow: visible;
  background-image: none;
  transform: translateY(60px);
  transition-delay: 0.8s;
  transition-duration: 1s;
  opacity: 0;
  transition-property: transform, opacity;
}

.slider-section .title {
  text-align: center;
}

.slider-section .title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.slider-section .title p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-top: 10px;
  line-height: 28px;
  padding: 0 15%;
}

.slider-section .title .animition {
  margin-top: 0px;
}

.slider-section .btn-title {
  padding: 12px 30px;
  color: #fff;
  position: relative;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  text-transform: capitalize;
  z-index: 99;
  font-size: 16px;
  font-weight: 700;
  background: transparent;
  letter-spacing: 0.5px;
  border-radius: 0px;
  transition: all 0.5s ease-in-out;
  border: 3px solid var(--primary-color);
  outline: none;
  margin-top: 15px;
}

.slider-section .btn-title:hover {
  background: var(--primary-color);
}

/*----- owl button style -------*/
.slider-section .owl-carousel .owl-nav button.owl-next,
.slider-section .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  color: #fff;
  top: 50%;
  transform: translateX(50%, -50%);
  width: 50px;
  height: 50px;
  transition: all .3s ease-in;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
}

.slider-section .owl-carousel .owl-nav button.owl-prev:hover,
.slider-section .owl-carousel .owl-nav button.owl-next:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.slider-section .owl-prev {
  left: 60px;
  right: auto;
}

.slider-section .owl-next {
  right: 60px;
  left: auto;
}

.owl-prev svg,
.owl-next svg {
  width: 40px;
  fill: #fff;
}

/* ============= [ Slider Responsive Teblet  ] ==============*/
@media only screen and (max-width: 992px) {
  .slider-section .owl-prev {
    left: 15px;
  }

  .slider-section .owl-next {
    right: 15px;
  }

  .slider-section,
  .slider-section .slider,
  .slider-overlay {
    height: 55vh;
  }

  .slider-section .title p {
    padding: 0 5%;
  }
}

/* ============= [ Slider Responsive Mobile  ] ==============*/
@media only screen and (max-width: 767px) {
  .slider-section {
    height: 60vh;
  }

  .slider-section .slider {
    height: 60vh;
  }

  .slider-overlay {
    height: 60vh;
  }

  .slider-section .title h2 {
    font-size: 25px;
  }

  .slider-section .title p {
    padding: 0 42px;
    font-size: 14px;
    line-height: 22px;
  }

  .slider-section .btn-title {
    padding: 8px 18px;
    font-size: 14px;
  }

  .slider-section .owl-carousel .owl-nav button.owl-next,
  .slider-section .owl-carousel .owl-nav button.owl-prev {
    top: 40%;
    width: 40px;
    height: 40px;
    display: flex;
  }

  .slider-section .owl-next {
    right: 0px;
  }

  .slider-section .owl-prev {
    left: 0px;
  }
}

/*================================================
           Destination Section
==================================================*/
.destination-section {
  padding: 100px 0;
}

.single-distenation {
  padding: 15px;
  text-align: center;
  text-transform: capitalize;
}
h4.country-name {
  margin-top: 15px;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .destination-section {
    padding: 50px 0;
  }

  .single-distenation {
    padding: 25px;
  }

  .single-distenation img {
    width: 100%;
  }
}

/*================================================
             FEATURE SECTION
==================================================*/
.feature-section {
  margin-top: -150px;
  z-index: 5;
  position: relative;
}

.feature-section .feature-card {
  padding: 30px 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.10);
  transition: all 400ms ease;
  background: #fff;
  height: 100%;
  text-align: justify;
}

.feature-section .feature-card:hover {
  background: var(--primary-color);
}

.feature-card:hover .icon svg {
  fill: #fff;
}

.feature-card:hover .title,
.feature-card:hover p {
  color: #fff;
}

.feature-card .icon svg {
  fill: var(--primary-color);
  width: 55px;
  height: 55px;
  margin-bottom: 10px;
}

.feature-card .title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px
}

.feature-card p {
  font-size: 16px;
  line-height: 26px;
  color: #666666;
  font-weight: 300;
}

.feature-section .btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.feature-section .feature-card:hover .btn-primary {
  background: #fff;
  border-color: #fff;
  color: #000;
}

/*---------- Mobile Responsive -----------*/
@media only screen and (max-width: 600px) {
  .feature-section {
    margin-top: 50px;
  }

  .feature-section .feature-card {
    margin-bottom: 30px;
  }
}

/*================================================
             ABOUT SECTION
==================================================*/
.about-section {
  margin: 100px 0;
  margin-bottom: 10px;
}
.about-section .title{
  color: var(--primary-color);
}
.sotry-content p {
  line-height: 1.7;
  color: #364d59;
  font-weight: 300;
  font-size: 1rem;
  text-align: justify;
}

.sotry-content .title {
  margin-bottom: 15px;
  font-size: 25px;
  font-weight: 600;
}

.sotry-content a {
  padding: 10px 25px;
  background: transparent;
  color: var(--primary-color);
  margin-top: 15px;
  border: 2px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  transition: all .3s ease-in-out;
  display: inline-block;
  position: relative;
  animation: leave 0.4s forwards;
}

.sotry-content a:hover {
  animation: hover 0.4s forwards;
}

@keyframes hover {
  from {
    box-shadow: inset 0 0 0 0.01px var(--primary-color);
  }

  to {
    box-shadow: inset 9em 0 0 0.01px var(--primary-color);
    color: #fff;
  }
}

@keyframes leave {
  from {
    box-shadow: inset -8.79928em 0 0 0.01px var(--primary-color);
    color: #fff;
  }

  to {
    box-shadow: inset 0 0 0 0.01px var(--primary-color);
  }
}

/*------------------------------*/
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

#story .col-6:first-child .single-thumb:nth-child(1) {
  margin-bottom: 10px;
}

.single-thumb {
  position: relative;
  z-index: 1;
  margin: 5px;
  display: block;
  overflow: hidden;
  border-radius: 6px;
}

.single-thumb img {
  transition-duration: 500ms;
}

.single-thumb:hover img {
  transform: scale(1.2);
}

/*=============== Story Responsive Tablet =============== */
@media screen and (max-width: 992px) {
  #story {
    margin-top: 35px;
  }

  .sotry-content {
    margin-bottom: 15px;
  }
}

/*---------- Mobile Responsive -----------*/
@media only screen and (max-width: 600px) {
  .about-section {
    margin: 50px 0;
  }
}

/*================================================
             SERVICE SECTION
==================================================*/
.service-section {
  padding: 100px 0;
  background: #f8f8f8;
}

.service-section .title-head {
  text-align: center;
  margin-bottom: 40px;
}

.service-section .title-head .subtitle {
  display: block;
  font-size: 20px;
  color: #110b79 !important;
  margin-bottom: 5px;
  font-weight: 700;
}
.service-section .title-head .title {
  font-size: 30px;
  font-weight: 600;
  color: #110b79 !important;
}

.service-card {
  padding: 30px 20px;
  background: #fff;
  text-align: center;
  border: 1px solid #eee;
  transition: .4s;
  max-height: 350px;
  height: 100%;
}

.service-card .icon svg {
  width: 64px;
  height: 64px;
  fill: var(--primary-color);
  margin-bottom: 10px;
}

.service-card .title {
  font-size: 23px;
  text-transform: capitalize;
  margin: 10px 0;
  font-weight: 600;
}

.service-card .card-btn {
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: 400;
  background: var(--primary-color);
  padding: 8px 25px;
  text-transform: capitalize;
  color: #fff;
  display: inline-block;
  word-spacing: 2px;
  margin-top: 10px;
}

.service-card:hover {
  background: var(--primary-color);
  color: #fff;
}

.service-card:hover .icon svg {
  fill: #fff;
}

.service-card:hover .card-btn {
  background: transparent;
}

.service-card .card-btn:hover {
  background: #fff;
  color: #1C274C;
}

@media only screen and (max-width: 768px) {
  .service-section {
    padding: 50px 0;
  }
}

/*================================================
             MODAL wrapper
==================================================*/
.modal-dialog p {
  text-align: justify;
}

.Modal-img-wrapper {
  grid-column-gap: 15px;
}

.Modal-img-wrapper img {
  max-width: 225px;
  width: 100%;
}

/*================================================
             DOCTOR SECTION
==================================================*/
.doctor-section {
  padding: 100px 0;
  position: relative;
}

.doctor-card {
  background: #FFFFFF;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
  margin: 20px 0;
}

.doctor-card .card-content {
  padding: 20px 25px;
}

.doctor-card .card-img {
  overflow: hidden;
  position: relative;
}

.doctor-card .card-img img {
  transition: .4s;
  height: 200px;
}

.doctor-card .card-img:hover img {
  transform: scale(1.2);
}

.doctor-card .card-content .title {
  color: #111111;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0px;
  text-transform: capitalize;
  font-size: 18px;
}

@media only screen and (max-width: 600px) {
  .doctor-section {
    padding: 50px 0;
  }

  .doctor-card {
    margin-bottom: 30px;
  }
}

.doctor-section .owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: block;
}

.doctor-section .owl-theme .owl-nav [class*=owl-] {
  background: var(--primary-color);
  border-radius: 50%;
  height: 50px;
  width: 50px;
}

.doctor-section .owl-prev {
  position: absolute;
  left: -70px;
  bottom: 40%;
}

.doctor-section .owl-next {
  position: absolute;
  right: -70px;
  bottom: 40%;
}

@media only screen and (max-width: 992px) {
  .doctor-section .owl-next {
    position: absolute;
    right: 40%;
    bottom: unset;
  }

  .doctor-section .owl-prev {
    position: absolute;
    left: 40%;
    bottom: unset;
  }
}

@media only screen and (max-width: 768px) {
  .doctor-section .owl-next {
    right: 30%;
  }

  .doctor-section .owl-prev {
    left: 30%;
    bottom: unset;
  }
}

/*================================================
             SISTER CONCERNS SECTION
==================================================*/
.sister-concern-section{
  margin-top: 50px;
}
.sister-concern-section .title-head{
  margin-bottom: 20px;
}
.clients-photo {
  display: flex;
  align-items: center;
  height: 200px;
  width: 200px;
}

/*================================================
     Contact section
==================================================*/
.contact-page {
  padding: 50px 0;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 36px;
  margin-top: 30px;
}

.contact-info .single-info {
  border-radius: 3px;
}

.contact-info .single-info .icon svg {
  fill: var(--primary-color);
  width: 40px;
}

.contact-info .single-info .content .title {
  color: #2a303b;
  line-height: 1.3;
  font-weight: 600;
  margin-top: 15px;
  font-size: 18px;
}

.contact-info .single-info .content p{
  padding: 0;
  margin: 0;
}

.contact-info .single-info .content span {
  color: #777;
}

.contact-page .form form input,
.contact-page .form form textarea {
  width: 100%;
  height: 45px;
  padding: 0 15px;
  font-weight: 500;
  font-size: 13px;
  border-radius: 8px;
  outline: none;
  border: 1px solid #ddd;
}

.contact-page .form form textarea {
  padding: 15px;
}

.contact-page .form-button {
  font-size: 12px;
  background: #05d3b0;
  color: #fff;
  font-weight: 700;
  line-height: 15px;
  border-radius: 8px;
  display: inline-block;
  text-transform: uppercase;
  border: 2px solid var(--primary-color);
  margin-bottom: 5px;
  letter-spacing: 2px;
  transition: .4s;
  padding: 18px 30px 18px;
}

.contact-page .form-button:hover {
  background: transparent;
  color: var(--primary-color);
}

.google-map {
  height: 400px
}

.google-map iframe {
  width: 100%;
  height: 100%;
}


/*================================================
            FOOTER SECTION 
==================================================*/
.footer-section {
  padding-top: 80px;
  background: #0e2737;
}

.footer-section .footer-content {
  padding-bottom: 30px;
}

.footer-widget-1 .social-list {
  margin-top: 20px;
}

.footer-widget-1 .social-list .item {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  height: 35px;
  width: 35px;
  border: 1px solid #ffffff;
  line-height: 33px;
  text-align: center;
  border-radius: 50%;
  margin-right: 15px;
}

.footer-widget-1 .social-list .item:hover {
  background: #fff;
}

.footer-widget-1 .social-list .item:hover svg {
  fill: var(--primary-color);
}

.footer-widget-1 .social-list .item svg {
  width: 16px;
  fill: #fff;
}

.footer-widget-2 {
  padding-left: 45px;
}

.footer-section .widget-title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.deparment-list .item {
  position: relative;
  display: block;
  font-weight: 300;
  font-size: 15px;
  border-bottom: 1px solid #7e7e7e;
  padding-bottom: 14px;
  padding-top: 10px;
  transition: all 500ms;
}

.deparment-list .item a {
  color: #cbcbcb;
  transition: all 500ms;
}

.deparment-list .item:hover a {
  color: var(--primary-color);
}



/*------ footer widget 4 --------*/
.footer-widget-4 .contact-list .item {
  margin-bottom: 22px;
}

.footer-widget-4 .contact-list .item a {
  display: flex;
  color: #cbcbcb;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  padding: 0;
  margin: 0;
}

.footer-widget-4 .contact-list .item .icon svg {
  width: 20px;
  fill: #fff;
}

.footer-widget-4 .contact-list .item .icon {
  margin-right: 12px;
  margin-top: 6px;
}

/*---- copwywrite text ----*/
.footer-section .copay-write {
  border-top: 1px solid #797979;
  display: flex;
  justify-content: space-between;
  color: #a4a4a4;
  padding: 15px 0;
}


@media only screen and (max-width: 768px) {
  .footer-widget-2 {
    padding-left: 0;
  }

  .footer-section {
    padding-top: 50px;
  }

  .deparment-list .item {
    margin-bottom: 12px;
  }

  .footer-widget-4 .contact-list .item {
    margin-bottom: 14px;
  }

  .footer-widget-4 .contact-list .item a {
    align-items: center;
  }

  .footer-section .copay-write {
    flex-direction: column;
    align-items: center;
  }
}

/*================================================
           Back to top
==================================================*/
.scrollup {
  position: fixed;
  width: 35px;
  height: 70px;
  line-height: 50px;
  text-align: center;
  background-color: var(--primary-color);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  animation-delay: .95s;
  display: inline-block;
  transform: rotate(180deg);
  bottom: 8%;
  right: 3%;
  z-index: 3;
  opacity: 18;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.scrollup:hover {
  background-color: #000;
  transition: 1s;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

.back-to-top span {
  padding-bottom: 10px;
}

.back-to-top--active {
  visibility: visible;
  -webkit-animation: back-to-top .5s ease-in;
  animation: back-to-top .5s ease-in;
  transition: width 3s;
}

.scroll-effects {
  background: url("../media/common/scrolling-icon.png");
  width: 19px;
  height: 16px;
  display: inline-block;
  -webkit-animation-name: scroll_effects;
  animation-name: scroll_effects;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes scroll_effects {

  from,
  to {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes scroll_effects {

  from,
  to {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/*================================================
           Easy Process
==================================================*/
.easy-process .easy-process-title {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.easy-process li {
  font-size: 16px;
  margin-bottom: 10px;
}
.process-box {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 30px;
}
.easy-process .single-box {
  position: relative;
  z-index: 1;
  background-color: var(--light-color);
  box-shadow: 0 2px 14px 5px rgba(20, 20, 20, 0.05);
  border-radius: 3px;
  padding: 30px;
  text-align: center;
  display: flex;
  height: 200px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.easy-process .single-box h4 {
  font-size: 22px;
  margin: 12px;
  font-weight: 500;
}
.easy-process .single-box h5 {
  font-size: 17px;
  line-height: 25px;
}
.easy-process .single-box svg{
  width: 50px;
  height: 60px;
  fill: var(--primary-color);
}
@media (max-width: 768px) {
  .easy-process {
    padding: 50px 0;
  }
}


@media only screen and (max-width: 1025px) {
  .process-box{
    grid-template-columns: repeat(3,1fr);
  }
  .easy-process .single-box{
    width: 100%;
    height: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .process-box{
    grid-template-columns: repeat(2,1fr);
  }
}

@media only screen and (max-width: 600px) {
  .process-box{
    grid-template-columns: repeat(1,1fr);
  }
}