@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*** all Mobile Screen (iphone 6,7,8) ***/
/*** mobile Landscape Size ***/
/*** medium devices (tablets, less than 992px) ***/
/*** iPad in landscape ***/
/**** smaller than desktop 1200 (devices and browsers) ***/
/*** laptop with MDPI (medium density per inch) resolution ***/
/*** laptop with HiDPI (High Dots Per Inch) resolution ***/
/*** WSXGA (Wide Super Extended Graphics Array) resolution ***/
/*** all Mobile Screen (iphone 6,7,8) ***/
/*** mobile Landscape Size ***/
/*** medium devices (tablets, less than 992px) ***/
/*** iPad in landscape ***/
/**** smaller than desktop 1200 (devices and browsers) ***/
/*** laptop with MDPI (medium density per inch) resolution ***/
/*** laptop with HiDPI (High Dots Per Inch) resolution ***/
/*** WSXGA (Wide Super Extended Graphics Array) resolution ***/
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

@media (max-width: 991px) {
  .row {
    margin: 0;
    padding: 0;
  }
}

@media (min-width: 1600px) {
  .custom-container {
    max-width: 1400px;
  }
}
@media (max-width: 1441px) {
  .custom-container {
    max-width: 1280px;
  }
}
@media (max-width: 767px) {
  .custom-container {
    max-width: 100%;
  }
}

.btn {
  padding: 12px 32px;
  border-radius: 32px;
  box-sizing: border-box;
}
.btn.btn-primary {
  background: transparent linear-gradient(98deg, #20BACB 0%, #1F66AC 100%) 0% 0% no-repeat padding-box;
  color: #ffffff !important;
  border: 1px solid transparent;
  transition: all 0.3s linear;
}
.btn.btn-primary:hover {
  background: transparent linear-gradient(98deg, #1F66AC 0%, #20BACB 100%) 0% 0% no-repeat padding-box;
}
.btn.btn-outline {
  background-color: #ffffff;
  border: 1px solid #1F66AC;
  color: #1F66AC !important;
}