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

*{
    margin:0;
    padding: 0px;
}
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
   margin: 0;
   color: #081624;
   font-weight: 600;
 }
 
 h1 {
   font-size: 70px;
 }
 
 h2 {
   font-size: 38px;
 }
 
 h3 {
   font-size: 30px;
 }
 
 h4 {
   font-size: 24px;
 }
 
 h5 {
   font-size: 18px;
 }
 
 h6 {
   font-size: 16px;
 }

 img {
   max-width: 100%;
   transition: all .3s ease-out 0s
 }
 
 input:focus,
 select:focus,
 button:focus,
 textarea:focus {
   outline: none;
 }
 
 a, a:hover,
 a:focus {
   text-decoration: none;
   outline: none;
   color: inherit;
 }
 
 ul,
 ol {
   padding: 0;
   margin: 0;
   list-style-type: none;
   list-style: none;
 }
 li{
    list-style: none;
    list-style-type: none;
 }
body{
    font-family: 'Poppins', sans-serif;
    color: #000;
    /* background-color: #fff; */
    line-height: 1.5;
    animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    background: url('../images/bgimg.jpg') no-repeat;
    background-attachment: fixed;
}
.mainpage {
  background: rgba(255, 255, 255, 0.6);
}
@keyframes fadeInAnimation {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}
.top {
  text-align: center;
}
.top h1{
  padding-top: 30px;
  font-size: 60px;
  color: red;
}
.top p {
  font-size: 20px;
  margin-top: 20px;
}
.companybox {
  width: 1000px;
  margin: auto;
}
.titlename {
  font-size: 17px;
  font-weight: 500;
}
.gplogotitle .logo {
  width: 240px;
  height: 240px;
  border-radius: 100%;
  margin: 0 auto 10px;
  box-shadow: 0 2px 16px -4px rgb(0 0 0 / 22%);
  background-color: #fff;
}
.gplogotitle .logo img {
  padding: 45px 0 45px;
  height: auto;
  width: 160px;
}

/* .companyname h2 {
  font-size: 17px;
  text-align: center;
  background: #f5f5f5;
  padding:14px 10px;
  margin-bottom: 5px;
} */
.companyname h2 {
  font-size: 17px;
  text-align: center;
  background: rgba(252, 54, 32, 0.8);
  padding: 14px 10px;
  margin-bottom: 5px;
  color: #fff;
}
.gplogotitle .link a {
  color: red;
  text-decoration: underline;
}
.gplogotitle .link a:hover {
  color: #000;
}
.contactarea h3{
  color: red;
}
hr{
  opacity: 0.100;
}

/* responsive css start here */
@media(max-width:1024px){
  .companybox{width: 100%;}
}

@media(max-width:992px){
  .companybox{width: 100%;}
}

@media(max-width:768px){
  .companybox{width: 100%;}
  .gplogotitle .logo {width: 190px; height: 190px;}
  .gplogotitle .logo img{width: 113px;}
  .top p{font-size: 19px;}
  .titlename{height: 51px; font-size: 16px;}
}
@media(max-width:576px){
  .top h1{font-size: 35px;}
  .top p{font-size: 18px;}
  .companybox{width: 100%;}
  .titlename{height: 15px;}
  .companybox h2, .contactarea h3{font-size: 27px;}
  .companyname h2{font-size: 17px;}
  .gplogotitle .logo {width: 190px; height: 190px;}
  .gplogotitle .logo img{width: 113px;}
  .titlename{font-size: 16px;}
  .sm-mt-5{margin-top: 3rem!important;}
  .small-mt-5{margin-top: 3rem!important;}
}
@media(max-width:320px){
  .top h1{font-size: 30px;}
  .companybox{width: 100%;}
  .gplogotitle .logo {width: 190px; height: 190px;}
  .gplogotitle .logo img{width: 113px;}
  .top p{font-size: 19px;}
  .titlename{font-size: 16px; height: 20px; margin-bottom: 5px;}
  .sm-mt-5{margin-top: 3rem!important;}
  .small-mt-5{margin-top: 3rem!important;}
  .companybox h2, .contactarea h3 {font-size: 24px;}
  .companyname h2 {font-size: 17px;}
}