@font-face {
  font-family: Montserrat-Regular;
  src: url(../fonts/Montserrat-Regular.ttf);
}

@font-face {
  font-family: Montserrat-Medium;
  src: url(../fonts/Montserrat-Medium.ttf);
}

@font-face {
  font-family: Poppins-Light;
  src: url(../fonts/Poppins-Light.ttf);
}

@font-face {
  font-family: Poppins-Regular;
  src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
  font-family: Poppins-Medium;
  src: url(../fonts/Poppins-Medium.ttf);
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url(../fonts/Poppins-SemiBold.ttf);
}

@font-face {
  font-family: Poppins-Bold;
  src: url(../fonts/Poppins-Bold.ttf);
}

@font-face {
  font-family: Poppins-ExtraBold;
  src: url(../fonts/Poppins-ExtraBold.ttf);
}

@font-face {
  font-family: Roboto-Light;
  src: url(../fonts/Roboto-Light.ttf);
}

@font-face {
  font-family: Roboto-Black;
  src: url(../fonts/Roboto-Black.ttf);
}

html {
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: Poppins-Regular;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

input[type="number"] {
  -moz-appearance: textfield;
}

.blue-color {
  color: #3985fb;
}

.green-color {
  color: #14a800;
}

.container {
  max-width: 1230px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 15px;
}

.brand {
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: inherit;
  border: none;
  outline: none;
}

.brand img {
  max-width: 320px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  color: #000;
  background: #fff;
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.05);
}

.navbar .wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.navbar .burger {
  position: relative;
  display: none;
  cursor: pointer;
  width: 2rem;
  height: 1rem;
  border: none;
  outline: none;
  opacity: 0;
  visibility: hidden;
  background: none;
  transform: rotate(0deg);
  transition: 0.35s ease-in-out;
}

.navbar .burger-line {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 0.25rem;
  background: #000;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.navbar .burger-line:nth-child(1) {
  top: 0;
}

.navbar .burger-line:nth-child(2),
.navbar .burger-line:nth-child(3) {
  top: 0.5rem;
}

.navbar .burger-line:nth-child(4) {
  top: 1rem;
}

.navbar .burger.is-active .burger-line:nth-child(1),
.navbar .burger.is-active .burger-line:nth-child(4) {
  top: 1.25rem;
  width: 0%;
  left: 50%;
}

.navbar .burger.is-active .burger-line:nth-child(2) {
  transform: rotate(45deg);
}

.navbar .burger.is-active .burger-line:nth-child(3) {
  transform: rotate(-45deg);
}

.navbar .menu-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

.navbar .menu-link {
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: inherit;
  border: none;
  color: #000;
  text-rendering: optimizeLegibility;
  transition: all 0.35s ease-in-out;
  padding: 5px;
}

.navbar .menu-link.active {
  color: #3985fb;
}

.main {
  z-index: 0;
  /*padding-top: 15rem;*/
}

section {
  scroll-margin-top: 75px;
}

section.contact-section {
  scroll-margin-top: 55px;
}

/******** Hero Section *********/

.hero-section {
  scroll-margin-top: 25em;
  width: 100%;
  height: auto;
  float: left;
  /*text-align: center;*/
  min-height: 78vh;
  position: relative;
  overflow: hidden;
}

.hero-content {
  width: 100%;
  height: auto;
  float: left;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  padding: 40px 0px;
}

.hero-content h2 {
  font-size: 58px;
  font-family: Poppins-Bold;
  color: #000;
}

.hero-content h1 {
  font-size: 92px;
  font-family: Poppins-ExtraBold;
}

.hero-content p {
  font-size: 42px;
  font-family: Poppins-Regular;
  color: #333333;
}

/******** How good we are Section *********/

.how-good-we-are-section {
  width: 100%;
  height: auto;
  float: left;
  background: rgba(57, 133, 251, 0.07);
  padding: 40px 0px;
}

.how-good-we-are-section p {
  color: #000000;
  font-family: Poppins-Bold;
  font-size: 26px;
}

.title {
  color: #333333;
  font-family: Poppins-Bold;
  font-size: 40px;
  margin-bottom: 15px;
}

/*********** Testimonials Section ************/

.testimonials-section {
  width: 100%;
  height: auto;
  float: left;
  /*padding: 30px 0px;*/
}

.testimonials-section .item {
  padding: 15px;
  display: inline-block;
}

.testimonials-section .title {
  margin-bottom: 5px;
  padding-left: 1.2rem;
  font-size: 30px;
}

.testimonials .owl-stage {
  display: flex;
}

.testimonials .owl-item {
  display: flex;
  flex: 1 0 auto;
}

.testimonials .owl-item .item {
  height: 100%;
}

.testimonial-card {
  width: 100%;
  height: 100%;
  float: left;
  background: #ffffff;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.06);
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
}

.rattings {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
}

.ratins a.item {
  display: inline-block;
}

.rattings .single-star {
  padding: 5px;
}

.rattings .single-star img {
  max-width: 18px;
}

.testimonials-section .owl-stage {
  padding: 25px 0px;
}

.testimonial-card .client-name {
  font-size: 16px;
  font-family: Roboto-Black;
  margin: 10px 0px 0px 0px;
  color: #000;
}

.testimonial-card .client-feedback {
  font-size: 14px;
  font-family: Roboto-Light;
  color: #000;
}

.testimonials .owl-dots .owl-dot span {
  background: #fff;
  border: 1px solid #eeeeee;
  width: 18px;
  height: 18px;
}

.testimonials .owl-dots .owl-dot.active span,
.testimonials .owl-dots .owl-dot:hover span {
  background: #3985fb;
  border: solid 3px #fff;
}

/********** What we are Section ***********/

.what-we-are-section {
  width: 100%;
  height: auto;
  float: left;
  background: rgba(57, 133, 251, 0.07);
  padding: 70px 0px;
}

.what-we-are-section ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  column-count: 2;
  column-gap: 15px;
}

.what-we-are-section ul li {
  position: relative;
  color: #333333;
  font-size: 18px;
  padding-left: 33px;
  margin-bottom: 20px;
}

.what-we-are-section ul li img {
  position: absolute;
  left: 0px;
  top: 8px;
  max-width: 18px;
}

/********** Contact Us Section ************/

.contact-section {
  width: 100%;
  height: auto;
  float: left;
  padding-bottom: 70px;
}

.contact-title {
  width: 100%;
  height: auto;
  float: left;
  background: rgba(57, 133, 251, 0.13);
  padding: 40px 0px 170px 0px;
  /*text-align: center;*/
}

.contact-form-card {
  width: 100%;
  height: auto;
  float: left;
  background: #ffffff;
  box-shadow: 0px 0px 30px rgba(71, 153, 212, 0.3);
  margin-top: -130px;
  margin-bottom: 6rem;
  display: flex;
}

.contact-details {
  width: 50%;
  height: auto;
  float: left;
  padding: 40px 30px;
  background: rgba(71, 153, 212, 0.05);
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
}

.contact-form {
  width: 50%;
  height: auto;
  float: left;
  padding: 40px 30px;
  background: #fff;
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
}

.contact-details h3 {
  font-size: 42px;
  font-family: Roboto-Black;
  color: #3985fb;
  margin-bottom: 0px;
}

.contactus {
  width: 100%;
  height: auto;
  float: left;
  margin-top: 40px;
}

.single-contact {
  width: 100%;
  height: auto;
  float: left;
  display: flex;
  /* align-items: center; */
  margin-bottom: 40px;
}

.single-contact .contact-icon {
  width: 40px;
  height: 40px;
  float: left;
  background: #3985fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border-radius: 4px;
}

.single-contact .contact-link {
  width: calc(100% - 36px);
  height: auto;
  float: left;
  padding-left: 15px;
}

.single-contact .contact-link span {
  color: #333;
  font-size: 12px;
  text-transform: uppercase;
  font-family: Poppins-Light;
  display: block;
}

.single-contact .contact-link a {
  color: #333;
  font-size: 16px;
  font-family: Poppins-SemiBold;
  text-decoration: none;
  word-break: break-word;
}

.single-contact .contact-link p {
  color: #333;
  line-height: 0.833;
  font-size: 16px;
  font-family: Poppins-SemiBold;
  text-decoration: none;
  word-break: break-word;
}

.conact-form-input {
  width: 100%;
  height: auto;
  float: left;
  padding-bottom: 20px;
}

.conact-form-input input {
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: solid 2px #eee;
  outline: none;
  border-radius: 0px;
  font-family: Poppins-Regular;
  font-size: 16px;
  padding-left: 15px;
}

.conact-form-input textarea {
  width: 100%;
  max-width: 100%;
  min-height: 90px;
  border: none;
  border-bottom: solid 2px #eee;
  outline: none;
  border-radius: 0px;
  font-family: Poppins-Regular;
  font-size: 16px;
  padding-left: 15px;
}

.conact-form-input input::placeholder,
.conact-form-input textarea::placeholder {
  color: #999999;
}

.conact-form-input input:focus,
.conact-form-input input:active,
.conact-form-input textarea:focus,
.conact-form-input textarea:active {
  border-color: #3985fb;
}

.send-button {
  background: #3985fb;
  font-size: 18px;
  padding: 10px 25px;
  color: #fff;
  border: solid 2px #3985fb;
  align-items: center;
  display: flex;
  border-radius: 0.25rem;
}

.send-button:hover {
  background: #fff;
  font-size: 18px;
  padding: 10px 25px;
  color: #3985fb;
  border: solid 2px #3985fb;
}

.send-button img {
  max-width: 20px;
  margin-left: 30px;
  display: inline-block;
}

.send-button img.hover,
.send-button:hover img {
  display: none;
}

.send-button:hover img.hover {
  display: inline-block;
}

.form-buttons {
  width: 100%;
  height: auto;
  float: left;
  margin-top: 20px;
}

/********* Footer Section ********/

.footer-section {
  width: 100%;
  height: auto;
  float: left;
  background: #001c47;
  /*padding-top: 45px;*/
  margin-top: auto;
}

.footer-col {
  width: 33.33%;
  height: auto;
  float: left;
  padding-bottom: 30px;
}

.footer-col.footer-logo-col {
  padding-right: 15px;
}

.footer-logo {
  width: 100%;
  height: auto;
  float: left;
}

.footer-logo img {
  width: 100%;
  max-width: 280px;
}

.footer-menu {
  column-count: 4;
  float: left;
  column-gap: 40px;
}

.footer-menu li a {
  color: #fff;
  font-size: 18px;
  line-height: 36px;
}

.footer-section h3 {
  font-size: 24px;
  font-family: Poppins-SemiBold;
  color: #fff;
  margin-bottom: 10px;
}

.social-media li {
  display: inline-block;
}

.social-media li a {
  padding: 10px;
  display: block;
}

.social-media li a img {
  max-width: 20px;
  max-height: 20px;
}

.copyright {
  width: 100%;
  height: auto;
  float: left;
  border-top: solid 1px #455a64;
  padding: 15px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright p {
  color: #fff;
  font-family: Poppins-Regular;
  font-size: 12px;
  text-transform: uppercase;
}

.copyright ul {
  text-align: right;
}

.copyright ul li {
  display: inline-block;
  padding-left: 15px;
}

.copyright ul li:first-child {
  padding-left: 0px;
}

.copyright ul li a {
  color: #fff;
  font-family: Poppins-Regular;
  font-size: 12px;
  text-transform: uppercase;
}

/********** Case Studies ********/

.inner-hero-section {
  width: 100%;
  height: auto;
  float: left;
  padding: 100px 0px;
  background: rgba(57, 133, 251, 0.07);
}

.inner-hero-section h2 {
  font-size: 72px;
  text-align: center;
  font-family: Poppins-Bold;
  color: #000;
}

.case-studies-section {
  width: 100%;
  height: auto;
  float: left;
  padding: 70px 0px;
}

.case-studies-section .case-studies-row {
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-wrap: wrap;
}

.case-studies-section .case-studies-col {
  flex: 0 0 auto;
  width: 33.33333333%;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
  float: left;
}

.case-studies-card {
  width: 100%;
  height: 100%;
  float: left;
  background: #ffffff;
  border: 1px solid #f8f8f8;
  box-sizing: border-box;
  border-radius: 6px;
  overflow: hidden;
}

.case-studies-img {
  width: 100%;
  height: 220px;
  float: left;
  border-radius: 6px;
  overflow: hidden;
  object-fit: cover;
}

.case-studies-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-studies-content {
  width: 100%;
  height: auto;
  float: left;
  padding: 25px 15px 20px 15px;
}

.case-studies-content .date {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #828282;
}

.case-studies-content .date img {
  width: 13px;
}

.case-studies-content span {
  padding-left: 8px;
}

.case-studies-content a {
  font-size: 16px;
  font-family: Poppins-Bold;
  color: #21243d;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 8px 0px;
}

.case-studies-card:hover a {
  color: #3985fb;
}

.case-studies-card:hover {
  box-shadow: 0px 0px 15px #eee;
}

.case-studies-content p {
  font-size: 14px;
  font-family: Poppins-Regular;
  color: #21243d;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.paginations {
  width: 100%;
  height: auto;
  float: left;
}

.paginations ul {
  width: auto;
  float: right;
}

.paginations ul li {
  display: inline-block;
  padding: 0px 3px;
  margin-bottom: 10px;
}

.paginations ul li a {
  padding: 0px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-width: 32px;
  background: #ffffff;
  border: 1px solid #dfe3e8;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 14px;
  font-family: Poppins-Bold;
  color: #333;
}

.paginations ul li.active a,
.paginations ul li:hover a {
  border: 1px solid #3985fb;
  color: #3985fb;
}

.paginations ul li a img {
  max-width: 10px;
  max-height: 10px;
}

.paginations ul li a[disabled=""],
.paginations ul li:hover a[disabled=""] {
  background: #ebeceec2;
  border-color: #dfe3e8;
  cursor: not-allowed;
}

/*********** Case Studies Detail Page **************/

.case-studies-detail-row {
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-wrap: wrap;
}

.case-studies-detail-col {
  flex: 0 0 auto;
  width: 66.66%;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
  float: left;
}

.case-studies-detail {
  width: 100%;
  height: auto;
  float: left;
  margin-bottom: 50px;
  background: rgba(206, 225, 255, 0.07);
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05);
}

.case-studies-banner-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  overflow: hidden;
  margin-bottom: 30px;
}

.case-studies-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-studies-disc {
  width: 100%;
  height: auto;
  float: left;
  padding: 0px 30px 30px 30px;
  /* margin-bottom: 50px; */
}

.case-studies-disc h1 {
  width: 100%;
  float: left;
  font-family: Poppins-Bold;
  font-size: 48px;
  line-height: 60px;
  color: #000000;
}

.case-studies-disc h3 {
  width: 100%;
  float: left;
  font-family: Poppins-SemiBold;
  font-size: 25px;
  line-height: 37px;
  color: #000000;
  margin-bottom: 5px;
  margin-top: 15px;
}

.case-studies-disc p {
  width: 100%;
  float: left;
  font-family: Poppins-Regular;
  font-size: 16px;
  line-height: 27px;
  color: #000000;
  margin-bottom: 15px;
}

.ul-numbers {
  list-style-type: none;
  counter-reset: css-counter 0;
  margin-bottom: 15px;
}

.ul-numbers li {
  counter-increment: css-counter 1;
  /* Increase the counter by 1. */
  font-family: Poppins-Regular;
  font-size: 16px;
  line-height: 27px;
  color: #000000;
}

.ul-numbers li:before {
  content: counter(css-counter) ". ";
  /* Apply counter before children's content. */
}

.author-publisher {
  width: 100%;
  height: auto;
  float: left;
  display: flex;
  align-items: center;
  padding: 20px 0px 30px 0px;
}

.author-publisher .author-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  object-fit: cover;
  border-radius: 40px;
  overflow: hidden;
}

.author-publisher .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-post-info {
  width: 100%;
  padding-left: 15px;
}

.author-post-info h5 {
  font-size: 16px;
  font-family: Poppins-SemiBold;
}

.author-post-info p {
  font-family: Poppins-Regular;
  font-style: italic;
  font-size: 12px;
  line-height: 18px;
  color: #000000;
  opacity: 0.5;
}

.read-next-studies {
  width: 100%;
  height: auto;
  float: left;
  background: rgba(206, 225, 255, 0.07);
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
}

.read-next-studies h2 {
  font-family: Poppins-Bold;
  font-size: 24px;
  line-height: 36px;
  color: #000000;
  margin-bottom: 20px;
}

.read-next-studies-single {
  width: 100%;
  height: auto;
  float: left;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.read-next-studies-single .read-next-studies-author-avatar {
  width: 55px;
  height: 55px;
  min-width: 55px;
  min-height: 55px;
  object-fit: cover;
  border-radius: 55px;
  overflow: hidden;
}

.read-next-studies-single .read-next-studies-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.read-next-studies-info {
  width: 100%;
  padding-left: 15px;
}

.read-next-studies-info a {
  font-size: 16px;
  color: #000000;
  font-family: Poppins-SemiBold;
}

.read-next-studies-info a:hover {
  color: #3985fb;
}

.read-next-studies-info p {
  font-family: Poppins-Regular;
  font-size: 12px;
  line-height: 18px;
  color: #000000;
  opacity: 0.5;
}

.case-studies-author-col {
  flex: 0 0 auto;
  width: 33.33%;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
  float: left;
}

.author-card {
  width: 100%;
  height: auto;
  float: left;
  margin-bottom: 20px;
  background: rgba(206, 225, 255, 0.07);
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05);
  padding: 15px 20px;
}

.author-card-flex {
  width: 100%;
  height: auto;
  float: left;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.author-card-flex .author-avatar {
  width: 55px;
  height: 55px;
  min-width: 55px;
  min-height: 55px;
  object-fit: cover;
  border-radius: 55px;
  overflow: hidden;
}

.author-card-flex .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  width: 100%;
  padding-left: 15px;
}

.author-info h5 {
  font-size: 16px;
  font-family: Poppins-SemiBold;
}

.author-info p {
  font-family: Poppins-Regular;
  font-size: 12px;
  line-height: 18px;
  color: #000000;
  opacity: 0.5;
}

.author-joining-date {
  width: 100%;
  height: auto;
  float: left;
}

.author-joining-date h6 {
  font-size: 12px;
  font-family: Poppins-SemiBold;
  line-height: 16px;
  opacity: 0.7;
}

.author-joining-date p {
  font-size: 14px;
  line-height: 18px;
  font-family: Poppins-SemiBold;
  color: #000000;
}

.more-case-studies {
  width: 100%;
  height: auto;
  float: left;
  margin-bottom: 20px;
  background: rgba(206, 225, 255, 0.07);
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05);
}

.more-case-studies h3 {
  font-size: 18px;
  line-height: 27px;
  font-family: Poppins-Bold;
  color: #000;
  padding: 20px;
}

.more-case-studies ul li {
  border-top: solid 1px #eee;
  padding: 15px 20px;
}

.more-case-studies ul li a {
  font-family: Poppins-Regular;
  font-size: 15px;
  line-height: 22px;
  color: #000000;
}

.more-case-studies ul li a:hover {
  color: #3985fb;
}

/********** Profile Page *************/

.profile-page-section {
  width: 100%;
  height: auto;
  float: left;
  padding: 50px 0px;
}

.profile-card {
  width: 380px;
  height: auto;
  float: left;
  background: #ffffff;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 30px;
  margin-bottom: 30px;
}

.profile-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
  font-size: 22px;
  font-family: Poppins-SemiBold;
  text-align: center;
  color: #000;
  margin-top: 20px;
}

.profile-degination {
  font-size: 16px;
  color: #696969;
  text-align: center;
  display: block;
  margin-top: 20px;
  font-family: Poppins-Regular;
}

.contact-info li a {
  font-size: 14px;
  color: #696969;
  text-align: center;
  font-family: Poppins-Regular;
  text-decoration: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 20px;
}

.contact-info li a img {
  margin-right: 10px;
  max-width: 18px;
  max-height: 18px;
}

.download-card {
  width: calc(100% - 380px);
  height: auto;
  float: left;
  padding-left: 30px;
}

.download-card h2 {
  font-family: Poppins-SemiBold;
  font-size: 24px;
  line-height: 36px;
  color: #000000;
  margin-bottom: 15px;
}

.download-card p {
  font-family: Poppins-Regular;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 20px;
}

.download-card button {
  display: flex;
  align-items: center;
  background: #3985fb;
  border-radius: 4px;
  padding: 14px 30px;
  font-family: Poppins-Regular;
  font-size: 16px;
  color: #fff;
}

.download-card button img {
  max-width: 24px;
  max-height: 24px;
  margin-right: 20px;
}

.download-card button:hover {
  background: #2573ea;
}

.badge-base.LI-profile-badge {
  padding: 40px 30px;
  background: rgba(71, 153, 212, 0.05);
}
