/* Golbal Styles */

* {
  margin: 0;
  padding: 0;

  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  word-break: break-word;
  scroll-behavior: smooth;
}

:root {
  --deep_blue: #045699;
  --soft_blue: #228ffc;
  --gray: #808080;
}

body {
  background: #ebebeb;
}

img,
svg {
  max-width: 100%;
  -drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

a {
  cursor: pointer;
  font-size: 1vw;
  width: fit-content;
  display: inline-block;
  text-decoration: none;
  transition: 0.4s;
}

button {
  padding: 0.5vw 2vw;
}

button {
  padding: 0.5vw 2vw;
  cursor: pointer;
  transition: 0.4s;
}

i {
  cursor: pointer;
  transition: 0.4s;
  font-size: 1.3vw;
}

span{
  transition: all .4s;
}

section {
  padding: 10%;
  width: 100%;
}

h1,
h2 {
  font-size: 2.5vw;
  line-height: 1;
}

p {
  color: var(--gray);
  font-size: 1vw;
  font-weight: 500;

}

a {
}

@media (max-width: 996px) {
  section {
    padding: 20% 10%;
  }

  h1 {
    font-size: 7vw;
  }

  h2 {
    font-size: 7vw;
  }
  p,
  ol,
  ul {
    font-size: 3vw;
  }
  button {
    padding: 2vw 6vw;
  }
  i {
    font-size: 6vw;
  }

  a {
    font-size: 3.5vw;
  }
}

/** Header **/
.header-mobile {
  display: none;
}

.header-desktop {
  display: flex;
  gap: 0.3vw;
  flex-direction: column;
}

.header-desktop .first-line {
  display: flex;
  padding: 0.5vw;
  justify-content: center;
  align-content: center;
  background-color: var(--deep_blue);
  justify-content: space-around;
}

.header-desktop .first-line .phone-ctn {
  gap: 0.5vw;
  justify-content: center;
  align-items: center;
  display: flex;
}

.header-desktop .first-line .phone-ctn:hover a {
  color: var(--soft_blue);
}

.header-desktop .first-line .phone-ctn:hover i {
  color: var(--soft_blue);
}

.header-desktop .first-line .address-ctn {
  gap: 0.5vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-desktop .first-line .address-ctn:hover a {
  color: var(--soft_blue);
}

.header-desktop .first-line .address-ctn:hover i {
  color: var(--soft_blue);
}

.header-desktop .first-line .icon-ctn {
  gap: 1.5vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-desktop .first-line .icon-ctn i:hover {
  color: var(--soft_blue);
}

.header-desktop .first-line a {
  color: white;
}

.header-desktop .first-line i {
  color: white;
}

.header-desktop .second-line {
  display: flex;
  padding: 1vw 0.5vw;
  justify-content: center;
  align-items: center;
  justify-content: space-around;
}

.header-desktop .second-line .logo-ctn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10vw;
  justify-content: space-around;
}

.header-desktop .second-line .menu {
  display: flex;
  gap: 2vw;
  align-items: center;
}

.menu ul {
  display: block;
  position: relative;
}

.menu .services-list {
  display: none;
}

.menu .services-header:hover .services-list {
  display: block;
  opacity: 1;
}

.menu .services-header .services-list a {
  width: 100%;
  text-align: left;
}

.menu .team-list {
  display: none;
  z-index: 1;
}

.menu .team-header .team-list {
  z-index: 1;
}

.menu .team-header .team-list .dr_li {
  width: 15vw;
}


.menu .team-header:hover .team-list {
  display: block;
  opacity: 1;
}

.menu .team-header:hover .team-list a {
  display: flex;
  width: 100%;
  justify-content: start;
  align-items: center;
}


.menu ul li ul li {
  width: 12vw;
  display: flex;
  justify-content: start;
  align-items: center;
  transition: all .4s ease;
}

.menu .services-list li:hover {
  background-color:#ebebeb ;
}

.menu .team-list li:hover {
  background-color:#ebebeb ;
}

.menu ul li ul li a {
  padding: 1vw;
}

.menu ul li ul li a::before {
  display: none;
}

.menu ul li ul {
  position: absolute;
  display: block;
  background-color: white;
  left: -40%;
  box-shadow: 3px 3px 10px #00000050;
  top: 100%;
  opacity: 0;
}

.header-desktop .second-line .menu a {
  color: var(--gray);
  display: flex;
  gap: .3vw;
  justify-content: start;
  align-items: center;
  position: relative;
}

.header-desktop .second-line .menu i {
  transition: none;
}

.header-desktop .second-line .menu a::before {
  width: 0;
  height: 2px;
  content: "";
  position: absolute;
  bottom: -20%;
  left: 0;
  background: var(--soft_blue);
  transition: 0.25s;
}

.header-desktop .second-line .menu a:hover {
  color: var(--soft_blue);
}

.header-desktop .second-line .menu a:hover::before {
  width: 100%;
}

.header-desktop .second-line .menu a:active {
  color: var(--soft_blue);
}

.header-desktop .second-line .menu ul {
  list-style: none;
}

.header-desktop .second-line .header-buttons {
  display: flex;
  gap: 1vw;
}

.header-desktop .second-line .header-buttons .contact-btn {
  background-color: var(--soft_blue);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 1.5vw;
  padding: 0.5vw 0.7vw;
  border: 2px solid var(--soft_blue);
}

.header-desktop .second-line .header-buttons .contact-btn:hover {
  background-color: white;
  transform: translateY(-0.2vw);
  color: var(--soft_blue);
}

.header-desktop .second-line .header-buttons .phone-btn {
  background-color: var(--deep_blue);
  color: white;
  display: flex;
  gap: 0.5vw;
  border: 2px solid var(--deep_blue);
  border-radius: 1.5vw;
  padding: 0.5vw 0.7vw;
  justify-content: center;
  align-items: center;
}

.header-desktop .second-line .header-buttons .phone-btn i {
  transition: none;
  font-size: 1vw;
}

.header-desktop .second-line .header-buttons .phone-btn:hover {
  background-color: white;
  transform: translateY(-0.2vw);
  color: var(--deep_blue);
}

@media (max-width: 996px) {
  .header-desktop {
    display: none;
  }

  .header-mobile {
    display: flex;
    flex-direction: column;
  }

  .header-mobile .first-line {
    background-color: var(--deep_blue);
    padding: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2vw;
    color: white;
  }

  .header-mobile .first-line i {
    font-size: 4vw;
  }

  .header-mobile .first-line .phone-ctn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
  }

  .header-mobile .first-line .address-ctn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
  }

  .header-mobile .first-line a {
    color: white;
  }

  .header-mobile .second-line {
    padding: 4vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .header-mobile .second-line .logo-ctn img {
    width: 40vw;
  }

  .header-mobile .second-line .menu {
    position: fixed;
    top: 0;
    transform: translateX(150%);
    z-index: 99;
    width: 70vw;
    right: 0;
    height: 100vh;
    background-color: white;
    padding: 10vw 4vw;
    display: flex;
    transition: all 0.4s ease;
    align-items: center;
    flex-direction: column;
    gap: 4vh;
  }

  .header-mobile .second-line .menu .close {
    align-self: flex-end;
  }

  .header-mobile .second-line .menu .close i {
    color: var(--soft_blue);
  }

  .header-mobile .second-line .menu .menu-items {
    display: flex;
    flex-direction: column;
    gap: 5vw;
    align-items: center;
  }

  .header-mobile .second-line .menu .menu-items .services-list {
    z-index: 99;
    width: 50vw;
  }

  
  .header-mobile .second-line .menu .menu-items .team-list {
    z-index: 99;
    width: 50vw;
  }

  .menu ul li ul {
    left: -50%;
  }


  .menu .team-header .team-list .dr_li{
    width: 53vw;

  }

  .menu ul li ul li {
    width: 100%;
    padding: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header-mobile .second-line .menu .menu-items ul {
    list-style: none;
    width: 100%;
  }

  .header-mobile .second-line .menu .menu-items a {
    color: var(--soft_blue);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
  }

  .header-mobile .second-line .menu .menu-items i {
   font-size: 4vw;
  }

  .header-mobile .second-line .menu .button-ctn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3vw;
  }

  .header-mobile .second-line .menu .button-ctn .contact-btn {
    background-color: var(--soft_blue);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    width: 40vw;
    border-radius: 1.5vw;
    padding: 1vw 2vw;
    border: 2px solid var(--soft_blue);
  }

  .header-mobile .second-line .menu .button-ctn .contact-btn:hover {
    background-color: white;
    transform: translateY(-0.2vw);
    color: var(--soft_blue);
  }

  .header-mobile .second-line .menu .phone-btn {
    background-color: var(--deep_blue);
    color: white;
    display: flex;
    gap: 0.5vw;
    width: 40vw;
    border: 2px solid var(--deep_blue);
    border-radius: 1.5vw;
    padding: 1vw 2vw;
    justify-content: center;
    align-items: center;
  }

  .header-mobile .second-line .menu .phone-btn:hover {
    background-color: white;
    transform: translateY(-0.2vw);
    color: var(--deep_blue);
  }

  .header-mobile .menu-icon {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    top: 10vw;
    right: 5vw;
    position: absolute;
    align-items: flex-end;
  }

  .header-mobile .menu-icon hr:nth-child(2) {
    width: 5vw;
  }

  .header-mobile .menu-icon hr {
    background-color: var(--soft_blue);
    width: 7vw;
    height: 0.5vh;
  }

  .header-mobile .blur-ctn {
    position: absolute;
    top: 0;
    z-index: 50;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(0.6vw);
    background-color: #00000080;
  }
}

/** Footer **/
footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-desktop {
  display: flex;
  background-color: var(--deep_blue);
  gap: 2vw;
  justify-content: center;
  align-items: center;
  padding: 3vw 3vw 1vw 3vw;
  flex-direction: column;
}

.footer-desktop .footer-ctn {
  display: grid;
  width: 100%;
  grid-template-columns: 25% 23% 15% 21% 16%;
}

.footer-desktop .footer-ctn .logo-ctn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1vw;
}

.footer-desktop .footer-ctn .icon-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
}

.footer-desktop .footer-ctn .icon-social a {
 transition: none;
}

.footer-desktop .footer-ctn .icon-social a:hover {
  color: var(--soft_blue);
  transform: scale(1.1);
}

.footer-desktop .footer-ctn .logo-ctn img {
  width: 15vw;
}

.footer-desktop .footer-ctn .logo-ctn a {
  color: white;
}

.footer-desktop .footer-ctn .contact-ctn {
  display: flex;
  gap: 1vw;
  flex-direction: column;
  align-items: start;
}

.footer-desktop .footer-ctn .contact-ctn h2 {
  color: white;
  font-size: 1.5vw;
}

.footer-desktop .footer-ctn .contact-ctn a {
  color: white;
}

.footer-desktop .footer-ctn .contact-ctn a:hover {
  color: var(--soft_blue);
}

.footer-desktop .footer-ctn .contact-ctn p {
  color: white;
  font-weight: 400;
}

.footer-desktop .footer-ctn .services-ctn {
  display: flex;
  gap: 1vw;
  flex-direction: column;
  align-items: start;
}

.footer-desktop .footer-ctn .services-ctn h2 {
  color: white;
  font-size: 1.5vw;
}

.footer-desktop .footer-ctn .services-ctn a {
  color: white;
}

.footer-desktop .footer-ctn .services-ctn a:hover {
  color: var(--soft_blue);
}

.footer-desktop .footer-ctn .bussiness-ctn {
  display: flex;
  gap: 1vw;
  flex-direction: column;
  align-items: start;
}

.footer-desktop .footer-ctn .bussiness-ctn h2 {
  color: white;
  font-size: 1.5vw;
}

.footer-desktop .footer-ctn .bussiness-ctn p {
  color: white;
  font-weight: 500;
}

.footer-desktop .footer-ctn .links-ctn {
  display: flex;
  gap: 1vw;
  flex-direction: column;
  align-items: start;
}

.footer-desktop .footer-ctn .links-ctn H2 {
  color: white;
  font-size: 1.5vw;
}

.footer-desktop .footer-ctn .links-ctn a {
  color: white;
}

.footer-desktop .footer-ctn .links-ctn a:hover {
  color: var(--soft_blue);
}

.footer-desktop .terms-privacy {
  display: flex;
  gap: 1vw;
}

.footer-desktop .important-ctn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-desktop .important-ctn p {
  color: white;
  width: 70%;
  text-align: center;
  font-weight: normal;
}

.footer-desktop .important-ctn span {
  font-weight: 600;
}


.footer-desktop .terms-privacy a {
  color: white;
  font-size: 0.9vw;
}

.footer-desktop .terms-privacy a:hover {
  color: var(--soft_blue);
}

footer .copyrights {
  display: flex;
  padding: 1vw;
  gap: 1vw;
}

footer .copyrights p {
  color: var(--deep_blue);
}

footer .copyrights a {
  font-weight: 600;
  color: var(--deep_blue);
  font-size: 0.9vw;
}

footer .copyrights a:hover {
  color: var(--soft_blue);
}

footer .copyrights a:hover {
  color: var(--soft_blue);
}

@media (max-width: 996px) {
  footer {
    align-items: normal;
  }

  .footer-desktop .footer-ctn .logo-ctn {
    gap: 5vw;
  }

  .footer-desktop .footer-ctn .logo-ctn img {
    width: 40vw;
  }

  .footer-desktop .footer-ctn .icon-social {
    font-size: 3vw;
    gap: 4vw;
  }

  .footer-desktop .footer-ctn {
    gap: 3vh;
    width: 100%;
    padding: 5%;
    justify-items: center;
    grid-template-columns: 100%;
  }

  .footer-desktop .footer-ctn .contact-ctn {
    align-items: center;
    text-align: center;
    gap: 3vw;
  }

  .footer-desktop .footer-ctn .contact-ctn h2{
    font-size: 7vw;
  }

  .footer-desktop .footer-ctn .services-ctn {
    align-items: center;
    gap: 3vw;
    text-align: center;
  }

  .footer-desktop .footer-ctn .services-ctn h2{
    font-size: 7vw;
  }

  .footer-desktop .footer-ctn .bussiness-ctn {
    text-align: center;
    align-items: center;
    gap: 3vw;
  }

  .footer-desktop .footer-ctn .bussiness-ctn h2{
    font-size: 7vw;
  }

  .footer-desktop .footer-ctn .links-ctn {
    align-items: center;
    gap: 3vw;
  }

  .footer-desktop .footer-ctn .links-ctn H2{
    font-size: 7vw;
  }

  .footer-desktop .important-ctn p {
    width: 80%;
  }

  .footer-desktop .terms-privacy {
    padding: 0 0 5% 0;
  }

  .footer-desktop .terms-privacy a {
    font-size: 2.5vw;
  }

  footer .copyrights {
    align-self: center;
    align-items: center;
  }

  footer .copyrights a {
    font-size: 2.5vw;
  }
}
