@charset "UTF-8";

/*fonts*/
@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');

/*baisic*/
html{
  -webkit-locale: "En";
  direction: ltr;
  unicode-bidi: isolate;
  min-height: 100%;
}
html, body{
  min-height: 100%;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}
body{
  font: 400 16px/1.2 'Poppins', sans-serif;
  color: #2C434C;
  background: #fff;
  min-width: 310px; 
  min-height: 100%;
  position: relative;
  overflow-x: hidden;
  opacity: 1;
  -moz-font-feature-settings: 'kern';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
}
body.no-scroll{
  height: 100%;
  overflow: hidden;
}

/*box-sizing*/
*, *:before, *:after, input[type="search"]{
  box-sizing: border-box;
}

/*layout*/
.wrapper{overflow: hidden;}
.container{
  width: 100%;
  max-width: 1056px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.sec{margin: 90px 0;}
.sec-title{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.12;
  color: #2C434C;
  margin-bottom: 22px;
}
.sec-subtitle{
  font-weight: 600;
  font-size: 20px;
  line-height: 1.12;
  color: #2C434C;
  margin: 24px 0 12px;
}
.sec-title i{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  flex-shrink: 0;
}
.sec-title i img{
  display: block;
  width: 100%;
}
.sec__wrap{
  max-width: 720px;
  margin: 0 auto;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #2C434C;  
}
.sec__txt{padding-left: 58px;}
.sec__wrap li:not(:last-child),
.sec__wrap ul:not(:last-child),
.sec__wrap ol:not(:last-child),
.sec__wrap p:not(:last-child){margin-bottom: 16px;}
.list li{
  padding-left: 29px;
  position: relative;
}
.list li strong{
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  font-size: 20px;
}
.list li::before{
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: #2C434C;
}
.sec-bar{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.sec-bar .footer-btn{
  width: auto;
  white-space: nowrap;
  padding: 0 16px;
}
@media only screen and (max-width : 767px){
  .sec{margin: 35px 0 50px;}
  .sec-title{
    gap: 12px;
    font-size: 27px;
    line-height: 1.33;
    margin-bottom: 10px;
  }
  .sec-title i{width: 26px;}
  .sec-title i img{max-width: 100%;}
  .sec__wrap{
    font-size: 14px;
    line-height: 1.5;
  }
  .sec__txt{padding-left: 38px;}
  .list li{padding-left: 20px;}
  .list li::before{
    top: 8px;
    width: 5px;
    height: 5px;
  }
  .list li strong{
    margin-bottom: 6px;
    font-size: 16px;
  }
  .sec-subtitle{
    font-size: 18px;
    margin: 24px 0 12px;
  }
  .sec-bar{
    flex-direction: column;
    align-items: flex-start;
  }
  .sec-bar .footer-btn{
    width: 100%;
    max-width: 260px;
    margin: 0;
  }
}

/*typographyc*/
ol,ul,li,h1,h2,h3,h4,h5,h6,p,q,figure,figcaption,blockquote,cite,fieldset,hr{    
  margin:0;
  padding: 0;    
  border: none;
}
ul li, ol li{list-style: none;}
a{
  text-decoration: none;
  outline: none;
  transition: .25s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:-moz-any-link:focus ,
a:-moz-focusring,
a::-moz-focus-inner,
a::-moz-focus-outer{
  outline: 0!important;
  outline: none;
}
a:active {outline: none;}
a[href^="tel:"],
a[href^="mailto:"]{white-space: nowrap;}
img{
  display: block;
  max-width: 100%;
  height: auto;
}
svg{display: block;}
