@charset "UTF-8";
/*===================== [ import _base ] ===========================*/
/*==============================================  css Reset ==============================================*/
@import 'font.css';
@import url(../images/icons/mas-icon/icon.css);
@import url(../css/animate.css);
@import url(../images/icons/f-aw/css/font-awesome.min.css);
* {
  direction: ltr;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

*:focus {
  outline: none !important;
}

audio, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1.125rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.8125rem;
}

h6 {
  font-size: 0.9375rem;
}

p {
  margin: 0;
  padding: 0;
}

blockquote {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  overflow: hidden;
  padding: 0;
}

blockquote cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  margin-top: 0.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 0.9375rem;
}

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark, ins {
  background: #eee;
  text-decoration: none;
}

big {
  font-size: 125%;
}

blockquote {
  quotes: "" "";
}

q {
  quotes: "“" "”" "‘" "’";
}

blockquote:before, blockquote:after {
  content: "";
}

label {
  color: #333;
  display: block;
  font-weight: 800;
  margin-bottom: 0.5em;
}

fieldset {
  margin-bottom: 1em;
}

select {
  border: 1px solid #bbb;
  border-radius: 3px;
  height: 3em;
  max-width: 100%;
}

b, strong {
  font-weight: bold;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
}

body {
  font-family: Poppins;
  direction: ltr;
  line-height: 1.5;
  font-weight: 400;
  position: relative;
}

input,
textarea,
button,
select {
  font-family: Poppins;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
}

button, input[type=submit] {
  cursor: pointer;
}

a {
  text-decoration: none;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  color: #1A1E3D;
}

ul {
  list-style: none;
}

dl, ol, ul {
  margin-top: 0;
  margin-bottom: 0;
}

li {
  list-style: none;
}

main {
  min-height: 245px;
}

/*===================== [ color (sass) ] ===========================*/
/*======================= [ mixed-in (sass) ] ============================*/
/*_ mixed-in for ( display=flex; flex=1;)_*/
/*_ mixed-in for ( display=flex;)_*/
/*_ mixed-in for ( display=flex; - up to down = center , right to left = center )_*/
/*_ mixed-in for ( display=flex; - up to down = center , right to left = space-between )_*/
/*_ mixed-in for ( transition effect )_*/
/*_ mixed-in for ( transition effect )_*/
/*============================ [ breakpoints for responsive in sass ] ==================================*/
/* xsm--Extra small  (smart phones, portrait iPhone, portrait 480x320 phones (Android)) */
/* sm--smart phones, Android phones, landscape iPhone */
/* sm--smart phones, Android phones, landscape iPhone */
/* md-- tablet, landscape iPad, lo-res laptops ands desktops */
/* lg-- hi-res laptops and desktops */
/* xl-- hi-res laptops and desktops */
/* 2xl -- Extra large screens, TV */
/* 3xl -- Extra large screens, TV */
/* 4xl -- Extra large screens, TV */
/*====================== [ media query - container ] ==========================*/
.container {
  width: 83%;
  margin: 0 auto;
}
@media (max-width: 1800px) {
  .container {
    width: 86%;
  }
}
@media (max-width: 992px) {
  .container {
    width: 90%;
  }
}

/*<< Start Code  :  >>*/
/*======================== [ All buttons ] =================================*/
.btn-head {
  padding: 12px 25px;
  border: 2px solid #4F5A8D;
  border-radius: 30px;
  font-size: 25px;
  /** responsive **/
  /** responsive **/
}
.btn-head:hover {
  color: #FFC63A;
  border-color: #FFC63A;
}
@media (max-width: 1800px) {
  .btn-head {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .btn-head {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .btn-head {
    font-size: 16px;
    padding: 5px 10px;
  }
}
@media (max-width: 576px) {
  .btn-head {
    order: 2;
  }
}

.btn-s1 {
  border-radius: 30px;
  background-color: #FFC63A;
  padding: 10px 25px;
  color: #1A1E3D;
  font-weight: 500;
  font-size: 25px; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  /** responsive **/
}
.btn-s1:hover {
  box-shadow: 0 3px 15px rgba(255, 198, 58, 0.3);
}
@media (max-width: 1800px) {
  .btn-s1 {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .btn-s1 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .btn-s1 {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .btn-s1 {
    font-size: 14px;
  }
}

.btn-s2 {
  border-radius: 30px;
  background-color: #FFC63A;
  padding: 12px 25px;
  color: #1A1E3D;
  font-weight: 500;
  font-size: 25px; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  align-items: center;
  box-shadow: 0 3px 20px rgba(255, 198, 58, 0.71);
  /** responsive **/
}
.btn-s2:hover {
  box-shadow: 0 3px 20px rgba(255, 198, 58, 0.91);
}
.btn-s2 .mas {
  margin-left: 15px;
}
@media (max-width: 1800px) {
  .btn-s2 {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .btn-s2 {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .btn-s2 {
    font-size: 16px;
  }
}
@media (max-width: 346px) {
  .btn-s2 {
    font-size: 14px;
  }
}

.btn-s3 {
  font-weight: 600; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  align-items: center;
  margin-top: 40px;
}
.btn-s3 span {
  width: 30px;
  height: 30px;
  background-color: #FFC63A; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 10px;
  transition: 0.4s;
}
.btn-s3:hover span {
  transform: translateX(10px);
}

/*======================== [ All ] =================================*/
.head-section {
  color: #1A1E3D;
  text-align: center; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.head-section h4 {
  font-size: 40px;
  font-weight: 500;
}
@media (max-width: 1800px) {
  .head-section h4 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .head-section h4 {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  .head-section h4 {
    font-size: 20px;
  }
}
.head-section p {
  font-size: 18px;
  width: 70%;
  margin-top: 20px;
  color: rgba(26, 30, 61, 0.66);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1800px) {
  .head-section p {
    font-size: 16px;
  }
}
@media (max-width: 1140px) {
  .head-section p {
    width: 90%;
  }
}

.bg-gray {
  background-color: rgba(79, 90, 141, 0.03);
}

/*======================== [ header in home ] =================================*/
header {
  background-color: #273058;
  height: 95vh;
  color: #FEFEFC;
  position: relative;
  overflow: hidden;
  /** responsive **/
}
header a {
  color: #FEFEFC;
  font-size: 25px;
}
@media (max-width: 1800px) {
  header {
    height: 100vh;
  }
}

/*====  [ top-header ]   ====*/
.top-header {
  padding: 25px 0;
  font-weight: 300;
  background-color: #273058;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 5;
}
@media (max-width: 768px) {
  .top-header {
    padding: 10px 0;
  }
}
.top-header .top-head { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .top-header .top-head {
    flex-wrap: wrap;
  }
}
.top-header .logo {
  max-width: 200px;
  /** responsive **/
}
@media (max-width: 1800px) {
  .top-header .logo {
    max-width: 150px;
  }
}
@media (max-width: 992px) {
  .top-header .logo {
    max-width: 130px;
  }
}
@media (max-width: 768px) {
  .top-header .logo {
    max-width: 100px;
  }
}
.top-header .logo img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-header .main-menu { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
}
@media (max-width: 576px) {
  .top-header .main-menu {
    margin-top: 10px;
    order: 3;
  }
}
.top-header .main-menu li {
  margin: 0 30px;
}
@media (max-width: 992px) {
  .top-header .main-menu li {
    margin: 0 20px;
  }
}
@media (max-width: 768px) {
  .top-header .main-menu li {
    margin: 0 10px;
  }
  .top-header .main-menu li:first-child {
    margin-left: 0;
  }
}
.top-header .main-menu li.active a, .top-header .main-menu li a:hover {
  color: #FFC63A;
}
@media (max-width: 1800px) {
  .top-header .main-menu li a {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .top-header .main-menu li a {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .top-header .main-menu li a {
    font-size: 16px;
  }
}

/*====  [ content-header ]   ====*/
.content-header {
  position: relative; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  width: 100%;
  height: 95vh;
  /** responsive **/
}
@media (max-width: 1800px) {
  .content-header {
    height: 100vh;
  }
}
@media (max-width: 992px) {
  .content-header {
    align-items: flex-start;
    padding-top: 120px;
  }
}
.content-header .h-text {
  width: 50%; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  /** responsive **/
}
@media (max-width: 1800px) {
  .content-header .h-text {
    width: 45%;
  }
}
@media (max-width: 992px) {
  .content-header .h-text {
    width: 100%;
  }
}
.content-header .h-text h2 {
  font-size: 60px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /** responsive **/
}
.content-header .h-text h2 span {
  color: #FFC63A;
}
@media (max-width: 1800px) {
  .content-header .h-text h2 {
    font-size: 45px;
  }
}
@media (max-width: 768px) {
  .content-header .h-text h2 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .content-header .h-text h2 {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  .content-header .h-text h2 {
    font-size: 22px;
  }
}
@media (max-width: 346px) {
  .content-header .h-text h2 {
    font-size: 20px;
  }
}
.content-header .h-text p {
  font-size: 25px;
  margin-top: 20px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /** responsive **/
}
@media (max-width: 1800px) {
  .content-header .h-text p {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .content-header .h-text p {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .content-header .h-text p {
    -webkit-line-clamp: 3;
  }
}
.content-header .h-text .btn-s1 {
  margin-top: 70px;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 992px) {
  .content-header .h-text .btn-s1 {
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  .content-header .h-text .btn-s1 {
    margin-top: 30px;
  }
}
.content-header .h-pic {
  width: 50%;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 75%;
  /** responsive **/
  /** responsive **/
  /** responsive **/
  /** responsive **/
  /** responsive **/
  /** responsive **/
  /** responsive **/
  /** responsive **/
  /** responsive **/
  /** responsive **/
}
@media (max-width: 1800px) {
  .content-header .h-pic {
    height: 65%;
  }
}
@media (max-width: 1400px) {
  .content-header .h-pic {
    height: 65%;
  }
}
@media (max-width: 1280px) {
  .content-header .h-pic {
    height: 50%;
  }
}
@media (max-width: 1200px) {
  .content-header .h-pic {
    height: 50%;
  }
}
@media (max-width: 1140px) {
  .content-header .h-pic {
    height: 30%;
  }
}
@media (max-width: 992px) {
  .content-header .h-pic {
    height: 50%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .content-header .h-pic {
    width: 80%;
  }
}
@media (max-width: 600px) {
  .content-header .h-pic {
    height: 40%;
  }
}
@media (max-width: 576px) {
  .content-header .h-pic {
    height: 50%;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .content-header .h-pic {
    height: 41%;
    width: 100%;
  }
}
@media (max-width: 346px) {
  .content-header .h-pic {
    height: 40%;
  }
}
.content-header .h-pic img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  transition: 1s;
}
.content-header .h-pic img:hover {
  transform: translateX(30px);
}
.content-header .lang {
  position: absolute;
  bottom: 40px;
  left: 0;
  font-size: 22px;
  z-index: 3; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  /** responsive **/
  /** responsive **/
}
@media (max-width: 768px) {
  .content-header .lang {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 576px) {
  .content-header .lang span {
    display: none;
  }
}
.content-header .lang ul { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .content-header .lang ul {
    flex-direction: column;
  }
}
.content-header .lang ul li {
  margin: 0 15px;
  /** responsive **/
}
@media (max-width: 768px) {
  .content-header .lang ul li {
    margin: 10px 15px 0 0;
  }
}
@media (max-width: 768px) and (max-width: 576px) {
  .content-header .lang ul li {
    margin: 0;
  }
}
.content-header .lang ul img {
  width: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  /** responsive **/
}
@media (max-width: 1800px) {
  .content-header .lang ul img {
    width: 60px;
  }
}
@media (max-width: 576px) {
  .content-header .lang ul img {
    width: 40px;
  }
}
@media (max-width: 1800px) {
  .content-header .lang {
    font-size: 18px;
    bottom: 20px;
  }
}

/*======================== [ main in home ] =================================*/
/*====  [ about us ]   ====*/
.about-us {
  margin-top: 100px;
  padding: 0 50px;
  color: #1A1E3D;
  /** responsive **/
}
@media (max-width: 1800px) {
  .about-us {
    margin-top: 80px;
  }
}
@media (max-width: 1140px) {
  .about-us {
    padding: 0;
    margin-top: 50px;
  }
}
.about-us .about { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .about-us .about {
    margin-bottom: 50px;
  }
}
.about-us .about span {
  transition: 0.3s;
}
.about-us .about a:hover span {
  transform: translateX(5px);
}
.about-us .about .about-img {
  width: 40%;
  height: 400px;
  /** responsive **/
  /******** responsive *******/
}
@media (max-width: 1800px) {
  .about-us .about .about-img {
    height: 330px;
  }
}
@media (max-width: 1140px) {
  .about-us .about .about-img {
    width: 100%;
  }
}
.about-us .about .about-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-us .about .about-text {
  width: 60%; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  /******** responsive *******/
}
@media (max-width: 1140px) {
  .about-us .about .about-text {
    width: 100%;
    margin-bottom: 40px;
  }
}
.about-us .about .about-text h3 {
  font-size: 40px;
  font-weight: 500;
  position: relative;
  padding-left: 10px;
}
@media (max-width: 1800px) {
  .about-us .about .about-text h3 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .about-us .about .about-text h3 {
    font-size: 25px;
  }
}
@media (max-width: 576px) {
  .about-us .about .about-text h3 {
    font-size: 20px;
  }
}
.about-us .about .about-text h3::before {
  content: "";
  width: 40px;
  height: 7px;
  background-color: #FFC63A;
  position: absolute;
  left: -35px;
  bottom: 15px;
}
@media (max-width: 1800px) {
  .about-us .about .about-text h3::before {
    width: 35px;
    height: 6px;
    left: -30px;
    bottom: 13px;
  }
}
.about-us .about .about-text p {
  font-size: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
}
@media (max-width: 1800px) {
  .about-us .about .about-text p {
    font-size: 18px;
    line-height: 1.8;
  }
}
@media (max-width: 768px) {
  .about-us .about .about-text p {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .about-us .about .about-text p {
    font-size: 14px;
    line-height: 2;
  }
}
.about-us .about .about-text a {
  margin-top: 30px;
  align-self: flex-end;
}
.about-us .about-top {
  /******** responsive *******/
}
@media (max-width: 1140px) {
  .about-us .about-top {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.about-us .about-top .about-text {
  padding: 0 60px;
}
@media (max-width: 768px) {
  .about-us .about-top .about-text {
    padding: 0 0;
  }
}
.about-us .about-top .about-img img {
  border-radius: 100px 100px 0 100px;
}
@media (max-width: 1800px) {
  .about-us .about-top .about-img img {
    border-radius: 85px 85px 0 85px;
  }
}
.about-us .about-bottom {
  flex-direction: row-reverse;
  /******** responsive *******/
}
@media (max-width: 1140px) {
  .about-us .about-bottom {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.about-us .about-bottom .about-text {
  padding: 0 60px 0 0;
}
@media (max-width: 1140px) {
  .about-us .about-bottom .about-text {
    padding: 0;
  }
}
.about-us .about-bottom .about-text a {
  align-self: flex-start;
}
@media (max-width: 1140px) {
  .about-us .about-bottom .about-text a {
    align-self: flex-end;
  }
}
.about-us .about-bottom .about-img img {
  border-radius: 100px 100px 100px 0;
  /******** responsive *******/
}
@media (max-width: 1800px) {
  .about-us .about-bottom .about-img img {
    border-radius: 85px 85px 85px 0;
  }
}

/*==================  [ service ]   ====================*/
.service {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .service {
    padding: 40px 0;
  }
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 30px;
  margin-top: 70px;
}
@media (max-width: 1140px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.ser-item {
  background-color: white;
  box-shadow: 0 3px 33px rgba(26, 30, 61, 0.05);
  padding: 30px 20px 100px 20px;
  border-radius: 40px;
  color: #1A1E3D;
  position: relative; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 0.4s;
}
@media (max-width: 1800px) {
  .ser-item {
    padding: 30px 20px 80px 20px;
  }
}
.ser-item .ser-icon {
  height: 70px;
  width: 70px;
  border: 5px solid #353E68;
  border-radius: 50%; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
}
.ser-item .ser-icon img {
  width: 80%;
  height: 80%;
}
.ser-item .ser-text h6 {
  font-weight: 600;
  margin: 20px 0;
  font-size: 25px;
}
@media (max-width: 1800px) {
  .ser-item .ser-text h6 {
    font-size: 18px;
  }
}
.ser-item .ser-text p {
  color: rgba(26, 30, 61, 0.66);
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1800px) {
  .ser-item .ser-text p {
    font-size: 14px;
  }
}
.ser-item:hover {
  box-shadow: 0 3px 33px rgba(26, 30, 61, 0.15);
}
.ser-item .btn-s3 {
  position: absolute;
  bottom: 30px;
  right: 50%;
  width: 100%;
  transform: translateX(50%); /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1800px) {
  .ser-item .btn-s3 {
    font-size: 16px;
  }
}

/*==================  [ our-project ]   =================*/
.our-project {
  padding: 80px 40px 40px 40px;
}
@media (max-width: 1400px) {
  .our-project {
    padding: 80px 0 40px 0;
  }
}

.project-tab { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  align-items: center;
  /***************
   @media (max-width: 768px) {
          height: 130px;
          span{
            transform: rotate(90deg);
            @include inline-flex;
            white-space: nowrap;
          }
          border-radius: 5px;
        }
        &:first-child{
          border-radius: 40px 5px 5px 40px;
          @media (max-width: 768px) {
            border-radius: 5px;
          }
        }
        &:last-child{
          border-radius: 5px 40px 40px 5px;
          @media (max-width: 768px) {
            border-radius: 5px;
          }
        }

  ***************/
}
.project-tab .tab-list { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  width: 100%;
}
@media (max-width: 768px) {
  .project-tab .tab-list {
    flex-wrap: wrap;
  }
}
.project-tab .tab-list li {
  border: 1px solid #E4E4E4;
  background-color: #FFC63A;
  color: #1A1E3D;
  width: 16.5%;
  text-align: center;
  height: 70px;
  border-radius: 5px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 1px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.project-tab .tab-list li:hover, .project-tab .tab-list li.active {
  background-color: #273058;
  color: white;
  box-shadow: 0 3px 33px rgba(39, 48, 88, 0.5);
}
@media (max-width: 1800px) {
  .project-tab .tab-list li {
    height: 60px;
    font-size: 16px;
  }
}
@media (max-width: 1140px) {
  .project-tab .tab-list li {
    height: 55px;
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .project-tab .tab-list li {
    font-size: 12px;
    height: 45px;
  }
}
@media (max-width: 768px) {
  .project-tab .tab-list li {
    width: 48%;
  }
  .project-tab .tab-list li span {
    white-space: nowrap;
  }
}
.project-tab .tab-list li:first-child {
  border-radius: 40px 5px 5px 40px;
}
@media (max-width: 768px) {
  .project-tab .tab-list li:first-child {
    border-radius: 5px;
  }
}
.project-tab .tab-list li:last-child {
  border-radius: 5px 40px 40px 5px;
}
@media (max-width: 768px) {
  .project-tab .tab-list li:last-child {
    border-radius: 5px;
  }
}
.project-tab .tabcontent {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 70px;
  width: 100%;
  margin: 60px 0;
}
@media (max-width: 1140px) {
  .project-tab .tabcontent {
    margin: 40px 0;
  }
}
@media (max-width: 1800px) {
  .project-tab .tabcontent {
    grid-gap: 60px;
  }
}
@media (max-width: 1400px) {
  .project-tab .tabcontent {
    grid-gap: 40px;
  }
}
@media (max-width: 1140px) {
  .project-tab .tabcontent {
    grid-gap: 30px;
  }
}
@media (max-width: 768px) {
  .project-tab .tabcontent {
    grid-template-columns: 1fr;
  }
}
.project-tab .tabcontent .tc-parent:nth-child(3n+1) .tc-box {
  border-radius: 40px 40px 0 40px;
}
@media (max-width: 768px) {
  .project-tab .tabcontent .tc-parent:nth-child(3n+1) .tc-box {
    border-radius: 40px;
  }
}
.project-tab .tabcontent .tc-parent:nth-child(3n+1) .tc-box img, .project-tab .tabcontent .tc-parent:nth-child(3n+1) .tc-box .shdw-blue {
  border-radius: 40px 40px 0 40px;
}
@media (max-width: 768px) {
  .project-tab .tabcontent .tc-parent:nth-child(3n+1) .tc-box img, .project-tab .tabcontent .tc-parent:nth-child(3n+1) .tc-box .shdw-blue {
    border-radius: 40px;
  }
}
.project-tab .tabcontent .tc-parent:nth-child(3n+1) .tc-box figcaption {
  border-radius: 0 0 0 40px;
}
.project-tab .tabcontent .tc-parent:nth-child(3n) .tc-box {
  border-radius: 40px 40px 40px 0;
}
@media (max-width: 768px) {
  .project-tab .tabcontent .tc-parent:nth-child(3n) .tc-box {
    border-radius: 40px;
  }
}
.project-tab .tabcontent .tc-parent:nth-child(3n) .tc-box img, .project-tab .tabcontent .tc-parent:nth-child(3n) .tc-box .shdw-blue {
  border-radius: 40px 40px 40px 0;
}
@media (max-width: 768px) {
  .project-tab .tabcontent .tc-parent:nth-child(3n) .tc-box img, .project-tab .tabcontent .tc-parent:nth-child(3n) .tc-box .shdw-blue {
    border-radius: 40px;
  }
}
.project-tab .tabcontent .tc-parent:nth-child(3n) .tc-box figcaption {
  border-radius: 0 0 40px 0;
}
.project-tab .tabcontent .tc-parent .tc-box {
  border-radius: 40px;
  height: 550px;
  border-radius: 40px;
  box-shadow: 0 5px 33px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
@media (max-width: 1800px) {
  .project-tab .tabcontent .tc-parent .tc-box {
    height: 440px;
  }
}
@media (max-width: 1400px) {
  .project-tab .tabcontent .tc-parent .tc-box {
    height: 420px;
  }
}
@media (max-width: 1140px) {
  .project-tab .tabcontent .tc-parent .tc-box {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .project-tab .tabcontent .tc-parent .tc-box {
    height: 250px;
  }
}
.project-tab .tabcontent .tc-parent .tc-box img {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.project-tab .tabcontent .tc-parent .tc-box:hover img {
  height: calc(100% - 130px);
  border-radius: 40px 40px 0 0;
  transition: 0.7s;
}
@media (max-width: 1800px) {
  .project-tab .tabcontent .tc-parent .tc-box:hover img {
    height: calc(100% - 110px);
  }
}
@media (max-width: 1140px) {
  .project-tab .tabcontent .tc-parent .tc-box:hover img {
    height: calc(100% - 90px);
  }
}
@media (max-width: 768px) {
  .project-tab .tabcontent .tc-parent .tc-box:hover img {
    height: 100%;
  }
}
.project-tab .tabcontent .tc-parent .tc-box:hover figcaption {
  background-color: white;
  height: 130px;
  transition: 0.5s;
}
@media (max-width: 1800px) {
  .project-tab .tabcontent .tc-parent .tc-box:hover figcaption {
    height: 110px;
  }
}
@media (max-width: 1140px) {
  .project-tab .tabcontent .tc-parent .tc-box:hover figcaption {
    height: 90px;
  }
}
@media (max-width: 768px) {
  .project-tab .tabcontent .tc-parent .tc-box:hover figcaption {
    background-color: transparent;
    height: 70px;
  }
}
.project-tab .tabcontent .tc-parent .tc-box:hover figcaption h6 {
  color: #1A1E3D;
}
@media (max-width: 768px) {
  .project-tab .tabcontent .tc-parent .tc-box:hover figcaption h6 {
    color: white;
  }
}
.project-tab .tabcontent .tc-parent .tc-box:hover figcaption p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .project-tab .tabcontent .tc-parent .tc-box:hover figcaption p {
    display: none;
  }
}
.project-tab .tabcontent .tc-parent .tc-box:hover .shdw-blue {
  background-color: rgba(26, 30, 61, 0.1);
}
@media (max-width: 768px) {
  .project-tab .tabcontent .tc-parent .tc-box:hover .shdw-blue {
    background-color: rgba(26, 30, 61, 0.5);
  }
}
.project-tab .tabcontent figcaption {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 20px;
  z-index: 2;
  height: 80px;
  border-radius: 0 0 40px 40px;
  transition: 0.2s;
}
@media (max-width: 1800px) {
  .project-tab .tabcontent figcaption {
    padding: 20px 15px;
  }
}
@media (max-width: 1140px) {
  .project-tab .tabcontent figcaption {
    padding: 15px;
  }
}
@media (max-width: 992px) {
  .project-tab .tabcontent figcaption {
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .project-tab .tabcontent figcaption {
    height: 70px;
    padding: 10px 20px;
  }
}
.project-tab .tabcontent figcaption h6 {
  font-size: 24px;
  color: white;
  font-weight: 500;
}
@media (max-width: 1800px) {
  .project-tab .tabcontent figcaption h6 {
    font-size: 20px;
  }
}
@media (max-width: 1140px) {
  .project-tab .tabcontent figcaption h6 {
    font-size: 18px;
  }
}
.project-tab .tabcontent figcaption p {
  display: none;
  color: rgba(26, 30, 61, 0.66);
  font-size: 16px;
}
@media (max-width: 1800px) {
  .project-tab .tabcontent figcaption p {
    font-size: 14px;
  }
}
.project-tab .tabcontent .shdw-blue {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 30, 61, 0.5);
  top: 0;
  left: 0;
  border-radius: 40px;
  transition: 0.4s;
}

.project-bar {
  background: #273058;
}
.project-bar .pb { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 40px;
  font-size: 38px;
  color: white;
  font-weight: 500;
}
@media (max-width: 1400px) {
  .project-bar .pb {
    padding: 30px 0;
  }
}
@media (max-width: 768px) {
  .project-bar .pb {
    flex-direction: column;
  }
}
@media (max-width: 1800px) {
  .project-bar .pb {
    font-size: 30px;
  }
}
.project-bar .pb a {
  background-color: #FFC63A;
  font-size: 30px;
  padding: 8px 50px;
  border-radius: 40px;
  box-shadow: 0 3px 20px rgba(255, 198, 58, 0.3);
}
.project-bar .pb a:hover {
  box-shadow: 0 3px 20px rgba(255, 198, 58, 0.5);
}
@media (max-width: 1800px) {
  .project-bar .pb a {
    font-size: 20px;
    padding: 8px 50px;
  }
}
@media (max-width: 768px) {
  .project-bar .pb a {
    margin-top: 30px;
  }
}

/*===================  [ last-blog ]   ==================*/
.blog-home {
  padding: 60px 40px;
}
@media (max-width: 1400px) {
  .blog-home {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .blog-home {
    padding: 40px 0;
  }
}
.blog-home .btn-s3 {
  transition: 0.4s;
  color: rgba(26, 30, 61, 0.82);
}
.blog-home .btn-s3 span {
  background-color: transparent;
  transition: 0.4s;
}
.blog-home .btn-s3:hover {
  background: linear-gradient(to left, #DB2430, #7B4296);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.blog-home .btn-s3:hover span {
  background: linear-gradient(to left, #DB2430, #7B4296);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateX(3px);
}

.last-blog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  margin-top: 60px;
}
@media (max-width: 992px) {
  .last-blog {
    grid-gap: 20px;
  }
}
@media (max-width: 768px) {
  .last-blog {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}
.last-blog .blog-item {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  overflow: hidden;
  transition: 0.3s;
}
.last-blog .blog-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.last-blog .blog-item .blog-img {
  width: 150px;
  border-radius: 20px 0 0 20px;
}
.last-blog .blog-item .blog-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px 0 0 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1800px) {
  .last-blog .blog-item .blog-img {
    width: 130px;
  }
}
@media (max-width: 992px) {
  .last-blog .blog-item .blog-img {
    width: 100px;
  }
}
@media (max-width: 576px) {
  .last-blog .blog-item .blog-img {
    width: 90px;
  }
}
.last-blog .blog-item .blog-text {
  padding: 20px;
  flex: 1;
}
@media (max-width: 992px) {
  .last-blog .blog-item .blog-text {
    padding: 10px;
  }
}
.last-blog .blog-item .blog-text .tooltip-cat { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
}
.last-blog .blog-item .blog-text .tooltip-cat li {
  border-radius: 5px;
  background-image: linear-gradient(to left, #DB2430, #7B4296);
  color: white;
  font-size: 16px;
  padding: 3px 10px;
  font-weight: 300;
  margin-right: 5px;
}
@media (max-width: 1800px) {
  .last-blog .blog-item .blog-text .tooltip-cat li {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .last-blog .blog-item .blog-text .tooltip-cat li {
    font-size: 12px;
  }
}
.last-blog .blog-item .blog-text p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 20px;
  margin-top: 10px;
}
@media (max-width: 1800px) {
  .last-blog .blog-item .blog-text p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .last-blog .blog-item .blog-text p {
    font-size: 14px;
  }
}

/*===================  [ customer-review ]   =============*/
.customer-review {
  padding: 60px 0 120px 0;
}
@media (max-width: 1800px) {
  .customer-review {
    padding: 60px 0 80px 0;
  }
}
@media (max-width: 1140px) {
  .customer-review {
    padding: 40px 0 60px 0;
  }
}
.customer-review .review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 40px;
  margin-top: 60px;
}
@media (max-width: 1200px) {
  .customer-review .review-grid {
    grid-gap: 20px;
  }
}
@media (max-width: 1140px) {
  .customer-review .review-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  .customer-review .review-grid {
    grid-template-columns: 1fr;
  }
}
.customer-review .review-grid .rev {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 20px;
}
@media (max-width: 1800px) {
  .customer-review .review-grid .rev {
    padding: 20px;
  }
}
.customer-review .review-grid .rev:hover .rev-author-img::after {
  transform: rotate(360deg);
}
.customer-review .review-grid .rev-icons { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.customer-review .review-grid .rev-icons .guote-icon {
  background: url(/assets/images/icons/shape-red.svg) no-repeat 100% 100%/contain;
  height: 50px;
  width: 70px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding-right: 5px;
  color: #fff;
}
@media (max-width: 1800px) {
  .customer-review .review-grid .rev-icons .guote-icon {
    height: 40px;
    width: 60px;
    font-size: 18px;
    padding-right: 3px;
  }
}
.customer-review .review-grid .rev-icons .star-icon { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 198, 58, 0.81);
  border-radius: 30px;
  padding: 5px 15px;
  font-size: 20px;
  color: rgba(26, 30, 61, 0.82);
}
@media (max-width: 1800px) {
  .customer-review .review-grid .rev-icons .star-icon {
    font-size: 18px;
  }
}
.customer-review .review-grid .rev-icons .star-icon span { /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
}
.customer-review .review-grid .rev-icons .star-icon span.number-star {
  margin-right: 10px;
}
.customer-review .review-grid .rev-text {
  color: #1A1E3D;
}
.customer-review .review-grid .rev-text h4 {
  font-weight: 600;
  font-size: 22px;
  margin: 20px 0 10px 0;
}
@media (max-width: 1800px) {
  .customer-review .review-grid .rev-text h4 {
    font-size: 20px;
  }
}
.customer-review .review-grid .rev-text p {
  color: rgba(26, 30, 61, 0.82);
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1800px) {
  .customer-review .review-grid .rev-text p {
    font-size: 14px;
  }
}
.customer-review .review-grid .rev-author {
  margin-top: 30px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  color: #1A1E3D;
}
@media (max-width: 1800px) {
  .customer-review .review-grid .rev-author {
    margin-top: 20px;
  }
}
.customer-review .review-grid .rev-author .rev-author-img {
  border-radius: 50%;
  margin-right: 20px;
  width: 90px;
  height: 90px;
  position: relative;
}
.customer-review .review-grid .rev-author .rev-author-img::after {
  content: "";
  width: 100%;
  height: 100%;
  box-shadow: 0 2px 2px #273058;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transition: 0.8s;
}
.customer-review .review-grid .rev-author .rev-author-img img {
  width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.customer-review .review-grid .rev-author .rev-author-text {
  flex: 1;
}
.customer-review .review-grid .rev-author .rev-author-text h6 {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 1800px) {
  .customer-review .review-grid .rev-author .rev-author-text h6 {
    font-size: 16px;
  }
}
.customer-review .review-grid .rev-author .rev-author-text span {
  color: #273058;
  font-size: 16px;
}
@media (max-width: 1800px) {
  .customer-review .review-grid .rev-author .rev-author-text span {
    font-size: 14px;
  }
}

/*===================  [ footer ]   =============*/
footer {
  background-color: #273058;
  padding: 30px 0 0 0;
}
footer a {
  color: white;
}
footer .footer {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  grid-gap: 40px;
}
@media (max-width: 768px) {
  footer .footer {
    grid-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  footer .footer {
    grid-template-columns: 1fr;
  }
}
footer .foot {
  color: white;
}
footer .foot .h-foot h6 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 1800px) {
  footer .foot .h-foot h6 {
    font-size: 20px;
  }
}
footer .social-footer { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  margin-top: 40px;
}
footer .social-footer li {
  margin-right: 15px;
}
footer .social-footer li a { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  border-left: 5px solid rgba(0, 0, 0, 0.3);
  font-size: 20px;
}
footer .social-footer li a:hover {
  border-left: none;
  border-right: 5px solid rgba(0, 0, 0, 0.1);
}
footer #youtube {
  background-color: #ed1010;
}
footer #youtube .flw-icon {
  background-color: #f8f8f8;
  color: #ed1010;
}
footer #instagram {
  background-color: #c22969;
}
footer #instagram .flw-icon {
  background-color: #f8f8f8;
  color: #c22969;
}
footer #telegram {
  background-color: #34bff6;
}
footer #telegram .flw-icon {
  background-color: #f8f8f8;
  color: #34bff6;
}
footer #whatsapp {
  background-color: #25D366;
}
footer #whatsapp .flw-icon {
  background-color: #f8f8f8;
  color: #25D366;
}
footer #linkedin {
  background-color: #4376B1;
}
footer #linkedin .flw-icon {
  background-color: #f8f8f8;
  color: #4376B1;
}
footer .phone-foot {
  margin-top: 35px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
}
footer .phone-foot span {
  font-size: 20px;
  margin-right: 10px;
}
@media (max-width: 1800px) {
  footer .phone-foot span {
    font-size: 18px;
  }
}
footer .foot-link li, footer .foot-service li {
  margin-bottom: 5px;
}
footer .foot-link li a, footer .foot-service li a {
  font-size: 18px;
}
footer .foot-link li a:hover, footer .foot-service li a:hover {
  color: #FFC63A;
}
@media (max-width: 1800px) {
  footer .foot-link li a, footer .foot-service li a {
    font-size: 16px;
  }
}
footer .foot-service { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
}
footer .foot-service li {
  width: 50%;
}
@media (max-width: 1140px) {
  footer .foot-service li {
    width: 100%;
  }
}
footer .copyright {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 300;
}
footer .copyright a {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
footer .copyright a:hover {
  color: #FFC63A;
}
footer .copyright i.fa-heart {
  color: #FFC63A;
}
footer .copyright i.fa-copyright {
  margin-right: 5px;
}/*# sourceMappingURL=style.css.map */