/* You can add global styles to this file, and also import other style files */
@import url('https://fonts.googleapis.com/css2?family=Rancho&family=Sunshiney&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;700&display=swap');

:root {
  --primary: #0d6efd;
  --dark: #21252f;
  --body: #888;
  --white: #ffffff;
  --pink: #d63384;
  --box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}

html {
  width: 100%;
  margin: 0px;
  padding: 0px;

  overflow-x: hidden;

}
body{
  font-family: 'Rancho', cursive;
  font-size: 32px;
}

#model{

  background-color: #0099ff;
  padding-top: 60px;
  /*padding-bottom: 60px;*/
  color: var(--white);
}

#model h1{
  font-family: 'Lobster', sans-serif;
  font-size: 61px;
}
img{
  transition: transform 0.3s ease-in-out;
}

#model img:hover{
  transform: scale(120%);
}
#model a{
  color: white;
}

#science{
  margin-top: -3px;
}

#science h1{
  font-size: 61px;
  color: var(--primary);
}
p{
  font-family: "Sora", sans-serif;
  font-size: 21px;
}
#product1{
  margin-top: -3px;
  background-color: #d6e77e;
  color: white;
}
#product1 h1{
  font-size: 61px;
}
#product1 p{
  color: white;
}

#product2{
  margin-top: -3px;
  background-color: #308cc6;
  color: white;
}
#product2 h1{
  font-size: 61px;
}
#product2 p{
  color: white;
}

#product3{
  margin-top: -3px;
  background-color: #ffc10766;
  color: white;
}
#product3 h1{
  font-size: 61px;
}
#product3 p{
  color: white;
}
#product3 button{
  /*border-radius: 25%;*/
  width: 50%;
}

#product_range{
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #acddde24;
}

#product_range h1{
  font-size: 61px;
  color: #d63384;
}

#product_range h3{

  font-family: "Roboto",'sans-serif';
  font-size: 22.5px;
  color: #d63384;
}

#product_range .card{
  min-height: 555px;
  /*background-color: #d63384;*/
  /*color: #d63384;*/
}

#services{
  background-color: white;
  margin-top: -10px;
}

#services h1{
  font-size: 61px;
  color: #0d6efd;
}
#services h5{
  font-size: 31px;
}

#services h6{
  font-size: 31px;
}

#tabs{
  background-color: #f8f9fa;
  padding-top: 60px;
  padding-bottom: 60px;
  font-family: "Roboto",'sans-serif';
}

#tabs h4{
  padding: 20px;

  font-size: x-large;
}
.tab-pane{
  background-color: white;
}


a {
  color: var(--dark);
  text-decoration: none;
}
.card-effect {
  box-shadow: var(--box-shadow);
  background-color: var(--white);
  padding: 25px;
  transition: all 0.35s ease;
}

.card-effect:hover {
  box-shadow: none;
  transform: translateY(5px);
}

.social-icons {
  display: flex;
  justify-content: center;
}
.social-icons a {
  width: 34px;
  height: 34px;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  margin-left: 5px;
  transition: all 0.4s ease;
  border: 2px solid var(--primary);
}

.social-icons a:hover {
  color: var(--primary);
  background-color: transparent;
  border-color: var(--primary);
}

form input.form-control {
  height: 56px;
}

form .form-control {
  border: transparent;
  border-radius: 0;
  background-color: rgba(0,0,0,0.02);
}

/*FOOTER*/
footer{
  font-family: "Sora", sans-serif;
  line-height: 1.7;
  color: var(--body);
  font-size: 21px;
}
form .form-control {
  border: transparent;
  border-radius: 0;
  background-color: rgba(0,0,0,0.02);

}


.footer-top {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: var(--dark);
}

.footer-top a {
  color: var(--body);
}

.footer-top a:hover {
  color: var(--white);
}

.footer-bottom {
  background-color: #242933;
  font-size: 16px;
}
/*END FOOTER*/
.col-img {
  background-image: url(../img/cover2.jpg);
  background-position: center;
  background-size: cover;
  min-height: 500px;
}

.col-img2 {
  background-image: url(../img/Pronumil.png);
  background-position: center;
  background-size: cover;
  min-height: 1000px;
}

.col-img-home {
  background-image: url(../img/home.jpg);
  background-position: center;
  background-size: cover;
  height: 1000px;
}

.iconbox {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--white);
  font-size: 32px;
  border-radius: 100px;
  flex: none;
}

.service:hover .iconbox {
  background-color: var(--white);
  color: var(--primary);
}

#features h1{
  font-size: 61px;
  color: var(--primary);
}

#features h5{
  font-size: 31px;
  color: var(--primary);
}

.service {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.service::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  background-color: var(--primary);
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease;
}


.service:hover .iconbox {
  background-color: var(--white);
  color: var(--primary);
}

.service:hover h5,
.service:hover p {
  color: var(--white);;
}

.service:hover::after {
  opacity: 1;
  top: 0;
}

#contact{
  padding-top: 60px;
  padding-bottom: 60px;
  font-family: "Sora", sans-serif;

}
#contact h1,h6{
  font-weight: 700;
}

#contact .btn {
  padding: 14px 18px;
  border-width: 2px;
  border-radius: 0;
}
