* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.bg-grey-row {
  background-color: #f1f1f1;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5 {
  color: #333333;
}
body {
  font-family: "Source Sans 3";
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1170px !important;
}
h2.title {
  font-weight: 700;
  font-size: 32px;
}

/* header */
.logo-container img {
  width: 130px !important;
}
header {
  position: relative;
  top: 0px;
  background-color: #fff;
  width: 100%;
  z-index: 1000;
}
/*
section {
  position: relative;
  height: calc(100vh - 3rem);
  width: 100%;
  background: url("https://i.postimg.cc/TPn6kNJ2/bg.jpg") no-repeat top center /
    cover;
  overflow: hidden;
}

 .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(30, 130, 95, 0.5);
} 
  .nav-link > a > i {
  margin-left: 0.2rem;
}
  .log-sign {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}


.logo {
  color: var(--clr-light);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 3rem;
}

.logo span {
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.3rem;
  font-size: 0.8rem;
  border: 2px solid var(--clr-light);
  border-radius: 2rem;
  line-height: 1;
  margin: 0 0.2rem;
  transition: 0.3s;
  text-transform: uppercase;
} 

.btn.solid,
.btn.transparent:hover {
  background-color: var(--clr-light);
  color: var(--clr-btn);
}

.btn.transparent,
.btn.solid:hover {
  background-color: transparent;
  color: var(--clr-light);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 10rem;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}

.dropdown ul {
  position: relative;
}

.dropdown-link > a {
  display: flex;
  background-color: var(--clr-light);
  color: var(--clr-dropdown);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s;
}

.dropdown-link:hover > a {
  background-color: var(--clr-dropdown);
  color: var(--clr-light);
}

.dropdown-link:not(:nth-last-child(2)) {
  border-bottom: 1px solid var(--clr-light);
}

.dropdown-link i {
  transform: rotate(-90deg);
}


  */

.header-container {
  max-width: 1170px;
  padding: 1rem;
  margin: 0 auto;
  display: flex;
  position: relative;
}

/* .logo-container {
  flex: 1;
  display: flex;
  align-items: center;
} */

.nav-btn {
  flex: 3;
  display: flex;
}

.nav-links {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: end;
}

.nav-links > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.nav-link {
  position: relative;
}

.nav-link > a {
  padding: 0 0.8rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.5s;
  color: #333;
  text-transform: uppercase;
  font-size: 20px;
  font-family: "Source Sans 3";
}

.nav-link:hover > a {
  transform: scale(1.1);
  color: #da1a38;
}

.arrow {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -5.5px;
  left: 32px;
  background-color: var(--clr-light);
  transform: rotate(45deg);
  cursor: pointer;
  transition: 0.3s;
  z-index: -1;
}

.dropdown-link:first-child:hover ~ .arrow {
  background-color: var(--clr-dropdown);
}

.dropdown-link {
  position: relative;
}

.dropdown.second {
  top: 0;
  left: 100%;
  padding-left: 0.8rem;
  cursor: pointer;
  transform: translateX(10px);
}

.dropdown.second .arrow {
  top: 10px;
  left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}

.hamburger-menu-container {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu div {
  width: 1.6rem;
  height: 3px;
  border-radius: 3px;
  background-color: var(--clr-light);
  position: relative;
  z-index: 1001;
  transition: 0.5s;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  background-color: var(--clr-light);
  border-radius: 3px;
  transition: 0.5s;
}

.hamburger-menu div:before {
  transform: translateY(-7px);
}

.hamburger-menu div:after {
  transform: translateY(7px);
}

#check {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div {
  background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before {
  transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after {
  transform: translateY(0) rotate(45deg);
}

@keyframes animation {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@media (max-width: 920px) {

.nav-btn {
display: none!important;
}

#check:checked ~ .nav-btn {
        display: block !important;
}
  .hamburger-menu-container {
    display: flex;
  }

  #check {
    display: block;
  }

  .nav-btn {
  /* position: fixed;*/
    height: calc(100vh - 3rem);
   /* top: 3rem;*/
    left: 0;
    width: 100%;
    background-color: var(--clr-btn);
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: 0.65s;
        top: 8.2rem;
position: absolute;
  }

  #check:checked ~ .nav-btn {
    transform: translateX(0);
        /*position: absolute;*/
  }

  #check:checked ~ .nav-btn .nav-link,
  #check:checked ~ .nav-btn .log-sign {
    animation: animation 0.5s ease forwards var(--i);
  }

  .nav-links {
    flex: initial;
    width: 100%;
       /* position: relative;
        right: 0;*/
      
  }

  .nav-links > ul {
    flex-direction: column;
  }

  .nav-link {
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
  }

  .nav-link > a {
    line-height: 1;
   /* padding: 1.6rem 2rem;*/
padding: 0.8rem 1rem;
        color: #fff;
  }

  .nav-link:hover > a {
    transform: scale(1);
    background-color: var(--clr-nav-hover);
  }

  .dropdown,
  .dropdown.second {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
    background-color: var(--clr-dropdown-hov);
    display: none;
  }

  .nav-link:hover > .dropdown,
  .dropdown-link:hover > .dropdown {
    display: block;
  }

  .nav-link:hover > a > i,
  .dropdown-link:hover > a > i {
    transform: rotate(360deg);
  }

  .dropdown-link > a {
    background-color: transparent;
    color: var(--clr-light);
    padding: 1.2rem 2rem;
    line-height: 1;
  }

  .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 3rem;
  }

  .dropdown.second .dropdown.second .dropdown-link > a {
    padding: 1.2rem 2rem 1.2rem 4rem;
  }

  .dropdown-link:not(:nth-last-child(2)) {
    border-bottom: none;
  }

  .arrow {
    z-index: 1;
    background-color: var(--clr-btn);
    left: 10%;
    transform: scale(1.1) rotate(45deg);
    transition: 0.5s;
  }

  .nav-link:hover .arrow {
    background-color: var(--clr-nav-hover);
  }

  .dropdown .dropdown .arrow {
    display: none;
  }

  .dropdown-link:hover > a {
    background-color: var(--clr-dropdown-link-hov);
  }

  .dropdown-link:first-child:hover ~ .arrow {
    background-color: var(--clr-nav-hover);
  }

  .nav-link > a > i {
    font-size: 1.1rem;
    transform: rotate(-90deg);
    transition: 0.7s;
  }

  .dropdown i {
    font-size: 1rem;
    transition: 0.7s;
  }


.nav-links > ul {

  gap: 0px;
}

.nav-links ul {
    background-color: #da1a38;
    padding: 10px 15px;
        width: 50%;
}

.hamburger-menu div:before, .hamburger-menu div:after, .hamburger-menu div  {
    background: #333;
}

.logo-container img {
    width: 100px !important;
}
/*.header-container .nav-links ul {
    width: 100%;
}*/
}

/******slider*****/

.image-slider .carousel-control-next,
.image-slider .carousel-control-prev {
  opacity: 1;
}

/* price table */

.pricing_box_row {
  background-image: url(../image/shutterstock_134089184.jpg);
  background-size: cover;
  background-position: center;
  /* height: 100%;
  width: 100%; */
}
h3.sub-title {
  font-size: 25px;
  font-weight: 700;
}

.pricing_box_row .white-box .wpb-plan-features li {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
}
.pricing_box_row .white-box {
  background-color: rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5) !important;
  padding: 35px 25px;
  border-radius: 6px;
}
.pricing_box_row .white-box h3.wpb-plan-title {
  font-size: 22px;

  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.018em;
}

.pricing_box_row .white-box ul.wpb-plan-features {
  padding-left: 0;
}

.pricing_box_row .white-box .wpb-plan-features li em {
  font-style: normal;
  font-weight: 600;
}

.pricing_box_row {
  position: relative;
  z-index: 0;
}
.pricing_box_row:before {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

.contact-from-style1 {
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  max-width: 950px !important;
  margin: 0 auto;
}

.form-control {
  border-radius: 3px;
  padding: 5px 10px;
  height: 50px;
  background-color: #f7f7f7;
}

textarea {
  width: 100%;
  border-radius: 3px;
  padding: 5px 10px;
  height: 50px;
  background-color: #f7f7f7;
  outline: 0;
}
.form-control:focus {
  box-shadow: none;
  border-color: #dc3545;
}
button.btn:hover {
  background-color: #333333;
  border-color: #333333;
}
button.btn {
  background: #dc3545;
  border-radius: 0.25rem;
  letter-spacing: 0.05rem;
  width: 160px;
  color: #fff;
  font-weight: 500;
  border-color: #dc3545;
}

#footer {
  background-color: #f7f7f7;
}

#footer img.footer-logo {
  width: 135px;
}
#footer ul#menu-footer-menu {
  display: flex;
  gap: 45px;
  justify-content: center;
}
#footer ul#menu-footer-menu li a {
  line-height: 37px;
  font-weight: 400;
  color: #333333;
  text-transform: uppercase;
  font-size: 17px;
}
#footer .social-icon {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 15px;
}
#footer .social-icon li a {
  color: #dc3545;
  padding: 5px 10px;
}
#footer .social-icon li {
  border: 1px solid #333333;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  list-style: none;
  line-height: 35px;
}

#footer .footer-contact p.footer-email a:hover,
#footer ul#menu-footer-menu li a:hover,
#footer .bottom-footer a:hover {
  color: #dc3545;
}

#footer .bottom-footer a {
  color: #333;
}

#footer .footer-contact p.footer-email a {
  padding-left: 12px;
  color: #333333;
}
#footer p.footer-address i {
  padding-right: 12px;
}
#footer .footer-contact {
  display: flex;
  justify-content: center;
  gap: 35px;
}




/***********17-01-2025***********/
.footer-privacy-text a{
color: #333;
}
.footer-privacy-text a:hover {
    color: #dc3545;
}

p.privacy-mail a:hover {
    color: #dc3545;
}

p.privacy-mail a {
    color: #333;
}
@media (max-width: 768px) {
.price-4col .col-sm-4 {
    width: 50%;
    margin-bottom: 26px;
}

.price-4col .col-sm-4:nth-child(3) {
    margin-bottom: 0;
}

.price-4col .col-sm-6 {
    width: 52%;
}
}
@media (max-width: 576px) {
    .price-4col .col-sm-4 {
        width: 100%;
        margin-bottom: 15px;
    }


.price-4col .col-sm-6 {
        width: 100%;
        margin-bottom: 0;
    }
.contact-from-style1 {
    padding-left: 20px;
    padding-right: 20px;
}
.contact-from-style1 {
    padding-left: 20px;
    padding-right: 20px;
}

#footer .footer-contact {
    display: block;
}

#footer ul#menu-footer-menu {
           gap: 3px;
        flex-wrap: wrap;
}
#footer ul#menu-footer-menu li {
    padding: 0 10px;
}

#footer p.footer-email {
    margin-bottom: 6px;
}


.header-container .nav-links ul {
    width: 100%;
}

.header-container .nav-link > a {
    padding-left: 0;
}
}