/*---------------------Fonts-----------------*/

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*---------------------Fonts-----------------*/

/*---------------------Roots-----------------*/

:root {
  ---red: #e9413a;
  ---white: #ffffff;
  ---grey: #4a4a4a;
  ---black: #134ba1;
  --lightgrey: #858585;
  ---border: #eeeeee;
  ---yellow: #ffe127;
}

/*---------------------Roots-----------------*/

/*---------------------Bodys----------------*/
* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  text-decoration: none;
  /* text-transform: uppercase; */
  box-sizing: border-box;
  /* font-family: "Barlow", sans-serif; */
  font-family: 'Georgia';
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 0px;
  background-image: url(img/color.jpg) !important;
  z-index: -2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

section {
  padding: 20px 130px;
}

h4 {
  text-transform: uppercase;
}

.custom-bg {
  background-image: url(img/color.jpg) !important;
  background-size: cover;
  background-position: center;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(---lightblue);
}

::-webkit-scrollbar-thumb {
  background-color: var(---grey);
}

::-webkit-scrollbar-thumb:hover {
  background: var(---red);
  border-radius: 100px;
}

/*---------------------Body----------------*/

/*Arrow*/
.uppericon {
  position: fixed;
  right: 2%;
  bottom: 2%;
  color: var(---white);
  display: none;
  transition: 0.5s all linear;
  z-index: 7;
}

/*Arrow*/

/*Animation*/

.loading-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: var(---white);
  flex-direction: column;
  animation: fadeOut 1s ease forwards;
  animation-delay: 3s;
  position: fixed;
  width: 100%;
  z-index: 10000;
}

.logo {
  height: 80px;
  width: auto;
  /* width: 300px;
  height: 130px; */
  /* animation: logoPop 1.5s ease-in-out infinite alternate; */
}

.loading-text {
  margin-top: 20px;
  font-size: 18px;
  color: var(---red);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.loader-line {
  width: 300px;
  height: 20px;
  background-color: #e0e0e0;
  border-radius: 100px;
  overflow: hidden;
  margin-top: 20px;
}

.loader-line-fill {
  height: 100%;
  width: 0;
  background-color: var(---red);
  animation: loadBar 3s linear forwards;
}

@keyframes logoPop {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes loadBar {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}


/*Whatsapp*/
.whatsappbox a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsappbox {
  width: 80px;
  height: 80px;
  background-color: var(---white);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.178);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 30px;
  left: 30px;
  cursor: pointer;
  z-index: 6;
}

.whatsappbox:hover {
  transform: scale(1.1, 1.1);
  transition: 0.2s all linear;
}

.whatsappbox img {
  width: 50%;
}

/*Whatsapp*/


/*Icone*/
.right-top-header {
  display: block;
  background: var(---red);
  box-shadow: -10px 0px 20px rgba(0, 0, 0, 0.103);
  position: fixed;
  border-radius: 10px 0px 0px 10px;
  right: 0px;
  padding: 9px 20px;
  z-index: 6;
  bottom: 360px;
}

.right-top-header i {
  width: 33px;
  height: 33px;
  border-radius: 100px;
  background-color: var(---white);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.151);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(---black);
  margin: 10px 0px;
}

.right-top-header i:hover {
  color: var(---yellow);
}

/*Icone*/









@media (max-width:550px) {
  .logo {
    width: 150px;
    height: 60px;
    animation: logoPop 1.5s ease-in-out infinite alternate;
  }

}

@media (max-width:430px) {

  .loading img {
    width: 20%;
  }

  .uppericon img {
    width: 70%;
  }

  .whatsappbox {
    width: 60px;
    height: 60px;
    background-color: var(---white);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.178);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 10px;
    left: 10px;
    cursor: pointer;
    z-index: 6;
  }

  .right-top-header {
    right: 0px;
    padding: 3px 8px;
    z-index: 6;
    bottom: 360px;
  }

  .right-top-header i {
    width: 20px;
    height: 20px;
    border-radius: 100px;
    background-color: var(---white);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.151);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(---black);
    margin: 10px 0px;
  }
}