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

body {
    font-family: sans-serif;
    max-width: 100%;
}


h1 {
    text-align: center;
    margin-bottom: 15px;
}

h2 {
    margin-bottom: 15px;
    text-align: center;
}

h3 {
    margin-bottom: 15px;
    text-align: center;
}

/******************HEADER*******************/

.header {
    display: flex;
    justify-content: space-between;
    margin: auto;
    align-items: center;
    padding: 5px;
}

.logo{ 
    margin-left: 350px;
    margin-right: 30px;
}

.links{
    margin-right: 300px;
}

.links img{
    width: 40px;
    height: 25px;
    margin-left: 70px;
    margin-top: 17px;
}

.header .logo img {
    max-width: 350px;
    
}

.links ul {
    display: flex;
    list-style: none;
    font-size: 23px;
    justify-content: space-around;
    z-index: 9;
    margin-top: 25px;
}

.links ul li a {
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
    color: #B24E23;
    position: relative;
    font-weight: bold;
    white-space: nowrap;
}

.links ul li a:hover{
  color:#764926;
}

.header button {
  display: none;
  padding: 10px 20px;
  font-size: 22px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  background-color: #B24E23;
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px #999;
}

.header button:hover {background-color: #B24E23}

.header button:active {
  background-color: #5B3B22;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropbtn:hover{
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 230px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    display: block;
    font-size: 16px;
    
}
.drop-item{
    color: red;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/*********************BACKGROUND IMAGE*******************/
.background-home{
  background-image: url("../images/background-home.jpg");
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 370px;
  width: 100%;
  margin-top: 0px;
}

.background-firmware{
  background-image: url("../images/background-electronics.jpg");
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 370px;
  width: 100%;
  margin-top: 0px;
}
.background-electronics{
  background-image: url("../images/background-electronics.jpg");
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 370px;
  width: 100%;
  margin-top: 0px;
}
.background-about{
  background-image: url("../images/background-about.jpg");
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 370px;
  width: 100%;
  margin-top: 0px;
}
.background-whyus{
  background-image: url("../images/background-whyus.jpg");
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 370px;
  width: 100%;
  margin-top: 0px;
}
.background-contact{
  background-image: url("../images/background-contact.jpg");
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 370px;
  width: 100%;
  margin-top: 0px;
}
.background-privacy{
  background-image: url("../images/background-privacy.jpg");
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 370px;
  width: 100%;
  margin-top: 0px;
}
.background-text{
  position: absolute;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  color: whitesmoke;
  text-align: center;
  font-size: 45px;
  font-weight: bold;
}
.background-text-home{
  position: absolute;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  color: whitesmoke;
  text-align: center;
  font-size: 45px;
  font-weight: bold;
  width: 800px;
}

.container-services {
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
  padding-bottom: 10px;
}

.column {
  flex: 1;
  padding: 10px;
  box-sizing: border-box;
  text-align: center; 
  padding-bottom: 20px;
}

.column img {
  display: block; 
  margin: 0 auto; 
  height: 120px;
  width: 120px;
}

.column h2 {
  margin-top: 10px; 
  font-weight: bold;
  color: #B24E23;
  font-size: 32px;
}

.column p {
  margin-top: 5px; 
  margin-bottom: 20px;
  color: #7C7C7C;
  font-size: 16px;

}
.column a{
    color: #B24E23;
}

.column a:hover{
    font-size: 110%;
    color: #B24E23;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

/*************ABOUT**************/

.about-body{
    padding-bottom: 20px;
}
.heading{
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}
.heading h1{
    font-size: 40px;
    color: #B24E23;
    margin-bottom: 25px;
    position: relative;
}


.heading p {
    font-size: 18px;
    color: #666;
}

.container-about{
    width: 85%;
    margin: 0 auto;
    padding: 10px 20px;
}
.about{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.about-image{
    flex: 1;
    margin-left: 15px;
    margin-right: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.about-image img{
    max-width: 100%;
    height: auto;
    display: block;
    transition: 0.5 ease;
}

.about-image:hover img{
    transform: scale(1.2);
}
.about-content{
    flex: 1;
    display: flex; /* Dodato */
    flex-direction: column; /* Dodato */
    align-items: center; /* Dodato */
    justify-content: center; /* Dodato */
    padding: 10px 20px;
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
}
.about-content ul{
    list-style: none;
}
.about-content h2{
    font-size: 26px;
    color: #B24E23;
}

.about-content p{
    font-size: 18px;
    line-height: 1.5;
    color: #666;
    margin-left: 15px;
    margin-right: 15px;
}

.contact-go{
    margin-top: 35px;
}

/**********SERVICES***********/

.about-body-services{
    padding-bottom: 20px;
}
.heading-services{
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}
.heading-services h1{
    font-size: 40px;
    color: #B24E23;
    margin-bottom: 25px;
    position: relative;
}
.heading-services h2{
    font-size: 34px;
    color: #B24E23;
}


.heading-services p {
    font-size: 18px;
    color: #666;   
}
.heading-services hr {
    background-color: red;
}

.container-about-services{
    width: 70%;
    margin: 0 auto;
    padding: 10px 20px;
}
.about-services{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.about-image-services{
    flex: 1;
    margin-left: 15px;
    margin-right: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.about-image-services img{
    max-width: 100%;
    height: auto;
    display: block;
    transition: 0.5 ease;
}

.about-image-services:hover img{
    transform: scale(1.2);
}
.about-content-services{
    flex: 1;
    display: flex; /* Dodato */
    flex-direction: column; /* Dodato */
    align-items: center; /* Dodato */
    justify-content: center; /* Dodato */
    padding: 10px 20px;
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
}
.about-content-services ul{
    list-style: none;
}
.about-content-services h2{
    font-size: 26px;
    color: #B24E23;
}

.about-content-services p{
    font-size: 18px;
    line-height: 1.5;
    color: #666;
    margin-left: 15px;
    margin-right: 15px;
}

.contact-go-services{
    margin-top: 35px;
}


/**********WHY US***********/

.about-body-whyus{
    padding-bottom: 20px;
}
.heading-whyus{
    width: 70%;
    text-align: center;
    margin: 20px auto;
}
.heading-whyus h1{
    font-size: 40px;
    color: #B24E23;
    position: relative;
}
.heading-whyus p {
    font-size: 18px;
    color: #666;   
}
.container-about-whyus{
    width: 70%;
    margin: 0 auto;
    padding: 10px 20px;
}
.about-whyus{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.about-image-whyus{
    flex: 1;
    margin-left: 15px;
    margin-right: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.about-image-whyus img{
    max-width: 100%;
    height: auto;
    display: block;
    transition: 0.5 ease;
}

.about-image-whyus:hover img{
    transform: scale(1.2);
}
.about-content-whyus{
    flex: 1;
    display: flex; /* Dodato */
    flex-direction: column; /* Dodato */
    align-items: center; /* Dodato */
    justify-content: center; /* Dodato */
    padding: 10px 20px;
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
}
.about-content-whyus ul{
    list-style: none;
}
.about-content-whyus h2{
    font-size: 26px;
    color: #B24E23;
}

.about-content-whyus p{
    font-size: 18px;
    line-height: 1.5;
    color: #666;
    margin-left: 15px;
    margin-right: 15px;
}

.contact-go-whyus{
    margin-top: 35px;
}


/**********CONTACT PAGE***********/

.contact-page{
    padding-top: 25px;
    text-align: center;
    padding-bottom: 70px;
}
.contact-page h2{
    font-weight: bold;
    color: #B24E23;
    font-size: 36px;
   padding-bottom: 50px;
}

.a-contact {
  display: inline-block;
  background-color: #B24E23;
  border-radius: 3px;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  padding: 10px 40px;
  transition: all 0.5s;
  cursor: pointer;
}

.a-contact:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.9);
    color: whitesmoke;
}

.a-contact span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.a-contact span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -50px;
  transition: 0.7s;
}

.a-contact:hover span {
  padding-right: 35px;
}

.a-contact:hover span:after {
  opacity: 1;
  right: 0;
}


/************CONTACT CONTAINER**************/

.container-contact {
  display: grid;
  grid-template-columns: 2.5fr 1fr 2fr;
  max-width: 100%;
  padding-top: 25px;
  margin-right: 50px;
  margin-left: 50px;
}

.column-contact-map {
    text-align: center;
    padding-bottom: 20px;
}

.column-contact-map-i {
    max-width: 100%;
    width: 100%;
    height: 100%;/* Prilagodite širinu mape po potrebi */
    margin: 0 auto; /* Automatski margini levo i desno će centrirati mapu */
}

.column-contact-map iframe {
    width: 100%;
    height: 100%;
}


/*********************************************/

.column-contact-informations{
  text-align: left; 
  padding-bottom: 20px;
  margin-top: 10px;
}

.column-contact-informations ul{
    list-style: none;
    padding-top: 130px;
    padding-left: 30px;
}

.column-contact-informations li{
   padding-bottom: 15px;
}

.column-contact-informations  img {
  margin-right: 8px;
  height: 30px;
  width: 30px;
}

.column-contact-informations  h2 {
  margin-top: 10px; 
  font-weight: bold;
  color: #B24E23;
}

.column-contact-informations  p {
  color: #7C7C7C;
  font-size: 16px;
  white-space: nowrap;
}

/*********************************************/

.custom-container{

}
.custom-container h2 {
  margin-top: 10px; 
  font-weight: bold;
  color: #B24E23;
}

.custom-form-group{
    display: flex;
    margin-bottom: 10px;
}

.form__group {
  position: relative;
  padding: 15px 0 0;
  margin-top: 30px;
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}

.form__field {
  font-family: inherit;
  width: 100%;
  border: 0;
  border-bottom: 2px solid #9b9b9b;
  outline: 0;
  font-size: 1.3rem;
  color: black;
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s;
}
.form__field::placeholder {
  color: transparent;
}
.form__field:placeholder-shown ~ .form__label {
  font-size: 1.3rem;
  cursor: text;
  top: 20px;
}

.form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 1rem;
  color: #9b9b9b;
}

.form__field:focus {
  padding-bottom: 6px;
  border-width: 3px;
  border-image: linear-gradient(to right, #B24E23, lightgoldenrodyellow);
  border-image-slice: 1;
}
.form__field:focus ~ .form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 1rem;
  color: #B24E23;
  font-weight: 700;
}

/************* RESET INPUT ***************/

.form__field:required, .form__field:invalid {
  box-shadow: none;
}


.custom-form-group-second{
    display: block;
    margin-bottom: 20px;
    margin-top: 10px;
}

.form__group-second{
    position: relative;
    padding: 15px 0 0;
    padding-bottom: 10px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
}
.form__group-second textarea{
    margin-top: 8px;
    min-height: 45px;
    max-height: 200px;
    height: 130px;
}

.input-errors{
    font-size: 12px;
    color: red;
}
.custom-form-button{
    text-align: center;
}

.button-submit {
  display: inline-block;
  background-color: #B24E23;
  border-radius: 3px;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 26px;
  padding: 4px;
  width: 110px;
  transition: all 0.5s;
  cursor: pointer;
  
}

.button-submit span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button-submit span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button-submit:hover span {
  padding-right: 25px;
}

.button-submit:hover span:after {
  opacity: 1;
  right: 0;
}
/********PRIVACY POLICY************/

.privacy-policy{
    background-color: #f0f0f0; 
    padding: 20px; 
}
.privacy-policy-container{
    max-width: 1200px; 
    margin: 0 auto;
    padding: 40px; 
    font-family: sans-serif;
}

.privacy-policy-container h1{
    text-align: left;
    padding-bottom: 20px;
    color: #B24E23;
}

.privacy-policy-container h2{
    text-align: left;
    color: #B24E23;
}

.privacy-policy-container li{
    margin-left: 50px;
    padding-bottom: 10px;
    color: #666;
}
.privacy-policy-container p{
    color: #666;
}


/**************FOOTER*****************/

.column-contact-form  a:hover{
    cursor: pointer;
    color: #5E5E5E;
}

.container-footer{
  max-width: 1570px;
  margin:auto;

}
.row-footer{
  display: flex;
  flex-wrap: wrap;
}

.footer ul{
  list-style: none;
}
.footer{
  background-color: #24262b;
  padding-top: 25px;
}
.footer-col{
   width: 33.33%;
   padding: 0 150px;
}
.footer-col h4{
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 23px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before{
  content: '';
  position: absolute;
  left:0;
  bottom: -10px;
  background-color: #B24E23;
  height: 2px;
  box-sizing: border-box;
  width: 100%;
}

.footer-col p{
  font-size: 15px;
  color: #ffffff;
  color: #bbbbbb;
  margin-bottom: 8px;
  white-space: nowrap;
}

.footer-col ul li a{
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
  margin-bottom: 5px;
}
.footer-col ul li a:hover{
  color: #ffffff;
  padding-left: 8px;
}
.footer-col .social-links a{
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255,255,255,0.2);
  margin:0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
  color: #24262b;
  background-color: #ffffff;
}

.container-copyright{
    background-color: #D1D1D1;

}

.copyright{
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
.copyright a{
    color: #3E22CB;
    font-weight: normal;
}
.copyright a:hover{
    color: #212529;
}

.dropdown-footer {
    position: relative;
    display: flex;
}

.dropdown-content-footer {
    display: none;
    position: absolute;
    background-color: #24262b;
    z-index: 1;
    margin-left: 75px;
    margin-top: -10px;
}

.dropdown-content-footer a {
    white-space: nowrap;
    display: block;
    font-size: 16px;
}

.dropdown-footer:hover .dropdown-content-footer {
    display: block;
}


/*****************RESPONSIVE************************/

@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
    padding: 0 15px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
    padding: 0 15px;
}
}


@media screen and (max-width: 770px) {
  .column {
    flex: 0 0 100%; 
  }
}
@media (max-width: 1750px) {
    
    .logo{
        margin-left: 150px;
        transition: all 1s;
    }
    .links{
        margin-right: 200px;
    }
    .container-about{
        width: 90%;
    }
    .container-about-services{
        width: 80%;
    }
    .container-about-whyus{
        width: 80%;
    }
    .heading-whyus{
    width: 80%;   
    }
}

@media (max-width: 1350px) {
    
    .logo{
        margin-left: 30px;
        transition: all 1s;
    }
    .header .logo img {
        max-width: 300px;  
    }
    .links{
        margin-right: 150px;
        transition: all 1s;
    }
    .contact-go{
        margin-top: 35px;
        font-size: 25px;
    }
    
    .links img{
        margin-left: 20px;
    }
}

@media (max-width: 1200px) {
    .footer-col{
        width: 100%;
        padding: 0 150px;
    }
    .links{
        margin-right: 100px;
        transition: all 1s;
    }

}
    

@media (max-width: 1030px) {
    .header button {
        display: block;

    }
    .header ul {
        display: none;
        background-color: whitesmoke;
        position: absolute;
        width: 100%;
        left: 0;
        right: 0;
        top: 119px;
        margin-top: -30px;
        padding-bottom: 10px;
    }
    .links img{
        max-width: 40px;
        max-height: 25px;
        margin-left: 20px;
    }

    .background-home{
        height: 300px;
    }

    .background-firmware{
        height: 300px;
    }
    .background-electronics{
        height: 300px;
    }
    .background-about{
        height: 300px;
    }
    .background-whyus{
        height: 300px;
    }
    .background-contact{
        height: 300px;
    }
    .background-privacy{
        height: 300px;
    }
    .background-text-home{
        font-size: 26px;
        width: 500px;
    }

    .background-text{
        font-size: 26px;
    }
    .container-contact {
        display: block;
    }
    .column-contact-informations ul{
        padding-top: 10px;
        padding-left: 0px;
    }
    .column-contact-informations{
        text-align: left; 
        padding-bottom: 10px;
    }
    .column-contact-map-i{
        max-width: 100%;
        padding-top: 56.25%;
        position: relative;
        width: 100%;
    }

    .column-contact-map iframe{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .heading{
        padding: 0px;
        text-align: left;
        width: 90%;
    }
    .heading h1{
        font-size: 30px;
    }
    .heading p{
        font-size: 17px;
        margin-bottom: 0px;
    }
    .container-about{
        width: 100%;
        margin-top: -30px;
    }
    .about{
        padding: 0px;
        flex-direction: column;
    }
    .about-content{
    padding: 0px;
    }

    .about-image{
        margin-right: 0px;
        margin-left: 0px;
        margin-bottom: 10px;
    }
    .about-content p{
        padding: 0px;
        font-size: 16px;
        margin-left: 0px;
        margin-right: 0px;
    }
    .about-content h2{
        font-size: 22px;
    }
    .about-content ul{
        margin-bottom: 0px;
    }

    .heading-services{
        padding: 0px;
        text-align: left;
        width: 90%;
    }
    .heading-services h1{
        font-size: 30px;
    }
    .heading-services h2{
        padding-top: 5px;
        font-size: 26px;
        margin-bottom: -30px;
    }
    .heading-services p{
        font-size: 17px;
        margin-bottom: 0px;
    }
    .container-about-services{
        width: 100%;
    }
    .about-services{
        padding: 0px;
        flex-direction: column;
    }
    .about-content-services{
    padding: 0px;
    }

    .about-image-services{
        margin-right: 0px;
        margin-left: 0px;
        margin-bottom: 10px;
    }
    .about-content-services p{
        padding: 0px;
        font-size: 16px;
        margin-left: 0px;
        margin-right: 0px;
    }
    .about-content-services h2{
        font-size: 22px;
    }
    .about-content-services ul{
        margin-bottom: 0px;
    }
    .heading-whyus{
        padding: 0px;
        text-align: left;
        width: 90%;
    }
    .heading-whyus h1{
        font-size: 30px;
        margin-bottom: -30px;
    }
    .container-about-whyus{
        width: 100%;
    }
    .about-whyus{
        padding: 0px;
        flex-direction: column;
    }
    .about-content-whyus{
    padding: 0px;
    }

    .about-image-whyus{
        margin-right: 0px;
        margin-left: 0px;
        margin-bottom: 10px;
    }
    .about-content-whyus p{
        padding: 0px;
        font-size: 16px;
        margin-left: 0px;
        margin-right: 0px;
    }
    .about-content-whyus h2{
        font-size: 22px;
    }
    .about-content-whyus ul{
        margin-bottom: 0px;
    }
}

@media (max-width: 600px) {
    .header ul {
        margin-top: -45px;
    }
    .logo{
        margin-left: 10px;
        margin-right: 25px;
    }
    .header button {
        font-size: 17px;
        padding: 7px 17px;
    }
    .header .logo img {
    max-width: 250px;  
    }
    .column h2 {
      font-size: 28px;
    }
    .background-home{
        height: 200px;
    }

    .background-firmware{
        height: 200px;
    }
    .background-electronics{
        height: 200px;
    }
    .background-about{
        height: 200px;
    }
    .background-whyus{
        height: 200px;
    }
    .background-contact{
        height: 200px;
    }
    .background-privacy{
        height: 200px;
    }
    .background-text-home{
        font-size: 22px;
        width: 320px;
    }

    .background-text{
        font-size: 22px;
    }
    .column p{
        width: 80%;
        margin: 0 auto;
    }

    .a-contact {
      font-size: 25px;
      padding: 5px 20px; 
    }
    .contact-go{
        margin-top: 25px;
        font-size: 22px;
    }

    .a-contact:hover span {
      padding-right: 25px;
    }
    .a-contact span:after {
      transition: 0.5s;
    }

    .privacy-policy-container{
        padding: 0px;
    }
    .privacy-policy-container li{
        margin-left: 25px;
    }
    .privacy-policy-container h1{
        text-align: center;
    }
    .privacy-policy-container h2{
        text-align: center;
    }
    .footer-col{
    width: 100%;
    padding: 0 45px;
    transition: all 3s;
    }

    .column-contact-informations{
        text-align: left; 
        padding-bottom: 10px
    }

    .container-contact {
        padding-top: 25px;
        margin-right: 17px;
        margin-left: 15px;
    }
    .copyright{
        font-size: 14px;
    }
}

@media (max-width: 450px) {
    .logo{
        margin-right: 35px;
    }  
}

@media (max-width: 400px) {
    .logo{
        margin-right: 15px;
    }  
}
