/*  RESET browser defaults (Eric Meyer Global Reset)*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* remember to define focus styles! */
:focus {
  outline: 0;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: separate;
  border-spacing: 0;
}
caption,
th,
td {
  text-align: left;
  font-weight: normal;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote,
q {
  quotes: "" "";
}
.clearfloat {
  clear: both;
  height: 0;
  font-size: 1px;
  line-height: 0px;
}

/* END RESET browser defaults */

/* FONTS */

@font-face {
  font-family: "argentum-medium";
  src: url("fonts/argentum-sans/ArgentumSans-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "argentum-light";
  src: url("fonts/argentum-sans/ArgentumSans-Light.ttf") format("truetype");
}

@font-face {
  font-family: "argentum-bold";
  src: url("fonts/argentum-sans/ArgentumSans-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "argentum-medium-italic";
  src: url("fonts/argentum-sans/ArgentumSans-MediumItalic.ttf")
    format("truetype");
}

@font-face {
  font-family: "argentum-light-italic";
  src: url("fonts/argentum-sans/ArgentumSans-LightItalic.ttf")
    format("truetype");
}

@font-face {
  font-family: "argentum-regular";
  src: url("fonts/argentum-sans/ArgentumSans-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "argentum-bold-italic";
  src: url("fonts/argentum-sans/ArgentumSans-BoldItalic.ttf") format("truetype");
}

@font-face {
  font-family: "argentum-black";
  src: url("fonts/argentum-sans/ArgentumSans-Black.ttf") format("truetype");
}

/* GLOBAL */

.centered {
  text-align: center;
}

.underline {
  text-decoration: underline;
}

a {
  text-decoration: none;
}

.whatsapp {
  position: fixed;
  right: 15px;
  top: 90%;
  z-index: 3;
}

/* GLOBAL END */

/* CUSTOM STYLE */
body,
html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-size: 12px;
}

/* POPUP */

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

#popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    z-index: 1000;
	flex-direction:column;
}

#popup .image{
	position: relative;
    height: 250px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}

#popup .image img{
	position: relative;
    height: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
   
#popup .image .close-btn {
    padding: 17px;
    cursor: pointer;
    float: right;
	position: absolute;
    right: 20px;
    top: 20px;
	background:url(../images/close.png);
	background-repeat:no-repeat;
	border:none;
}

#popup .content{
	position: relative;
	padding: 20px;
    text-align: center;
	color:#011E3A;
	display:flex;
	flex-direction:column;
	gap:10px;
	background-color:#FFD000;
	border-bottom-left-radius:20px;
	border-bottom-right-radius:20px;
}

#popup .content .discount{
	font-family: argentum-black;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;
	font-size:32px;
}

#popup .content .discount .percentage{
	font-size:80px;
}

#popup .content .next-service{
	font-family:argentum-bold;
	font-size:35px;
}

#popup .content .exclude{
	font-family:argentum-light-italic;
	font-size:20px;
}

#popup .content .call{
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 21px;
    font-size: 20px;
    padding: 15px 22px 15px 15px;
    color: #002549;
    transition: 0.3s all;
    font-family: argentum-bold;
	border: 3px solid #002549;
    width: 310px;
    position: relative;
    left: calc((100% - 310px) / 2);
}

#popup .content .call:hover{
	
}

#popup .content .message{
	border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 21px;
    font-size: 20px;
    padding: 15px 22px 15px 15px;
    color: #FFD000;
    transition: 0.3s all;
    font-family: argentum-bold;
	border: 3px solid #002549;
    width: 310px;
    position: relative;
    left: calc((100% - 310px) / 2);
	background-color:#002549;	
}

@media (max-width:760px){
	#popup .content .discount {
        font-size: 24px;
    }
	
	#popup .content .discount .percentage {
        font-size: 60px;
    }
	
	#popup .content .next-service {
        font-size: 22px;
    }
	
	#popup .content .call {
        font-size: 20px;
        padding: 10px;
        width: 280px;
        position: relative;
        left: calc((100% - 280px) / 2);
    }
	
	#popup .content .message {
        font-size: 17px;
        padding: 10px;
        width: 280px;
        left: calc((100% - 280px) / 2);
    }
	
	#popup {
        width: 385px;
    }
	
	#popup .image {
        height: 193px;
    }
}


@media (max-width:440px){
	#popup .content .discount {
        font-size: 19px;
    }
	
	#popup .content .discount .percentage {
        font-size: 50px;
    }
	
	#popup .content .next-service {
        font-size: 22px;
    }
	
	#popup .content .exclude {
        font-size: 17px;
    }
	
	#popup .content .call {
        font-size: 20px;
        padding: 10px;
        width: 250px;
        position: relative;
        left: calc((100% - 250px) / 2);
    }
	
	#popup .content .message {
        font-size: 16px;
        padding: 10px;
        width: 250px;
        left: calc((100% - 250px) / 2);
		gap:11px;
    }
	
	#popup {
        width: 300px;
    }
	
	#popup .image {
        height: 151px;
    }
}

/* BANNER */

#banner {
  background-image: linear-gradient(rgba(0, 37, 73, 0.4), rgba(0, 37, 73, 0.4)),
  url("../images/banner.png"); 
  background-size: cover;
  background-position: center;
  height: 778px;
}

#banner .header {
  width: 90%;
  margin-left: 5%;
  padding-top: 85px;
  display: flex;
  align-items: center;
  position: relative;
}

#banner .header #logo {
}

#banner .header #vulco {
  position: absolute;
  right: 0;
}

#banner .header #facebook {
  right: 0;
  position: absolute;
  top: 35px;
}

#banner .content {
  width: 90%;
  display: flex;
  position: relative;
  align-items: center;
  margin-left: 5%;
  margin-top: 4%;
}

#banner .content .text {
  width: 31%;
  display: flex;
  font-size: 39px;
  align-items: baseline;
  position: relative;
  flex-direction: column;
  color: white;
  gap: 65px;
  margin-top: 0%;
  font-family: argentum-regular;
}

#banner .content .text .buttons{
    display: flex;
    flex-direction: column;
    gap: 65px;
}

#banner .content .text a {
  background-color: #ffd000;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 21px;
  font-size: 28px;
  padding: 15px 22px 15px 15px;
  color: #002549;
  transition: 0.3s all;
  font-family:argentum-bold;
}

#banner .content .text .direction{
	background-color:transparent;
	color:white;
	font-family:argentum-medium;
	font-size:23px;
	padding:0;
	gap:5px;
	
}

#banner .content .text .direction:hover{
	background-color:transparent;
	color:white;
}

#banner .content .text a:hover {
  background-color: white;
  color: #002549;
}

#banner .content .form {
  background-color: #002549;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 570px;
  width: 525px;
  gap: 32px;
  z-index: 1;
  position: absolute;
  right: 0;
  top: 0;
}

#banner .content .form .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

#banner .content .form .info .title {
  width: 89%;
  font-size: 23px;
  font-family: argentum-bold-italic;
  color: #ffd000;
}

#banner .content .form .info p {
  color: white;
  width: 75%;
  text-align: center;
  font-size: 19px;
  font-family: argentum-bold;
}

#banner .content .form form {
  display: flex;
  flex-direction: column;
  width: 75%;
  gap: 10px;
}

#banner .content .form form .data {
  border: none;
  border-radius: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: argentum-regular;
}

#banner .content .form form .message-data {
  border: none;
  border-radius: 25px;
  padding-top: 10px;
  padding-bottom: 100px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: argentum-regular;
}

#banner .content .form form .submit_form {
  background-color: transparent;
  border: 2px solid white;
  border-radius: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: white;
  font-family: argentum-regular;
  width: 40%;
  margin-left: 30%;
}

#banner .content .form form .submit_form:hover {
  background-color: white;
  border: 2px solid white;
  border-radius: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #002549;
  cursor: pointer;
  transition: 0.3s;
}

@media (max-width: 1140px) {
  #banner {
    background-image: linear-gradient(
        rgba(0, 37, 73, 0.4),
        rgba(0, 37, 73, 0.4)
      ),
      url(../images/banner-tablet.png);
  }

  #banner .content {
    flex-direction: column;
    margin-top: 5%;
  }

  #banner .content .form {
    height: 560px;
    width: 300px;
    position: absolute;
    top: 360px;
  }

  #banner .content .text {
    width: 100%;
    display: flex;
    font-size: 32px;
    text-align: center;
    align-items: center;
  }
  
  #banner .content .text .buttons{
	flex-direction:row;
  }

  #banner .content .form .info p {
    width: 91%;
    font-size: 19px;
  }
}

@media (max-width: 760px) {
  #banner .header {
    flex-direction: column;
	gap: 15px;
  }

  #banner .header #vulco {
    position: unset;
  }

  #banner .content .text {
    width: 80%;
    display: flex;
    font-size: 32px;
    text-align: center;
	gap:40px;
  }
   
  #banner .content .form{
	top:310px;
  }

  #banner .content .form p {
    color: white;
    width: 78%;
    text-align: center;
    font-size: 17px;
  }
}

@media (max-width: 730px) {
  #banner .content .text {
    width: 80%;
    display: flex;
    font-size: 32px;
    text-align: center;
  }
}

@media (max-width: 550px) {
  #banner {
    background-image: linear-gradient(
        rgba(0, 37, 73, 0.4),
        rgba(0, 37, 73, 0.4)
      ),
      url(../images/banner-phone.png);
    height: 1160px;
  }

  #banner .header #logo {
    width: 90%;
  }

  #banner .header #vulco {
    width: 40%;
  }

  #banner .header #facebook {
    position: absolute;
    top: 35px;
    margin-left: 81%;
    right: unset;
  }

  #banner .content {
    flex-direction: column;
  }

  #banner .content .form {
    right: unset;
  }

  #banner .content .text {
    font-size: 5vw;
  }

  #banner .content .form form {
    display: flex;
    flex-direction: column;
    width: 85%;
    gap: 10px;
  }

  #banner .content .text a {
    gap: 8px;
    font-size: 4vw;
    padding: 3vw;
  }
  
  #banner .content .text .buttons {
    flex-direction: column;
	gap:28px;
  }
  
  #banner .content .text .direction {
    font-size: 17px;
  }

  #banner .content .text a img {
    width: 12%;
  }
}

/* SERVICES */

#services {
}

#services .container {
  width: 100%;
  background-color: #ffffff;
  position: relative;
  z-index: -1;
}

#services .container .content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  gap: 100px;
}

#services .container .content .service {
  gap: 30px;
  display: flex;
  flex-direction: column;
  padding-top: 70px;
  padding-bottom: 70px;
  justify-content: center;
  align-items: center;
}

#services .container .content .service img {
  height: 60px;
}

#services .container .content .divider {
  width: 3px;
  background-color: #ffd000;
  height: 248px;
  position: relative;
  top: 83px;
}

#services .container .content .service .title {
  color: #002549;
  position: relative;
  text-align: center;
  font-size: 17px;
  font-family: argentum-bold;
  font-size: 20px;
}

#services .container .content .service .gear-container {
  display: flex;
  gap: 40px;
}

#services .container .content .service .description {
  color: #002549;
  position: relative;
  text-align: left;
  font-family: argentum-medium;
  font-size: 12px;
  line-height:1.6;
}

@media (max-width: 1350px) {
  #services .container .content {
    gap: 35px;
  }
}

@media (max-width: 1140px) {
  #services {
    display: none;
  }
}

@media (max-width: 550px) {
  #services {
    display: flex;
  }

  #services .container .content {
    width: 80%;
    margin-left: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: unset;
    flex-direction: column;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  #services .container .content .service {
    gap: 30px;
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
    width: 100%;
    padding-top: 40px;
  }

  #services .container .content .divider {
    display: none;
  }

  #services .container .content .service .gear-container {
    display: flex;
    gap: unset;
    flex-direction: column;
  }

  #services .container .content .service .description {
    text-align: center;
  }
}

/* SERVICES-TABLET */

#services-tablet {
  display: none;
}

#services-tablet .container {
  width: 100%;
  background-color: #ffffff;
  position: relative;
  z-index: 0;
}

#services-tablet .container .content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow-x: hidden;
}

#services-tablet
  .container
  .content
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .service {
  gap: 30px;
  display: flex;
  flex-direction: column;
  padding-top: 95px;
  padding-bottom: 150px;
}

#services-tablet
  .container
  .content
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .service
  img {
  width: 60px;
}

#services-tablet .container .content .swiper-container {
  width: 100%;
  position: relative;
}

#services-tablet .container .content .divider {
  width: 3px;
  background-color: #e51b22;
  height: 150px;
  position: relative;
  top: 19px;
}

#services-tablet
  .container
  .content
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .service
  .title {
  color: #002549;
  position: relative;
  text-align: center;
  font-size: 17px;
  font-family: argentum-bold;
}

#services-tablet
  .container
  .content
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .service
  .description {
  color: #002549;
  position: relative;
  text-align: left;
  font-family: argentum-medium;
  line-height:1.6;
}

#services-tablet
  .container
  .content
  .swiper-container
  .swiper-pagination-bullet {
  opacity: 1; 
  background: #002549;
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 12px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 12px)
  );
}

#services-tablet
  .container
  .content
  .swiper-container
  .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  background-color: #ffffff; 
  width: 12px; 
  height: 12px;
  position: relative;
  border: 2px solid #002549;
}

#services-tablet
  .container
  .content
  .swiper-container.swiper-pagination-bullet-active {
  background-color: red; /* Replace with the actual color for active bullet */
}

#service-bullets {
  bottom: 60px !important;
  left: 0 !important;
  width: 100% !important;
  position: absolute;
}

@media (max-width: 1140px) {
  #services-tablet {
    display: flex;
  }

  #services-tablet
    .container
    .content
    .swiper-container
    .swiper-wrapper
    .swiper-slide
    .service {
    gap: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 550px) {
  #services-tablet {
    display: none;
  }

  #services-tablet
    .container
    .content
    .swiper-container
    .swiper-wrapper
    .swiper-slide
    .service
    .description {
    text-align: center;
  }
}

/* CARS */

#cars {
}

#cars .container {
  width: 100%;
  background-color: #ffd000;
  position: relative;
  z-index: -1;
}

#cars .container .content {
  width: 80%;
  margin-left: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
  padding-top: 55px;
  padding-bottom: 35px;
  gap: 35px;
  font-family: argentum-bold;
  color: #002549;
  font-size: 20px;
}

#cars .container .content .title {
}

#cars .container .content .types-container {
  display: flex;
  gap: 200px;
}

#cars .container .content .types-container .type {
  gap: 30px;
  display: flex;
  flex-direction: column;
}

#cars .container .content .types-container .type .description {
  text-align: center;
}

@media (max-width: 1140px) {
  #cars {
    display: none;
  }
}

@media (max-width: 550px) {
  #cars {
    display: flex;
  }

  #cars .container .content {
    width: 80%;
    margin-left: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: unset;
    flex-direction: column;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  #cars .container .content .types-container {
    display: flex;
    gap: unset;
    flex-direction: column;
  }

  #cars .container .content .types-container .type {
    gap: 30px;
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
    width: 100%;
    padding-top: 40px;
  }
}

/* CARS-TABLET */

#cars-tablet {
  display: none;
}

#cars-tablet .container {
  width: 100%;
  background-color: #ffd000;
  position: relative;
  z-index: 0;
}

#cars-tablet .container .content {
  width: 25%;
  margin-left: 12%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow-x: hidden;
  flex-direction: column;
  padding-top: 50px;
  padding-bottom: 90px;
  gap: 50px;
}

#cars-tablet .container .content .title {
  color: #002549;
  position: relative;
  text-align: center;
  font-family: argentum-bold;
  font-size: 16px;
}

#cars-tablet
  .container
  .content
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .type {
  gap: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#cars-tablet .container .content .swiper-container {
  width: 100%;
  position: relative;
}

#cars-tablet
  .container
  .content
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .type
  .description {
  color: #002549;
  position: relative;
  text-align: center;
  font-family: argentum-bold;
  font-size: 16px;
}

#cars-tablet
  .container
  .content
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .type
  img {
  width: 130px;
}

#cars-tablet .container .content .swiper-container .swiper-pagination-bullet {
  opacity: 1; /* Full opacity */
  background: #002549;
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 12px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 12px)
  );
}

#cars-tablet
  .container
  .content
  .swiper-container
  .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  background-color: white; /* Outer circle color */
  width: 12px; /* Outer circle size */
  height: 12px;
  position: relative;
}

#cars-tablet
  .container
  .content
  .swiper-container.swiper-pagination-bullet-active {
  background-color: red; /* Replace with the actual color for active bullet */
}

#car-bullets {
  bottom: -50px !important;
  left: 0 !important;
  width: 100% !important;
  position: absolute;
}

@media (max-width: 1140px) {
  #cars-tablet {
    display: flex;
  }
}

@media (max-width: 550px) {
  #cars-tablet {
    display: none;
  }
}

/* STATISTICS */

#statistics{
	display: flex;
    width: 100%;
    background: #002549;
    padding-top: 70px;
    padding-bottom: 70px;
    justify-content: center;
    gap: 160px;
    text-align: center;
}

#statistics .indicator{
	font-family:argentum-bold;
}

#statistics .indicator .indicator-number{
	color: #FFD000;
	font-size:70px;
}

#statistics .indicator .indicator-name{
	color:white;
	font-size:20px;
}

@media (max-width:1100px){
	#statistics{
		flex-direction: column;
	}
}

/* FEEDBACK */

#feedback {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  flex-direction: column;
  gap:50px;
}

#feedback .main-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-family: argentum-bold;
  color: #002549;
}

#feedback .swiper-feedback {
  width: 80%;
  height: 300px;
}

#feedback .swipper-wrapper {
  align-items: center;
}

#feedback .swiper-slide {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#feedback .card {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 6px 6px 6px #00000029;
  border: 1px solid #002549;
  border-radius: 38px;
  flex-direction: column;
}

#feedback .card-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-left: 35px;
  gap: 20px;
  width: 85%;
  color: #002549;
  padding-top:40px;
}

#feedback .stars {
  display: flex;
  gap: 5px;
}

#feedback .star-image {
  height: 100%;
}

#feedback .title {
  font-size: 25px;
  font-family: argentum-bold;
}

#feedback .text {
  font-family: argentum-light;
  font-size: 12px;
  line-height: 1.5;
}

#feedback .identification {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height:40px;
}

#feedback .name-country {
}

#feedback .name {
  font-family: argentum-bold;
}

#feedback .country {
  font-family: argentum-light;
}

#feedback .swiper-pagination {
  --swiper-theme-color: #FFD000;
   position: relative;
   top: 50px;
}

.swiper-pagination-bullet {
  width: 15px !important;
  height: 15px !important;
  background: #007bff;
}


@media (max-width: 525px) {
  #feedback {
    padding-top: 50px;
	justify-content:unset;
  }
  
  #feedback .swiper-feedback {
    width: 82%;

  }
  
  #feedback .card-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 7.5%;
    gap: 20px;
    width: 85%;
	padding-top: 20px;
  }
}

@media (max-width: 470px) {
  #feedback .title {
  font-size: 19px;
  font-family: argentum-bold;
  }

  #feedback .text {
  font-family: argentum-light;
  font-size: 11px;
  line-height: 1.5;
  }
}

@media (max-width: 1500px) {
  #feedback .main-title {
    font-size: 45px;
  }
}

/* FOOTER*/

#footer {
}

#footer .contacts {
  background: #002549;
  width: 100%;
  display: flex;
  align-items: center;
}

#footer .contacts .content {
  width: 80%;
  margin-left: 10%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: white;
  height: max-content;
  padding-top: 100px;
  padding-bottom: 100px;
  gap:5%;
}

#footer .contacts .content .map {
	width:50%;
	height:500px;
}

#footer .contacts .content .text { 
	display: flex;
    flex-direction: column;
    width: 40%;
	gap:50px;
}

#footer .contacts .content .contact {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  gap: 20px;
  text-align: left;
}


#footer .contacts .content .contact p {
  width: 85%;
  font-family: argentum-medium;
  line-height: 1.6;
  font-size: 14px;
  color:white;
}

#footer .contacts .content .contact img {
}

#footer .copyright {
  height: 50px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 55px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #002549;
}

@media (max-width: 1200px) {
  #footer .contacts .content .contact .ipad-item3 {
    display: block;
  }

  #footer .contacts .content .contact {
    width: 25%;
  }

  #footer .contacts .content .contact-divider {
    display: none;
  }

  #footer .contacts {
    height: unset;
	padding-top: 65px;
    padding-bottom: 65px;
  }

  #footer .contacts .content {
    width: 65%;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    margin-left: 0;
    gap: 45px;
	margin-left: 17.5%;
	padding-top: 20px;
    padding-bottom: 20px;
  }
  
  #footer .contacts .content .map {
    width: 100%;
    height: 500px;
  }
  
  #footer .contacts .content .text {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 50px;
  }

  #footer .contacts .content .contact {
    width: 100%;
  }

  .footer-divider {
    display: none;
  }

  #footer .copyright {
    height: 70px;
    gap: 1px;
    flex-direction: column;
  }
}

@media (max-width: 500px) {
	#footer .contacts .content {
    width: 80%;
    margin-left: 10%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    color: white;
    height: max-content;
    gap: 50px;
    }
	#footer .contacts .content .map {
        width: 100%;
        height: 250px;
    }
	#footer .contacts .content .contact {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }
}



















