@import url('https://fonts.cdnfonts.com/css/tt-commons');

/* Scrollbar */

/* width */
::-webkit-scrollbar {
	width: 5px;
}

.offcanvas-body::-webkit-scrollbar {
	width: 1px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1; 
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #555; 
}

/* end Scrollbar */

::-moz-selection {  
	background: #012d8b; 
	color: #fff;
}

::selection {  
	background: #012d8b; 
	color: #fff;
}

* {
  font-family: 'TT Commons', sans-serif;
}

a {
  color: inherit;
}

.container-grid {
  display: grid;
}

.general-btn {
  color: #ffffff;
  background-color: #0055ff;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
  padding: 20px 42px;
  display: block;
  border-radius: 50px;
  transition: all ease-in 0.2s;
  width: fit-content;
  margin: auto;
}

.general-btn:hover {
  opacity: 0.8;
  color: #fff;
  filter: brightness(0.5);
  text-decoration: none;
}

.main-cards {
  padding-top: 100px;
  padding-bottom: 100px;
}

.main-cards .container-grid {
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.main-cards__title {
  color: #012d8b;
  font-size: 46px;
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  margin-bottom: 20px;
}

.main-cards__content p {
  color: #012d8b;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  margin-bottom: 26px;
}

footer {
  color: #fff;
  background: #0a0a0b;
  padding-top: 33px;
  padding-bottom: 44px;
}

.footer-content {
  padding-left: 119px;
  padding-right: 119px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-logo {
  width: 152px;
  height: auto;
  object-fit: contain;
}

.footer-btn .general-btn {
  background: transparent;
  border: 2px solid;
}

.footer-btn .general-btn:hover {
  background: #fff;
  color: #000;
  opacity: 1;
  filter: none;
}

@media (min-width: 0px) and (max-width: 600px){
  .footer-content {
    padding-left: 50px;
    padding-right: 50px;
    gap: 20px;
    justify-content: center;
  }
}

@media (min-width: 0px) and (max-width: 767px){
  .main-cards .container-grid {
    grid-template-columns: 100%;
  }

  .footer-logo {
    display: block;
  }
}

@media (min-width: 768px){
  .main-cards__title, .main-cards__content p {
    text-align: unset;
  }
  .general-btn {
    margin: unset;
  }
}

@media (min-width: 1024px){
  .main-cards__title {
    font-size: 68px;
    line-height: 76px;
  }
  .main-cards__content p {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 30px;
  }
}

@media (min-width: 1200px){
  .main-cards__title {
    font-size: 94px;
    line-height: 106px;
  }

  .main-cards__content p {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 32px;
  }
}