@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

* {
  box-sizing: border-box;
  margin:0;
  padding:0;
}
html, body{
  font-family: 'Open-Sans', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container{
  max-width: 1000px;
  margin:0 auto;
}
.logoContainer{
  position:relative;
  background-image: url('/images/calc.jpg');
  background-size: cover;
  padding: 20px;

}
.logo{
  font-family: 'Impact';
  font-size: 300%;
  padding:20px;
  background-color: #ffffffe0;
  margin: 10px;
  line-height: 1.3em;
}
.title{
  font-size: 250%;
  padding:20px;
  background-color: #ffffffe0;
  margin: 10px;
  line-height: 1.3em;
}
.desc {
  font-size: 140%;
  text-align: justify;
}
p{
  font-size: 110%;
}
ul {

}
li {
  
}
a {
  text-decoration: none;
  color: #333;
}
h1,h2{
  font-weight:100em;
  line-height:1.2;
  margin: 10px 0px;
}
.textLeft {
  text-align: left;
}
p {
  margin: 10px 0px;
}
img{
  width: 100%;
}
.vl {
  border-left: 2px solid #555;
  height: 100%;
}
.flex{
  display: flex;
}
nav a {
  padding: 20px 20px 0px 20px;
  font-weight: bold;
  display: inline-block;
}

nav a:hover{
  transform:scale(1.1,1.1);
  -webkit-transform:scale(1.1,1.1);
  -moz-transform:scale(1.1,1.1);
}
nav a:focus{
  transform:scale(1.2,1.2);
  -webkit-transform:scale(1.2,1.2);
  -moz-transform:scale(1.2,1.2);
}
nav li{
  list-style: none;
}
.textCenter{
  text-align: center;
}
.pad10{
  padding:10px;
}
nav>ul{
  
}
.centerSection{
  text-align: center;
  padding: 10px;
}
.clmnHalf{
  width:50%;
}
.services{
  background-color: #D3E9FF;
  padding: 40px;
  margin: 30px 0px;
}
.servicesList{
  padding: 0px 0px 0px 35px;
  text-align: left;
}

.googleMap{
  width: 100%;
  height: 100%;
}
.centerMargin{
  margin: auto;
}
.reviews{
  display: flex;
  justify-content: space-around;
}
.profile {
  margin: auto;
  border-radius: 50%; /*don't forget prefixes*/
  background-position: center center;
  /* as mentioned by Vad: */
  background-size: cover;
  padding: 10px;
}
.divSeventy{
  width: 70%;
  margin: 10px;
}
.blue {
  color: #4d50f5;
}
.card{

  padding: 10px;
  max-width: 400px;
  margin: auto;
  
}
.section{
  margin: 20px;
}
footer{
  text-align: center;
}
.direction{
  flex-direction: row-reverse;
}
.width25{
  width: 25px;
}
.profileImg{
  width: 200px;
  height: 200px;
  border-radius: 50%; /*don't forget prefixes*/
  background-position: center center;
  /* as mentioned by Vad: */
  background-size: cover;
}
@media only screen and (max-width: 900px) {
  .nameContainer{
    font-size: 200%;
    
  }
  .desc {
    font-size: 120%;
  }
  .services{
    background-color: #D3E9FF;
    padding: 20px;
    margin: 20px 0px;
  }
}

@media only screen and (max-width: 600px) {
  body {
    font-size: 90%;
  }
  .flex{
    flex-direction: column; 
    text-align: center;
  }
  .nameContainer{
    font-size: 200%;
    
  }
  .desc {
    font-size: 120%;
  }
  .vl {
    border-left: 0px;
    height: 100%;
  }
  .clmnHalf{
    width: 100%;
  }
  .divSeventy{
    width: 100%;
    margin:0;
  }
}