/* App Fonts */
@font-face{
    font-family: "TTNorms";
    src: url("../fonts/TTNorms-Regular.otf") format(openType);
}

@font-face{
    font-family: "TTNorms Medium";
    src: url("../fonts/TTNorms-Medium.otf") format(openType);
}

@font-face{
    font-family: "TTNorms Light";
    src: url("../fonts/TTNorms-Light.otf") format(openType);
}

@font-face{
    font-family: "Times Roman Italic";
    src: url("../fonts/Times-new-roman-italic.ttf") format(trueType);
}

/* Start Normalize CSS */


html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
input { /* 1 */
  overflow: visible;
}

button,
select { /* 1 */
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* Start Project */

html{
    box-sizing: border-box;
}

*,
*::before,
*::after{
    box-sizing: inherit;
}

body{
    font-family: "TTNorms";
}

.container{
    max-width: 80rem; /*1280px*/
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
    
    
    
}

@media only screen and (max-width: 1200px){
    .container{
        max-width: 960px;
    }
}
@media only screen and (max-width: 992px){
    .container{
        max-width: 720px;
    }
}
@media only screen and (max-width: 768px){
    .container{
        max-width: 540px;
    }
}
@media only screen and (max-width: 576px){
    .container{
        max-width: 100%;
    }
}





/* Top Header */
.header{
    
}
.header_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}
.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav_logo{
  margin-right: 4rem;
}
.nav_logo__img{

}
.menu{
    list-style-type: none;
    padding-left: 0;
    margin: 0;

    display: flex;
    
}
.menu_item{
    
}
.menu__link{
    text-decoration: none;
    color: #081D43;

    padding: 0 1rem;
}
.header_link{
    text-decoration: none;
    font-size: 14px;
    color: #FFFFFF;
    border: 1px solid #0050C8;
    background-color: #0050C8;
    border-radius: 0.3rem;
    padding: 0.8rem 1.2rem;
}
.header__icon{
  font-size: 1.8rem;
  display: none;
  cursor: pointer;
}


/* Bottom Header */

.header_bottom{
  margin-top: 5rem;
}
.header_content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_content__left{
  flex-basis: 50%;
}
.header_content__wrapper{
  max-width: 28rem;
}
.header_content__title{
  flex-basis: 50%;
  color: #081D43;
  font-family: "TTNorms Medium";
  line-height: 2.6rem;
  font-weight: normal;
}
.haeder_content__text{
  color: #6C7890;
  line-height: 1.8rem;
}
.header_content__links{
  display: flex;
  margin-top: 2rem;
}
.header_content__link{
  display: block;
  width: 12rem;
  text-decoration: none;
  color: #FFFFFF;
  padding: 0.8rem 2rem;
  border-radius: 0.3rem;
  text-align: center;
}
.header__icon{
  font-size: 1.8rem;
}
.contactus{
  background-color: #87BC25;
  margin-right: 0.8rem;
  
}
.seeourworks{
  background-color: #2F5BEA;
}
.header_content__right{
  
}
.hedear_content__image{
  width: 100%;
}

/* Start main */
.main{
  margin-top: 2rem;
}
.works{
  text-align: center;
  padding: 5rem 0;
}


.works_text{
  color: #6C7890;
  margin-top: 0;
}
.works_title{
  color: #081D43;
  margin-top: 1rem;
  font-family: "TTNorms medium";
  font-weight: normal;
}
.works_content{
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* flex-wrap: wrap; */
}
.works_content__item{
  
}
.works_content_title{
  color: #081D43;
  
}
.works_content_text{
  color: #6C7890;
  line-height: 1.8rem;
  max-width: 16rem;
}
.works_img{
  max-width: 30rem;
  margin: 0 auto;
  
}
.works_img__img{
  width: 100%;

}

/* Person Comments */

.person_comments{
  background-color: #2F5BEA;
  color: #FFFFFF;
  text-align: center;
  padding: 5rem 0;

}
.person_comments__title{
  font-family: "TTNorms Medium";
  font-weight: normal;
  margin-top: 0;
}
.person_comments__text{
  font-family: "TTNorms Light";
  max-width: 28rem;
  margin: 0 auto;
  line-height: 1.8rem;
}
.comments_container{
  max-width: 70rem;
  margin: 3.5rem auto 0 auto;
}
.comments{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.comment{
  background-color: #fff;
  border-radius: 0.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 18rem;
  margin: 1rem;
  flex-basis: 20rem;
}
.comment__content{
  text-align: left;
  padding: 1.2rem;
  
}
.comment__body{
  font-family: "Times Roman Italic";
  color: #7E8085;
  line-height: 1.5rem;
  margin: 0;
}
.comment__info{
  color: #000;
  display: flex;
  border-top: 1px solid #E8EBEF;
  padding: 0.8rem 1.2rem;
  align-items: center;
}
.comment__img{

}
.comment__person{
  margin: 0 0 0 0.5rem;
}
.companies{
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 5rem;
  flex-wrap: wrap;
}
.company{
  display: block;
  margin: 1rem;

}

/* Start Portfolio */
.portfolio{
  text-align: center;
  padding: 5rem 0;

}
.portfolio_text{
  color: #6C7890;
  margin-top: 0;
}
.portfolio_title{
  color: #081D43;
  margin-top: 1rem;
  font-family: "TTNorms medium";
  font-weight: normal;
}
.portfolio_items{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.portfolio_item{
  width: 23rem;
  margin-bottom: 2rem;
  /* border-radius: 0.3rem; */
  overflow: hidden;
}
.portfolio__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.3rem;
}


/* start footer */

.footer_top{
  background-color: #2C57E4;
  text-align: center;
  padding: 3rem 0;
}
.footer_top__items{
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}
.item__text{
  font-family: "TTNorms";
  color: #FFFFFF;
  font-size: 25px;
  margin: 8rem 0;
  font-weight: normal;
}
.footer_top__item{
  /* margin: 8rem 0; */
  /* max-width: 500px; */
  /* height: 58px; */
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.3rem;
  padding: 0.2rem;
  flex-basis: 22rem;
}
.item_emailAddress{
  border: none;
  outline: none;
  /* margin-left: 1rem; */
  padding-left:1rem;
}
.item_btn{
  background-color: #2F5BEA;
  border: 0px;
  width: 60px;
  height: 50px;
  border-radius: 0.3rem;

  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_bottom{
  
}
.footer_bottom__items{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6C7890;
  padding: 1rem 0;
}
.footer_bottom__item{

}
.item_text__left{

}
.item_text__right{

}

/* Project Responsive */

@media only screen and (max-width: 1200px){
  .container{
    max-width: 960px;
  }
}

@media only screen and (max-width: 992px){
  .container{
    max-width: 720px;
  }
  .header_link{
    display: none;
  }
  .portfolio_items {
    justify-content: space-around;
  }
}

@media only screen and (max-width: 768px){
  .container{
    max-width: 540px;
  }
  .header__icon{
    display: block;
  }
  .menu {
    /* display: block; */
    position: fixed;
    top: 0;
    left: -256px;
    bottom: 0;
    background-color: #ffffff;
    width: 16rem;
    flex-direction: column;
    padding: 2rem 1rem;
    transition: 0.3s all;
  }

  .menu_item{
    margin-bottom: 2rem;
    font-size: 1.2rem;
  }
  .header_content {
    flex-direction: column-reverse;
  }
  .header_content__left {
    margin-bottom: 3rem;
  }
  .header_content__wrapper{
    text-align: center;
  }
  .header_content__links {
    align-items: center;
    justify-content: center;
  }
  .header__icon {
    display: block;
    cursor: pointer;

  }
}

@media only screen and (max-width: 576px){
  .container{
    max-width: 100%;
  }
  .footer_top__items {
    gap: 1rem;
  }
  .item__text {
    font-size: 1rem;
  }
  .item_btn {
    width: 40px;
    height: 35px;
  }
  .works_content {
    flex-wrap: wrap;
  }
  .footer_bottom__items {
    flex-direction: column;
  }
}
@media only screen and (max-width: 490px){
  .header_content__left {
    width: 100%;
  }
  .header_content__links {
    font-size: 0.7rem;
  }
  .footer_top__items{
    flex-direction: column;
  }
  .footer_top__item{
    max-height: 48px;
    margin-bottom: 100px;
    margin-top: -100px;
    padding: 0.4rem;
  }
  .item_emailAddress {
    width: 100%;
  }
  .footer_bottom__item {
    text-align: center;
  }
} 