@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Source Sans Pro', sans-serif;
}

html {
  scroll-behavior: smooth;
}

nav {
  position: relative;
  width: 100%;
  height: 50px;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #6e807acc;
  border-bottom: 1px solid #96969640;
}

nav .contact {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

nav .contact .number {
  margin-right: 20px;
}

nav .contact i {
  color: #079fdb;
  margin-right: 10px;
  border-right: 1px solid #079fdb;
  padding-right: 10px;
}

nav .social_media {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

nav .social_media div {
  position: relative;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  margin-right: 10px;
  padding: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

nav .social_media div:hover {
  background-color: #079fdb;
}

nav .social_media div:hover i {
  color: white;
}

nav .social_media div i {
  cursor: pointer;
  color: #079fdb;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header {
  position: relative;
  width: 100%;
  height: 82px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 45px;
}

header .logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 40%;
}

header .logo img {
  max-width: 50%;
}

header .links {
  position: relative;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header .links .before::before {
  content: '';
  position: absolute;
  bottom: 0;
  background-color: #079fdb;
  height: 3px;
  width: 0;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header .links .before:hover::before {
  width: 10%;
}

header .links .dropdown {
  position: relative;
  color: #495057b3;
  padding: 10px 20px;
  font-size: 20px;
  border-bottom: 3px solid white;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header .links .dropdown:hover {
  border-bottom: 3px solid #079fdb;
}

header .links .dropdown:hover .parts {
  height: 140px;
  border-bottom: 3px solid #079fdb;
}

header .links .dropdown .parts {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: white;
  z-index: 999;
  height: 0;
  overflow: hidden;
  bottom: -3px;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  width: 100%;
  text-align: center;
  left: 0;
  border-bottom: 3px solid white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header .links .dropdown .parts a:hover {
  background-color: #eee;
}

header .links a {
  text-decoration: none;
  color: #495057b3;
  padding: 10px 20px;
  font-size: 20px;
}

header .links .active {
  color: white;
  background-color: #079fdb;
  border-radius: 30px;
  border: 1px solid #079fdb;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header .links .active:hover {
  background-color: white;
  color: #079fdb;
}

header .phone_links {
  display: none;
}

.beginning {
  position: relative;
  width: 100%;
  height: 550px;
  background-image: url("imgs/ref2.jpg");
  background-size: cover;
  background-position: center center;
  background-position-y: 35%;
}

.beginning .bg {
  position: relative;
  height: 100%;
  width: 100%;
  background-color: #343531a1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
}

.beginning .bg h1 {
  font-size: 45px;
  margin-bottom: 30px;
}

.beginning .bg p {
  max-width: 60%;
  text-align: center;
  font-size: 19px;
  margin-bottom: 20px;
}

.beginning .bg button {
  color: white;
  background-color: #079fdb;
  border-radius: 20px;
  outline: none;
  margin-top: 30px;
  font-weight: 700;
  border: none;
  font-size: 16px;
  padding: 15px 25px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.beginning .bg button i {
  margin-left: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.beginning .bg button:hover {
  background-color: #157fa8;
}

.beginning .bg button:hover i {
  margin-left: 30px;
}

.products {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.products .container {
  position: relative;
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.products .container h1 {
  color: #495057;
  font-size: 30px;
  margin: 45px;
}

.products .container .prods {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.products .container .prods .prod {
  position: relative;
  width: 300px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 8px 2px #00000029;
  box-shadow: 0px 0px 8px 2px #00000029;
  overflow: hidden;
  margin-bottom: 50px;
}

.products .container .prods .prod .imgs {
  position: relative;
  height: 200px;
}

.products .container .prods .prod .imgs img:nth-child(1) {
  position: absolute;
  width: 100%;
  height: 100%;
}

.products .container .prods .prod .imgs img:nth-child(2) {
  position: absolute;
  bottom: 0;
  width: 35%;
  max-width: 100px;
  left: 50%;
  padding: 10px;
  border-radius: 100%;
  -webkit-box-shadow: 0px 4px 4px 2px #00000038;
  box-shadow: 0px 4px 4px 2px #00000038;
  background-color: white;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.products .container .prods .prod .list {
  padding: 45px 15px;
  padding-bottom: 25px;
  color: #495057;
  line-height: 1.7;
  font-size: 18px;
  color: #6e807acc;
}

.products .container .prods .prod .list ul {
  padding: 30px;
  padding-bottom: 0;
}

.products .container .prods .prod .list p {
  color: #079fdb;
  font-weight: bold;
  text-align: center;
  margin: 10px;
}

.images {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #eee;
  padding-bottom: 40px;
  overflow: hidden;
}

.images .container {
  position: relative;
  width: 90%;
}

.images .container h1 {
  text-align: center;
  color: #495057;
  margin: 30px;
}

.images .container .imgs {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.images .container .imgs div {
  position: relative;
  width: calc(100% - 30px);
  max-width: 300px;
  margin: 10px;
  height: 250px;
  cursor: pointer;
  overflow: hidden;
}

.images .container .imgs div:hover img {
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  z-index: 3;
}

.images .container .imgs div .zoom {
  position: absolute;
  z-index: 6;
  width: 100%;
  height: 250px;
  top: -10px;
  left: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: white;
  font-size: 26px;
  background-color: #0000007a;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.images .container .imgs div img {
  width: 100%;
  height: 250px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

footer {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 300px;
  background-color: #010233;
  overflow: hidden;
}

footer .logo {
  position: relative;
  width: 20%;
}

footer .logo img {
  width: 100%;
}

footer .info {
  position: relative;
  width: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: white;
}

footer .info > div {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 2;
}

footer .info > div .i {
  position: relative;
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 20px;
}

footer .info > div .i i {
  color: #b9bf24;
}

footer .description {
  position: relative;
  width: 40%;
  text-align: center;
  color: white;
}

footer .social_media {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

footer .social_media div {
  position: relative;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  margin-right: 10px;
  padding: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

footer .social_media div:hover {
  background-color: white;
}

footer .social_media div:hover i {
  color: #010233;
}

footer .social_media div i {
  cursor: pointer;
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.zoomedImage {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: #00000082;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

.zoomedImage .container {
  position: relative;
  width: 65%;
}

.zoomedImage .container img {
  position: relative;
  width: 100%;
  max-height: 550px;
}

.zoomedImage .container i {
  position: absolute;
  right: -30px;
  top: -30px;
  color: white;
  font-size: 19px;
  cursor: pointer;
}

.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.try {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #eee;
  overflow: hidden;
}

.try .container {
  position: relative;
  width: 85%;
  height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.try .container img {
  position: absolute;
  width: 400px;
  right: 50px;
  bottom: 0;
}

.try .container .fix {
  position: relative;
  width: 30%;
  height: 100%;
}

.try .container .text {
  position: relative;
  width: 50%;
  line-height: 2;
  color: #495057;
  padding: 50px 0;
}

.try .container .text ul {
  margin-left: 40px;
}

.try .container .text h1 {
  margin-bottom: 20px;
}

.try .container .text button {
  position: relative;
  background-color: #079fdb;
  color: white;
  border-radius: 30px;
  outline: none;
  border: none;
  padding: 15px 35px;
  margin-top: 30px;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.try .container .text button:hover {
  background-color: #106a8d;
}

.ml2 {
  font-weight: 900;
  font-size: 3.5em;
}

.ml2 .letter {
  display: inline-block;
  line-height: 1em;
}

@media screen and (max-width: 1500px) {
  .products .container {
    width: 95%;
  }
}

@media screen and (max-width: 1400px) {
  header .links {
    width: 60%;
  }
}

@media screen and (max-width: 1300px) {
  .products .container {
    width: 85%;
  }
  .products .container .prods {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .products .container .prods .prod {
    width: 320px;
    margin: 30px;
  }
}

@media screen and (max-width: 1180px) {
  header .links {
    width: 70%;
  }
  .try .container {
    width: 95%;
  }
  footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 1080px) {
  header > .links {
    display: none;
  }
  .logo {
    width: 70%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .logo img {
    width: 40%;
  }
  header .phone_links {
    display: block;
  }
  header .phone_links > i {
    color: #079fdb;
    padding: 10px;
    border: 1px solid #079fdb;
    border-radius: 7px;
    cursor: pointer;
  }
  header .phone_links > i:hover {
    color: white;
    background-color: #079fdb;
  }
  header .phone_links .links_area {
    position: fixed;
    width: 50%;
    height: 100%;
    background-color: white;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 999;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  header .phone_links .links_area .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #495057;
    height: 60%;
    width: 100%;
  }
  header .phone_links .links_area .links .dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  header .phone_links .links_area .links .dropdown .i {
    margin-left: 15px;
    margin-bottom: 7px;
  }
  header .phone_links .links_area > i {
    position: absolute;
    top: 40px;
    right: 40px;
    color: #079fdb;
    cursor: pointer;
  }
  header .phone_links .showmenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-box-shadow: -10px 1px 8px #0000004a;
    box-shadow: -10px 1px 8px #0000004a;
  }
  header .phone_links .social_media {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  header .phone_links .social_media div {
    position: relative;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    margin-right: 10px;
    padding: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  header .phone_links .social_media div:hover {
    background-color: #079fdb;
  }
  header .phone_links .social_media div:hover i {
    color: white;
  }
  header .phone_links .social_media div i {
    cursor: pointer;
    color: #079fdb;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .try .container {
    width: 95%;
  }
  .try .container .fix {
    display: none;
  }
  .try .container img {
    position: relative;
    right: 0;
    bottom: -24px;
  }
  footer {
    height: auto;
  }
  footer .logo {
    width: 25%;
    border-bottom: 1px solid white;
  }
  footer > div {
    padding: 20px 0;
    margin: 5px 0;
  }
  footer .info {
    width: 40%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  footer .description {
    width: 70%;
  }
  footer .social_media {
    border-top: 1px solid white;
  }
}

@media screen and (max-width: 950px) {
  .try .container {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .try .container .text {
    width: 80%;
    padding-bottom: 40px;
  }
  .try .container img {
    bottom: 0;
  }
}

@media screen and (max-width: 900px) {
  .beginning .bg h1 {
    font-size: 38px;
  }
  .beginning .bg p {
    font-size: 15px;
  }
}

@media screen and (max-width: 800px) {
  header .phone_links .links_area {
    width: 65%;
  }
}

@media screen and (max-width: 700px) {
  .beginning .bg h1 {
    font-size: 30px;
  }
  .beginning .bg p {
    font-size: 13px;
  }
  footer .logo {
    width: 35%;
  }
}

@media screen and (max-width: 600px) {
  nav .contact {
    display: none;
  }
  .beginning .bg button {
    margin-top: 15px;
    font-size: 13px;
  }
  .try .container .text h1 {
    font-size: 25px;
  }
  .try .container .text p {
    font-size: 12px;
  }
  footer .description {
    width: 85%;
  }
  footer .info {
    width: 60%;
  }
  .beginning .bg p {
    font-size: 11px;
  }
}

@media screen and (max-width: 500px) {
  header .phone_links .links_area {
    width: 80%;
  }
  footer .logo {
    width: 55%;
  }
}

@media screen and (max-width: 470px) {
  .beginning {
    height: 400px;
  }
  .beginning .bg h1 {
    font-size: 23px;
  }
  .beginning .bg p {
    font-size: 9px;
  }
  .beginning .bg button {
    padding: 10px 15px;
    font-size: 10px;
  }
  header {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    padding: 0 20px;
  }
  header .logo {
    width: 80%;
    margin-right: 20px;
  }
  header .logo img {
    width: 45%;
  }
  .products .container {
    width: 90%;
  }
  .products .container h1 {
    font-size: 22px;
    margin: 45px 0;
  }
  .products .container .prods {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .products .container .prods .prod {
    width: 320px;
    margin: 30px 0;
  }
}

@media screen and (max-width: 400px) {
  footer .info {
    width: 85%;
  }
}

@media screen and (max-width: 340px) {
  .beginning .bg h1 {
    font-size: 18px;
  }
}
/*# sourceMappingURL=Tocss.css.map */