@font-face {
    font-family: 'SF Pro Display';
    src: url('fonts/SFProDisplay-Bold.eot');
    src: url('fonts/SFProDisplay-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/SFProDisplay-Bold.woff2') format('woff2'),
        url('fonts/SFProDisplay-Bold.woff') format('woff'),
        url('fonts/SFProDisplay-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('fonts/SFProDisplay-Regular.eot');
    src: url('fonts/SFProDisplay-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/SFProDisplay-Regular.woff2') format('woff2'),
        url('fonts/SFProDisplay-Regular.woff') format('woff'),
        url('fonts/SFProDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('fonts/SFProDisplay-Medium.eot');
    src: url('fonts/SFProDisplay-Medium.eot?#iefix') format('embedded-opentype'),
        url('fonts/SFProDisplay-Medium.woff2') format('woff2'),
        url('fonts/SFProDisplay-Medium.woff') format('woff'),
        url('fonts/SFProDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}



*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/*==BASIC-SETUP==*/
body {
  font-family: 'SF Pro Display';
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  background: #ffffff;
}

.container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
}


a,
a:hover,
a:active {
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
  margin-bottom: 0;
}

/* header-section */
.header-area {
  background: #ffffff;
  padding: 30px 0;
}

.header-main {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
}

.logo-item img {
  max-width: 180px;
}

.header-right ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 30px;
}

.header-right ul li a {
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  transition: 0.2s all ease;
}

.header-right ul li a:hover {
  color: #00C48B;
}

/* global-secton */
.global-area {
  background: #ffffff;
  padding: 60px 0 50px 0;
}

.global-main {
  display: grid;
  grid-template-columns: 30% 25% 45%;
  padding: 25px 10px;
  align-items: center;
   border-bottom: 1px solid #CDC2B9;
}

.global-main1 {
  margin-top: 40px;
  border-top: 1px solid #CDC2B9;
}

.global-title h2 {
  font-weight: 700;
  font-size: 40px;
  color: #003a73;
}

.global-title p {
  font-weight: 500;
  font-size: 20px;
  color: #6d6d6d;
  margin-top: 20px;
}

.global-main p {
  font-weight: 500;
  color: #303030;
}

.global-main a {
  font-weight: 700;
  font-size: 16px;
  color: #003a73;
  transition: 0.2s all ease;
}

.global-main a:hover {
  color: #00C48B;
}

.global-main img {
  max-width: 200px;
}

/* contact-section */

.contact-area {
  background: #ffffff;
  padding-bottom: 70px;
}

.contact-main p {
  font-weight: 500;
  font-size: 16px;
  color: #6d6d6d;
}

.contact-main h4 {
  font-weight: 700;
  font-size: 20px;
  color: #003a73;
  margin-top: 30px;
}

.contact-main h3 {
  font-weight: 700;
  font-size: 16px;
  color: #434343;
  margin-top: 15px;
}

.contact-main h5 {
  font-weight: 500;
  font-size: 14px;
  color: #434343;
  margin-top: 10px;
}

.contact-main ul li {
  margin-top: 20px;
}

.contact-main ul li a {
  font-weight: 500;
  color: #434343;
  font-size: 14px;
  margin-top: 20px;
}




/*FOR-MOBIL-START*/
@media screen and (max-width: 767px) {

    .logo-item img {
      max-width: 120px;
      
      }

      .header-right ul {
         column-gap: 15px;
      }

      .global-title h2 {
        font-size: 25px;
      }

      .global-title p {
        font-size: 16px;
        margin-top: 10px;
      }

      .global-area {
        padding: 25px 0 70px 0;
      }

      .header-area {
        padding: 20px 0;
      }

      .global-main {
        overflow-x: auto;
      }

      .global-main p br {
        display: none;
      }

      .global-main {
          grid-template-columns: 100%;
          row-gap: 15px;
       }

       .global-area {
        padding: 25px 0 40px 0;
      }

      .contact-area {
        padding-bottom: 50px;
    }

    .global-item10 img {
      max-width: 150px;
    }





  
}




