* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto';
}

body {
    position: relative;
}

.main {
    display: flex;
    flex-direction: column;
    height: 81vh;
    background: url('./images/background2.jpg');
    background-repeat: no-repeat;
    background-position: center;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.container {
    margin: 0 auto;
    width: 1320px;
}

.logo {
    margin-top: 30px;
    width: 414px;
}

.buttons {
    margin-top: 20px;
}

.btn {
    padding: 10px 25px;
    border: none;
    border-radius: 3px;
    font-weight: 700;
    cursor: pointer;
}

.btn_call {
    background-color: #DF7623;
    margin-right: 5px;
}

.btn_call a {
    color: #ffffff;
    text-decoration: none;
}

.services {
    display: flex;
    flex-direction: column;

    min-height: 300px;
    padding: 40px 0;
    background-color: #FCFCFC;
}

.services_title {
    display: flex;
    justify-content: space-around;
    font-size: 34px;
    font-weight: 900;
}

.services_wrapper {
    display: flex;
    margin-top: 25px;
    gap: 25px;
}

.services_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    width: 300px;
    padding: 20px;
    border-radius: 5px;
}

.services_img {
    height: 60px;
    width: 80px;
}

.vinc {
    width: 70px;
}

.platform {
    width: 100px;
}

.services_text {
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
    
}

.services_subtitle {
    margin-top: 10px;
    text-align: center;
    line-height: 25px;
}


.about {
    min-height: 300px;
    padding: 20px 0;
}

.about_wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.about_text {
    width: 500px;
    line-height: 30px;
}

.more-text {
    font-family: 'Roboto';
    font-size: 20px;
}

.toggle-btn {
    display: inline;
    border: none;
    background-color: rgba(0,0,0,0);
    font-size: 15px;
    color: #0465b6;
    text-decoration: underline;
}

.about_title {
    font-size: 34px;
}

.about_subtitle {
    text-align: justify;
    margin-top: 20px;
    font-size: 20px; 
}

.about_img {
    width: 500px;
    height: 400px;
    border-radius: 10px;
}

.gallery {
    min-height: 300px;
    padding: 20px 0;
}

.gallery_title {
    display: flex;
    justify-content: center;
    font-size: 34px;
    font-weight: 900;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 600px;
  margin: auto;
  margin-top: 20px;
  overflow: hidden;
  background-color: #ffffff;
}

.slider {
  display: flex;
  height: 100%;
}

.slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}


.footer {
    min-height: 200px;
    background-color: #000000;
    padding: 30px 0;
}

.footer_container {
    width: 991px;
    margin: 0 auto;
}

.footer_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_logo {
    width: 150px;
}

.footer_sosial-media {
    display: flex;
    gap: 20px;
}

.footer_address {
    margin-top: 30px;
    color: #ffffff;
    text-align: right;
}

.footer_call {
    text-align: right;
    margin-top: 10px;
    color: #ffffff;
    font-size: 16px;
}

.footer_call a {
    color: #ffffff;
    text-decoration: none;
}

.whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    border-radius: 50px;
    bottom: 50px;
    right: 40px;
    background-color: #23eb00;
    width: 60px;
    height: 60px;
    z-index: 10;
}