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


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Poppins', sans-serif;
  color: #1A1A1A;
}

a {
  color: #1A1A1A;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #5faee3;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

ul{
  list-style: none;
  padding: 0;
  margin: 0;
}


.fs-12{
  font-size: 12px !important;
}

.fs-14{
  font-size: 14px !important;
}

.fs-16{
  font-size: 16px !important;
}

.fs-18{
  font-size: 18px !important;
}

.fs-20{
  font-size: 20px !important;
}


.fs-26{
  font-size: 26px !important;
}

.fs-28{
  font-size: 28px !important;
}

.fs-30{
  font-size: 30px !important;
}

.fs-36{
  font-size: 36px !important;
}

.fs-38{
  font-size: 38px !important;
}

.fs-48{
  font-size: 48px !important;
}

.fs-58{
  font-size: 58px !important;
}

.fw-300{
  font-weight: 300 !important;
}

.fw-400{
  font-weight: 400 !important;
}


.fw-500{
  font-weight: 500 !important;
}

.fw-600{
  font-weight: 600 !important;
}


.fw-700{
  font-weight: 700 !important;
}


.fw-800{
  font-weight: 800 !important;
}

.fw-900{
  font-weight: 900 !important;
}

.text-green{
  color: #61CE70;
}

.text-blue{
  color: #0071BC;
}

.text-light-dark{
  color: #5E5E5E;
}

.bg-blue{
  background: #0071BC;
}

.primary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  background: #61CE70;
  border: 1px solid #61CE70;
  border-radius: 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.primary-btn:hover {
  background: transparent;
  color: #61CE70 !important;
  transition: all 0.3s ease-in-out;
}

.light-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  color: #5E5E5E !important;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid #5E5E5E;
  border-radius: 30px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.light-btn:hover {
  background: #5E5E5E;
  color: #fff !important;
  transition: all 0.3s ease-in-out;
}

.seemore-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  color: #0071BC;
  white-space: nowrap;
  border: 1px solid #fff;
  background: #fff;
  border-radius: 30px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.seemore-btn:hover {
  background: transparent;
  color: #fff !important;
  transition: all 0.3s ease-in-out;
}


.w-400{
    max-width: 400px;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0071BC;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #61CE70;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #1A1A1A;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.navbar ul li .nav-link::after {
    content: "";
    position: absolute;
    height: 30px;
    width: 2px;
    background: #0071BC;
    right: 0;
}

.navbar ul li:nth-last-child(2) .nav-link::after {
  content: none;
}


.navbar .nav-link :hover,
.navbar .active,
.navbar li:hover>a {
  color: #005E96;
  transition: all 0.3s ease-in-out;

}


.quote-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 25px;
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  background: #2B2B2B;
  border: 1px solid #2B2B2B;
  border-radius: 15px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.quote-btn:hover {
  background: transparent;
  border: 1px solid #0071BC;
  transition: all 0.3s ease-in-out;
}



/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #1A1A1A;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
  .quote-btn{
    margin: 0 20px;
    display: inline-flex;
  }
  .navbar ul li .nav-link::after {
    content: none
  }
  .logo img{
    height: 55px;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(33, 38, 42, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile .nav-link {
  padding: 10px 20px;
  font-size: 15px;
  color: #1A1A1A;
}

.navbar-mobile .nav-link:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #005E96;
}

main{
  padding-top: 110px;
}


/* Header css */

.banner{
  background: url(../img/trs_bg1.jpg);
  padding: 120px 0;
  background-size: 100% 100%;
  background-position: 100% 100%;
  background-repeat: no-repeat;
}


.service{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.service .icon-img{
  width: 140px;
height: 140px;
margin-bottom: 10px;
}

.service .icon-img img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.bg-img{
  background: url(../img/bg2.png);
  padding: 80px 0;
  background-size: 100% 100%;
  background-position: 100% 100%;
  background-repeat: no-repeat;
}

.review{
  background: #FFFFFF;
border: 1px solid rgba(0, 94, 150, 0.5);
border-radius: 5px;
padding: 20px;
height: 100%;
}

.user{
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-img{
  height: 60px;
  width: 60px;
  border-radius: 60px;
}
.user-img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 60px;

}

footer{
  background: #1A1A1A;
}

@media (max-width:767px){
  body{
    font-size: 14px;
  }
  main{
    padding-top: 86px;
  }
  .banner, .bg-img{
    padding: 50px 0;
    background-size: cover;
    background-position: center;
  }
  .light-btn,.primary-btn{
    padding: 10px 20px ;
    font-size: 14px;
  }
  .service .icon-img{
    width: 100px;
  }
}