*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
:root {
  --font: "Roboto", sans-serif;
  --fontOrigin: 1rem;     /* 16px */
  --fontSmall: 0.625em;   /* 10px */
  --fontMedium: 0.875em;  /* 14px */
  --fontNormal: 1em;      /* 16px */
  --fontLarge:  1.375em;  /* 22px */
  --fontLight: 100;
  --fontRegular: 400;
  --speed: 0.65s;
	--borderradius: 18px;
}

@keyframes zoom {
  from {
    object-position: 0 50%;
  }
  to {
    object-position: 100% 50%;
  }
}

 *{
  border: 0;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  box-sizing: border-box;
  } 

body {
  font-family: var(--font);
  font-weight: var(--fontOrigin);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.005rem;
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
}

ul{
	list-style: none;
}

section{
  padding: 70px 200px;
  position: relative;
}


						/* shadow_screen */
.shadow_screen{
	position: fixed;
	z-index: 888;
	width: 100%;
    min-width: 100vw;
    height: 100%;
    min-height: 100vh;
	top: 0px;
	left: 0px;
	background: #000;
	display: none;
}

.shadow_screen.active{
  display: block;
  opacity: 0.6;
}

.content-for-phones{
  display: none;
}

.sidenav {
  display: none;
}

.sidenav {
  display: block;
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index:2000; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: #ffffff; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #000000;
  line-height: inherit;
  display: flex;
  transition: 0.3s;
}

.sidenav a:hover {
    color: #1E90FF;
  }

.sidenav a i {
  font-size: 25px;
  margin-right: 5px;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.open_nav_btn{
  display: none;
}

/* popup */
.popup {
  z-index: 1000;
  width: 500px;
  background: #fcfcfc;
  padding: 50px;
  margin: 100px auto;
  border-radius: var(--borderradius);
  position:fixed;
  top:-150%;
  left:50%;
  opacity:0;
  background:#fff;
  box-shadow:2px 2px 5px 5px rgba(0,0,0,0.15);
  transform:translate(-50%,-50%) scale(1.25);
  transition:top 0ms ease-in-out 200ms,
             opacity 200ms ease-in-out 0ms,
             transform 200ms ease-in-out 0ms; 
}
.popup.active {
  position: fixed;
  top:30%;
  opacity:1;
  transform:translate(-50%,-50%) scale(1);
  transition:top 0ms ease-in-out 0ms,
             opacity 200ms ease-in-out 0ms,
             transform 200ms ease-in-out 0ms;
}

.popup .close-btn {
  position:relative;
  bottom: 20px;
  float: right;
  width:15px;
  height:15px;
  color:#000000;
  text-align:center;
  font-size: 35px;
  line-height:15px;
  border-radius: var(--borderradius);
  cursor:pointer;
}

.title h2{
  color: #000000;
  font-size: 20px;
  letter-spacing: 5px;
  margin-bottom: 25px;
  text-align: center;
}

.SendMail,
.form-items{
  width: 100%;
}

.form-items .input{
  width: 100%;
  margin-bottom: 10px;
  padding: 15px 40px;
  box-sizing: border-box;
  background: #dde4eb;
  border: 0px;
  outline: none;
  border-radius: var(--borderradius);
}

.form-items .input.message{
  height: 125px;
  border-radius: var(--borderradius);
  padding: 15px 15px;
  resize: none;
}

.popup .SendMail button {
  width: 100%;
  background: #1E90FF;
  text-align: center;
  color: #fff;
  padding: 12px;
  border-radius: var(--borderradius);
  cursor: pointer;
}

.SendMail .checkbox{
  font-size: 16px;
  padding: 10px 0 10px 0;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: #C0C0C0;
}

.SendMail .checkbox .data_processing {
  text-decoration: none;  
  color: #787878;
}

.SendMail .checkbox .data_processing:hover {
  color: #545454;
}


.SendMail .checkbox .checkbox_input{
  display: none;
}

.SendMail .checkbox .checkbox_box{
  width: 1.25em;
  height: 1.25em;
  border: 2px solid #C0C0C0;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}

.SendMail .checkbox .checkbox_box::after{
content: '\2714';
color: #ffffff;
transform: scale(0);
transition: transform 0.15s;
}

.checkbox_input:checked + .checkbox_box{
  background: #1E90FF;
  border-color: #1E90FF;
}

.checkbox_input:checked + .checkbox_box::after{
  transform: scale(1);
}

/* header and slider*/
header{
  width: 100%;
  margin: 0 auto;
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  align-items: center;
  transition: 0.5s ease;
}

header .navigation_div{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .navigation_div .navigation{
  position: relative;
  display: block;
}

header .navigation_div .navigation .navigation-items a{
  list-style: none;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 20px;
  transition: all 0.5s ease-in-out;
}

header .navigation_div .navigation .navigation-items a:after{
  content: '';
  display: block;
  position: absolute;
  margin: auto;
  width: 0%;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #1E90FF;
  transition: all 0.5s ease-in-out;
}

header .navigation_div .navigation .navigation-items a:hover:after{
  width: 100%;
}

header .header_container .navigation_div button{
  padding: 8px 10px;
  background-color: #1E90FF;
  border: 2px solid #1E90FF;
  border-radius: var(--borderradius);
  position: relative;
  margin: 12px 0 12px 20px;
  transition: all 0.3s ease-in-out;
}

header .header_container .navigation_div button:hover{
  border: 2px solid #ffffff;
  background-color: transparent;
}

header .header_container .navigation_div button span{
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
} 

header .header_container .navigation_div button i{
  color: #ffffff;
  display: none;
}


header .header_links{
  margin: 0 auto;
  max-width: 1370px;
  padding-top: 15px; 
  padding-bottom: 10px;   
  display: flex;
  align-items: center;
  justify-content:flex-end;
}

.header_links .e-mail{
  font-weight: 700;
  text-transform: uppercase;
  color: #C0C0C0;
  padding: 0 10px;
}

.header_links .e-mail_button{
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  font-size: 17px;
  transition: all 0.3s ease-in-out;
}

.header_links .e-mail_button:hover{
  color: #1E90FF;
}

.header_links .phone{
  font-weight: 700;
  text-transform: uppercase;
  color: #C0C0C0;
}

.header_links .phone_button{
  text-decoration: none;
  color: #ffffff;
  font-size: 17px;    
  transition: all 0.3s ease-in-out;
}

.header_links .phone_button:hover{
  color: #1E90FF;
}


.home{
  position: relative;
  width: 100%;
  box-shadow:
  0px 0.1px 1.5px rgba(0, 0, 0, 0.045),
  0px 0.3px 3.5px rgba(0, 0, 0, 0.065),
  0px 0.6px 6.6px rgba(0, 0, 0, 0.08),
  0px 1.1px 11.8px rgba(0, 0, 0, 0.095),
  0px 2.1px 22.1px rgba(0, 0, 0, 0.115),
  0px 5px 53px rgba(0, 0, 0, 0.16);
  height: 70vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #1E90FF;
}

.home:before{
  z-index: 777;
  content: '';
  position: absolute;
  background: rgba(3, 96, 251, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.home .content{
  margin: 0 auto;
  text-align: center;
  z-index: 888;
  color: #fff;
  width: 100%;
  margin-top: 50px;
  display: none;
}

.home .content.active{
  display: block;
}

.home .content h2{
  display: flex;
  justify-content: center;
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin: 40px auto;
}

.home .content p{
  margin-bottom: 65px;
}

.home .content a{
  background: #fff;
  border-radius: 40px;
  padding: 15px 35px;
  color: #4682B4;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
}

.home img{
  z-index: 000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-navigation{
  z-index: 888;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-navigation .nav-btn{
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
  transition: 0.3s ease;
}

.slider-navigation .nav-btn.active{
  background: #1E90FF;
}

.slider-navigation .nav-btn:not(:last-child){
  margin-right: 20px;
}

.slider-navigation .nav-btn:hover{
  transform: scale(1.2);
}

.slide{
  position: absolute;
  width: 100%;
  clip-path: circle(0% at 0 50%);
}

.slide.active{
  clip-path: circle(150% at 0 50%);
  transition: 2s ease;
  transition-property: clip-path;
}

/* container */

.header_container{
  max-width: 1370px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contacts_segment{
  max-width: 1370px;
  margin: 0 auto;
}

.content_container{
  max-width: 1370px;
  margin: 0 auto;
}

/* header_menu */


/* .header_menu{
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

header .logo{
  text-align: center;
}

header .logo a.text_logo {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 30px;
  text-decoration: none;
  color: #ffffff;
}

header .logo a.text_logo_2{
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 8px;
  text-decoration: none;
  color: #ffffff;
}
 
/*---- content -----*/

.table{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.table-h{
  width: 100%;
 margin: 15px 0;
 text-align: center;
}

.table-h h2{
font-size: 24px;
}

table {
  border-collapse: collapse;
  box-shadow:
  0px 0.1px 1.5px rgb(0 0 0 / 5%),
  0px 0.3px 3.5px rgb(0 0 0 / 7%),
  0px 0.6px 6.6px rgb(0 0 0 / 8%),
  0px 1.1px 11.8px rgb(0 0 0 / 10%),
  0px 2.1px 22.1px rgb(0 0 0 / 12%),
  0px 5px 53px rgb(0 0 0 / 16%);
  background-color: white;
  text-align: left;
  overflow: hidden;
  border-radius: var(--borderradius);
}

thead{
  box-shadow:
  0px 0.1px 1.5px rgb(0 0 0 / 5%),
  0px 0.3px 3.5px rgb(0 0 0 / 7%),
  0px 0.6px 6.6px rgb(0 0 0 / 8%),
  0px 1.1px 11.8px rgb(0 0 0 / 10%),
  0px 2.1px 22.1px rgb(0 0 0 / 12%),
  0px 5px 53px rgb(0 0 0 / 16%);
}

th {
  padding: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 0.7rem;
  font-weight: 900;
}

td {
  padding: 20px;
}

tr:nth-child(even) {
  background-color: #eaf0ff;
}

/* services */
.services_item{
  width:300px;
  height: 400px;
  background-color: #f2f3f4;
  border-radius: var(--borderradius);
  margin: 10px 10px;
}

.services_main_title{
  text-align: center;
  margin: 50px 0 50px 0;
}

.services_main_title h2 {
  font-weight: 700;
  font-size: 36px;
}

.services_content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 100vh;
  padding-top: 40px;
  padding-bottom: 40px;
} 

/* contacts */
.contacts_segment .contacts_tittle{
  margin: 30px;
  text-align: center;
  font-size: 40px;
  font-family: Arial, Helvetica, sans-serif;
  color: #444;
}

.contacts_segment .contacts ul li{
  margin: 10px;
  font-size: 20px;
  font-family: Arial, Helvetica, sans-serif;
  color: #444;
}

.content-for-phone{
display: none;
}

.container{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.main-title{
  font-size: 4em;
  margin-bottom: 50px;
}

.content{
  position: relative;
  width: 1150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content .image{
  position: relative;
  width: 800px;
  height: 400px;
  overflow: hidden;
  border-radius: var(--borderradius);
}

.content .image img{
  z-index: 111;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--borderradius);
}

.content .text-box{
  z-index: 222;
  background-color:  #ffffff;
	filter: drop-shadow(0 0 20px rgb(0 37 73 / 16%));
  padding: 40px;
  width: 400px;
  border-radius: var(--borderradius);
  transform: translate(-80px, 50px);
}

.content .text-box h3{
  font-size: 2em;
  margin-bottom: 10px;
}

.content .text-box-other{
  z-index: 222;
  background-color: #ffffff;
	filter: drop-shadow(0 0 20px rgb(0 37 73 / 16%));
  padding: 40px;
  max-width: 400px;
  border-radius: var(--borderradius);
  transform: translate(80px, -50px);
}

.content .text-box-other h3{
  font-size: 2em;
  margin-bottom: 10px;
}

.section-title{
  display: flex;
  margin: 100px;
  justify-content: center;
}

.section-title h3{
  font-size: 40px;
  text-align: center;
}

.info-title{
  font-size: 1.8em;
  margin-bottom: 10px;
}

.info{
  width: 700px;
  margin-left: 50px;
}

.info ul{
  margin: 20px;
}

.info ul li{
  margin: 20px;
  font-size: 20px;
  font-weight: 500;
}

.content .text-box ul{
  margin: 10px 0 10px 0;
}

.content .text-box ul li{
  margin: 20px 0 20px 0;
  font-size: 20px;
  font-weight: 500;
}

.sec-03 .container .content{
  flex-direction: column;
}

.sec-03 .container .content .text-box{
  width: 800px;
  transform: translate(0px, 50px);
}

.benefits{
  display: block;
  max-width: 1370px;
  margin: 0 auto;
}

.benefits .benefits-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.benefits .benefits-title {
  display: flex;
  text-align: center;
  margin: 100px;
  justify-content: center;
}

.benefits .benefits-title h2 {
  font-weight: 700;
  font-size: 36px;
}

.benefits .benefits-item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 300px;
  text-align: center;
  margin: 15px 20px;
  height: 250px;
  z-index: 222;
  background-color: #ffffff;
	filter: drop-shadow(0 0 20px rgb(0 37 73 / 16%));
  padding: 20px;
  border-radius: var(--borderradius);
}

.benefits .benefits-item h3{
  font-size:24px;
  margin-bottom: 20px;
}

/* footer */

.footer{
  width: 100%;
  left: 0;
  bottom: 0;
  position: relative;
  box-shadow:
  0px 0.1px 1.5px rgba(0, 0, 0, 0.045),
  0px 0.3px 3.5px rgba(0, 0, 0, 0.065),
  0px 0.6px 6.6px rgba(0, 0, 0, 0.08),
  0px 1.1px 11.8px rgba(0, 0, 0, 0.095),
  0px 2.1px 22.1px rgba(0, 0, 0, 0.115),
  0px 5px 53px rgba(0, 0, 0, 0.16);
	background-color: #24262b;
  padding: 70px 0;
  align-items: center;
}

.footer .logo{
  max-width: 600px;
  text-align: center;
}


.footer .logo a.text_logo {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 30px;
  text-decoration: none;
  color: #ffffff;
}

.footer .logo a.text_logo_2{
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 8px;
  text-decoration: none;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer .logo p{
  font-size: 12px;
  color: #545454;
}

.footer .logo p a {
  color: #545454;
  font-size: 12px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.footer .logo p a:hover {
color: #C0C0C0;
}

.footer .row{
	display: flex;
  justify-content: space-between;
	flex-wrap: wrap;
  max-width: 1370px;
  margin: 0 auto;
}

.footer-col{
  width: 45%;
  padding: 0 15px;
}
.footer-col h4{
	font-size: 20px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #1E90FF;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}

.footer-col ul{
  font-size: 16px;
  font-weight: 500;
  color: #bbbbbb;
}

.footer-col ul li{
margin: 10px;
}

.footer-col ul li a :hover{
  color: #1E90FF;
}

.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}

.footer-col ul li a{
	font-size: 16px;
	color: #ffffff;
	text-decoration: none;
	display: block;
	transition: all 0.3s ease;  
	font-weight: 700;
}

.footer-col ul li a:hover{
	color: #1E90FF;
	padding-left: 8px;

}

.footer-col .adress{
  font-size: 16px;
  font-weight: 500;
  color: #bbbbbb;;
}

.footer-col .adress_button{
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.footer-col .adress_button:hover{
  color: #1E90FF;
}

.footer_copyright{
  height: 20px;
  text-align: center;
}

.footer_copyright p{
  margin-top: 100px;
color: #C0C0C0;
}

/*responsive*/

@media(max-width: 1200px){
  .benefits_item{
    width: 60%;
  }

  .about_us_text{
    padding: 80px;
  }
}

@media screen and (max-width:1100px){

  .content-for-PC{
    display: none;
  }

  .content-for-phones{
    display: block;
  }

  .home .content h1{
    font-size: 26px;
  }

  .about_us{
    background-size: 100%;
    padding: 100px 40px;
  }

  .about_us_text{
    width: 100%;
  }

  .content{
    width: 600px;
  }

  .content .text-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 600px;
    text-align: center;
    padding: 20px;
    transform: translate( 0px, 0px);
}

  .content .text-box .image{
    width: 500px;
    height: 300px;
    margin: 10px auto;
  }

  .content .text-box h3{
    font-size: 26px;
  }

  .content .text-box p{
    margin: 20px 10px;
    font-size: 17px;
    font-weight: 500;
  }
  
  .content .text-box ul li{
    margin: 20px 10px;
    font-size: 17px;
  }
}

@media(max-width: 768px){  
	  .popup{
    width: 350px;
  }
	
	.title h2 {
		letter-spacing: 1px;
	}
	
	.SendMail .form-items .input.message{
    height: 95px;
	}
	
  .SendMail .checkbox{
    font-size: 12px;
  }
	
	.checkbox p{
    font-size: 12px;
 	}
	
	.checkbox a{
		font-size: 12px;
	}
	.header_links{
      justify-content: space-between;
      padding-top: 25px; 
      padding-bottom: 20px;
  }
	
  .header_links .adress{
      font-size: 15px;
      padding: 0 4px;
  }

  .header_links .adress_button{
      font-size: 17px;
  }

  .header_links .e-mail{
      font-size: 15px;
      padding: 0 4px;
  }

  .header_links .e-mail_button{
      font-size: 17px;
  }

  .header_links .phone{
      font-size: 15px;
      padding: 0 4px;
  }

  .header_links .phone_button{
      font-size: 17px;
  }

  .open_nav_btn{
    display: flex;
    cursor: pointer;
    color: #ffffff;
  }

  .open_nav_btn i{
    font-size: 35px;
  }

  header{
    padding: 12px 20px;
  }

  section{
    padding: 20px 20px;
  }

  .content .text-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 400px;
    text-align: center;
    padding: 20px;
    transform: translate( 0px, 0px);
}

  .content .text-box .image{
    width: 300px;
    height: 280px;
    margin: 10px auto;
  }

  .content .text-box h3{
    font-size: 26px;
  }
	
  .sec-03 .container .content{
    width: 400px;
  }

  .sec-03 .container .content .text-box{
    width: 400px;
  }
	
  .footer-col{
    width:50%;
    margin-bottom: 30px;
  }
}


@media(max-width: 767px){
  .popup{
    width: 350px;
  }
	
	.SendMail .form-items .input.message{
    height: 95px;
	}
	
  .SendMail .checkbox{
    font-size: 12px;
  }
	
	.checkbox p{
    font-size: 12px;
 	}
	
	.checkbox a{
		font-size: 12px;
	}


  .header_links{
    display: none;
  }

  .open_nav_btn{
    display: flex;
    cursor: pointer;
    color: #ffffff;
  }

  .open_nav_btn i{
    font-size: 35px;
  }

  header{
    padding: 12px 20px;
  }

  header button{
    padding: 8px 8px;
  }

  header button span{
      display: none;
  }

  header button i{
    display: block;
    font-size: 30px;
  }

  header .header_container .navigation_div button{
    padding: 8px 8px;
	margin: 12px 0 12px 0px;
  }

  header .header_container .navigation_div span{
      display: none;
  }

  header .header_container .navigation_div button i{
    display: block;
    font-size: 30px;
  }

  header .header_container .navigation_div .navigation{
    display: none;
  }

  header .header_links{
    display: none;
  }
		
/*   .content .text-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 400px;
    text-align: center;
    padding: 20px;
    transform: translate( 0px, 0px);
} */

  .content .text-box h3{
    font-size: 26px;
  }

  .footer-col{
    width:50%;
    margin-bottom: 30px;
  }
}

@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
  
  .home .content h2{
    font-size: 20px;
    text-align: center;
  }

  .home .content p{
    font-size: 15px;
    text-align: center;
  }
	
	  .content{
    width: 400px;
  }

  .content .text-box .image{
    width: 280px;
    height: 250px;
    margin: 10px auto;
  }

  .content .text-box h3{
    font-size: 26px;
  }

}

@media  (max-width: 425px) {
	  .popup{
    width: 310px;
  }
	
	.benefits .benefits-title h2{
		font-size: 30px;
	}
}

@media(max-width: 375px){
	.home {
    height: 80vh;
}
  
  .home .content h2{
    font-size: 20px;
    text-align: center;
	  margin: 0 auto 10px auto;
  }

  .home .content p{
    font-size: 15px;
    text-align: center;
	  margin-bottom: 10px;
 }
	
	  .content{
    width: 320px;
  }
	.content .text-box{
		width: 310px;
	}
	
  .content .text-box .image{
    height: 200px;
    width: 270px;
  }
	
  .sec-03 .container .content{
    width: 320px;
  }

  .sec-03 .container .content .text-box{
    width: 320px;
  }

} 
} 